結果

問題 No.2709 1975 Powers
ユーザー noriocnorioc
提出日時 2024-04-01 01:48:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 801 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,636 KB
実行使用メモリ 144,988 KB
最終ジャッジ日時 2024-09-30 21:36:05
合計ジャッジ時間 17,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,240 KB
testcase_01 AC 37 ms
53,212 KB
testcase_02 AC 111 ms
138,240 KB
testcase_03 AC 1,496 ms
138,484 KB
testcase_04 TLE -
testcase_05 AC 1,634 ms
138,312 KB
testcase_06 AC 592 ms
139,244 KB
testcase_07 AC 73 ms
121,396 KB
testcase_08 AC 537 ms
139,620 KB
testcase_09 AC 1,611 ms
137,992 KB
testcase_10 AC 71 ms
122,788 KB
testcase_11 AC 147 ms
141,848 KB
testcase_12 AC 221 ms
138,300 KB
testcase_13 AC 1,738 ms
138,128 KB
testcase_14 AC 328 ms
136,936 KB
testcase_15 AC 360 ms
137,208 KB
testcase_16 AC 1,304 ms
139,440 KB
testcase_17 AC 86 ms
132,236 KB
testcase_18 AC 259 ms
138,028 KB
testcase_19 TLE -
testcase_20 AC 142 ms
140,784 KB
testcase_21 AC 534 ms
137,332 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) + 10
memo10 = [-1] * m
memo9 = [-1] * m
memo7 = [-1] * m
memo5 = [-1] * m


def f10(x):
    if memo10[x] != -1: return memo10[x]
    res = pow(10, x, P)
    memo10[x] = res
    return res


def f9(x):
    if memo9[x] != -1: return memo9[x]
    res = pow(9, x, P)
    memo9[x] = res
    return res


def f7(x):
    if memo7[x] != -1: return memo7[x]
    res = pow(7, x, P)
    memo7[x] = res
    return res


def f5(x):
    if memo5[x] != -1: return memo5[x]
    res = pow(5, x, P)
    memo5[x] = res
    return res


ans = 0
for a, b, c, d in combinations(A, 4):
    x = f10(a)
    x += f9(b)
    x += f7(c)
    x += f5(d)
    if x % P == Q:
        ans += 1

print(ans)
0