結果

問題 No.2709 1975 Powers
ユーザー miya145592miya145592
提出日時 2024-03-31 14:14:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 655 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 210,768 KB
最終ジャッジ日時 2024-09-30 19:13:12
合計ジャッジ時間 25,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,540 KB
testcase_01 AC 33 ms
52,392 KB
testcase_02 AC 157 ms
107,680 KB
testcase_03 AC 1,188 ms
135,820 KB
testcase_04 AC 1,820 ms
186,376 KB
testcase_05 AC 1,356 ms
162,452 KB
testcase_06 AC 571 ms
96,356 KB
testcase_07 AC 64 ms
73,636 KB
testcase_08 AC 656 ms
157,392 KB
testcase_09 AC 1,424 ms
171,672 KB
testcase_10 AC 67 ms
73,664 KB
testcase_11 AC 160 ms
84,900 KB
testcase_12 AC 340 ms
137,096 KB
testcase_13 AC 1,490 ms
195,824 KB
testcase_14 AC 380 ms
103,548 KB
testcase_15 AC 499 ms
152,308 KB
testcase_16 AC 1,177 ms
119,912 KB
testcase_17 AC 86 ms
80,692 KB
testcase_18 AC 386 ms
139,812 KB
testcase_19 AC 1,816 ms
176,764 KB
testcase_20 AC 161 ms
106,936 KB
testcase_21 AC 645 ms
153,780 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,958 ms
132,816 KB
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)
    for j in range(P):
        if j==q:
            dp[i+1][j] = dp[i][j]+1
        else:
            dp[i+1][j] = dp[i][j]
ans = 0
for i in range(N):
    a = A[i]
    for j in range(i+1, N):
        b = A[j]
        for k in range(j+1, N):
            c = A[k]
            tmp = pow(10, a, P)+pow(9, b, P)+pow(7, c, P)
            tmp %= P
            tmp = (Q-tmp)%P
            cnt = dp[N][tmp]-dp[k+1][tmp]
            ans += cnt
print(ans)
0