結果

問題 No.2518 Adjacent Larger
ユーザー ks2mks2m
提出日時 2023-10-27 21:35:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 721 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 64,104 KB
最終ジャッジ日時 2024-09-25 13:40:38
合計ジャッジ時間 8,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,024 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 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 228 ms
63,728 KB
testcase_22 AC 223 ms
63,692 KB
testcase_23 WA -
testcase_24 AC 222 ms
63,620 KB
testcase_25 WA -
testcase_26 AC 220 ms
64,104 KB
testcase_27 AC 225 ms
63,660 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
		for (int z = 0; z < t; z++) {
			int n = Integer.parseInt(br.readLine());
			String[] sa = br.readLine().split(" ");
			int[] c = new int[3];
			for (int i = 0; i < n; i++) {
				int a = Integer.parseInt(sa[i]);
				c[a]++;
			}

			if (c[0] == 1 && c[2] == 1 && c[1] == n - 2) {
				pw.println("Yes");
			} else {
				pw.println("No");
			}
		}
		pw.flush();
		br.close();
	}
}
0