結果

問題 No.2394 部分和乗総和
ユーザー ニックネームニックネーム
提出日時 2023-07-28 21:45:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 868 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 19,344 KB
最終ジャッジ日時 2024-10-06 18:16:27
合計ジャッジ時間 5,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 29 ms
10,368 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 28 ms
10,368 KB
testcase_08 AC 29 ms
10,368 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,368 KB
testcase_11 AC 30 ms
10,368 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 105 ms
11,392 KB
testcase_14 AC 316 ms
13,540 KB
testcase_15 AC 337 ms
13,828 KB
testcase_16 AC 474 ms
15,708 KB
testcase_17 AC 853 ms
19,328 KB
testcase_18 AC 863 ms
19,324 KB
testcase_19 AC 868 ms
19,328 KB
testcase_20 AC 261 ms
19,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,b = map(int,input().split())
ans = 1
for v in map(int,input().split()): ans = ans*(pow(m,v,b)+1)%b
print(ans)
0