結果

問題 No.16 累乗の加算
ユーザー zimphazimpha
提出日時 2017-12-07 22:06:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 53,308 KB
最終ジャッジ日時 2024-06-26 05:24:41
合計ジャッジ時間 1,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,004 KB
testcase_01 AC 39 ms
52,248 KB
testcase_02 AC 41 ms
52,032 KB
testcase_03 AC 39 ms
52,084 KB
testcase_04 AC 39 ms
53,096 KB
testcase_05 AC 40 ms
52,888 KB
testcase_06 AC 39 ms
53,308 KB
testcase_07 AC 38 ms
52,428 KB
testcase_08 AC 40 ms
52,688 KB
testcase_09 AC 39 ms
52,596 KB
testcase_10 AC 39 ms
53,000 KB
testcase_11 AC 39 ms
52,388 KB
testcase_12 AC 41 ms
52,468 KB
testcase_13 AC 39 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 6 + 3
x, n = list(map(int, input().split()))
a = list(map(int, input().split()))
r = 0
for e in a:
  r += pow(x, e, mod)
print(r % mod)
0