結果

問題 No.1908 Assault for Keys
ユーザー ああいいああいい
提出日時 2022-04-22 21:06:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 70,708 KB
最終ジャッジ日時 2024-06-24 02:02:12
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,484 KB
testcase_01 AC 39 ms
53,004 KB
testcase_02 AC 70 ms
70,616 KB
testcase_03 AC 62 ms
69,560 KB
testcase_04 AC 63 ms
70,248 KB
testcase_05 AC 67 ms
69,420 KB
testcase_06 AC 73 ms
69,712 KB
testcase_07 AC 67 ms
69,900 KB
testcase_08 AC 64 ms
69,436 KB
testcase_09 AC 70 ms
70,040 KB
testcase_10 AC 63 ms
69,344 KB
testcase_11 AC 69 ms
69,692 KB
testcase_12 AC 65 ms
69,708 KB
testcase_13 AC 66 ms
69,832 KB
testcase_14 AC 64 ms
70,708 KB
testcase_15 AC 65 ms
69,424 KB
testcase_16 AC 39 ms
53,100 KB
testcase_17 AC 51 ms
61,800 KB
testcase_18 AC 67 ms
70,592 KB
testcase_19 AC 58 ms
69,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
count = [0] * M
for _ in range(N):
    S = input()
    for i in range(M):
        if S[i] == "o":
            count[i] += 1
ans = min(count)
print(N - ans + 1)
#print(count)
0