結果

問題 No.2709 1975 Powers
ユーザー 👑 rin204rin204
提出日時 2024-04-07 14:20:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 893 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 260,604 KB
最終ジャッジ日時 2024-10-01 04:29:25
合計ジャッジ時間 14,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,236 KB
testcase_01 AC 41 ms
53,972 KB
testcase_02 AC 342 ms
247,148 KB
testcase_03 AC 528 ms
238,436 KB
testcase_04 AC 769 ms
258,372 KB
testcase_05 AC 656 ms
259,324 KB
testcase_06 AC 260 ms
198,576 KB
testcase_07 AC 134 ms
123,004 KB
testcase_08 AC 634 ms
257,980 KB
testcase_09 AC 715 ms
258,064 KB
testcase_10 AC 141 ms
127,804 KB
testcase_11 AC 191 ms
160,996 KB
testcase_12 AC 561 ms
247,204 KB
testcase_13 AC 826 ms
258,532 KB
testcase_14 AC 321 ms
255,440 KB
testcase_15 AC 638 ms
258,228 KB
testcase_16 AC 391 ms
257,968 KB
testcase_17 AC 147 ms
136,452 KB
testcase_18 AC 565 ms
255,244 KB
testcase_19 AC 693 ms
260,604 KB
testcase_20 AC 320 ms
246,232 KB
testcase_21 AC 657 ms
258,056 KB
testcase_22 AC 893 ms
258,448 KB
testcase_23 AC 739 ms
258,780 KB
testcase_24 AC 448 ms
256,956 KB
testcase_25 AC 739 ms
258,576 KB
testcase_26 AC 791 ms
258,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p, q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
C = [10, 9, 7, 5]
dp = [[0] * p for _ in range(5)]
dp[0][0] = 1
for a in A:
    nex = [row[:] for row in dp]
    for t in range(4):
        add = pow(C[t], a, p)
        for j in range(p):
            nex[t + 1][(j + add) % p] += dp[t][j]
    dp = nex

print(dp[-1][q])
0