結果

問題 No.2709 1975 Powers
ユーザー H20H20
提出日時 2024-04-06 16:29:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 84,152 KB
最終ジャッジ日時 2024-10-01 03:53:57
合計ジャッジ時間 9,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,392 KB
testcase_01 AC 42 ms
53,776 KB
testcase_02 AC 65 ms
64,844 KB
testcase_03 AC 404 ms
66,484 KB
testcase_04 AC 561 ms
71,472 KB
testcase_05 AC 435 ms
72,028 KB
testcase_06 AC 218 ms
72,412 KB
testcase_07 AC 40 ms
54,232 KB
testcase_08 AC 227 ms
82,352 KB
testcase_09 AC 457 ms
75,360 KB
testcase_10 AC 41 ms
54,972 KB
testcase_11 AC 81 ms
68,984 KB
testcase_12 AC 123 ms
77,040 KB
testcase_13 AC 454 ms
84,152 KB
testcase_14 AC 142 ms
67,840 KB
testcase_15 AC 163 ms
71,052 KB
testcase_16 AC 374 ms
72,296 KB
testcase_17 AC 55 ms
65,868 KB
testcase_18 AC 137 ms
80,024 KB
testcase_19 AC 581 ms
81,784 KB
testcase_20 AC 68 ms
70,168 KB
testcase_21 AC 217 ms
82,460 KB
testcase_22 AC 640 ms
69,020 KB
testcase_23 AC 650 ms
82,084 KB
testcase_24 AC 644 ms
74,760 KB
testcase_25 AC 638 ms
70,896 KB
testcase_26 AC 637 ms
67,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,P,Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
ans = 0
D = collections.defaultdict(int)
for c in reversed(range(N)):
    cc = pow(7,A[c],P)
    for b in range(c):
        bb = pow(9,A[b],P)
        for a in range(b):
            ans += D[(Q-cc-bb-pow(10,A[a],P))%P]
    D[pow(5,A[c],P)]+=1
print(ans)
0