結果

問題 No.1908 Assault for Keys
ユーザー asaringoasaringo
提出日時 2022-04-23 11:58:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 170,188 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-06-24 23:02:29
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 67 ms
8,448 KB
testcase_03 AC 65 ms
8,704 KB
testcase_04 AC 64 ms
8,704 KB
testcase_05 AC 66 ms
8,448 KB
testcase_06 AC 66 ms
8,192 KB
testcase_07 AC 65 ms
8,704 KB
testcase_08 AC 65 ms
8,832 KB
testcase_09 AC 68 ms
8,704 KB
testcase_10 AC 64 ms
8,960 KB
testcase_11 AC 66 ms
8,576 KB
testcase_12 AC 65 ms
8,832 KB
testcase_13 AC 68 ms
7,936 KB
testcase_14 AC 65 ms
8,576 KB
testcase_15 AC 63 ms
8,960 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 65 ms
7,296 KB
testcase_19 AC 63 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef long double ld ;
typedef pair<ll,ll> P ;
typedef tuple<bool,ll,ll,ll> TP ;
#define chmin(a,b) a = min(a,b)
#define chmax(a,b) a = max(a,b)
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)
#define endl "\n"

int n , m ;
char S[1010][1010] ;
vector<int> vec[1010] ;

int main(){
    cin >> n >> m ;
    rep(i,n) rep(j,m){
        cin >> S[i][j] ;
        if(S[i][j] == 'o') vec[j].push_back(i) ;
    }
    int res = 0 ;
    rep(i,m) chmax(res,n-(int)vec[i].size()+1) ;
    cout << res << endl ;
}
0