結果

問題 No.1908 Assault for Keys
ユーザー とりゐ
提出日時 2022-05-28 16:24:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 71,484 KB
最終ジャッジ日時 2024-09-20 22:31:49
合計ジャッジ時間 2,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
cnt=[0]*m
for _ in range(n):
  s=input()
  for i in range(m):
    if s[i]=='x':
      cnt[i]+=1

print(max(cnt)+1)
0