結果

問題 No.3707 Unique Ticket
コンテスト
ユーザー t98slider
提出日時 2026-09-11 21:25:47
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 373µs
コード長 680 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,101 ms
コンパイル使用メモリ 335,680 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-11 21:26:10
合計ジャッジ時間 4,357 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w;
    cin >> h >> w;
    vector<string> A(h);
    vector<int> cnt(w);
    for(auto &&s : A){
        cin >> s;
        for(int x = 0; x < w; x++){
            cnt[x] += s[x] == 'o';
        }
    }
    int ans = 0;
    for(auto &&s : A){
        bool flg = true, flg2 = false;
        for(int x = 0; x < w; x++){
            if(s[x] == 'o' && cnt[x] >= 2){
                flg = false;
                break;
            }
            if(s[x] == 'o') flg2 = true;
        }
        ans += (flg && flg2);
    }
    cout << ans << '\n';
}
0