結果
| 問題 |
No.923 オセロきりきざむたん
|
| コンテスト | |
| ユーザー |
rhincodon66
|
| 提出日時 | 2019-11-08 22:56:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 1,007 bytes |
| コンパイル時間 | 1,526 ms |
| コンパイル使用メモリ | 170,452 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2024-09-15 02:53:29 |
| 合計ジャッジ時間 | 3,605 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 84 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<long long,long long> pll;
#define pb push_back
#define mp make_pair
#define rep(i,n) for(int i=0;i<(n);++i)
constexpr int mod=1000000007;
constexpr int mod1=998244353;
vector<int> dx={0,1,0,-1},dy={-1,0,1,0};
bool inside(int y,int x,int h,int w){
if(y<h && y>=0 && x<w && x>=0) return true;
return false;
}
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
int h,w;cin >> h >> w;
vector<string> s(h);
rep(i,h) cin >> s.at(i);
bool ok = true;
rep(i,h){
bool black = false, white = false;
rep(j,w){
if(s[i][j] == '0') black = true;
else white = true;
}
if(!black || !white) ok = false;
}
if(ok){
cout << "YES" << endl;
return 0;
}
ok = true;
rep(i,w){
bool black = false, white = false;
rep(j,h){
if(s[j][i] == '0') black = true;
else white = true;
}
if(!black || !white) ok = false;
}
if(ok) cout << "YES" << endl;
else cout << "NO" << endl;
}
rhincodon66