結果

問題 No.2178 Payable Magic Items
ユーザー mkawa2mkawa2
提出日時 2023-01-06 22:46:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 977 ms / 4,000 ms
コード長 1,362 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-05-08 13:38:25
合計ジャッジ時間 11,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 43 ms
54,144 KB
testcase_03 AC 191 ms
79,452 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 66 ms
66,816 KB
testcase_06 AC 82 ms
79,660 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 79 ms
79,732 KB
testcase_09 AC 70 ms
77,184 KB
testcase_10 AC 45 ms
59,904 KB
testcase_11 AC 547 ms
92,416 KB
testcase_12 AC 878 ms
92,016 KB
testcase_13 AC 897 ms
92,160 KB
testcase_14 AC 943 ms
92,160 KB
testcase_15 AC 977 ms
92,032 KB
testcase_16 AC 975 ms
92,360 KB
testcase_17 AC 820 ms
82,864 KB
testcase_18 AC 92 ms
77,056 KB
testcase_19 AC 243 ms
79,104 KB
testcase_20 AC 61 ms
70,144 KB
testcase_21 AC 86 ms
77,080 KB
testcase_22 AC 89 ms
77,152 KB
testcase_23 AC 63 ms
71,040 KB
testcase_24 AC 886 ms
87,808 KB
testcase_25 AC 709 ms
80,688 KB
testcase_26 AC 269 ms
79,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

from collections import Counter

def pack(ss):
    res = 0
    for s in ss[::-1]: res = res*5+s
    return res

def unpack(a):
    res = []
    while a:
        a, r = divmod(a, 5)
        res.append(r)
    res += [0]*(k-len(res))
    return res

n, k = LI()
tt = [0]*(5**k)
ss = []
for _ in range(n):
    s = pack([int(c) for c in SI()])
    tt[s] = 1
    ss.append(s)

for i in range(k):
    for s in range(5**k)[::-1]:
        if tt[s] == 0: continue
        dd = unpack(s)
        if dd[i] == 0: continue
        dd[i] -= 1
        ns = pack(dd)
        tt[ns] += tt[s]

ans = 0
for s in ss:
    if tt[s] > 1: ans += 1

print(ans)
0