結果

問題 No.1908 Assault for Keys
ユーザー KudeKude
提出日時 2022-04-22 21:02:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 87,316 KB
実行使用メモリ 77,532 KB
最終ジャッジ日時 2023-09-06 07:14:16
合計ジャッジ時間 3,520 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,556 KB
testcase_01 AC 69 ms
71,336 KB
testcase_02 AC 109 ms
77,216 KB
testcase_03 AC 105 ms
77,308 KB
testcase_04 AC 106 ms
76,968 KB
testcase_05 AC 107 ms
77,244 KB
testcase_06 AC 109 ms
77,532 KB
testcase_07 AC 108 ms
77,308 KB
testcase_08 AC 105 ms
77,076 KB
testcase_09 AC 110 ms
77,044 KB
testcase_10 AC 106 ms
77,288 KB
testcase_11 AC 107 ms
77,252 KB
testcase_12 AC 108 ms
77,204 KB
testcase_13 AC 109 ms
77,112 KB
testcase_14 AC 109 ms
77,216 KB
testcase_15 AC 108 ms
77,252 KB
testcase_16 AC 72 ms
71,112 KB
testcase_17 AC 84 ms
75,140 KB
testcase_18 AC 111 ms
77,248 KB
testcase_19 AC 90 ms
76,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
d = [n + 1] * m
for _ in range(n):
    for i, c in enumerate(input()):
        if c == 'o':
            d[i] -= 1
print(max(d))
0