結果

問題 No.16 累乗の加算
ユーザー shobonvipshobonvip
提出日時 2022-03-12 14:41:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 118 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 53,368 KB
最終ジャッジ日時 2024-09-16 21:20:38
合計ジャッジ時間 1,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,540 KB
testcase_01 AC 32 ms
51,940 KB
testcase_02 AC 33 ms
52,108 KB
testcase_03 AC 33 ms
51,572 KB
testcase_04 AC 35 ms
52,220 KB
testcase_05 AC 35 ms
52,928 KB
testcase_06 AC 35 ms
51,884 KB
testcase_07 AC 35 ms
53,236 KB
testcase_08 AC 36 ms
52,208 KB
testcase_09 AC 35 ms
53,368 KB
testcase_10 AC 35 ms
51,564 KB
testcase_11 AC 35 ms
51,684 KB
testcase_12 AC 34 ms
52,624 KB
testcase_13 AC 33 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,N=map(int,input().split());b=0;mod=1000003
for i in list(map(int,input().split())):
	b=(b+pow(x,i,mod))%mod
print(b)
0