結果

問題 No.2015 Stair Counter
ユーザー 👑 KazunKazun
提出日時 2022-07-22 21:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-07-04 05:34:56
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,M=map(int,input().split())
    A=[0]+list(map(int,input().split()))

    X=[0]*(N+1); X[0]=M
    for i in range(N):
        if X[i]+X[i+1]<A[i+1]:
            return False
        if i+2<=N:
            X[i+2]+=(X[i]+X[i+1])-A[i+1]
            if X[i+2]>A[i+2]:
                return False

        X[i+1]=A[i+1]
        X[i]=0
    return True

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

T=int(input())

Ans=[0]*T
for t in range(T):
    Ans[t]="Yes" if solve() else "No"

write("\n".join(Ans))
0