結果

問題 No.2015 Stair Counter
ユーザー pluto77pluto77
提出日時 2023-01-17 16:36:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,536 KB
最終ジャッジ日時 2024-06-10 19:57:59
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 126 ms
10,752 KB
testcase_02 AC 145 ms
10,752 KB
testcase_03 AC 151 ms
10,752 KB
testcase_04 AC 109 ms
10,752 KB
testcase_05 AC 97 ms
10,752 KB
testcase_06 AC 171 ms
10,752 KB
testcase_07 AC 168 ms
10,624 KB
testcase_08 AC 170 ms
10,624 KB
testcase_09 AC 76 ms
11,264 KB
testcase_10 AC 78 ms
11,136 KB
testcase_11 AC 78 ms
11,136 KB
testcase_12 AC 74 ms
13,388 KB
testcase_13 AC 75 ms
13,568 KB
testcase_14 AC 77 ms
13,536 KB
testcase_15 AC 100 ms
23,068 KB
testcase_16 AC 128 ms
28,436 KB
testcase_17 AC 95 ms
13,480 KB
testcase_18 AC 111 ms
25,432 KB
testcase_19 AC 141 ms
29,536 KB
testcase_20 AC 109 ms
14,724 KB
testcase_21 AC 114 ms
10,752 KB
testcase_22 AC 139 ms
10,624 KB
testcase_23 AC 160 ms
10,624 KB
testcase_24 AC 117 ms
10,752 KB
testcase_25 AC 116 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
 N,M=map(int,input().split())
 A=list(map(int,input().split()))
 x=True
 for i in range(N-1):
  if A[i]+A[i+1]<M:
   x=False
 if x:
  print("Yes")
 else:
  print("No")
0