結果

問題 No.2015 Stair Counter
ユーザー H3PO4H3PO4
提出日時 2022-07-22 21:25:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 101,188 KB
最終ジャッジ日時 2024-07-04 05:21:26
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

def solve(N, M, A):
    for i in range(N - 1):
        if A[i] + A[i + 1] < M:
            return False
    return True


T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    A = tuple(map(int, input().split()))
    print("Yes" if solve(N, M, A) else "No")
0