結果

問題 No.1908 Assault for Keys
ユーザー とりゐとりゐ
提出日時 2022-05-28 16:24:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 70,736 KB
最終ジャッジ日時 2023-10-20 23:13:38
合計ジャッジ時間 2,696 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,512 KB
testcase_01 AC 38 ms
53,512 KB
testcase_02 AC 66 ms
70,736 KB
testcase_03 AC 62 ms
70,736 KB
testcase_04 AC 63 ms
70,736 KB
testcase_05 AC 67 ms
70,736 KB
testcase_06 AC 69 ms
70,736 KB
testcase_07 AC 67 ms
70,736 KB
testcase_08 AC 62 ms
68,688 KB
testcase_09 AC 67 ms
70,736 KB
testcase_10 AC 60 ms
68,688 KB
testcase_11 AC 68 ms
70,736 KB
testcase_12 AC 63 ms
68,688 KB
testcase_13 AC 67 ms
70,736 KB
testcase_14 AC 66 ms
70,736 KB
testcase_15 AC 68 ms
70,736 KB
testcase_16 AC 38 ms
53,512 KB
testcase_17 AC 51 ms
61,116 KB
testcase_18 AC 70 ms
70,736 KB
testcase_19 AC 57 ms
68,664 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