結果

問題 No.2394 部分和乗総和
ユーザー lloyzlloyz
提出日時 2023-07-30 01:41:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 448 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 524,036 KB
最終ジャッジ日時 2024-10-08 14:03:31
合計ジャッジ時間 6,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,880 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 41 ms
53,248 KB
testcase_03 AC 42 ms
52,992 KB
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 42 ms
53,504 KB
testcase_06 AC 44 ms
53,376 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 58 ms
65,280 KB
testcase_09 AC 49 ms
61,440 KB
testcase_10 AC 41 ms
53,504 KB
testcase_11 AC 48 ms
61,312 KB
testcase_12 AC 41 ms
53,248 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline

n, m, b = map(int, input().split())
A = list(map(int, input().split()))

DP = defaultdict(int)
DP[0] = 1
for i in range(n):
    a = A[i]
    N = sorted(DP.keys())
    NDP = defaultdict(int)
    for j in N:
        NDP[j] += DP[j]
        NDP[j + a] += DP[j]
    DP = NDP
ans = 0
N = sorted(DP.keys())
for i in N:
    ans += DP[i] * pow(m, i, b) % b
    ans %= b
print(ans)
0