結果

問題 No.1908 Assault for Keys
ユーザー dangodango
提出日時 2023-06-25 14:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,888 KB
最終ジャッジ日時 2024-07-02 13:23:18
合計ジャッジ時間 2,998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,348 KB
testcase_01 AC 37 ms
52,332 KB
testcase_02 AC 83 ms
76,324 KB
testcase_03 AC 81 ms
76,404 KB
testcase_04 AC 82 ms
76,688 KB
testcase_05 AC 86 ms
76,412 KB
testcase_06 AC 83 ms
76,552 KB
testcase_07 AC 84 ms
75,904 KB
testcase_08 AC 80 ms
76,452 KB
testcase_09 AC 83 ms
76,416 KB
testcase_10 AC 81 ms
76,812 KB
testcase_11 AC 84 ms
76,288 KB
testcase_12 AC 82 ms
76,688 KB
testcase_13 AC 85 ms
76,332 KB
testcase_14 AC 82 ms
75,952 KB
testcase_15 AC 83 ms
76,160 KB
testcase_16 AC 38 ms
52,708 KB
testcase_17 AC 50 ms
61,564 KB
testcase_18 AC 87 ms
76,888 KB
testcase_19 AC 65 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = [input().strip() for _ in range(N)]
cnts = [0] * M
for s in S:
    for i, x in enumerate(s):
        if x == 'o':
            cnts[i] += 1
print(N - min(cnts) + 1)
0