結果

問題 No.3707 Unique Ticket
コンテスト
ユーザー t98slider
提出日時 2026-09-11 21:23:03
言語 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
結果
WA  
実行時間 -
コード長 615 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,999 ms
コンパイル使用メモリ 335,684 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-11 21:23:10
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 23 WA * 22
権限があれば一括ダウンロードができます

ソースコード

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 = false;
        for(int x = 0; x < w; x++){
            if(s[x] == 'o' && cnt[x] == 1){
                flg = true;
                break;
            }
        }
        ans += flg;
    }
    cout << ans << '\n';
}
0