結果

問題 No.2709 1975 Powers
ユーザー miya145592miya145592
提出日時 2024-03-31 14:17:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,042 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 260,436 KB
最終ジャッジ日時 2024-09-30 19:18:25
合計ジャッジ時間 14,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,940 KB
testcase_01 AC 35 ms
53,624 KB
testcase_02 AC 141 ms
145,564 KB
testcase_03 AC 587 ms
203,928 KB
testcase_04 AC 1,002 ms
243,344 KB
testcase_05 AC 733 ms
243,844 KB
testcase_06 AC 299 ms
123,668 KB
testcase_07 AC 62 ms
83,432 KB
testcase_08 AC 420 ms
242,340 KB
testcase_09 AC 790 ms
244,320 KB
testcase_10 AC 64 ms
84,500 KB
testcase_11 AC 116 ms
102,316 KB
testcase_12 AC 248 ms
205,844 KB
testcase_13 AC 855 ms
243,800 KB
testcase_14 AC 230 ms
141,524 KB
testcase_15 AC 331 ms
235,284 KB
testcase_16 AC 572 ms
171,284 KB
testcase_17 AC 78 ms
92,848 KB
testcase_18 AC 272 ms
211,652 KB
testcase_19 AC 944 ms
244,780 KB
testcase_20 AC 127 ms
140,984 KB
testcase_21 AC 406 ms
240,152 KB
testcase_22 AC 977 ms
260,436 KB
testcase_23 AC 1,042 ms
244,088 KB
testcase_24 AC 910 ms
194,612 KB
testcase_25 AC 1,008 ms
243,108 KB
testcase_26 AC 1,016 ms
244,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, P, Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
dp = [[0 for _ in range(P)] for _ in range(N+1)]
for i in range(N):
    q = pow(5, A[i], P)
    dp[i+1] = dp[i][:]
    dp[i+1][q]+=1
ans = 0
for i in range(N):
    a = A[i]
    tmpa = pow(10, a, P)
    for j in range(i+1, N):
        b = A[j]
        tmpb = pow(9, b, P)
        for k in range(j+1, N):
            c = A[k]
            tmp = (tmpa+tmpb)%P+pow(7, c, P)
            tmp %= P
            tmp = (Q-tmp)%P
            cnt = dp[N][tmp]-dp[k+1][tmp]
            ans += cnt
print(ans)
0