結果

問題 No.2709 1975 Powers
ユーザー H20H20
提出日時 2024-04-06 16:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,734 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-10-01 03:53:43
合計ジャッジ時間 21,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 91 ms
64,896 KB
testcase_03 AC 1,026 ms
66,688 KB
testcase_04 AC 1,481 ms
70,528 KB
testcase_05 AC 1,135 ms
71,808 KB
testcase_06 AC 503 ms
73,344 KB
testcase_07 AC 44 ms
54,272 KB
testcase_08 AC 487 ms
82,816 KB
testcase_09 AC 1,171 ms
75,648 KB
testcase_10 AC 43 ms
54,580 KB
testcase_11 AC 132 ms
69,504 KB
testcase_12 AC 230 ms
77,824 KB
testcase_13 AC 1,205 ms
84,352 KB
testcase_14 AC 299 ms
67,968 KB
testcase_15 AC 345 ms
71,040 KB
testcase_16 AC 987 ms
72,320 KB
testcase_17 AC 64 ms
64,896 KB
testcase_18 AC 259 ms
80,512 KB
testcase_19 AC 1,506 ms
81,536 KB
testcase_20 AC 90 ms
69,504 KB
testcase_21 AC 494 ms
82,304 KB
testcase_22 AC 1,686 ms
68,864 KB
testcase_23 AC 1,713 ms
82,048 KB
testcase_24 AC 1,686 ms
75,136 KB
testcase_25 AC 1,712 ms
70,272 KB
testcase_26 AC 1,734 ms
68,224 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)):
    for b in range(c):
        for a in range(b):
            ans += D[(Q-pow(7,A[c],P)-pow(9,A[b],P)-pow(10,A[a],P))%P]
    D[pow(5,A[c],P)]+=1
print(ans)
0