結果

問題 No.2178 Payable Magic Items
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-01-07 19:26:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 813 ms / 4,000 ms
コード長 931 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 180,700 KB
最終ジャッジ日時 2024-05-08 14:32:52
合計ジャッジ時間 10,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 510 ms
100,480 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 348 ms
79,276 KB
testcase_06 AC 354 ms
79,152 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 346 ms
79,404 KB
testcase_09 AC 118 ms
76,820 KB
testcase_10 AC 59 ms
66,432 KB
testcase_11 AC 593 ms
157,056 KB
testcase_12 AC 776 ms
179,072 KB
testcase_13 AC 783 ms
180,408 KB
testcase_14 AC 783 ms
180,700 KB
testcase_15 AC 787 ms
180,440 KB
testcase_16 AC 813 ms
180,480 KB
testcase_17 AC 605 ms
126,860 KB
testcase_18 AC 81 ms
76,928 KB
testcase_19 AC 183 ms
95,872 KB
testcase_20 AC 67 ms
70,272 KB
testcase_21 AC 81 ms
77,036 KB
testcase_22 AC 82 ms
77,056 KB
testcase_23 AC 68 ms
70,528 KB
testcase_24 AC 754 ms
156,544 KB
testcase_25 AC 588 ms
111,392 KB
testcase_26 AC 215 ms
102,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

def encode(lis):
    now = 0
    for j in range(K):
        now *= 5
        now += int(lis[j])
    return now

N,K = map(int,stdin.readline().split())

S = [ list(stdin.readline()[:-1]) for i in range(N) ]

dp = [0] * (5**K)

for i in range(N):

    now = 0
    for j in range(K):
        now *= 5
        now += int(S[i][j])

    dp[now] += 1

for i in range(len(dp)-1,-1,-1):

    dec = []
    itmp = i
    for j in range(K):
        dec.append(itmp % 5)
        itmp //= 5
    dec.reverse()

    #print (i,dec,"qopqowq")

    for j in range(K):
        dec[j] -= 1
        if dec[j] >= 0:
            enc = encode(dec)
            #print (i,dec,enc)
            dp[enc] += dp[i]
        dec[j] += 1



ans = 0    
for i in range(N):

    now = 0
    for j in range(K):
        now *= 5
        now += int(S[i][j])

    if dp[now] > 1:
        ans += 1

#print (dp)
print (ans)
    
0