結果

問題 No.2836 Comment Out
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-08-09 21:37:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,132 KB
最終ジャッジ日時 2024-08-09 21:37:26
合計ジャッジ時間 6,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 90 ms
14,736 KB
testcase_08 AC 93 ms
14,736 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 139 ms
32,636 KB
testcase_15 AC 140 ms
33,004 KB
testcase_16 AC 135 ms
33,004 KB
testcase_17 WA -
testcase_18 AC 152 ms
33,120 KB
testcase_19 WA -
testcase_20 AC 137 ms
33,004 KB
testcase_21 AC 140 ms
33,004 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 84 ms
21,548 KB
testcase_25 AC 124 ms
27,396 KB
testcase_26 AC 67 ms
18,080 KB
testcase_27 AC 120 ms
26,676 KB
testcase_28 WA -
testcase_29 AC 103 ms
25,276 KB
testcase_30 AC 69 ms
19,296 KB
testcase_31 AC 101 ms
24,872 KB
testcase_32 WA -
testcase_33 AC 89 ms
21,544 KB
testcase_34 AC 61 ms
16,456 KB
testcase_35 AC 125 ms
28,676 KB
testcase_36 WA -
testcase_37 AC 117 ms
27,992 KB
testcase_38 AC 92 ms
23,096 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 113 ms
25,208 KB
testcase_42 WA -
testcase_43 AC 56 ms
15,792 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 WA -
testcase_46 AC 28 ms
10,752 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 34 ms
10,752 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 29 ms
10,752 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = [10 ** 10, A[0]]
for i in range(1, N) :
	if A[i] != A[i - 1] :
		B.append(A[i])
B.append(10 ** 10)
for i in range(1, len(B) - 1) :
	if B[i - 1] > B[i] and B[i] < B[i + 1] :
		if B[i] > 1 :
			print("No")
			exit()
print("Yes")
0