結果

問題 No.2015 Stair Counter
ユーザー ramdosramdos
提出日時 2022-01-18 20:09:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,524 KB
最終ジャッジ日時 2024-06-09 19:11:03
合計ジャッジ時間 4,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 102 ms
10,752 KB
testcase_02 AC 121 ms
10,624 KB
testcase_03 AC 131 ms
10,752 KB
testcase_04 AC 91 ms
10,752 KB
testcase_05 AC 82 ms
10,752 KB
testcase_06 AC 142 ms
10,752 KB
testcase_07 AC 146 ms
10,496 KB
testcase_08 AC 147 ms
10,624 KB
testcase_09 AC 62 ms
11,136 KB
testcase_10 AC 62 ms
11,136 KB
testcase_11 AC 64 ms
11,136 KB
testcase_12 AC 59 ms
13,240 KB
testcase_13 AC 66 ms
13,440 KB
testcase_14 AC 61 ms
13,544 KB
testcase_15 AC 88 ms
22,936 KB
testcase_16 AC 110 ms
28,300 KB
testcase_17 AC 72 ms
13,340 KB
testcase_18 AC 104 ms
25,424 KB
testcase_19 AC 126 ms
29,524 KB
testcase_20 AC 76 ms
14,720 KB
testcase_21 AC 98 ms
10,752 KB
testcase_22 AC 121 ms
10,752 KB
testcase_23 AC 145 ms
10,752 KB
testcase_24 AC 101 ms
10,752 KB
testcase_25 AC 97 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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