結果

問題 No.1908 Assault for Keys
ユーザー ShirotsumeShirotsume
提出日時 2022-05-29 17:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,896 KB
最終ジャッジ日時 2024-09-21 00:25:39
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,212 KB
testcase_01 AC 37 ms
53,016 KB
testcase_02 AC 146 ms
76,480 KB
testcase_03 AC 128 ms
73,780 KB
testcase_04 AC 94 ms
76,896 KB
testcase_05 AC 141 ms
76,424 KB
testcase_06 AC 137 ms
70,756 KB
testcase_07 AC 120 ms
76,836 KB
testcase_08 AC 115 ms
76,668 KB
testcase_09 AC 106 ms
76,752 KB
testcase_10 AC 120 ms
76,708 KB
testcase_11 AC 149 ms
71,724 KB
testcase_12 AC 137 ms
76,436 KB
testcase_13 AC 125 ms
76,852 KB
testcase_14 AC 127 ms
71,796 KB
testcase_15 AC 111 ms
76,684 KB
testcase_16 AC 37 ms
52,856 KB
testcase_17 AC 44 ms
60,888 KB
testcase_18 AC 72 ms
76,476 KB
testcase_19 AC 99 ms
68,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353

n, m = mi()

s = [input() for _ in range(n)]

ok = n

ng = 0

def check(k):
    for i in range(m):
        cnt = 0
        for j in range(n):
            if s[j][i] == 'x':
                cnt += 1
        if cnt >= k:
            return False
    return True

while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if check(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0