結果

問題 No.2178 Payable Magic Items
ユーザー ニックネームニックネーム
提出日時 2023-01-07 01:25:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,634 ms / 4,000 ms
コード長 381 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 274,628 KB
最終ジャッジ日時 2024-12-14 18:28:17
合計ジャッジ時間 42,278 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,216 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 2,213 ms
247,852 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 2,251 ms
247,732 KB
testcase_06 AC 2,268 ms
247,932 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 2,294 ms
247,708 KB
testcase_09 AC 414 ms
105,516 KB
testcase_10 AC 56 ms
65,792 KB
testcase_11 AC 3,306 ms
267,996 KB
testcase_12 AC 3,245 ms
267,060 KB
testcase_13 AC 3,405 ms
266,664 KB
testcase_14 AC 3,362 ms
266,472 KB
testcase_15 AC 3,334 ms
266,420 KB
testcase_16 AC 3,634 ms
266,640 KB
testcase_17 AC 2,809 ms
271,932 KB
testcase_18 AC 100 ms
76,908 KB
testcase_19 AC 579 ms
118,104 KB
testcase_20 AC 65 ms
67,840 KB
testcase_21 AC 99 ms
76,928 KB
testcase_22 AC 105 ms
77,020 KB
testcase_23 AC 66 ms
67,968 KB
testcase_24 AC 3,147 ms
274,628 KB
testcase_25 AC 2,504 ms
255,876 KB
testcase_26 AC 619 ms
122,984 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