結果

問題 No.2836 Comment Out
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 21:46:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 130,516 KB
最終ジャッジ日時 2024-08-09 21:46:48
合計ジャッジ時間 7,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,552 KB
testcase_01 AC 67 ms
71,808 KB
testcase_02 AC 66 ms
71,680 KB
testcase_03 AC 67 ms
71,680 KB
testcase_04 WA -
testcase_05 AC 70 ms
71,680 KB
testcase_06 AC 67 ms
71,680 KB
testcase_07 WA -
testcase_08 AC 124 ms
125,568 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 138 ms
116,508 KB
testcase_15 AC 116 ms
116,480 KB
testcase_16 AC 112 ms
116,480 KB
testcase_17 AC 130 ms
130,432 KB
testcase_18 AC 118 ms
116,560 KB
testcase_19 AC 130 ms
130,432 KB
testcase_20 AC 119 ms
116,608 KB
testcase_21 AC 120 ms
116,480 KB
testcase_22 AC 132 ms
130,516 KB
testcase_23 AC 147 ms
130,432 KB
testcase_24 AC 96 ms
94,616 KB
testcase_25 AC 110 ms
110,036 KB
testcase_26 AC 89 ms
90,480 KB
testcase_27 AC 118 ms
104,844 KB
testcase_28 AC 126 ms
115,108 KB
testcase_29 AC 111 ms
104,192 KB
testcase_30 AC 99 ms
91,072 KB
testcase_31 AC 101 ms
101,888 KB
testcase_32 AC 92 ms
89,600 KB
testcase_33 AC 107 ms
96,680 KB
testcase_34 AC 85 ms
87,220 KB
testcase_35 AC 111 ms
108,416 KB
testcase_36 AC 104 ms
101,220 KB
testcase_37 AC 110 ms
108,164 KB
testcase_38 AC 101 ms
98,688 KB
testcase_39 AC 113 ms
107,628 KB
testcase_40 AC 118 ms
111,128 KB
testcase_41 AC 103 ms
104,320 KB
testcase_42 AC 119 ms
119,812 KB
testcase_43 AC 96 ms
85,120 KB
testcase_44 AC 68 ms
71,808 KB
testcase_45 WA -
testcase_46 AC 65 ms
71,808 KB
testcase_47 WA -
testcase_48 AC 64 ms
71,680 KB
testcase_49 AC 65 ms
71,680 KB
testcase_50 AC 66 ms
71,552 KB
testcase_51 AC 66 ms
71,808 KB
testcase_52 WA -
testcase_53 AC 69 ms
71,552 KB
testcase_54 AC 67 ms
71,680 KB
testcase_55 AC 68 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

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]
A = []
if 1 not in a:
    print('No')
    exit()
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