結果

問題 No.2394 部分和乗総和
ユーザー hato336hato336
提出日時 2023-07-28 22:24:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,276 KB
最終ジャッジ日時 2024-10-06 19:38:10
合計ジャッジ時間 5,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
n,m,b = map(int,input().split())
alist = list(map(int,input().split()))
ans = 0
ans += 1
for i in alist:
    ans += ans * pow(m,i,b)
    ans %= b
print(ans)
0