結果
問題 | No.16 累乗の加算 |
ユーザー | sekiya9311 |
提出日時 | 2016-10-19 21:04:20 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 551 bytes |
コンパイル時間 | 2,392 ms |
コンパイル使用メモリ | 74,524 KB |
実行使用メモリ | 52,300 KB |
最終ジャッジ日時 | 2024-11-22 17:01:19 |
合計ジャッジ時間 | 3,475 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
import java.util.*; public class Main { static Scanner sc; final static int MOD = 1000003; static long pow_mod(long a, long p) { if (p == 0) return 1; if (p % 2 == 1) return a * pow_mod(a, p - 1) % MOD; long t = pow_mod(a, p / 2); return t * t % MOD; } public static void main(String[] args) { long ans = 0; int x = sc.nextInt(); int N = sc.nextInt(); for (int i = 0; i < N; i++) { int buf = sc.nextInt(); ans = (ans + pow_mod(x, buf)) % MOD; } System.out.println(ans); return; } }