結果

問題 No.2709 1975 Powers
ユーザー FromBooskaFromBooska
提出日時 2024-03-31 18:23:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,043 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 206,708 KB
最終ジャッジ日時 2024-09-30 21:15:50
合計ジャッジ時間 27,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,876 KB
testcase_01 AC 40 ms
52,192 KB
testcase_02 AC 166 ms
104,120 KB
testcase_03 AC 1,301 ms
134,168 KB
testcase_04 AC 1,976 ms
184,132 KB
testcase_05 AC 1,472 ms
159,564 KB
testcase_06 AC 616 ms
94,428 KB
testcase_07 AC 65 ms
71,692 KB
testcase_08 AC 685 ms
155,296 KB
testcase_09 AC 1,526 ms
169,484 KB
testcase_10 AC 67 ms
71,672 KB
testcase_11 AC 164 ms
83,128 KB
testcase_12 AC 335 ms
134,448 KB
testcase_13 AC 1,573 ms
193,856 KB
testcase_14 AC 395 ms
102,180 KB
testcase_15 AC 531 ms
150,788 KB
testcase_16 AC 1,224 ms
119,308 KB
testcase_17 AC 90 ms
79,612 KB
testcase_18 AC 390 ms
138,044 KB
testcase_19 AC 1,944 ms
173,840 KB
testcase_20 AC 150 ms
104,812 KB
testcase_21 AC 678 ms
152,608 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 200の4乗は不可能だが、200の3乗ならできる、最後だけ事前カウントしておくのはどうだろう
# これでダメなら先頭2項のmod、後半2項のmodで可能かも

N, P, Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()

#print(A)

last_count = [[0]*P for i in range(N)]

for i in range(N-1, -1, -1):
    if i == N-1:
        calc = pow(5, A[i], P)
        last_count[i][calc] += 1
    else:
        for j in range(P):
            last_count[i][j] = last_count[i+1][j]
        calc = pow(5, A[i], P)
        last_count[i][calc] += 1
    #print('i', i, 'calc', calc)
        
#for l in last_count:
#    print(l)

# Ai!=Ajなのでダブりは考えなくていい

ans = 0
for a in range(N-3):
    for b in range(a+1, N-2):
        for c in range(b+1, N-1):
            calc = pow(10, A[a], P)+pow(9, A[b], P)+pow(7, A[c], P)
            needed = (Q-calc)%P
            #print(a, b, c, 'needed', needed)
            count = last_count[c+1][needed]
            ans += count
print(ans)
0