結果

問題 No.2709 1975 Powers
ユーザー prd_xxxprd_xxx
提出日時 2024-03-31 14:04:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 338,124 KB
最終ジャッジ日時 2024-09-30 18:53:40
合計ジャッジ時間 10,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,812 KB
testcase_01 AC 39 ms
53,444 KB
testcase_02 AC 65 ms
75,628 KB
testcase_03 AC 222 ms
87,476 KB
testcase_04 AC 1,146 ms
228,360 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 46 ms
60,240 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 50 ms
62,832 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 AC 320 ms
116,256 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 461 ms
131,364 KB
testcase_23 TLE -
testcase_24 WA -
testcase_25 AC 939 ms
174,692 KB
testcase_26 AC 387 ms
104,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,Q = map(int,input().split())
A = list(map(int,input().split()))
A.sort()


Z = [10,9,7,5]
pw = [[pow(z,a,P) for a in A] for z in Z]

dp = [{} for _ in range(5)]
dp[0] = {0:1}
for i in range(N):
    ndp = [{} for _ in range(5)]
    for j in range(5):
        for k,v in dp[j].items():
            if k in ndp[j]:
                ndp[j][k] += v
            else:
                ndp[j][k] = v
            if j==4: break
            nk = (k + pw[j][i]) % P
            if nk in ndp[j+1]:
                ndp[j+1][nk] += v
            else:
                ndp[j+1][nk] = v
    dp = ndp

if Q in dp[-1]:
    print(dp[-1][Q])
else:
    print(0)
0