結果

問題 No.2015 Stair Counter
ユーザー ShirotsumeShirotsume
提出日時 2022-01-13 17:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 103,516 KB
最終ジャッジ日時 2024-11-17 20:22:05
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,552 KB
testcase_01 AC 114 ms
77,308 KB
testcase_02 AC 121 ms
77,100 KB
testcase_03 AC 125 ms
77,448 KB
testcase_04 AC 107 ms
77,172 KB
testcase_05 AC 104 ms
77,248 KB
testcase_06 AC 126 ms
77,480 KB
testcase_07 AC 128 ms
77,580 KB
testcase_08 AC 126 ms
77,320 KB
testcase_09 AC 50 ms
75,376 KB
testcase_10 AC 50 ms
75,320 KB
testcase_11 AC 50 ms
75,088 KB
testcase_12 AC 46 ms
76,236 KB
testcase_13 AC 46 ms
76,588 KB
testcase_14 AC 47 ms
76,468 KB
testcase_15 AC 55 ms
86,500 KB
testcase_16 AC 66 ms
99,008 KB
testcase_17 AC 56 ms
88,704 KB
testcase_18 AC 60 ms
91,388 KB
testcase_19 AC 72 ms
103,516 KB
testcase_20 AC 65 ms
97,044 KB
testcase_21 AC 109 ms
77,312 KB
testcase_22 AC 132 ms
77,408 KB
testcase_23 AC 135 ms
77,424 KB
testcase_24 AC 112 ms
77,108 KB
testcase_25 AC 108 ms
77,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, m, a):
    ans = 'Yes'
    for i in range(0, n - 1):
        if m - a[i] < 0 or (a[i] + a[i + 1]) - m < 0:
            ans = 'No'
    return ans       
for _ in range(int(input())):
    n, m = map(int,input().split())
    a = list(map(int,input().split()))

    print(solve(n, m, a))
0