結果

問題 No.1908 Assault for Keys
ユーザー lilictakalilictaka
提出日時 2022-04-22 23:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 84,056 KB
最終ジャッジ日時 2024-06-24 04:24:36
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,764 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 111 ms
83,680 KB
testcase_03 AC 106 ms
83,612 KB
testcase_04 AC 107 ms
83,748 KB
testcase_05 AC 110 ms
83,496 KB
testcase_06 AC 114 ms
83,824 KB
testcase_07 AC 115 ms
84,056 KB
testcase_08 AC 105 ms
83,932 KB
testcase_09 AC 115 ms
83,540 KB
testcase_10 AC 107 ms
83,412 KB
testcase_11 AC 116 ms
83,436 KB
testcase_12 AC 111 ms
84,036 KB
testcase_13 AC 113 ms
83,376 KB
testcase_14 AC 113 ms
83,880 KB
testcase_15 AC 112 ms
83,748 KB
testcase_16 AC 38 ms
53,372 KB
testcase_17 AC 56 ms
64,156 KB
testcase_18 AC 113 ms
83,784 KB
testcase_19 AC 102 ms
83,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split()) 
S = []
def tmp(x):
    if x == 'o':
        return 1
    else:
        return 0
for _ in range(N):
    s = list(map(tmp,list(input())))
    S.append(s)
cnt = [0 for _ in range(M)]
for h in range(N):
    for w in range(M):
        cnt[w] += S[h][w]
ans = 0
for w in range(M):
    k = N-cnt[w] + 1
    ans = max(k,ans)
print(ans)


0