結果

問題 No.2394 部分和乗総和
ユーザー ikomaikoma
提出日時 2023-07-28 22:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 90,788 KB
最終ジャッジ日時 2024-10-06 18:58:26
合計ジャッジ時間 2,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,220 KB
testcase_01 AC 33 ms
52,876 KB
testcase_02 AC 32 ms
52,820 KB
testcase_03 AC 32 ms
52,636 KB
testcase_04 AC 34 ms
52,000 KB
testcase_05 AC 34 ms
53,072 KB
testcase_06 AC 34 ms
51,696 KB
testcase_07 AC 34 ms
52,848 KB
testcase_08 AC 34 ms
51,940 KB
testcase_09 AC 33 ms
52,684 KB
testcase_10 AC 36 ms
52,984 KB
testcase_11 AC 33 ms
52,204 KB
testcase_12 AC 33 ms
52,156 KB
testcase_13 AC 52 ms
62,028 KB
testcase_14 AC 94 ms
69,352 KB
testcase_15 AC 97 ms
70,232 KB
testcase_16 AC 123 ms
74,496 KB
testcase_17 AC 205 ms
88,724 KB
testcase_18 AC 202 ms
87,956 KB
testcase_19 AC 200 ms
87,620 KB
testcase_20 AC 212 ms
90,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,B=map(int,input().split())
A=list(map(int,input().split()))

ans=1

for a in A:
    ans+=pow(M,a,B)*ans
    ans%=B
print(ans)
0