結果

問題 No.2836 Comment Out
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 21:42:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 125,808 KB
最終ジャッジ日時 2024-08-09 21:42:12
合計ジャッジ時間 7,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
72,564 KB
testcase_01 AC 67 ms
72,132 KB
testcase_02 AC 66 ms
72,432 KB
testcase_03 AC 66 ms
72,712 KB
testcase_04 AC 66 ms
72,720 KB
testcase_05 AC 66 ms
71,816 KB
testcase_06 AC 66 ms
72,548 KB
testcase_07 AC 121 ms
125,808 KB
testcase_08 AC 120 ms
125,804 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 114 ms
116,788 KB
testcase_15 AC 118 ms
116,624 KB
testcase_16 AC 126 ms
116,720 KB
testcase_17 WA -
testcase_18 AC 114 ms
116,496 KB
testcase_19 WA -
testcase_20 AC 117 ms
116,620 KB
testcase_21 AC 115 ms
116,604 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 96 ms
94,568 KB
testcase_25 AC 108 ms
110,088 KB
testcase_26 AC 89 ms
91,024 KB
testcase_27 AC 105 ms
104,964 KB
testcase_28 WA -
testcase_29 AC 103 ms
104,052 KB
testcase_30 AC 91 ms
91,348 KB
testcase_31 AC 101 ms
101,964 KB
testcase_32 WA -
testcase_33 AC 98 ms
96,568 KB
testcase_34 AC 85 ms
87,268 KB
testcase_35 AC 111 ms
108,556 KB
testcase_36 WA -
testcase_37 AC 111 ms
108,260 KB
testcase_38 AC 99 ms
98,908 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 102 ms
104,320 KB
testcase_42 WA -
testcase_43 AC 82 ms
85,516 KB
testcase_44 AC 66 ms
72,132 KB
testcase_45 WA -
testcase_46 AC 66 ms
72,940 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 69 ms
73,004 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 67 ms
72,752 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()
A = []
for i in range(n + 1):
    A.append(a[i + 1] - a[i])
cnt = 0
ans = 'Yes'
for i in range(len(A)):
    cnt += A[i]
    if cnt < 0:
        ans = 'No'
        break
if cnt != 0:
    ans = 'No'
print(ans)
0