結果
問題 | No.2178 Payable Magic Items |
ユーザー | mkawa2 |
提出日時 | 2023-01-06 22:46:35 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,171 ms / 4,000 ms |
コード長 | 1,362 bytes |
コンパイル時間 | 390 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 92,328 KB |
最終ジャッジ日時 | 2024-12-14 18:03:11 |
合計ジャッジ時間 | 12,474 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
54,800 KB |
testcase_01 | AC | 44 ms
54,124 KB |
testcase_02 | AC | 44 ms
54,092 KB |
testcase_03 | AC | 231 ms
79,332 KB |
testcase_04 | AC | 43 ms
54,688 KB |
testcase_05 | AC | 68 ms
67,784 KB |
testcase_06 | AC | 88 ms
79,240 KB |
testcase_07 | AC | 43 ms
53,892 KB |
testcase_08 | AC | 83 ms
79,272 KB |
testcase_09 | AC | 75 ms
76,812 KB |
testcase_10 | AC | 47 ms
60,308 KB |
testcase_11 | AC | 710 ms
92,328 KB |
testcase_12 | AC | 1,108 ms
92,100 KB |
testcase_13 | AC | 1,171 ms
92,168 KB |
testcase_14 | AC | 1,165 ms
92,104 KB |
testcase_15 | AC | 1,141 ms
92,156 KB |
testcase_16 | AC | 1,128 ms
92,316 KB |
testcase_17 | AC | 942 ms
82,660 KB |
testcase_18 | AC | 95 ms
76,828 KB |
testcase_19 | AC | 269 ms
78,852 KB |
testcase_20 | AC | 64 ms
70,760 KB |
testcase_21 | AC | 94 ms
76,844 KB |
testcase_22 | AC | 93 ms
76,692 KB |
testcase_23 | AC | 65 ms
71,820 KB |
testcase_24 | AC | 1,056 ms
87,732 KB |
testcase_25 | AC | 822 ms
80,712 KB |
testcase_26 | AC | 283 ms
80,160 KB |
ソースコード
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)