結果

問題 No.2709 1975 Powers
ユーザー 👑 Nafmo2Nafmo2
提出日時 2024-01-25 01:53:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,119 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 251,792 KB
最終ジャッジ日時 2024-09-30 17:25:18
合計ジャッジ時間 17,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 362 ms
251,252 KB
testcase_03 AC 730 ms
251,692 KB
testcase_04 AC 978 ms
251,792 KB
testcase_05 AC 718 ms
251,436 KB
testcase_06 AC 475 ms
251,676 KB
testcase_07 AC 359 ms
251,244 KB
testcase_08 AC 502 ms
251,284 KB
testcase_09 AC 722 ms
251,428 KB
testcase_10 AC 393 ms
251,608 KB
testcase_11 AC 388 ms
251,260 KB
testcase_12 AC 412 ms
251,460 KB
testcase_13 AC 730 ms
251,792 KB
testcase_14 AC 423 ms
251,408 KB
testcase_15 AC 442 ms
251,668 KB
testcase_16 AC 663 ms
251,528 KB
testcase_17 AC 366 ms
251,252 KB
testcase_18 AC 399 ms
251,496 KB
testcase_19 AC 868 ms
251,444 KB
testcase_20 AC 371 ms
251,516 KB
testcase_21 AC 494 ms
251,540 KB
testcase_22 AC 1,097 ms
251,452 KB
testcase_23 AC 1,087 ms
251,552 KB
testcase_24 AC 991 ms
251,696 KB
testcase_25 AC 1,107 ms
251,444 KB
testcase_26 AC 1,119 ms
251,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env pypy3
N, P, Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
ans = 0
p10 = [1]
p9 = [1]
p7 = [1]
p5 = [1]
for i in range(max(A)):
    p10.append(p10[i] * 10 % P)
    p9.append(p9[i] * 9 % P)
    p7.append(p7[i] * 7 % P)
    p5.append(p5[i] * 5 % P)
for i in range(N):
    for j in range(i + 1, N):
        for k in range(j + 1, N):
            for l in range(k + 1, N):
                if (p10[A[i]] + p9[A[j]] + p7[A[k]] + p5[A[l]]) % P == Q:
                    ans += 1
print(ans)
0