結果

問題 No.2343 (l+r)/2
ユーザー 苏璃cx苏璃cx
提出日時 2023-06-09 22:06:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 159,272 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-10 13:22:15
合計ジャッジ時間 2,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 295 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 17 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void solve(){
	int n;
	cin >> n;
	int a[n];
	int res = 0;
	for(int i = 0; i < n; i++){
		cin >> a[i];
		res++;
	}
	for(int i = 0; i < n; i++){
		if(a[i] == 0 && a[i-1] == 0 && a[i+1] == 0){
			n--;
		}
		if(a[i] == 1 && a[i-1] == 1 && a[i+1] == 1){
			n--;
			res--;
		}
	}
	if(res * 2 == n){
		cout << "Yes" << endl;
	}
	else{
		cout << "No" << endl;
	}
}

int main(){
	int T;
	cin >> T;
	while(T--) {
	    solve();
	}
	return 0;
}
0