結果

問題 No.2015 Stair Counter
ユーザー lloyzlloyz
提出日時 2022-07-22 21:54:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 104,716 KB
最終ジャッジ日時 2024-07-04 06:10:28
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,944 KB
testcase_01 AC 130 ms
77,040 KB
testcase_02 AC 150 ms
77,400 KB
testcase_03 AC 162 ms
77,944 KB
testcase_04 AC 118 ms
76,832 KB
testcase_05 AC 106 ms
77,056 KB
testcase_06 AC 172 ms
77,224 KB
testcase_07 AC 187 ms
77,724 KB
testcase_08 AC 173 ms
77,256 KB
testcase_09 AC 58 ms
75,492 KB
testcase_10 AC 58 ms
75,988 KB
testcase_11 AC 60 ms
75,792 KB
testcase_12 AC 56 ms
76,700 KB
testcase_13 AC 59 ms
77,464 KB
testcase_14 AC 58 ms
76,848 KB
testcase_15 AC 64 ms
85,676 KB
testcase_16 AC 80 ms
99,944 KB
testcase_17 AC 65 ms
88,644 KB
testcase_18 AC 68 ms
91,508 KB
testcase_19 AC 80 ms
104,716 KB
testcase_20 AC 71 ms
96,268 KB
testcase_21 AC 119 ms
76,664 KB
testcase_22 AC 110 ms
76,608 KB
testcase_23 AC 167 ms
77,232 KB
testcase_24 AC 136 ms
76,856 KB
testcase_25 AC 139 ms
77,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n, m = map(int, input().split())
    A = list(map(int, input().split()))
    prev = m - A[0]
    flag = True
    for i in range(1, n):
        if prev > A[i]:
            flag = False
            break
        prev = m - A[i]
    if flag:
        print("Yes")
    else:
        print("No")
0