結果

問題 No.2709 1975 Powers
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-03-31 17:30:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,016 KB
最終ジャッジ日時 2024-09-30 21:11:37
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,572 KB
testcase_01 AC 43 ms
54,236 KB
testcase_02 AC 63 ms
67,616 KB
testcase_03 AC 116 ms
67,652 KB
testcase_04 AC 169 ms
72,208 KB
testcase_05 AC 137 ms
73,904 KB
testcase_06 AC 108 ms
75,288 KB
testcase_07 AC 46 ms
55,008 KB
testcase_08 AC 131 ms
87,460 KB
testcase_09 AC 156 ms
78,688 KB
testcase_10 AC 44 ms
55,308 KB
testcase_11 AC 61 ms
68,376 KB
testcase_12 AC 77 ms
77,684 KB
testcase_13 AC 196 ms
87,904 KB
testcase_14 AC 72 ms
69,256 KB
testcase_15 AC 86 ms
73,968 KB
testcase_16 AC 135 ms
76,308 KB
testcase_17 AC 61 ms
68,800 KB
testcase_18 AC 85 ms
81,988 KB
testcase_19 AC 226 ms
89,016 KB
testcase_20 AC 70 ms
73,160 KB
testcase_21 AC 110 ms
84,252 KB
testcase_22 AC 160 ms
70,640 KB
testcase_23 AC 222 ms
84,552 KB
testcase_24 AC 207 ms
83,208 KB
testcase_25 AC 156 ms
70,172 KB
testcase_26 AC 171 ms
69,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P, Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
from collections import defaultdict
from bisect import bisect_right

five = defaultdict(list)
seven = defaultdict(int)
nine = defaultdict(int)
ten = defaultdict(int)
for a in A:
    seven[a] = pow(7, a, P)
    nine[a] = pow(9, a, P)
    ten[a] = pow(10, a, P)
    five[pow(5, a, P)].append(a)
ans = 0
for a in range(N):
    for b in range(a + 1, N):
        for c in range(b + 1, N):
            x = (ten[A[a]] + nine[A[b]] + seven[A[c]]) % P
            y = len(five[(Q - x) % P]) - bisect_right(five[(Q - x) % P], A[c])
            ans += y
print(ans)
0