結果

問題 No.2015 Stair Counter
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-02 14:23:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 103,124 KB
最終ジャッジ日時 2024-09-02 14:24:02
合計ジャッジ時間 5,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,620 KB
testcase_01 AC 96 ms
76,336 KB
testcase_02 AC 112 ms
76,504 KB
testcase_03 AC 119 ms
76,332 KB
testcase_04 AC 94 ms
76,560 KB
testcase_05 AC 86 ms
76,476 KB
testcase_06 AC 134 ms
76,616 KB
testcase_07 AC 137 ms
76,704 KB
testcase_08 AC 139 ms
77,076 KB
testcase_09 AC 58 ms
75,924 KB
testcase_10 AC 58 ms
75,576 KB
testcase_11 AC 62 ms
75,648 KB
testcase_12 AC 57 ms
76,676 KB
testcase_13 AC 61 ms
77,060 KB
testcase_14 AC 62 ms
77,532 KB
testcase_15 AC 67 ms
87,136 KB
testcase_16 AC 84 ms
99,288 KB
testcase_17 AC 70 ms
90,932 KB
testcase_18 AC 71 ms
92,376 KB
testcase_19 AC 81 ms
103,124 KB
testcase_20 AC 78 ms
98,636 KB
testcase_21 AC 92 ms
76,572 KB
testcase_22 AC 110 ms
76,536 KB
testcase_23 AC 138 ms
76,800 KB
testcase_24 AC 97 ms
76,344 KB
testcase_25 AC 96 ms
76,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
	n,m=map(int,input().split())
	a=list(map(int,input().split()))
	f=1
	for i in range(n-1):
		f&=(m-a[i])+(m-a[i+1])<=m
	print(["No","Yes"][f])
0