結果

問題 No.2709 1975 Powers
ユーザー pitPpitP
提出日時 2024-03-31 13:56:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-09-30 18:39:26
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 39 ms
53,656 KB
testcase_02 AC 57 ms
67,328 KB
testcase_03 AC 90 ms
68,608 KB
testcase_04 AC 94 ms
75,904 KB
testcase_05 AC 105 ms
74,112 KB
testcase_06 AC 77 ms
71,552 KB
testcase_07 AC 41 ms
54,400 KB
testcase_08 AC 97 ms
82,176 KB
testcase_09 AC 108 ms
74,624 KB
testcase_10 AC 42 ms
54,400 KB
testcase_11 AC 67 ms
70,912 KB
testcase_12 AC 81 ms
76,160 KB
testcase_13 AC 125 ms
84,096 KB
testcase_14 AC 68 ms
68,352 KB
testcase_15 AC 77 ms
73,856 KB
testcase_16 AC 78 ms
70,912 KB
testcase_17 AC 53 ms
64,000 KB
testcase_18 AC 77 ms
78,336 KB
testcase_19 AC 127 ms
80,384 KB
testcase_20 AC 67 ms
69,504 KB
testcase_21 AC 89 ms
82,688 KB
testcase_22 AC 123 ms
73,856 KB
testcase_23 AC 116 ms
80,384 KB
testcase_24 AC 115 ms
74,752 KB
testcase_25 AC 99 ms
71,552 KB
testcase_26 AC 116 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

base = [10, 9, 7, 5]
g = [[pow(base[c], A[i], P) for i in range(N)] for c in range(4)]

mp = defaultdict(int)
mp[g[0][0]] = 1
ans = 0
for b in range(1, N):
    for c in range(b + 1, N):
        for d in range(c + 1, N):
            Y = (g[1][b] + g[2][c] + g[3][d]) % P
            ans += mp[(Q - Y) % P]
    mp[g[0][b]] += 1

print(ans)
0