結果

問題 No.1908 Assault for Keys
ユーザー ohanaohana
提出日時 2023-09-29 12:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,800 KB
実行使用メモリ 154,624 KB
最終ジャッジ日時 2024-07-22 06:58:08
合計ジャッジ時間 5,836 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 269 ms
144,256 KB
testcase_03 AC 263 ms
144,084 KB
testcase_04 AC 300 ms
154,504 KB
testcase_05 AC 267 ms
143,744 KB
testcase_06 AC 295 ms
154,624 KB
testcase_07 AC 258 ms
143,812 KB
testcase_08 AC 261 ms
143,616 KB
testcase_09 AC 263 ms
144,084 KB
testcase_10 AC 263 ms
144,128 KB
testcase_11 AC 296 ms
154,368 KB
testcase_12 AC 301 ms
154,624 KB
testcase_13 AC 272 ms
144,000 KB
testcase_14 AC 299 ms
154,240 KB
testcase_15 AC 266 ms
143,808 KB
testcase_16 AC 42 ms
53,376 KB
testcase_17 AC 52 ms
60,928 KB
testcase_18 AC 276 ms
143,360 KB
testcase_19 AC 256 ms
143,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

A = [list(input()) for i in range(n)]

A = list(zip(*A))

mn = float("inf")
for a in A:
    mn = min(mn, sum(map(lambda x: x == "o", a)))
print(n - mn + 1)
0