結果

問題 No.2015 Stair Counter
ユーザー GrayCoderGrayCoder
提出日時 2022-07-23 02:03:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,604 KB
最終ジャッジ日時 2024-07-04 11:07:32
合計ジャッジ時間 3,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 92 ms
10,752 KB
testcase_02 AC 102 ms
10,880 KB
testcase_03 AC 102 ms
10,752 KB
testcase_04 AC 90 ms
10,752 KB
testcase_05 AC 85 ms
10,752 KB
testcase_06 AC 114 ms
10,752 KB
testcase_07 AC 114 ms
10,880 KB
testcase_08 AC 113 ms
10,752 KB
testcase_09 AC 77 ms
11,136 KB
testcase_10 AC 80 ms
11,136 KB
testcase_11 AC 83 ms
11,264 KB
testcase_12 AC 82 ms
13,696 KB
testcase_13 AC 83 ms
13,824 KB
testcase_14 AC 81 ms
13,568 KB
testcase_15 AC 122 ms
23,008 KB
testcase_16 AC 153 ms
28,512 KB
testcase_17 AC 91 ms
13,440 KB
testcase_18 AC 139 ms
25,500 KB
testcase_19 AC 177 ms
29,604 KB
testcase_20 AC 91 ms
14,692 KB
testcase_21 AC 88 ms
10,880 KB
testcase_22 AC 99 ms
10,752 KB
testcase_23 AC 107 ms
10,880 KB
testcase_24 AC 93 ms
10,752 KB
testcase_25 AC 89 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def main():
    input = lambda: sys.stdin.readline()[:-1]
    T = int(input())
    for _ in [0] * T:
        N, M = map(int, input().split())
        A = [M] + list(map(int, input().split()))

        if A[0] < A[1]:
            print("No")
            continue

        a = [0] * (N + 1)
        a[0], a[1] = A[0] - A[1], A[1]
        for i in range(2, N + 1):
            a[i] += a[i - 2]
            a[i - 2] = 0
            if a[i] > A[i]:
                print("No")
                break
            if a[i - 1] + a[i] < A[i]:
                print("No")
                break
            a[i - 1] -= A[i] - a[i]
            a[i] = A[i]
        else:
            print("Yes")


if not __debug__:
    f = open(sys.argv[1], "r")
    sys.stdin = f

main()
0