結果

問題 No.2394 部分和乗総和
ユーザー とりゐとりゐ
提出日時 2023-07-28 21:58:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,032 KB
最終ジャッジ日時 2024-04-16 05:53:03
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,900 KB
testcase_01 AC 38 ms
51,756 KB
testcase_02 AC 39 ms
53,600 KB
testcase_03 AC 38 ms
52,628 KB
testcase_04 AC 39 ms
52,332 KB
testcase_05 AC 41 ms
52,080 KB
testcase_06 AC 39 ms
51,952 KB
testcase_07 AC 39 ms
52,884 KB
testcase_08 AC 39 ms
51,952 KB
testcase_09 AC 40 ms
52,124 KB
testcase_10 AC 40 ms
52,808 KB
testcase_11 AC 40 ms
52,368 KB
testcase_12 AC 39 ms
52,892 KB
testcase_13 AC 60 ms
61,708 KB
testcase_14 AC 105 ms
69,248 KB
testcase_15 AC 111 ms
70,272 KB
testcase_16 AC 140 ms
75,264 KB
testcase_17 AC 225 ms
89,344 KB
testcase_18 AC 226 ms
89,488 KB
testcase_19 AC 227 ms
89,344 KB
testcase_20 AC 230 ms
93,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

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