結果

問題 No.2178 Payable Magic Items
ユーザー とりゐとりゐ
提出日時 2023-01-06 22:02:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 821 ms / 4,000 ms
コード長 471 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 92,332 KB
最終ジャッジ日時 2024-12-14 17:57:15
合計ジャッジ時間 12,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
s=[]
for i in range(n):
  s.append(input())
def f(x):
  res=0
  for i in range(k):
    res*=5
    res+=int(x[i])
  return res

cum=[0]*(5**k)
for i in range(n):
  cum[f(s[i])]+=1

def int5(m):
  a=[]
  tmp=m
  for i in range(k):
    a.append(tmp%5)
    tmp//=5
  return a

for i in range(k):
  for j in range(5**k-1,-1,-1):
    if int5(j)[i]!=4:
      cum[j]+=cum[j+(5**i)]

ans=0
for i in range(n):
  if cum[f(s[i])]>1:
    ans+=1
print(ans)
0