結果

問題 No.1908 Assault for Keys
ユーザー AEnAEn
提出日時 2022-05-11 23:13:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 86,864 KB
実行使用メモリ 76,976 KB
最終ジャッジ日時 2023-09-26 14:56:29
合計ジャッジ時間 5,307 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,192 KB
testcase_01 AC 73 ms
71,164 KB
testcase_02 AC 103 ms
76,532 KB
testcase_03 AC 95 ms
76,840 KB
testcase_04 AC 97 ms
76,544 KB
testcase_05 AC 100 ms
76,684 KB
testcase_06 AC 102 ms
76,880 KB
testcase_07 AC 101 ms
76,764 KB
testcase_08 AC 95 ms
76,572 KB
testcase_09 AC 101 ms
76,544 KB
testcase_10 AC 92 ms
76,976 KB
testcase_11 AC 102 ms
76,684 KB
testcase_12 AC 98 ms
76,828 KB
testcase_13 AC 100 ms
76,432 KB
testcase_14 AC 99 ms
76,532 KB
testcase_15 AC 101 ms
76,716 KB
testcase_16 AC 75 ms
71,336 KB
testcase_17 AC 87 ms
75,212 KB
testcase_18 AC 107 ms
76,672 KB
testcase_19 AC 92 ms
76,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
lock = [0]*M
for i in range(N):
    S = input()
    for j in range(M):
        if S[j] == 'x':
            lock[j] += 1
print(max(lock)+1)
0