結果

問題 No.2836 Comment Out
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-08-09 21:35:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-08-09 21:35:22
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 100 ms
15,344 KB
testcase_08 AC 101 ms
15,396 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 95 ms
32,640 KB
testcase_15 AC 98 ms
32,640 KB
testcase_16 AC 95 ms
32,640 KB
testcase_17 WA -
testcase_18 AC 95 ms
32,764 KB
testcase_19 WA -
testcase_20 AC 98 ms
32,612 KB
testcase_21 AC 101 ms
32,640 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 60 ms
21,276 KB
testcase_25 AC 84 ms
27,404 KB
testcase_26 AC 52 ms
18,076 KB
testcase_27 AC 79 ms
26,364 KB
testcase_28 WA -
testcase_29 AC 72 ms
25,060 KB
testcase_30 AC 53 ms
19,172 KB
testcase_31 AC 72 ms
24,868 KB
testcase_32 WA -
testcase_33 AC 64 ms
21,544 KB
testcase_34 AC 45 ms
16,584 KB
testcase_35 AC 85 ms
28,672 KB
testcase_36 WA -
testcase_37 AC 82 ms
28,120 KB
testcase_38 AC 65 ms
22,916 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 73 ms
25,212 KB
testcase_42 WA -
testcase_43 AC 44 ms
15,792 KB
testcase_44 AC 27 ms
10,624 KB
testcase_45 WA -
testcase_46 AC 28 ms
10,880 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 26 ms
10,752 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 26 ms
10,752 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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