結果
問題 | No.2709 1975 Powers |
ユーザー | shobonvip |
提出日時 | 2024-04-01 01:32:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 508 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 164,932 KB |
最終ジャッジ日時 | 2024-09-30 21:34:01 |
合計ジャッジ時間 | 5,500 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
123,136 KB |
testcase_01 | AC | 92 ms
123,888 KB |
testcase_02 | AC | 120 ms
134,484 KB |
testcase_03 | AC | 157 ms
132,516 KB |
testcase_04 | AC | 216 ms
147,544 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 102 ms
124,712 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 103 ms
124,064 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 127 ms
132,888 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 207 ms
142,984 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 197 ms
141,612 KB |
testcase_26 | AC | 188 ms
138,628 KB |
ソースコード
n,p,q=map(int,input().split()) a=list(map(int,input().split())) 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)