結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2023-11-01 19:54:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 4,000 ms
コード長 722 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 212,128 KB
最終ジャッジ日時 2024-09-25 18:01:48
合計ジャッジ時間 5,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,072 KB
testcase_01 AC 37 ms
53,232 KB
testcase_02 AC 38 ms
52,644 KB
testcase_03 AC 190 ms
206,624 KB
testcase_04 AC 37 ms
53,660 KB
testcase_05 AC 127 ms
190,528 KB
testcase_06 AC 139 ms
194,688 KB
testcase_07 AC 36 ms
53,492 KB
testcase_08 AC 137 ms
194,832 KB
testcase_09 AC 60 ms
81,268 KB
testcase_10 AC 38 ms
53,100 KB
testcase_11 AC 253 ms
211,844 KB
testcase_12 AC 257 ms
211,844 KB
testcase_13 AC 270 ms
212,128 KB
testcase_14 AC 268 ms
211,892 KB
testcase_15 AC 252 ms
211,944 KB
testcase_16 AC 262 ms
211,944 KB
testcase_17 AC 224 ms
208,612 KB
testcase_18 AC 63 ms
71,996 KB
testcase_19 AC 94 ms
93,468 KB
testcase_20 AC 45 ms
62,548 KB
testcase_21 AC 56 ms
67,760 KB
testcase_22 AC 55 ms
69,540 KB
testcase_23 AC 44 ms
63,372 KB
testcase_24 AC 235 ms
210,552 KB
testcase_25 AC 214 ms
207,656 KB
testcase_26 AC 92 ms
94,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def to_num(s):
    ret = 0
    for c in s:
        x = ord(c) - ord('0')
        ret <<= 3
        ret += x
    return ret


N, K = map(int, input().split())
st = list([to_num(input()[:-1]) for _ in [0] * N])

visited = [0] * (1 << (K * 3))
for v_start in st:
    if(visited[v_start] == 1):
        continue
    stk = [v_start]
    while(stk):
        v_now = stk.pop()
        for i in range(0, K * 3, 3):
            if(((v_now >> i) & 7) == 0):
                continue
            v_next = v_now - (1 << i)
            if(visited[v_next] == 1):
                continue
            visited[v_next] = 1
            stk.append(v_next)

ans = sum(visited[x] for x in st)
print(ans)
0