結果

問題 No.2709 1975 Powers
ユーザー lloyzlloyz
提出日時 2024-05-11 23:54:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 721 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 81,732 KB
実行使用メモリ 70,040 KB
最終ジャッジ日時 2024-12-20 08:53:54
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,272 KB
testcase_01 AC 40 ms
53,492 KB
testcase_02 AC 63 ms
67,904 KB
testcase_03 AC 74 ms
67,860 KB
testcase_04 AC 80 ms
68,900 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 43 ms
58,952 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 45 ms
58,716 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 66 ms
66,844 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 84 ms
68,904 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 84 ms
69,192 KB
testcase_26 AC 82 ms
68,560 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