結果
| 問題 | No.3707 Unique Ticket |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-11 21:25:47 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 373µs | |
| コード長 | 680 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
#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';
}