結果

問題 No.2178 Payable Magic Items
ユーザー ニックネームニックネーム
提出日時 2023-01-07 01:18:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 274,892 KB
最終ジャッジ日時 2024-12-14 18:24:13
合計ジャッジ時間 41,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,984 KB
testcase_01 AC 39 ms
52,336 KB
testcase_02 AC 39 ms
52,740 KB
testcase_03 AC 2,233 ms
247,820 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 2,261 ms
248,000 KB
testcase_06 AC 2,246 ms
248,176 KB
testcase_07 AC 39 ms
53,024 KB
testcase_08 AC 2,257 ms
248,420 KB
testcase_09 AC 414 ms
105,692 KB
testcase_10 AC 57 ms
66,852 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 3,335 ms
266,504 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 577 ms
118,076 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 98 ms
77,156 KB
testcase_23 AC 62 ms
68,460 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 616 ms
123,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = {tuple(map(int,input())) for _ in range(n)}
d = {}
for i in range(5**k):
    t = []
    for _ in range(k): t.append(i%5); i //= 5
    t = tuple(t); f = False
    for j in range(k):
        if t[j]:
            u = list(t); u[j] -= 1; u = tuple(u)
            f |= u in a or d[u]
    d[t] = f
ans = 0
for s in a: ans += d[s]
print(ans)
0