結果

問題 No.1908 Assault for Keys
ユーザー Theta
提出日時 2022-11-02 13:25:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-07-17 03:16:50
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M = map(int, input().split())
    keys = [list(input()) for _ in range(N)]
    keys_t = [list(elm) for elm in zip(*keys)]
    not_have_keys = list(map(lambda elm: elm.count("x"), keys_t))
    print(max(not_have_keys)+1)


if __name__ == "__main__":
    main()
0