結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,032 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 500 ms
78,848 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 497 ms
78,976 KB
testcase_06 AC 499 ms
78,976 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 499 ms
78,848 KB
testcase_09 AC 129 ms
76,800 KB
testcase_10 AC 47 ms
61,184 KB
testcase_11 AC 591 ms
82,400 KB
testcase_12 AC 584 ms
82,540 KB
testcase_13 AC 597 ms
82,528 KB
testcase_14 AC 602 ms
82,592 KB
testcase_15 AC 601 ms
82,456 KB
testcase_16 AC 586 ms
82,692 KB
testcase_17 AC 538 ms
80,220 KB
testcase_18 AC 62 ms
68,864 KB
testcase_19 AC 155 ms
77,440 KB
testcase_20 AC 52 ms
63,104 KB
testcase_21 AC 62 ms
68,480 KB
testcase_22 AC 63 ms
69,888 KB
testcase_23 AC 52 ms
63,360 KB
testcase_24 AC 572 ms
81,792 KB
testcase_25 AC 525 ms
79,760 KB
testcase_26 AC 163 ms
78,196 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]

imos = [0] * (5 ** m)
for item in items:
    imos[item] = 1
for i in range(5 ** m):
    for j in range(m):
        x = i - (5 ** j) * (i // (5 ** j) % 5)
        for k in range(3, -1, -1):
            y = x + (5 ** j) * k
            imos[y] += imos[y + 5 ** j]

ans = sum(imos[item] > 1 for item in items)
print(ans)
0