-
Notifications
You must be signed in to change notification settings - Fork 0
/
P262.java
33 lines (32 loc) · 1020 Bytes
/
P262.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package buclesAnidados;
import java.util.Scanner;
//accepted
public class P262 {
public static void main(String[] args) {
final int MODULO = 46337;
int p,n;
int acumulador;
int multiplicador;
String frase;
Scanner sc = new Scanner(System.in);
frase = sc.nextLine();
String[] frases = frase.split(" ");
n = Integer.parseInt(frases[0]);
p = Integer.parseInt(frases[1]);
while (!(p==0 || n==0)) {
acumulador = 0;
for (int i = 1; i <= n; i++) {
multiplicador=1;
for (int j = 0; j < p; j++) {
multiplicador=(multiplicador*i)%MODULO;
}
acumulador= (acumulador+multiplicador)%MODULO;
}
System.out.println(acumulador);
frase = sc.nextLine();
frases = frase.split(" ");
n = Integer.parseInt(frases[0]);
p = Integer.parseInt(frases[1]);
}
}
}