結果

問題 No.2518 Adjacent Larger
ユーザー ks2mks2m
提出日時 2023-10-27 21:44:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,384 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 78,288 KB
実行使用メモリ 64,404 KB
最終ジャッジ日時 2024-09-25 13:49:55
合計ジャッジ時間 8,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,028 KB
testcase_01 AC 193 ms
55,856 KB
testcase_02 AC 181 ms
55,372 KB
testcase_03 AC 194 ms
55,764 KB
testcase_04 AC 187 ms
55,872 KB
testcase_05 AC 192 ms
55,484 KB
testcase_06 AC 144 ms
54,828 KB
testcase_07 AC 145 ms
54,780 KB
testcase_08 AC 147 ms
54,996 KB
testcase_09 AC 143 ms
54,980 KB
testcase_10 AC 145 ms
54,892 KB
testcase_11 AC 128 ms
54,372 KB
testcase_12 AC 135 ms
54,616 KB
testcase_13 AC 135 ms
54,608 KB
testcase_14 AC 130 ms
54,480 KB
testcase_15 AC 134 ms
54,984 KB
testcase_16 AC 232 ms
63,780 KB
testcase_17 AC 171 ms
60,620 KB
testcase_18 AC 176 ms
60,440 KB
testcase_19 AC 165 ms
58,292 KB
testcase_20 AC 181 ms
60,408 KB
testcase_21 AC 218 ms
64,012 KB
testcase_22 AC 222 ms
63,792 KB
testcase_23 AC 241 ms
63,776 KB
testcase_24 AC 229 ms
63,736 KB
testcase_25 AC 226 ms
64,000 KB
testcase_26 AC 224 ms
63,780 KB
testcase_27 AC 224 ms
64,096 KB
testcase_28 AC 243 ms
64,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		label:
		for (int z = 0; z < t; z++) {
			int n = Integer.parseInt(br.readLine());
			String[] sa = br.readLine().split(" ");
			int[] a = new int[n];
			int[] c = new int[3];
			for (int i = 0; i < n; i++) {
				a[i] = Integer.parseInt(sa[i]);
				c[a[i]]++;
			}

			int sum = c[1] + c[2] * 2;
			if (sum != n || c[0] == 0 || c[2] == 0) {
				pw.println("No");
				continue;
			}

			int start = -1;
			for (int i = 0; i < n; i++) {
				if (a[i] == 2) {
					start = i;
					break;
				}
			}

			boolean up = true;
			for (int i = start + 1; i < start + n; i++) {
				int x = i % n;
				if (up) {
					if (a[x] == 0) {
						up = false;
					} else if (a[x] == 1) {
						up = true;
					} else {
						pw.println("No");
						continue label;
					}
				} else {
					if (a[x] == 0) {
						pw.println("No");
						continue label;
					} else if (a[x] == 1) {
						up = false;
					} else {
						up = true;
					}
				}
			}
			if (up) {
				pw.println("No");
			} else {
				pw.println("Yes");
			}
		}
		pw.flush();
		br.close();
	}
}
0