結果

問題 No.2178 Payable Magic Items
ユーザー mkawa2mkawa2
提出日時 2023-01-06 22:46:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,192 ms / 4,000 ms
コード長 1,362 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 93,608 KB
最終ジャッジ日時 2023-08-21 08:20:50
合計ジャッジ時間 13,990 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
71,756 KB
testcase_01 AC 89 ms
71,524 KB
testcase_02 AC 90 ms
71,552 KB
testcase_03 AC 265 ms
80,880 KB
testcase_04 AC 88 ms
71,384 KB
testcase_05 AC 112 ms
80,476 KB
testcase_06 AC 126 ms
80,584 KB
testcase_07 AC 89 ms
71,692 KB
testcase_08 AC 126 ms
80,620 KB
testcase_09 AC 118 ms
78,084 KB
testcase_10 AC 96 ms
76,640 KB
testcase_11 AC 770 ms
93,608 KB
testcase_12 AC 1,181 ms
93,468 KB
testcase_13 AC 1,148 ms
93,312 KB
testcase_14 AC 1,181 ms
93,300 KB
testcase_15 AC 1,184 ms
93,580 KB
testcase_16 AC 1,192 ms
93,376 KB
testcase_17 AC 1,050 ms
83,600 KB
testcase_18 AC 135 ms
78,212 KB
testcase_19 AC 323 ms
80,848 KB
testcase_20 AC 112 ms
77,780 KB
testcase_21 AC 137 ms
78,608 KB
testcase_22 AC 137 ms
78,400 KB
testcase_23 AC 113 ms
77,596 KB
testcase_24 AC 1,135 ms
89,084 KB
testcase_25 AC 884 ms
82,492 KB
testcase_26 AC 336 ms
81,672 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