結果

問題 No.16 累乗の加算
ユーザー nbisconbisco
提出日時 2016-04-13 22:43:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 405 ms / 5,000 ms
コード長 371 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-06-26 05:13:05
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 375 ms
50,048 KB
testcase_01 AC 394 ms
50,048 KB
testcase_02 AC 87 ms
17,408 KB
testcase_03 AC 218 ms
30,464 KB
testcase_04 AC 216 ms
30,336 KB
testcase_05 AC 213 ms
30,592 KB
testcase_06 AC 385 ms
50,176 KB
testcase_07 AC 204 ms
30,464 KB
testcase_08 AC 209 ms
30,336 KB
testcase_09 AC 206 ms
30,336 KB
testcase_10 AC 393 ms
49,920 KB
testcase_11 AC 90 ms
17,408 KB
testcase_12 AC 405 ms
49,920 KB
testcase_13 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#fileencoding: utf-8

x, _ = [int(i) for i in input().strip().split(" ")]
mod = 1000003
tmp = 1
count = 0
memo = []
memo.append(1)
while True:
    tmp = (tmp * x) % mod
    count += 1
    if tmp == 1:
        break
    memo.append(tmp)

ans = 0
for i in input().strip().split(" "):
    a = int(i)%count
    ans += memo[a]
    ans %= mod
print(ans)
0