結果

問題 No.2709 1975 Powers
ユーザー けんけん
提出日時 2024-11-01 21:15:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 264,232 KB
最終ジャッジ日時 2024-11-01 21:16:19
合計ジャッジ時間 32,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 WA -
testcase_02 AC 296 ms
215,728 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 120 ms
145,100 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 125 ms
145,124 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 AC 274 ms
221,400 KB
testcase_21 WA -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**8)

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

A.sort()

ans = 0

modP = [[0] * P]

for i in range(N):
    modP.append([])
    for p in range(P):
        modP[-1].append(modP[-2][p] + (1 if (A[i] % P) == p else 0))

for i in range(N - 3):
    for j in range(i + 1, N - 2):
        for k in range(j + 1, N - 1):
            a, b, c = A[i], A[j], A[k]
            cnt = (pow(10, a, P) + pow(9, b, P) + pow(7, c, P)) % P
            tmp = (Q - cnt) % P
            ans += modP[-1][tmp] - modP[k][tmp]

print(ans)
0