結果

問題 No.2709 1975 Powers
ユーザー shobonvipshobonvip
提出日時 2024-04-01 01:34:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 165,588 KB
最終ジャッジ日時 2024-09-30 21:34:47
合計ジャッジ時間 5,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
123,144 KB
testcase_01 AC 88 ms
123,736 KB
testcase_02 AC 123 ms
135,604 KB
testcase_03 AC 154 ms
132,708 KB
testcase_04 AC 198 ms
147,328 KB
testcase_05 AC 169 ms
144,008 KB
testcase_06 AC 140 ms
140,748 KB
testcase_07 AC 99 ms
124,756 KB
testcase_08 AC 165 ms
158,412 KB
testcase_09 AC 170 ms
144,144 KB
testcase_10 AC 105 ms
124,892 KB
testcase_11 AC 128 ms
137,620 KB
testcase_12 AC 138 ms
148,420 KB
testcase_13 AC 207 ms
165,588 KB
testcase_14 AC 121 ms
133,292 KB
testcase_15 AC 141 ms
142,576 KB
testcase_16 AC 153 ms
137,756 KB
testcase_17 AC 115 ms
130,176 KB
testcase_18 AC 153 ms
155,468 KB
testcase_19 AC 210 ms
153,720 KB
testcase_20 AC 124 ms
136,024 KB
testcase_21 AC 165 ms
159,636 KB
testcase_22 AC 181 ms
144,368 KB
testcase_23 AC 194 ms
154,080 KB
testcase_24 AC 199 ms
146,456 KB
testcase_25 AC 195 ms
140,920 KB
testcase_26 AC 187 ms
138,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p,q=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
mx=2000008
p10=[0]*mx
p09=[0]*mx
p07=[0]*mx
p05=[0]*mx
p10[0]=1
p09[0]=1
p07[0]=1
p05[0]=1
for i in range(1,mx):
	p10[i]=p10[i-1]*10%p
	p09[i]=p09[i-1]* 9%p
	p07[i]=p07[i-1]* 7%p
	p05[i]=p05[i-1]* 5%p

from collections import defaultdict
d=defaultdict(int)
ans=0
for i in range(n):
	for j in range(i+1,n):
		for k in range(j+1,n):
			g=(p09[a[i]]+p07[a[j]]+p05[a[k]])%p
			#g+?=q
			#g+?=p+q
			ans+=d[p+q-g]+d[q-g]
	d[p10[a[i]]]+=1
print(ans)
0