結果

問題 No.1908 Assault for Keys
ユーザー asaringoasaringo
提出日時 2022-04-23 11:57:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 168,204 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-06-24 23:00:33
合計ジャッジ時間 3,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 57 ms
8,448 KB
testcase_03 AC 55 ms
8,704 KB
testcase_04 AC 57 ms
8,704 KB
testcase_05 AC 59 ms
8,448 KB
testcase_06 AC 62 ms
8,192 KB
testcase_07 AC 63 ms
8,832 KB
testcase_08 AC 55 ms
8,960 KB
testcase_09 AC 57 ms
8,704 KB
testcase_10 AC 56 ms
8,960 KB
testcase_11 AC 58 ms
8,448 KB
testcase_12 AC 56 ms
8,832 KB
testcase_13 AC 58 ms
7,936 KB
testcase_14 AC 58 ms
8,448 KB
testcase_15 AC 57 ms
8,960 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 59 ms
7,296 KB
testcase_19 AC 57 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,n) chmax(res,n-(int)vec[i].size()+1) ;
    cout << res << endl ;
}
0