結果

問題 No.1908 Assault for Keys
ユーザー ohanaohana
提出日時 2023-09-29 12:30:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,624 KB
最終ジャッジ日時 2024-07-22 06:51:27
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
52,136 KB
testcase_02 AC 245 ms
143,360 KB
testcase_03 AC 234 ms
143,760 KB
testcase_04 AC 271 ms
154,624 KB
testcase_05 AC 251 ms
144,412 KB
testcase_06 AC 284 ms
154,368 KB
testcase_07 AC 247 ms
143,684 KB
testcase_08 AC 236 ms
144,000 KB
testcase_09 AC 245 ms
144,128 KB
testcase_10 AC 238 ms
143,616 KB
testcase_11 AC 266 ms
154,624 KB
testcase_12 AC 268 ms
154,436 KB
testcase_13 AC 243 ms
143,924 KB
testcase_14 AC 270 ms
154,112 KB
testcase_15 AC 240 ms
144,256 KB
testcase_16 AC 37 ms
53,120 KB
testcase_17 WA -
testcase_18 AC 251 ms
143,872 KB
testcase_19 AC 241 ms
144,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

A = list(zip(*A))

mn = m
for a in A:
    mn = min(mn, sum(map(lambda x: x == "o", a)))

print(n - mn + 1)
0