結果

問題 No.2015 Stair Counter
ユーザー googol_S0googol_S0
提出日時 2022-07-22 21:45:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-07-04 05:56:11
合計ジャッジ時間 4,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,216 KB
testcase_01 AC 137 ms
77,168 KB
testcase_02 AC 152 ms
77,024 KB
testcase_03 AC 166 ms
78,208 KB
testcase_04 AC 120 ms
76,976 KB
testcase_05 AC 106 ms
76,800 KB
testcase_06 AC 174 ms
77,156 KB
testcase_07 AC 181 ms
77,864 KB
testcase_08 AC 173 ms
77,312 KB
testcase_09 AC 59 ms
75,348 KB
testcase_10 AC 58 ms
75,392 KB
testcase_11 AC 61 ms
75,264 KB
testcase_12 AC 55 ms
76,220 KB
testcase_13 AC 59 ms
77,568 KB
testcase_14 AC 59 ms
76,928 KB
testcase_15 AC 68 ms
85,376 KB
testcase_16 AC 77 ms
98,944 KB
testcase_17 AC 64 ms
88,064 KB
testcase_18 AC 69 ms
91,008 KB
testcase_19 AC 80 ms
103,040 KB
testcase_20 AC 72 ms
96,640 KB
testcase_21 AC 118 ms
76,744 KB
testcase_22 AC 108 ms
77,056 KB
testcase_23 AC 170 ms
77,664 KB
testcase_24 AC 138 ms
77,440 KB
testcase_25 AC 132 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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