結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-27 18:55:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,214 ms / 4,000 ms
コード長 435 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 155,048 KB
最終ジャッジ日時 2024-05-08 13:24:06
合計ジャッジ時間 13,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 947 ms
123,736 KB
testcase_04 AC 43 ms
51,840 KB
testcase_05 AC 53 ms
61,696 KB
testcase_06 AC 101 ms
76,672 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 100 ms
76,288 KB
testcase_09 AC 99 ms
76,288 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 763 ms
124,196 KB
testcase_12 AC 1,173 ms
154,656 KB
testcase_13 AC 1,214 ms
154,624 KB
testcase_14 AC 1,170 ms
155,048 KB
testcase_15 AC 1,163 ms
154,488 KB
testcase_16 AC 1,199 ms
154,400 KB
testcase_17 AC 1,082 ms
133,764 KB
testcase_18 AC 96 ms
76,160 KB
testcase_19 AC 249 ms
88,832 KB
testcase_20 AC 66 ms
63,104 KB
testcase_21 AC 78 ms
67,968 KB
testcase_22 AC 77 ms
68,608 KB
testcase_23 AC 57 ms
62,464 KB
testcase_24 AC 1,163 ms
143,628 KB
testcase_25 AC 1,001 ms
126,316 KB
testcase_26 AC 260 ms
91,152 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