結果

問題 No.2836 Comment Out
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 21:31:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 116,836 KB
最終ジャッジ日時 2024-08-09 21:31:11
合計ジャッジ時間 7,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
72,348 KB
testcase_01 AC 67 ms
73,296 KB
testcase_02 AC 67 ms
72,528 KB
testcase_03 AC 65 ms
73,392 KB
testcase_04 AC 66 ms
72,596 KB
testcase_05 AC 66 ms
73,432 KB
testcase_06 AC 73 ms
72,256 KB
testcase_07 AC 103 ms
111,920 KB
testcase_08 AC 108 ms
111,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 114 ms
116,628 KB
testcase_15 AC 113 ms
116,456 KB
testcase_16 AC 127 ms
116,552 KB
testcase_17 WA -
testcase_18 AC 115 ms
116,564 KB
testcase_19 WA -
testcase_20 AC 116 ms
116,600 KB
testcase_21 AC 116 ms
116,616 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 97 ms
94,552 KB
testcase_25 AC 105 ms
110,076 KB
testcase_26 AC 102 ms
90,780 KB
testcase_27 AC 101 ms
105,160 KB
testcase_28 WA -
testcase_29 AC 105 ms
104,116 KB
testcase_30 AC 92 ms
91,360 KB
testcase_31 AC 102 ms
101,908 KB
testcase_32 WA -
testcase_33 AC 94 ms
96,648 KB
testcase_34 AC 85 ms
87,252 KB
testcase_35 AC 110 ms
108,508 KB
testcase_36 WA -
testcase_37 AC 119 ms
108,208 KB
testcase_38 AC 97 ms
98,928 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 103 ms
104,332 KB
testcase_42 WA -
testcase_43 AC 85 ms
85,260 KB
testcase_44 AC 67 ms
71,948 KB
testcase_45 WA -
testcase_46 AC 72 ms
73,392 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 73 ms
71,972 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 65 ms
72,976 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) - 1):
    if abs(a[i] - a[i + 1]) > 1:
        print('No')
        exit()
print('Yes')
0