結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2023-10-31 23:56:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 749 ms / 4,000 ms
コード長 650 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 148,600 KB
最終ジャッジ日時 2024-09-25 17:46:46
合計ジャッジ時間 11,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 663 ms
136,048 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 665 ms
135,796 KB
testcase_06 AC 670 ms
135,668 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 684 ms
135,792 KB
testcase_09 AC 157 ms
89,696 KB
testcase_10 AC 50 ms
61,696 KB
testcase_11 AC 729 ms
146,688 KB
testcase_12 AC 749 ms
146,312 KB
testcase_13 AC 733 ms
146,564 KB
testcase_14 AC 736 ms
146,696 KB
testcase_15 AC 709 ms
146,688 KB
testcase_16 AC 735 ms
146,444 KB
testcase_17 AC 693 ms
148,600 KB
testcase_18 AC 81 ms
75,008 KB
testcase_19 AC 180 ms
92,416 KB
testcase_20 AC 57 ms
63,360 KB
testcase_21 AC 80 ms
74,240 KB
testcase_22 AC 82 ms
76,544 KB
testcase_23 AC 54 ms
63,616 KB
testcase_24 AC 735 ms
139,372 KB
testcase_25 AC 672 ms
140,872 KB
testcase_26 AC 185 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def to_num(s):
    ret = 0
    for c in s:
        x = ord(c) - ord('0')
        ret *= 5
        ret += x
    return ret


n, m = map(int, input().split())
items = [to_num(input()[:-1]) for _ in [0] * n]

dp = [0] * (5 ** m)
for item in items:
    dp[item] = 1
visited = set([])
for i in range(m):
    for j in range(5 ** m):
        x = j - (5 ** i) * (j // (5 ** i) % 5)
        if((x, i) in visited):
            continue
        visited.add((x, i))
        for k in range(3, -1, -1):
            y = x + (5 ** i) * k
            dp[y] += dp[y + 5 ** i]
ans = sum(dp[item] > 1 for item in items)
print(ans)
0