結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,936 KB
testcase_01 AC 35 ms
52,688 KB
testcase_02 AC 38 ms
53,260 KB
testcase_03 AC 944 ms
82,724 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 876 ms
82,560 KB
testcase_06 AC 870 ms
82,636 KB
testcase_07 AC 32 ms
52,320 KB
testcase_08 AC 845 ms
82,444 KB
testcase_09 AC 195 ms
78,080 KB
testcase_10 AC 53 ms
71,296 KB
testcase_11 AC 997 ms
83,028 KB
testcase_12 AC 985 ms
83,032 KB
testcase_13 AC 1,026 ms
82,964 KB
testcase_14 AC 984 ms
83,040 KB
testcase_15 AC 978 ms
83,584 KB
testcase_16 AC 1,013 ms
83,456 KB
testcase_17 AC 927 ms
82,944 KB
testcase_18 AC 88 ms
77,260 KB
testcase_19 AC 230 ms
77,952 KB
testcase_20 AC 57 ms
74,716 KB
testcase_21 AC 85 ms
77,180 KB
testcase_22 AC 82 ms
77,184 KB
testcase_23 AC 59 ms
75,276 KB
testcase_24 AC 941 ms
83,100 KB
testcase_25 AC 889 ms
82,896 KB
testcase_26 AC 259 ms
78,080 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