結果

問題 No.2015 Stair Counter
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-30 16:40:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,784 KB
最終ジャッジ日時 2024-07-20 13:28:50
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 104 ms
76,544 KB
testcase_02 AC 120 ms
76,800 KB
testcase_03 AC 134 ms
76,928 KB
testcase_04 AC 96 ms
76,160 KB
testcase_05 AC 88 ms
76,672 KB
testcase_06 AC 119 ms
76,636 KB
testcase_07 AC 143 ms
77,056 KB
testcase_08 AC 155 ms
76,788 KB
testcase_09 AC 60 ms
75,356 KB
testcase_10 AC 60 ms
75,264 KB
testcase_11 AC 60 ms
75,776 KB
testcase_12 AC 57 ms
76,288 KB
testcase_13 AC 59 ms
77,056 KB
testcase_14 AC 61 ms
76,928 KB
testcase_15 AC 64 ms
84,736 KB
testcase_16 AC 78 ms
99,200 KB
testcase_17 AC 67 ms
88,704 KB
testcase_18 AC 71 ms
90,752 KB
testcase_19 AC 82 ms
102,784 KB
testcase_20 AC 74 ms
96,768 KB
testcase_21 AC 101 ms
76,272 KB
testcase_22 AC 128 ms
76,656 KB
testcase_23 AC 129 ms
76,404 KB
testcase_24 AC 101 ms
76,152 KB
testcase_25 AC 112 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n,m = map(int,input().split())
    a = list(map(int,input().split()))
    ans = "Yes"
    for i in range(1,n-1):
        if (m - a[i-1]) > a[i]:ans = "No"
    print(ans)
0