結果

問題 No.2178 Payable Magic Items
ユーザー roarisroaris
提出日時 2023-01-08 16:10:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 4,000 ms
コード長 589 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,060 KB
最終ジャッジ日時 2024-05-09 08:17:41
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,736 KB
testcase_01 AC 31 ms
51,712 KB
testcase_02 AC 30 ms
51,840 KB
testcase_03 AC 127 ms
68,608 KB
testcase_04 AC 31 ms
52,480 KB
testcase_05 AC 129 ms
68,992 KB
testcase_06 AC 128 ms
68,608 KB
testcase_07 AC 31 ms
51,968 KB
testcase_08 AC 124 ms
68,864 KB
testcase_09 AC 57 ms
63,488 KB
testcase_10 AC 36 ms
59,648 KB
testcase_11 AC 289 ms
82,432 KB
testcase_12 AC 276 ms
82,728 KB
testcase_13 AC 294 ms
83,060 KB
testcase_14 AC 275 ms
82,612 KB
testcase_15 AC 276 ms
82,688 KB
testcase_16 AC 291 ms
82,552 KB
testcase_17 AC 189 ms
82,432 KB
testcase_18 AC 64 ms
76,160 KB
testcase_19 AC 99 ms
77,440 KB
testcase_20 AC 43 ms
63,360 KB
testcase_21 AC 64 ms
76,544 KB
testcase_22 AC 63 ms
76,396 KB
testcase_23 AC 43 ms
64,384 KB
testcase_24 AC 237 ms
82,432 KB
testcase_25 AC 163 ms
82,344 KB
testcase_26 AC 110 ms
77,512 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

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):
        v = S//pow(5, d)%5
        
        if v<4:
            nS = S+pow(5, d)
            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