結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
86,540 KB
testcase_01 AC 123 ms
86,216 KB
testcase_02 AC 125 ms
86,416 KB
testcase_03 AC 823 ms
136,760 KB
testcase_04 AC 127 ms
86,364 KB
testcase_05 AC 140 ms
89,620 KB
testcase_06 AC 171 ms
90,100 KB
testcase_07 AC 123 ms
86,388 KB
testcase_08 AC 169 ms
89,940 KB
testcase_09 AC 166 ms
89,436 KB
testcase_10 AC 129 ms
86,392 KB
testcase_11 AC 648 ms
137,312 KB
testcase_12 AC 1,052 ms
167,960 KB
testcase_13 AC 1,083 ms
167,948 KB
testcase_14 AC 1,107 ms
167,496 KB
testcase_15 AC 1,022 ms
168,164 KB
testcase_16 AC 1,055 ms
167,632 KB
testcase_17 AC 902 ms
147,148 KB
testcase_18 AC 161 ms
89,600 KB
testcase_19 AC 284 ms
101,768 KB
testcase_20 AC 140 ms
89,336 KB
testcase_21 AC 149 ms
89,408 KB
testcase_22 AC 153 ms
89,460 KB
testcase_23 AC 142 ms
89,896 KB
testcase_24 AC 973 ms
157,024 KB
testcase_25 AC 906 ms
137,924 KB
testcase_26 AC 285 ms
103,820 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