結果

問題 No.2178 Payable Magic Items
ユーザー minimumminimum
提出日時 2023-01-06 22:00:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 775 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 899,116 KB
最終ジャッジ日時 2024-12-14 17:57:02
合計ジャッジ時間 59,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
85,232 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 70 ms
60,632 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 AC 251 ms
105,276 KB
testcase_15 AC 250 ms
104,872 KB
testcase_16 AC 248 ms
105,128 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 114 ms
85,032 KB
testcase_20 AC 49 ms
63,252 KB
testcase_21 AC 67 ms
70,936 KB
testcase_22 AC 68 ms
72,228 KB
testcase_23 AC 54 ms
64,204 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


N, K = map(int, input().split())
S = [input() for _ in range(N)]
num = dict()
res = [0] * N

for i in range(N):
    n = 0
    for j in range(K):
        n *= 5
        n += 4 - int(S[i][j])
    num[n] = i

if 0 in num:
    print(N - 1)
    exit()

dq = deque()
dq.append((0, 0))
while dq:
    now, t = dq.popleft()
    if now in num:
        if t == 1:
            res[num[now]] = 1
        else:
            t = 1
    a = []
    for i in range(K):
        a.append(now % 5)
        now //= 5
    a.reverse()
    for i in range(K):
        if a[i] == 4:
            continue
        a[i] += 1
        nxt = 0
        for j in range(K):
            nxt *= 5
            nxt += a[j]
        dq.append((nxt, t))
        a[i] -= 1

print(sum(res))
0