結果

問題 No.1908 Assault for Keys
ユーザー TsubajiroTsubajiro
提出日時 2022-05-16 19:11:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-09-14 12:03:25
合計ジャッジ時間 7,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 321 ms
11,648 KB
testcase_03 AC 347 ms
11,648 KB
testcase_04 AC 350 ms
11,904 KB
testcase_05 AC 328 ms
11,904 KB
testcase_06 AC 316 ms
11,776 KB
testcase_07 AC 339 ms
11,776 KB
testcase_08 AC 359 ms
11,648 KB
testcase_09 AC 333 ms
11,648 KB
testcase_10 AC 347 ms
11,776 KB
testcase_11 AC 330 ms
11,776 KB
testcase_12 AC 322 ms
11,776 KB
testcase_13 AC 323 ms
11,648 KB
testcase_14 AC 324 ms
11,776 KB
testcase_15 AC 335 ms
11,904 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 283 ms
11,776 KB
testcase_19 AC 361 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = list(map(int, input().split()))
S = []
for _ in range(N):
    S.append(input())
from collections import defaultdict
dict = defaultdict(int)

for i in range(N):
    for j in range(M):
        if S[i][j]=="o":
            dict[j]+=1
minc = 10**10
for v in dict.values():
    minc = min(minc,v)

ans = N-minc+1

print(ans)
0