結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 90 ms
76,264 KB
testcase_02 AC 106 ms
76,244 KB
testcase_03 AC 93 ms
76,188 KB
testcase_04 AC 85 ms
76,068 KB
testcase_05 AC 84 ms
76,544 KB
testcase_06 AC 108 ms
76,148 KB
testcase_07 AC 112 ms
76,764 KB
testcase_08 AC 93 ms
76,472 KB
testcase_09 AC 63 ms
75,784 KB
testcase_10 AC 64 ms
75,520 KB
testcase_11 AC 66 ms
75,648 KB
testcase_12 AC 65 ms
76,672 KB
testcase_13 AC 68 ms
77,440 KB
testcase_14 AC 66 ms
76,928 KB
testcase_15 AC 70 ms
87,552 KB
testcase_16 AC 87 ms
100,736 KB
testcase_17 AC 74 ms
91,136 KB
testcase_18 AC 78 ms
92,928 KB
testcase_19 AC 90 ms
104,704 KB
testcase_20 AC 79 ms
99,760 KB
testcase_21 AC 89 ms
76,080 KB
testcase_22 AC 93 ms
76,416 KB
testcase_23 AC 94 ms
76,288 KB
testcase_24 AC 88 ms
76,232 KB
testcase_25 AC 100 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

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