結果

問題 No.2709 1975 Powers
ユーザー lloyzlloyz
提出日時 2024-05-11 23:50:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 637 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 72,900 KB
最終ジャッジ日時 2024-05-11 23:50:59
合計ジャッジ時間 27,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,076 KB
testcase_01 AC 39 ms
52,692 KB
testcase_02 AC 110 ms
68,112 KB
testcase_03 AC 1,334 ms
68,996 KB
testcase_04 AC 1,983 ms
70,536 KB
testcase_05 AC 1,490 ms
69,232 KB
testcase_06 AC 623 ms
68,272 KB
testcase_07 AC 45 ms
59,076 KB
testcase_08 AC 627 ms
69,524 KB
testcase_09 AC 1,492 ms
69,316 KB
testcase_10 AC 45 ms
58,980 KB
testcase_11 AC 145 ms
67,228 KB
testcase_12 AC 252 ms
67,568 KB
testcase_13 AC 1,527 ms
69,664 KB
testcase_14 AC 383 ms
68,232 KB
testcase_15 AC 425 ms
69,672 KB
testcase_16 AC 1,248 ms
69,684 KB
testcase_17 AC 68 ms
66,208 KB
testcase_18 AC 297 ms
67,368 KB
testcase_19 AC 1,950 ms
71,212 KB
testcase_20 AC 105 ms
72,328 KB
testcase_21 AC 588 ms
69,064 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A.sort()
R = [0 for _ in range(p)]
for i in range(3, n):
    R[pow(5, A[i], p)] += 1
ans = 0
for i in range(n):
    res1 = pow(10, A[i], p)
    for j in range(i + 1, n):
        res2 = (res1 + pow(9, A[j], p)) % p
        for k in range(j + 1, n):
            res3 = (res2 + pow(7, A[k], p)) % p
            r = (q - res3) % p
            ans += R[r]
            if k + 1 < n:
                R[pow(5, A[k + 1], p)] -= 1
        for k in range(j + 3, n):
            R[pow(5, A[k], p)] += 1
    for k in range(i + 4, n):
        R[pow(5, A[k], p)] += 1
print(ans)
0