結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,860 KB
testcase_01 AC 43 ms
54,508 KB
testcase_02 AC 75 ms
67,040 KB
testcase_03 AC 1,435 ms
76,304 KB
testcase_04 TLE -
testcase_05 AC 1,557 ms
76,172 KB
testcase_06 AC 524 ms
76,220 KB
testcase_07 AC 49 ms
61,836 KB
testcase_08 AC 464 ms
75,980 KB
testcase_09 AC 1,633 ms
76,436 KB
testcase_10 AC 51 ms
63,036 KB
testcase_11 AC 92 ms
69,060 KB
testcase_12 AC 159 ms
72,652 KB
testcase_13 AC 1,593 ms
76,344 KB
testcase_14 AC 259 ms
74,008 KB
testcase_15 AC 296 ms
75,972 KB
testcase_16 AC 1,316 ms
76,076 KB
testcase_17 AC 58 ms
66,796 KB
testcase_18 AC 191 ms
73,824 KB
testcase_19 TLE -
testcase_20 AC 70 ms
68,604 KB
testcase_21 AC 461 ms
76,192 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):
        for c in range(b + 1, N):
            for d in range(c + 1, N):
                tmp = ten[A[a]] + nine[A[b]] + seven[A[c]] + five[A[d]]
                if tmp % P == Q:
                    ans += 1
print(ans)
0