結果

問題 No.16 累乗の加算
ユーザー 👑 KazunKazun
提出日時 2020-09-04 01:33:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 53,176 KB
最終ジャッジ日時 2024-05-03 11:03:59
合計ジャッジ時間 1,289 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,064 KB
testcase_01 AC 40 ms
52,944 KB
testcase_02 AC 37 ms
53,116 KB
testcase_03 AC 37 ms
52,348 KB
testcase_04 AC 33 ms
52,076 KB
testcase_05 AC 33 ms
52,240 KB
testcase_06 AC 34 ms
53,176 KB
testcase_07 AC 32 ms
52,572 KB
testcase_08 AC 32 ms
52,988 KB
testcase_09 AC 33 ms
52,816 KB
testcase_10 AC 33 ms
52,216 KB
testcase_11 AC 33 ms
52,068 KB
testcase_12 AC 34 ms
52,760 KB
testcase_13 AC 37 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,N=map(int,input().split())
A=list(map(int,input().split()))
Mod=10**6+3

S=0
for a in A:
    S+=pow(x,a,Mod)
    S%=Mod
print(S)
0