結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,708 KB
testcase_01 AC 38 ms
52,492 KB
testcase_02 AC 64 ms
70,236 KB
testcase_03 AC 60 ms
69,568 KB
testcase_04 AC 63 ms
70,240 KB
testcase_05 AC 68 ms
69,484 KB
testcase_06 AC 66 ms
69,956 KB
testcase_07 AC 65 ms
70,276 KB
testcase_08 AC 61 ms
69,760 KB
testcase_09 AC 65 ms
69,964 KB
testcase_10 AC 59 ms
69,836 KB
testcase_11 AC 65 ms
69,344 KB
testcase_12 AC 63 ms
69,016 KB
testcase_13 AC 67 ms
71,484 KB
testcase_14 AC 64 ms
70,332 KB
testcase_15 AC 67 ms
70,256 KB
testcase_16 AC 39 ms
52,212 KB
testcase_17 AC 54 ms
61,204 KB
testcase_18 AC 68 ms
69,400 KB
testcase_19 AC 58 ms
69,444 KB
権限があれば一括ダウンロードができます

ソースコード

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