結果

問題 No.2178 Payable Magic Items
ユーザー FromBooskaFromBooska
提出日時 2023-06-08 19:17:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 920 ms / 4,000 ms
コード長 728 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 149,892 KB
最終ジャッジ日時 2024-06-09 23:03:43
合計ジャッジ時間 11,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,248 KB
testcase_01 AC 36 ms
54,144 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 684 ms
136,520 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 50 ms
63,360 KB
testcase_06 AC 89 ms
77,056 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 AC 87 ms
77,280 KB
testcase_09 AC 86 ms
77,440 KB
testcase_10 AC 38 ms
53,760 KB
testcase_11 AC 604 ms
108,580 KB
testcase_12 AC 905 ms
149,892 KB
testcase_13 AC 862 ms
145,912 KB
testcase_14 AC 869 ms
149,504 KB
testcase_15 AC 858 ms
149,736 KB
testcase_16 AC 920 ms
149,372 KB
testcase_17 AC 709 ms
135,704 KB
testcase_18 AC 80 ms
77,252 KB
testcase_19 AC 194 ms
86,448 KB
testcase_20 AC 51 ms
66,048 KB
testcase_21 AC 73 ms
77,056 KB
testcase_22 AC 76 ms
77,056 KB
testcase_23 AC 53 ms
67,328 KB
testcase_24 AC 807 ms
142,776 KB
testcase_25 AC 676 ms
135,768 KB
testcase_26 AC 214 ms
87,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説のコンセプトから自分でやってみる

N, K = map(int, input().split())
S = []
for i in range(N):
    S.append(input())
S.sort(reverse = True)

from collections import deque
visited = set()
count = 0
for s in S:
    if s in visited:
        continue
    count += 1
    que = deque()
    que.append(s)
    while que:
        current = que.popleft()
        #print('s', s, 'current', current, 'que', que)
        
        for k in range(K):
            if int(current[k]) > 0:
                new = current[:k] + str(int(current[k])-1) + current[k+1:]
                if new not in visited:
                    visited.add(new)
                    que.append(new)
#print(count)

ans = N - count
print(ans)





0