結果
問題 | No.2518 Adjacent Larger |
ユーザー | k82b |
提出日時 | 2023-10-28 00:53:22 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,104 bytes |
コンパイル時間 | 2,102 ms |
コンパイル使用メモリ | 178,016 KB |
実行使用メモリ | 11,928 KB |
最終ジャッジ日時 | 2024-09-25 15:51:11 |
合計ジャッジ時間 | 3,348 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 21 ms
11,928 KB |
testcase_17 | AC | 11 ms
6,944 KB |
testcase_18 | AC | 12 ms
6,940 KB |
testcase_19 | AC | 9 ms
6,940 KB |
testcase_20 | AC | 14 ms
6,940 KB |
testcase_21 | AC | 18 ms
11,676 KB |
testcase_22 | AC | 18 ms
11,136 KB |
testcase_23 | AC | 21 ms
11,512 KB |
testcase_24 | AC | 19 ms
11,924 KB |
testcase_25 | AC | 20 ms
11,320 KB |
testcase_26 | AC | 21 ms
11,588 KB |
testcase_27 | AC | 18 ms
11,148 KB |
testcase_28 | AC | 19 ms
11,696 KB |
ソースコード
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 && 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;}