結果
問題 | No.2518 Adjacent Larger |
ユーザー | InTheBloom |
提出日時 | 2023-10-27 22:49:41 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,390 bytes |
コンパイル時間 | 2,707 ms |
コンパイル使用メモリ | 177,340 KB |
実行使用メモリ | 8,400 KB |
最終ジャッジ日時 | 2024-09-25 14:51:28 |
合計ジャッジ時間 | 4,210 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
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 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 14 ms
6,940 KB |
testcase_18 | AC | 15 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 19 ms
6,956 KB |
testcase_22 | AC | 19 ms
7,004 KB |
testcase_23 | WA | - |
testcase_24 | AC | 21 ms
6,972 KB |
testcase_25 | AC | 22 ms
7,456 KB |
testcase_26 | AC | 22 ms
8,400 KB |
testcase_27 | AC | 18 ms
7,104 KB |
testcase_28 | WA | - |
ソースコード
import std; void main () { int T = readln.chomp.to!int; foreach (_; 0..T) { int N = readln.split[0].to!int; int[] A = readln.split.to!(int[]); auto ans = solve(N, A); writeln(ans); } } auto solve (int N, int[] A) { /** * 必要条件 * - 0と2が少なくとも1つ * - 0と2は同じものが連続することがない * - 0と2は同じ数だけ存在 * かなー未証明だけど提出チャレンジする * * WAした。まだなんか抜けてるみたい */ int zero = 0, two = 0; foreach (a; A) { if (a == 0) zero++; if (a == 2) two++; } if (zero != two || zero == 0 || two == 0) return "No"; foreach (i; 0..A.length) { if (A[i] == 0 || A[i] == 2) { if (A[i] == A[(i+1)%A.length]) return "No"; } } bool isNextZero = false; bool first = true; foreach (a; chain(A, A)) { if (first && a == 0) { isNextZero = false; first = false; } if (first && a == 2) { isNextZero = true; first = false; } if (first) continue; if (a == 0 && !isNextZero) { return "No"; } else { isNextZero = false; } if (a == 2 && isNextZero) { return "No"; } else { isNextZero = true; } } return "Yes"; }