結果

問題 No.2015 Stair Counter
ユーザー KudeKude
提出日時 2022-07-22 21:26:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 105,140 KB
最終ジャッジ日時 2024-07-04 05:23:10
合計ジャッジ時間 3,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,936 KB
testcase_01 AC 109 ms
76,500 KB
testcase_02 AC 118 ms
77,084 KB
testcase_03 AC 140 ms
77,140 KB
testcase_04 AC 103 ms
77,044 KB
testcase_05 AC 100 ms
76,608 KB
testcase_06 AC 126 ms
76,608 KB
testcase_07 AC 127 ms
77,000 KB
testcase_08 AC 127 ms
76,648 KB
testcase_09 AC 59 ms
75,580 KB
testcase_10 AC 58 ms
75,316 KB
testcase_11 AC 61 ms
75,960 KB
testcase_12 AC 56 ms
76,572 KB
testcase_13 AC 59 ms
77,208 KB
testcase_14 AC 59 ms
77,324 KB
testcase_15 AC 64 ms
88,272 KB
testcase_16 AC 78 ms
101,564 KB
testcase_17 AC 65 ms
90,844 KB
testcase_18 AC 69 ms
93,108 KB
testcase_19 AC 80 ms
105,140 KB
testcase_20 AC 72 ms
100,592 KB
testcase_21 AC 103 ms
76,616 KB
testcase_22 AC 114 ms
76,616 KB
testcase_23 AC 132 ms
77,228 KB
testcase_24 AC 106 ms
76,724 KB
testcase_25 AC 107 ms
76,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, m = map(int, input().split())
    a = [0, m] + list(map(int, input().split()))
    for i in range(2, n + 2):
        x = a[i]
        x -= a[i - 2]
        if x < 0:
            print('No')
            break
        x = min(x, a[i-1])
        a[i-1] -= x
    else:
        print('Yes')
0