結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-27 18:55:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 4,000 ms
コード長 435 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 154,620 KB
最終ジャッジ日時 2024-12-14 17:48:15
合計ジャッジ時間 10,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,272 KB
testcase_01 AC 40 ms
53,616 KB
testcase_02 AC 38 ms
53,952 KB
testcase_03 AC 701 ms
123,932 KB
testcase_04 AC 40 ms
51,812 KB
testcase_05 AC 49 ms
61,256 KB
testcase_06 AC 82 ms
76,332 KB
testcase_07 AC 39 ms
52,296 KB
testcase_08 AC 83 ms
76,076 KB
testcase_09 AC 79 ms
76,292 KB
testcase_10 AC 39 ms
53,896 KB
testcase_11 AC 543 ms
124,572 KB
testcase_12 AC 886 ms
154,620 KB
testcase_13 AC 973 ms
154,420 KB
testcase_14 AC 929 ms
154,548 KB
testcase_15 AC 841 ms
154,480 KB
testcase_16 AC 934 ms
154,460 KB
testcase_17 AC 757 ms
133,240 KB
testcase_18 AC 77 ms
76,304 KB
testcase_19 AC 176 ms
88,712 KB
testcase_20 AC 48 ms
62,924 KB
testcase_21 AC 58 ms
69,344 KB
testcase_22 AC 57 ms
68,844 KB
testcase_23 AC 48 ms
62,444 KB
testcase_24 AC 827 ms
143,488 KB
testcase_25 AC 745 ms
126,756 KB
testcase_26 AC 206 ms
91,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
st = set([input().rstrip() for _ in [0] * N])

visited = set([])
for sv in st:
	if(sv in visited):
		continue
	stk = [sv]
	while(stk):
		v = stk.pop()
		for i in range(K):
			if(v[i] == '0'):
				continue
			nv = ''.join([v[:i],chr(ord(v[i])-1),v[i+1:]])
			if(nv in visited):
				continue
			visited.add(nv)
			stk.append(nv)

ans = len(visited & st)
print(ans)
0