結果

問題 No.2709 1975 Powers
ユーザー lloyzlloyz
提出日時 2024-05-11 23:50:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 637 bytes
コンパイル時間 887 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 73,476 KB
最終ジャッジ日時 2024-12-20 08:53:50
合計ジャッジ時間 26,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,544 KB
testcase_01 AC 42 ms
52,188 KB
testcase_02 AC 117 ms
67,652 KB
testcase_03 AC 1,357 ms
69,272 KB
testcase_04 AC 1,984 ms
70,108 KB
testcase_05 AC 1,485 ms
69,740 KB
testcase_06 AC 640 ms
67,908 KB
testcase_07 AC 49 ms
59,252 KB
testcase_08 AC 610 ms
70,712 KB
testcase_09 AC 1,480 ms
68,948 KB
testcase_10 AC 49 ms
59,116 KB
testcase_11 AC 152 ms
66,276 KB
testcase_12 AC 262 ms
67,620 KB
testcase_13 AC 1,533 ms
68,916 KB
testcase_14 AC 375 ms
67,280 KB
testcase_15 AC 433 ms
70,632 KB
testcase_16 AC 1,241 ms
69,308 KB
testcase_17 AC 73 ms
65,612 KB
testcase_18 AC 309 ms
68,220 KB
testcase_19 AC 1,945 ms
73,476 KB
testcase_20 AC 112 ms
71,948 KB
testcase_21 AC 609 ms
68,816 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