結果

問題 No.2178 Payable Magic Items
ユーザー roarisroaris
提出日時 2023-01-08 16:01:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,032 ms / 4,000 ms
コード長 711 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 83,356 KB
最終ジャッジ日時 2024-12-15 19:13:02
合計ジャッジ時間 16,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,756 KB
testcase_01 AC 31 ms
53,224 KB
testcase_02 AC 30 ms
53,972 KB
testcase_03 AC 882 ms
82,488 KB
testcase_04 AC 36 ms
52,956 KB
testcase_05 AC 838 ms
82,500 KB
testcase_06 AC 828 ms
82,604 KB
testcase_07 AC 33 ms
52,332 KB
testcase_08 AC 815 ms
82,436 KB
testcase_09 AC 206 ms
77,856 KB
testcase_10 AC 56 ms
71,632 KB
testcase_11 AC 1,032 ms
82,960 KB
testcase_12 AC 1,011 ms
83,356 KB
testcase_13 AC 1,010 ms
83,216 KB
testcase_14 AC 1,009 ms
82,980 KB
testcase_15 AC 1,016 ms
83,056 KB
testcase_16 AC 993 ms
83,008 KB
testcase_17 AC 914 ms
82,804 KB
testcase_18 AC 91 ms
77,040 KB
testcase_19 AC 245 ms
77,916 KB
testcase_20 AC 62 ms
74,544 KB
testcase_21 AC 91 ms
76,776 KB
testcase_22 AC 93 ms
77,172 KB
testcase_23 AC 63 ms
74,732 KB
testcase_24 AC 968 ms
83,260 KB
testcase_25 AC 881 ms
82,804 KB
testcase_26 AC 255 ms
78,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def fs(l):
    res = 0
    
    for i in range(K):
        res += l[i]*pow(5, i)
    
    return res

def fl(s):
    res = []
    
    for i in range(K):
        res.append(s%5)
        s //= 5
    
    return res

N, K = map(int, input().split())
exist = [0]*pow(5, K)
cnt = [0]*pow(5, K)

for _ in range(N):
    l = list(map(int, list(input()[:-1])))
    exist[fs(l)] = 1
    cnt[fs(l)] = 1

for d in range(K):
    for S in range(pow(5, K)-1, -1, -1):
        l = fl(S)
        
        if l[d]<4:
            nS = fs(l[:d]+[l[d]+1]+l[d+1:])
            cnt[S] += cnt[nS]

ans = 0

for S in range(pow(5, K)):
    if exist[S]==1 and cnt[S]>1:
        ans += 1

print(ans)
0