結果

問題 No.1908 Assault for Keys
ユーザー 👑 rin204rin204
提出日時 2022-04-22 21:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 86,976 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2023-09-06 07:35:50
合計ジャッジ時間 3,936 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,412 KB
testcase_01 AC 76 ms
71,324 KB
testcase_02 AC 122 ms
76,500 KB
testcase_03 AC 98 ms
76,616 KB
testcase_04 AC 99 ms
76,916 KB
testcase_05 AC 101 ms
76,672 KB
testcase_06 AC 105 ms
76,552 KB
testcase_07 AC 102 ms
77,016 KB
testcase_08 AC 95 ms
76,616 KB
testcase_09 AC 101 ms
76,520 KB
testcase_10 AC 98 ms
76,672 KB
testcase_11 AC 103 ms
76,620 KB
testcase_12 AC 101 ms
76,632 KB
testcase_13 AC 102 ms
76,772 KB
testcase_14 AC 100 ms
76,620 KB
testcase_15 AC 101 ms
76,676 KB
testcase_16 AC 75 ms
71,352 KB
testcase_17 AC 89 ms
75,072 KB
testcase_18 AC 105 ms
76,620 KB
testcase_19 AC 93 ms
76,536 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