結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-11-30 16:26:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,072 ms / 4,000 ms
コード長 1,055 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 168,164 KB
最終ジャッジ日時 2024-05-08 13:29:37
合計ジャッジ時間 13,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
86,576 KB
testcase_01 AC 124 ms
86,524 KB
testcase_02 AC 124 ms
86,332 KB
testcase_03 AC 807 ms
136,832 KB
testcase_04 AC 122 ms
86,580 KB
testcase_05 AC 135 ms
89,856 KB
testcase_06 AC 165 ms
90,160 KB
testcase_07 AC 122 ms
86,328 KB
testcase_08 AC 166 ms
90,184 KB
testcase_09 AC 163 ms
89,552 KB
testcase_10 AC 126 ms
86,540 KB
testcase_11 AC 655 ms
137,304 KB
testcase_12 AC 1,041 ms
168,164 KB
testcase_13 AC 1,072 ms
168,124 KB
testcase_14 AC 1,047 ms
168,032 KB
testcase_15 AC 1,011 ms
168,136 KB
testcase_16 AC 1,036 ms
168,044 KB
testcase_17 AC 924 ms
146,868 KB
testcase_18 AC 161 ms
89,996 KB
testcase_19 AC 282 ms
101,756 KB
testcase_20 AC 138 ms
89,788 KB
testcase_21 AC 141 ms
89,696 KB
testcase_22 AC 146 ms
89,636 KB
testcase_23 AC 137 ms
89,340 KB
testcase_24 AC 986 ms
156,800 KB
testcase_25 AC 880 ms
138,136 KB
testcase_26 AC 289 ms
104,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]
#di = coll.defaultdict(int)


"""
Main Code
"""

N, K = getNs()
s = set(getStrs(N))

st = set([])
for ss in s:
	if(ss in st):
		continue
	stk = [ss]
	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 st):
				continue
			st.add(nv)
			stk.append(nv)

print(len(s & st))
0