結果

問題 No.2836 Comment Out
ユーザー hato336hato336
提出日時 2024-08-09 21:30:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 102,412 KB
最終ジャッジ日時 2024-08-09 21:30:08
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,876 KB
testcase_01 AC 35 ms
52,420 KB
testcase_02 AC 34 ms
53,068 KB
testcase_03 AC 36 ms
52,596 KB
testcase_04 AC 33 ms
53,156 KB
testcase_05 AC 35 ms
52,436 KB
testcase_06 AC 35 ms
52,316 KB
testcase_07 AC 75 ms
101,752 KB
testcase_08 AC 73 ms
101,320 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 87 ms
101,860 KB
testcase_15 AC 96 ms
102,088 KB
testcase_16 AC 92 ms
101,844 KB
testcase_17 WA -
testcase_18 AC 94 ms
102,264 KB
testcase_19 WA -
testcase_20 AC 91 ms
102,108 KB
testcase_21 AC 93 ms
101,828 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 59 ms
82,172 KB
testcase_25 AC 71 ms
96,344 KB
testcase_26 AC 51 ms
75,568 KB
testcase_27 AC 67 ms
92,980 KB
testcase_28 WA -
testcase_29 AC 67 ms
91,812 KB
testcase_30 AC 52 ms
77,620 KB
testcase_31 AC 65 ms
90,544 KB
testcase_32 WA -
testcase_33 AC 58 ms
82,292 KB
testcase_34 AC 50 ms
71,500 KB
testcase_35 AC 77 ms
98,256 KB
testcase_36 WA -
testcase_37 AC 71 ms
97,184 KB
testcase_38 AC 66 ms
86,624 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 71 ms
92,328 KB
testcase_42 WA -
testcase_43 AC 49 ms
68,868 KB
testcase_44 AC 37 ms
53,124 KB
testcase_45 WA -
testcase_46 AC 38 ms
52,812 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 34 ms
52,704 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 36 ms
52,756 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
if min(a) <= 1 and all(abs(a[i]-a[i+1]) <= 1 for i in range(n-1)):
    print('Yes')
else:
    print('No')
0