結果

問題 No.2015 Stair Counter
ユーザー ThetaTheta
提出日時 2022-10-27 10:44:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,428 KB
最終ジャッジ日時 2024-07-04 20:58:24
合計ジャッジ時間 4,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 104 ms
10,624 KB
testcase_02 AC 130 ms
10,752 KB
testcase_03 AC 132 ms
10,752 KB
testcase_04 AC 101 ms
10,752 KB
testcase_05 AC 85 ms
10,624 KB
testcase_06 AC 151 ms
10,624 KB
testcase_07 AC 152 ms
10,624 KB
testcase_08 AC 155 ms
10,624 KB
testcase_09 AC 63 ms
11,264 KB
testcase_10 AC 64 ms
11,136 KB
testcase_11 AC 66 ms
11,264 KB
testcase_12 AC 61 ms
13,424 KB
testcase_13 AC 61 ms
13,440 KB
testcase_14 AC 64 ms
13,432 KB
testcase_15 AC 87 ms
23,092 KB
testcase_16 AC 108 ms
28,328 KB
testcase_17 AC 66 ms
13,368 KB
testcase_18 AC 100 ms
25,580 KB
testcase_19 AC 124 ms
29,428 KB
testcase_20 AC 71 ms
14,612 KB
testcase_21 AC 97 ms
10,624 KB
testcase_22 AC 126 ms
10,624 KB
testcase_23 AC 149 ms
10,752 KB
testcase_24 AC 103 ms
10,624 KB
testcase_25 AC 103 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    for _ in range(int(input())):
        N, M = map(int, input().split())
        A = list(map(int, input().split()))

        before = M
        before2 = 0
        for a in A:
            if a - before2 < 0 or a - before2 > before:
                print("No")
                break

            before, before2 = a, before - (a - before2)
        else:
            print("Yes")


if __name__ == "__main__":
    main()
0