結果

問題 No.2015 Stair Counter
ユーザー とりゐとりゐ
提出日時 2022-08-08 15:15:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 102,496 KB
最終ジャッジ日時 2024-09-19 01:14:58
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,412 KB
testcase_01 AC 76 ms
76,520 KB
testcase_02 AC 87 ms
76,632 KB
testcase_03 AC 86 ms
76,396 KB
testcase_04 AC 75 ms
76,240 KB
testcase_05 AC 72 ms
76,396 KB
testcase_06 AC 89 ms
76,696 KB
testcase_07 AC 92 ms
76,828 KB
testcase_08 AC 89 ms
76,780 KB
testcase_09 AC 49 ms
75,348 KB
testcase_10 AC 53 ms
75,104 KB
testcase_11 AC 53 ms
75,040 KB
testcase_12 AC 51 ms
76,048 KB
testcase_13 AC 52 ms
76,492 KB
testcase_14 AC 52 ms
76,288 KB
testcase_15 AC 60 ms
85,240 KB
testcase_16 AC 71 ms
98,856 KB
testcase_17 AC 60 ms
88,464 KB
testcase_18 AC 66 ms
91,012 KB
testcase_19 AC 78 ms
102,496 KB
testcase_20 AC 66 ms
97,176 KB
testcase_21 AC 80 ms
76,400 KB
testcase_22 AC 81 ms
76,488 KB
testcase_23 AC 88 ms
76,840 KB
testcase_24 AC 81 ms
76,540 KB
testcase_25 AC 79 ms
76,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

def solve():
  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')
      return
  print('Yes')

for _ in range(int(input())):
  solve()
0