結果

問題 No.1908 Assault for Keys
ユーザー titan23titan23
提出日時 2022-06-24 20:53:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-11-08 16:43:17
合計ジャッジ時間 3,450 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 73 ms
66,688 KB
testcase_03 AC 66 ms
66,432 KB
testcase_04 AC 70 ms
66,560 KB
testcase_05 AC 71 ms
66,432 KB
testcase_06 AC 71 ms
66,432 KB
testcase_07 AC 69 ms
66,432 KB
testcase_08 AC 67 ms
66,432 KB
testcase_09 AC 69 ms
66,688 KB
testcase_10 AC 66 ms
66,432 KB
testcase_11 AC 72 ms
66,432 KB
testcase_12 AC 71 ms
66,304 KB
testcase_13 AC 72 ms
66,432 KB
testcase_14 AC 71 ms
66,560 KB
testcase_15 AC 68 ms
66,688 KB
testcase_16 AC 41 ms
52,608 KB
testcase_17 AC 40 ms
52,608 KB
testcase_18 AC 70 ms
66,304 KB
testcase_19 AC 62 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n, m = map(int, input().split())
S = [input() for _ in range(n)]

ans = 0
for j in range(m):
  cnt = 0
  for i in range(n):
    if S[i][j] == 'x':
      cnt += 1
  ans = max(ans, cnt)
print(ans + 1)
0