結果

問題 No.2709 1975 Powers
ユーザー lloyzlloyz
提出日時 2024-05-11 23:54:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 721 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 70,916 KB
最終ジャッジ日時 2024-05-11 23:55:00
合計ジャッジ時間 3,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,000 KB
testcase_01 AC 32 ms
52,656 KB
testcase_02 AC 52 ms
66,260 KB
testcase_03 AC 60 ms
67,704 KB
testcase_04 AC 69 ms
68,964 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
58,704 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
58,524 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 55 ms
67,476 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 72 ms
68,784 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 69 ms
69,456 KB
testcase_26 AC 68 ms
68,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p, q = map(int, input().split())
A = list(map(int, input().split()))

P = [pow(10, A[i], p) for i in range(n)]
Q = [pow(9, A[i], p) for i in range(n)]
S = [pow(7, A[i], p) for i in range(n)]
T = [pow(5, A[i], p) for i in range(n)]

A.sort()
C = [0 for _ in range(p)]
for i in range(3, n):
    C[T[i]] += 1
ans = 0
for i in range(n):
    res1 = P[i]
    for j in range(i + 1, n):
        res2 = (res1 + Q[j]) % p
        for k in range(j + 1, n):
            res3 = (res2 + S[k]) % p
            r = (q - res3) % p
            ans += C[r]
            if k + 1 < n:
                C[T[k + 1]] -= 1
        for k in range(j + 3, n):
            C[T[k]] += 1
    for k in range(i + 4, n):
        C[T[k]] += 1
print(ans)
0