結果

問題 No.2178 Payable Magic Items
ユーザー ニックネームニックネーム
提出日時 2023-01-07 01:25:21
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 381 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 275,024 KB
最終ジャッジ日時 2024-05-08 13:49:57
合計ジャッジ時間 51,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
57,344 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 2,590 ms
248,320 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 2,742 ms
248,192 KB
testcase_06 AC 2,655 ms
248,064 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 2,708 ms
247,936 KB
testcase_09 AC 488 ms
105,472 KB
testcase_10 AC 65 ms
65,536 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 3,320 ms
271,712 KB
testcase_18 AC 115 ms
77,056 KB
testcase_19 AC 686 ms
118,324 KB
testcase_20 AC 74 ms
67,456 KB
testcase_21 AC 115 ms
76,928 KB
testcase_22 AC 118 ms
77,312 KB
testcase_23 AC 74 ms
67,456 KB
testcase_24 AC 3,740 ms
275,024 KB
testcase_25 AC 2,838 ms
255,888 KB
testcase_26 AC 720 ms
123,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = {tuple(map(int,input())) for _ in range(n)}
d = {}
for i in range(5**k-1, -1, -1):
    t = []
    for _ in range(k): t.append(i%5); i //= 5
    t = tuple(t); f = False
    for j in range(k):
        if t[j]<4:
            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