結果

問題 No.2518 Adjacent Larger
ユーザー k82bk82b
提出日時 2023-10-28 01:10:51
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,263 bytes
コンパイル時間 1,438 ms
コンパイル使用メモリ 177,956 KB
実行使用メモリ 10,064 KB
最終ジャッジ日時 2024-09-25 15:53:07
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 23 ms
10,040 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 10 ms
5,376 KB
testcase_20 AC 15 ms
5,732 KB
testcase_21 AC 19 ms
9,932 KB
testcase_22 AC 18 ms
9,932 KB
testcase_23 AC 22 ms
9,932 KB
testcase_24 AC 21 ms
9,752 KB
testcase_25 AC 19 ms
9,936 KB
testcase_26 AC 20 ms
10,064 KB
testcase_27 AC 18 ms
9,936 KB
testcase_28 AC 20 ms
10,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main()
{
	const TE = readInt;
	foreach (_; 0 .. TE) {
		const N = readInt;
		auto A = new int[N];
		foreach (i; 0 .. N) {
			A[i] = readInt;
		}
		bool ans = true;
		foreach (i; 0 .. N) {
			ans = ans && !(A[i] == 2 && A[(i + 1) % N] == 2);
			ans = ans && !(A[i] == 0 && A[(i + 1) % N] == 0);
			ans = ans && !(A[(i - 1 + N) % N] == 0 && A[i] == 1 && A[(i + 1) % N] == 0);
			ans = ans && !(A[(i - 1 + N) % N] == 2 && A[i] == 1 && A[(i + 1) % N] == 2);
		}
		ans = ans && cast(int)(A.count(1)) < N;
		ans = ans && A.sum == N;
		writeln(ans ? "Yes" : "No");
	}
}

import std,core.bitop;
string[]_R;
string readString(){while(_R.empty){_R=readln.chomp.split;}auto ret=_R.front;_R.popFront;return ret;}
int readInt(){return readString.to!int;}
long readLong(){return readString.to!long;}
ulong readULong(){return readString.to!ulong;}
real readReal(){return readString.to!real;}
bool chmin(T)(ref T A,T B){if(A>B){A=B;return true;}else{return false;}}
bool chmax(T)(ref T A,T B){if(A<B){A=B;return true;}else{return false;}}
int lowerBound(T)(T[]A,T x){int L=-1,R=cast(int)A.length;while(R-L>1){int mid=(L+R)/2;(A[mid]<x?L:R)=mid;}return R;}
int upperBound(T)(T[]A,T x){int L=-1,R=cast(int)A.length;while(R-L>1){int mid=(L+R)/2;(A[mid]<=x?L:R)=mid;}return R;}
0