結果

問題 No.2178 Payable Magic Items
ユーザー ニックネームニックネーム
提出日時 2023-01-07 00:55:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 116,924 KB
最終ジャッジ日時 2024-05-08 13:46:17
合計ジャッジ時間 18,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 2,082 ms
96,504 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 89 ms
13,824 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 87 ms
13,692 KB
testcase_09 AC 64 ms
12,416 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,629 ms
87,660 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 321 ms
25,416 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 43 ms
11,520 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 416 ms
26,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
n,k = map(int,input().split())
a = {tuple(map(int,input())) for _ in range(n)}
@lru_cache(maxsize=None)
def main(s):
    for i in range(k):
        if s[i]:
            t = list(s); t[i] -= 1; t = tuple(t)
            if t in a or main(t): return True
    return False
ans = 0
for s in a:
    if main(s): ans += 1
print(ans)
0