結果

問題 No.16 累乗の加算
ユーザー ryomacryomac
提出日時 2023-05-21 18:54:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-06-01 12:41:35
合計ジャッジ時間 1,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,624 KB
testcase_01 AC 40 ms
51,696 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 38 ms
52,228 KB
testcase_04 AC 39 ms
52,300 KB
testcase_05 AC 40 ms
52,144 KB
testcase_06 AC 39 ms
52,760 KB
testcase_07 AC 39 ms
52,952 KB
testcase_08 AC 39 ms
52,672 KB
testcase_09 AC 39 ms
52,244 KB
testcase_10 AC 40 ms
52,612 KB
testcase_11 AC 39 ms
52,420 KB
testcase_12 AC 39 ms
52,824 KB
testcase_13 AC 40 ms
52,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, N = map(int, input().split())
A = list(map(int, input().split()))
MOD = 10**6 + 3
ans = 0
for a in A:
    ans += pow(x, a, MOD)
print(ans % MOD)
0