結果

問題 No.2178 Payable Magic Items
ユーザー FromBooskaFromBooska
提出日時 2023-06-08 19:17:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,115 ms / 4,000 ms
コード長 728 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 149,764 KB
最終ジャッジ日時 2024-12-31 03:38:31
合計ジャッジ時間 13,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,976 KB
testcase_01 AC 43 ms
55,108 KB
testcase_02 AC 43 ms
55,096 KB
testcase_03 AC 820 ms
136,516 KB
testcase_04 AC 42 ms
55,604 KB
testcase_05 AC 52 ms
65,152 KB
testcase_06 AC 97 ms
77,172 KB
testcase_07 AC 43 ms
54,048 KB
testcase_08 AC 95 ms
77,592 KB
testcase_09 AC 96 ms
77,068 KB
testcase_10 AC 46 ms
54,528 KB
testcase_11 AC 713 ms
108,668 KB
testcase_12 AC 1,086 ms
149,752 KB
testcase_13 AC 1,115 ms
145,784 KB
testcase_14 AC 1,105 ms
149,596 KB
testcase_15 AC 1,109 ms
149,752 KB
testcase_16 AC 1,092 ms
149,764 KB
testcase_17 AC 919 ms
135,844 KB
testcase_18 AC 98 ms
77,204 KB
testcase_19 AC 249 ms
86,428 KB
testcase_20 AC 62 ms
66,548 KB
testcase_21 AC 93 ms
76,904 KB
testcase_22 AC 87 ms
77,192 KB
testcase_23 AC 62 ms
67,824 KB
testcase_24 AC 1,036 ms
142,768 KB
testcase_25 AC 873 ms
136,060 KB
testcase_26 AC 264 ms
87,568 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