結果

問題 No.923 オセロきりきざむたん
ユーザー 沙耶花沙耶花
提出日時 2024-12-06 23:33:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 633 bytes
コンパイル時間 4,166 ms
コンパイル使用メモリ 267,008 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-06 23:33:45
合計ジャッジ時間 7,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,248 KB
testcase_25 WA -
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 WA -
testcase_37 AC 2 ms
5,248 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 3 ms
5,248 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 7 ms
5,248 KB
testcase_51 AC 7 ms
5,248 KB
testcase_52 AC 6 ms
5,248 KB
testcase_53 AC 11 ms
5,248 KB
testcase_54 AC 6 ms
5,248 KB
testcase_55 AC 7 ms
5,248 KB
testcase_56 AC 8 ms
5,248 KB
testcase_57 WA -
testcase_58 AC 2 ms
5,248 KB
testcase_59 WA -
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 WA -
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 18 ms
6,528 KB
testcase_66 AC 17 ms
6,528 KB
testcase_67 AC 18 ms
6,272 KB
testcase_68 AC 16 ms
6,400 KB
testcase_69 AC 7 ms
5,248 KB
testcase_70 AC 7 ms
5,248 KB
testcase_71 AC 16 ms
6,272 KB
testcase_72 AC 7 ms
5,248 KB
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 6 ms
5,248 KB
testcase_76 WA -
testcase_77 AC 5 ms
5,248 KB
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 5 ms
5,248 KB
testcase_81 AC 4 ms
5,248 KB
testcase_82 AC 4 ms
5,248 KB
testcase_83 WA -
testcase_84 WA -
testcase_85 AC 5 ms
5,248 KB
testcase_86 WA -
testcase_87 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

int main(){
	
	int h,w;
	cin>>h>>w;
	vector<string> s(h);
	rep(i,h)cin>>s[i];
	bool f = true;
	rep(i,h){
		set<char> S;
		rep(j,w)S.insert(s[i][j]);
		if(S.size()==1)f = false;
	}
	if(f)cout<<"YES"<<endl;
	else{
		f =true;
		rep(i,w){
			set<char> S;
			rep(j,h)S.insert(s[j][i]);
			if(S.size()==1)f = false;
		}
	}
	if(f)cout<<"YES"<<endl;
	else cout<<"NO"<<endl;
	
	return 0;
}
0