結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 2,049 ms
96,516 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 89 ms
13,832 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 91 ms
13,700 KB
testcase_09 AC 59 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,607 ms
87,804 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 325 ms
25,556 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 44 ms
11,520 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 412 ms
26,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
from functools import lru_cache
setrecursionlimit(10**6)
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