結果

問題 No.16 累乗の加算
ユーザー colognecologne
提出日時 2022-01-21 13:20:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 205 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,544 KB
最終ジャッジ日時 2024-11-25 07:58:49
合計ジャッジ時間 1,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,320 KB
testcase_01 AC 36 ms
52,280 KB
testcase_02 AC 37 ms
52,088 KB
testcase_03 AC 33 ms
52,936 KB
testcase_04 AC 35 ms
52,552 KB
testcase_05 AC 35 ms
52,188 KB
testcase_06 AC 34 ms
53,004 KB
testcase_07 AC 35 ms
53,220 KB
testcase_08 AC 34 ms
51,872 KB
testcase_09 AC 34 ms
53,244 KB
testcase_10 AC 39 ms
52,364 KB
testcase_11 AC 34 ms
51,824 KB
testcase_12 AC 35 ms
53,544 KB
testcase_13 AC 33 ms
52,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

def main():
    x, N = map(int, input().split())
    M = 1000003
    print(sum(pow(x, int(a), M) for a in input().split())%M)

if __name__ == '__main__':
    main()
0