結果

問題 No.2178 Payable Magic Items
ユーザー 👑 p-adicp-adic
提出日時 2023-05-29 22:11:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,953 ms / 4,000 ms
コード長 271 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-06-08 19:29:13
合計ジャッジ時間 27,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 1,576 ms
23,724 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 36 ms
13,696 KB
testcase_06 AC 94 ms
14,208 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 91 ms
13,952 KB
testcase_09 AC 63 ms
11,520 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 2,181 ms
21,632 KB
testcase_12 AC 2,740 ms
22,656 KB
testcase_13 AC 2,953 ms
22,616 KB
testcase_14 AC 2,830 ms
25,472 KB
testcase_15 AC 2,909 ms
25,432 KB
testcase_16 AC 2,822 ms
22,316 KB
testcase_17 AC 1,935 ms
16,608 KB
testcase_18 AC 49 ms
10,752 KB
testcase_19 AC 542 ms
13,312 KB
testcase_20 AC 33 ms
10,624 KB
testcase_21 AC 45 ms
10,624 KB
testcase_22 AC 53 ms
10,752 KB
testcase_23 AC 33 ms
10,624 KB
testcase_24 AC 2,425 ms
20,160 KB
testcase_25 AC 1,697 ms
15,724 KB
testcase_26 AC 646 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N,K=map(int,I().split())
p=[pow(5,i)for i in R(K+1)]
S=[int(I(),5)for i in R(N)]
b=[0]*p[K]
for s in S:b[s]=1
a=0
for s in S:
	L={s}
	while len(L):
		s=L.pop()
		for q in p:
			if s%(q*5)//q*(b[s-q]<2):
				L.add(s-q)
				a,b[s-q]=a+(b[s-q]==1),2
print(a)
0