結果

問題 No.2709 1975 Powers
ユーザー noriocnorioc
提出日時 2024-04-01 02:51:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 457 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 144,668 KB
最終ジャッジ日時 2024-09-30 21:41:35
合計ジャッジ時間 27,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,488 KB
testcase_01 AC 40 ms
52,124 KB
testcase_02 AC 133 ms
137,932 KB
testcase_03 AC 1,523 ms
138,260 KB
testcase_04 TLE -
testcase_05 AC 1,729 ms
138,188 KB
testcase_06 AC 626 ms
138,780 KB
testcase_07 AC 100 ms
121,936 KB
testcase_08 AC 572 ms
139,244 KB
testcase_09 AC 1,745 ms
137,556 KB
testcase_10 AC 101 ms
123,036 KB
testcase_11 AC 162 ms
141,360 KB
testcase_12 AC 234 ms
138,160 KB
testcase_13 AC 1,818 ms
137,488 KB
testcase_14 AC 334 ms
137,024 KB
testcase_15 AC 377 ms
137,372 KB
testcase_16 AC 1,399 ms
139,044 KB
testcase_17 AC 109 ms
128,348 KB
testcase_18 AC 270 ms
137,592 KB
testcase_19 TLE -
testcase_20 AC 128 ms
139,812 KB
testcase_21 AC 558 ms
137,092 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

m = max(A) + 1
m10 = [1] * m
m9 = [1] * m
m7 = [1] * m
m5 = [1] * m
for i in range(1, m):
    m10[i] = m10[i-1] * 10 % P
    m9[i] = m9[i-1] * 9 % P
    m7[i] = m7[i-1] * 7 % P
    m5[i] = m5[i-1] * 5 % P

ans = 0
for a, b, c, d in combinations(A, 4):
    x = m10[a] + m9[b] + m7[c] + m5[d]
    if x % P == Q:
        ans += 1

print(ans)
0