結果
| 問題 |
No.2007 Arbitrary Mod (Easy)
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-07-20 08:25:16 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,262 bytes |
| コンパイル時間 | 2,297 ms |
| コンパイル使用メモリ | 77,584 KB |
| 実行使用メモリ | 50,540 KB |
| 最終ジャッジ日時 | 2024-07-02 11:54:00 |
| 合計ジャッジ時間 | 6,323 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 RE * 1 |
| other | AC * 30 |
ソースコード
import java.io.*;
import java.util.*;
public class Main {
static final int MOD = 100000000;
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
int a = sc.nextInt();
long n = sc.nextInt();
System.out.println(MOD);
System.out.println(pow(a, n));
}
static long pow(long x, long p) {
if (p == 0) {
return 1;
} else if (p % 2 == 0) {
return pow(x * x % MOD, p / 2);
} else {
return pow(x, p - 1) * x % MOD;
}
}
}
class Scanner {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer("");
public Scanner() throws Exception {
}
public int nextInt() throws Exception {
return Integer.parseInt(next());
}
public long nextLong() throws Exception {
return Long.parseLong(next());
}
public double nextDouble() throws Exception {
return Double.parseDouble(next());
}
public String next() throws Exception {
if (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
return st.nextToken();
}
}
tenten