結果

問題 No.2015 Stair Counter
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-03 14:24:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 103,244 KB
最終ジャッジ日時 2024-09-13 06:28:36
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,896 KB
testcase_01 AC 133 ms
77,396 KB
testcase_02 AC 155 ms
77,256 KB
testcase_03 AC 168 ms
77,992 KB
testcase_04 AC 121 ms
76,972 KB
testcase_05 AC 108 ms
76,540 KB
testcase_06 AC 175 ms
77,040 KB
testcase_07 AC 181 ms
78,132 KB
testcase_08 AC 173 ms
77,048 KB
testcase_09 AC 58 ms
75,292 KB
testcase_10 AC 59 ms
75,368 KB
testcase_11 AC 59 ms
75,604 KB
testcase_12 AC 56 ms
76,224 KB
testcase_13 AC 57 ms
77,316 KB
testcase_14 AC 59 ms
77,060 KB
testcase_15 AC 66 ms
85,816 KB
testcase_16 AC 77 ms
98,944 KB
testcase_17 AC 65 ms
88,836 KB
testcase_18 AC 70 ms
91,420 KB
testcase_19 AC 80 ms
103,244 KB
testcase_20 AC 72 ms
96,644 KB
testcase_21 AC 121 ms
76,956 KB
testcase_22 AC 109 ms
76,804 KB
testcase_23 AC 172 ms
77,504 KB
testcase_24 AC 139 ms
76,808 KB
testcase_25 AC 134 ms
77,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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