結果

問題 No.1908 Assault for Keys
ユーザー tassei903tassei903
提出日時 2022-04-22 21:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 68,652 KB
最終ジャッジ日時 2024-06-24 02:22:33
合計ジャッジ時間 2,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,328 KB
testcase_01 AC 40 ms
52,440 KB
testcase_02 AC 65 ms
67,632 KB
testcase_03 AC 60 ms
68,596 KB
testcase_04 AC 66 ms
68,508 KB
testcase_05 AC 64 ms
67,764 KB
testcase_06 AC 69 ms
67,500 KB
testcase_07 AC 61 ms
67,776 KB
testcase_08 AC 60 ms
66,728 KB
testcase_09 AC 63 ms
67,516 KB
testcase_10 AC 61 ms
68,156 KB
testcase_11 AC 67 ms
68,652 KB
testcase_12 AC 68 ms
67,208 KB
testcase_13 AC 67 ms
66,920 KB
testcase_14 AC 68 ms
67,480 KB
testcase_15 AC 63 ms
67,056 KB
testcase_16 AC 41 ms
54,192 KB
testcase_17 AC 41 ms
53,944 KB
testcase_18 AC 65 ms
67,236 KB
testcase_19 AC 56 ms
66,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n,m = na()
a = [input() for i in range(n)]
ans = 0
for i in range(m):
    s = 0
    for j in range(n):
        if a[j][i] == "x":
            s += 1
    ans = max(ans, s+1)
print(ans)
0