結果

問題 No.2709 1975 Powers
ユーザー nikoro256nikoro256
提出日時 2024-03-31 14:14:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 251,388 KB
最終ジャッジ日時 2024-09-30 19:12:37
合計ジャッジ時間 10,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
54,432 KB
testcase_02 AC 339 ms
249,952 KB
testcase_03 AC 355 ms
250,732 KB
testcase_04 AC 370 ms
249,828 KB
testcase_05 AC 363 ms
250,364 KB
testcase_06 AC 341 ms
250,060 KB
testcase_07 AC 318 ms
249,048 KB
testcase_08 AC 373 ms
251,388 KB
testcase_09 AC 364 ms
250,120 KB
testcase_10 AC 329 ms
245,820 KB
testcase_11 AC 329 ms
250,000 KB
testcase_12 AC 338 ms
249,660 KB
testcase_13 AC 395 ms
250,724 KB
testcase_14 AC 337 ms
250,960 KB
testcase_15 AC 352 ms
249,844 KB
testcase_16 AC 365 ms
245,588 KB
testcase_17 AC 339 ms
250,588 KB
testcase_18 AC 341 ms
250,272 KB
testcase_19 AC 393 ms
250,516 KB
testcase_20 AC 325 ms
249,352 KB
testcase_21 AC 351 ms
249,588 KB
testcase_22 AC 373 ms
245,340 KB
testcase_23 AC 412 ms
246,392 KB
testcase_24 AC 393 ms
245,412 KB
testcase_25 AC 374 ms
245,564 KB
testcase_26 AC 414 ms
246,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def makeexp(n):
    re=[1]
    for i in range(ma+2):
        re.append(re[-1]*n%P)
    return re

from collections import defaultdict
N,P,Q=map(int,input().split())
A=list(map(int,input().split()))
A=list(set(A))
A=sorted(A)
rightdic=defaultdict(int)
ma=max(A)
exp10=makeexp(10)
exp9=makeexp(9)
exp7=makeexp(7)
exp5=makeexp(5)
N=len(A)
for i in range(N):
    rightdic[exp5[A[i]]]+=1
ans=0
for i in range(N):
    #iを3番目とする。
    rightdic[exp5[A[i]]]-=1
    if i<2:
        continue
    for j in range(i):
        for k in range(j+1,i):
            left=(exp10[A[j]]+exp9[A[k]]+exp7[A[i]])%P
            ans+=rightdic[(Q-left)%P]
print(ans)
0