結果

問題 No.2394 部分和乗総和
ユーザー Alex WiceAlex Wice
提出日時 2023-07-28 21:48:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-10-06 18:21:24
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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