結果

問題 No.2518 Adjacent Larger
ユーザー hiro1729hiro1729
提出日時 2023-10-27 21:44:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 115,704 KB
最終ジャッジ日時 2024-09-25 13:50:00
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,912 KB
testcase_01 AC 205 ms
78,584 KB
testcase_02 AC 211 ms
78,064 KB
testcase_03 AC 212 ms
78,880 KB
testcase_04 AC 208 ms
78,960 KB
testcase_05 AC 210 ms
78,808 KB
testcase_06 AC 120 ms
77,220 KB
testcase_07 AC 98 ms
76,404 KB
testcase_08 AC 110 ms
76,652 KB
testcase_09 AC 96 ms
76,672 KB
testcase_10 AC 106 ms
76,592 KB
testcase_11 AC 56 ms
73,176 KB
testcase_12 AC 57 ms
73,736 KB
testcase_13 AC 55 ms
72,972 KB
testcase_14 AC 56 ms
72,812 KB
testcase_15 AC 55 ms
73,168 KB
testcase_16 AC 86 ms
109,800 KB
testcase_17 AC 69 ms
89,440 KB
testcase_18 AC 68 ms
89,300 KB
testcase_19 AC 65 ms
85,332 KB
testcase_20 AC 76 ms
96,760 KB
testcase_21 AC 80 ms
107,076 KB
testcase_22 AC 81 ms
107,752 KB
testcase_23 AC 88 ms
111,108 KB
testcase_24 AC 73 ms
96,024 KB
testcase_25 AC 74 ms
97,412 KB
testcase_26 AC 72 ms
97,460 KB
testcase_27 AC 86 ms
113,000 KB
testcase_28 AC 90 ms
115,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	n = int(input())
	a = list(map(int, input().split()))
	b = []
	for i in a:
		if i != 1:
			b.append(i)
	print("Yes" if 0 in b and 2 in b and all(b[i] != b[(i + 1) % len(b)] for i in range(len(b))) else "No")
0