結果

問題 No.2836 Comment Out
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 21:34:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 116,864 KB
最終ジャッジ日時 2024-08-09 21:34:37
合計ジャッジ時間 7,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,808 KB
testcase_01 AC 68 ms
71,936 KB
testcase_02 AC 68 ms
71,808 KB
testcase_03 AC 69 ms
71,680 KB
testcase_04 AC 73 ms
71,680 KB
testcase_05 AC 69 ms
71,808 KB
testcase_06 AC 67 ms
71,936 KB
testcase_07 AC 112 ms
112,128 KB
testcase_08 AC 112 ms
112,076 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 119 ms
116,668 KB
testcase_15 AC 119 ms
116,500 KB
testcase_16 AC 116 ms
116,628 KB
testcase_17 WA -
testcase_18 AC 121 ms
116,576 KB
testcase_19 WA -
testcase_20 AC 122 ms
116,480 KB
testcase_21 AC 120 ms
116,684 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 99 ms
94,724 KB
testcase_25 AC 111 ms
110,100 KB
testcase_26 AC 87 ms
90,740 KB
testcase_27 AC 101 ms
104,960 KB
testcase_28 WA -
testcase_29 AC 125 ms
104,192 KB
testcase_30 AC 96 ms
91,204 KB
testcase_31 AC 101 ms
102,144 KB
testcase_32 WA -
testcase_33 AC 93 ms
96,672 KB
testcase_34 AC 85 ms
87,212 KB
testcase_35 AC 106 ms
108,416 KB
testcase_36 WA -
testcase_37 AC 107 ms
108,416 KB
testcase_38 AC 98 ms
98,944 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 104 ms
104,320 KB
testcase_42 WA -
testcase_43 AC 88 ms
85,120 KB
testcase_44 AC 71 ms
71,680 KB
testcase_45 WA -
testcase_46 AC 64 ms
71,808 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 64 ms
71,808 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 66 ms
71,936 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
import logging
from logging import debug, error, info, warning
logging.basicConfig(level=logging.DEBUG)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
a = [0] + li() + [0]

for i in range(len(a)):
    if (i + 1 < len(a) and abs(a[i] - a[i + 1]) <= 1) or (i - 1 >= 0 and abs(a[i] - a[i - 1]) <= 1):
        pass
    else:
        print("No")
        exit()
print("Yes")
        
0