結果

問題 No.2015 Stair Counter
ユーザー ああいいああいい
提出日時 2022-07-24 07:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-07-05 23:26:21
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 131 ms
76,928 KB
testcase_02 AC 137 ms
77,568 KB
testcase_03 AC 137 ms
77,364 KB
testcase_04 AC 125 ms
77,444 KB
testcase_05 AC 123 ms
77,056 KB
testcase_06 AC 144 ms
77,312 KB
testcase_07 AC 146 ms
77,312 KB
testcase_08 AC 148 ms
77,148 KB
testcase_09 AC 56 ms
75,168 KB
testcase_10 AC 58 ms
75,008 KB
testcase_11 AC 58 ms
75,008 KB
testcase_12 AC 54 ms
75,520 KB
testcase_13 AC 55 ms
76,544 KB
testcase_14 AC 56 ms
76,032 KB
testcase_15 AC 62 ms
84,480 KB
testcase_16 AC 75 ms
97,664 KB
testcase_17 AC 63 ms
87,808 KB
testcase_18 AC 68 ms
90,112 KB
testcase_19 AC 79 ms
101,888 KB
testcase_20 AC 70 ms
96,384 KB
testcase_21 AC 126 ms
77,056 KB
testcase_22 AC 138 ms
77,440 KB
testcase_23 AC 143 ms
77,432 KB
testcase_24 AC 130 ms
77,328 KB
testcase_25 AC 127 ms
77,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def calc(N,M,A):
    stop = M
    over = 0
    for a in A:
        if a > M:
            return 'No'
        
        if over <= a:
            pass
        else:
            return 'No'
        stop = a
        over = M - a
    return 'Yes'

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