結果

問題 No.2709 1975 Powers
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-03-31 17:24:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 771 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-30 21:11:10
合計ジャッジ時間 25,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 72 ms
66,304 KB
testcase_03 AC 1,463 ms
76,408 KB
testcase_04 TLE -
testcase_05 AC 1,726 ms
76,416 KB
testcase_06 AC 548 ms
76,160 KB
testcase_07 AC 50 ms
61,952 KB
testcase_08 AC 497 ms
76,160 KB
testcase_09 AC 1,721 ms
76,672 KB
testcase_10 AC 53 ms
63,360 KB
testcase_11 AC 100 ms
69,632 KB
testcase_12 AC 196 ms
72,832 KB
testcase_13 AC 1,760 ms
76,800 KB
testcase_14 AC 275 ms
76,032 KB
testcase_15 AC 316 ms
76,392 KB
testcase_16 AC 1,367 ms
76,400 KB
testcase_17 AC 62 ms
66,688 KB
testcase_18 AC 209 ms
73,744 KB
testcase_19 TLE -
testcase_20 AC 78 ms
69,888 KB
testcase_21 AC 495 ms
76,152 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P, Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
from collections import defaultdict

five = defaultdict(int)
seven = defaultdict(int)
nine = defaultdict(int)
ten = defaultdict(int)
for a in A:
    five[a] = pow(5, a, P)
    seven[a] = pow(7, a, P)
    nine[a] = pow(9, a, P)
    ten[a] = pow(10, a, P)
ans = 0
for a in range(N):
    for b in range(a + 1, N):
        if A[a] == A[b]:
            continue
        for c in range(b + 1, N):
            if A[b] == A[c]:
                continue
            for d in range(c + 1, N):
                if A[c] == A[d]:
                    continue
                tmp = ten[A[a]] + nine[A[b]] + seven[A[c]] + five[A[d]]
                if tmp % P == Q:
                    ans += 1
print(ans)
0