結果

問題 No.2015 Stair Counter
ユーザー siganaisiganai
提出日時 2022-07-22 21:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 101,284 KB
最終ジャッジ日時 2024-07-04 05:21:31
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,956 KB
testcase_01 AC 98 ms
77,964 KB
testcase_02 AC 111 ms
78,108 KB
testcase_03 AC 111 ms
78,128 KB
testcase_04 AC 96 ms
78,140 KB
testcase_05 AC 93 ms
77,664 KB
testcase_06 AC 120 ms
78,340 KB
testcase_07 AC 112 ms
78,308 KB
testcase_08 AC 115 ms
78,304 KB
testcase_09 AC 73 ms
77,780 KB
testcase_10 AC 72 ms
77,584 KB
testcase_11 AC 75 ms
77,520 KB
testcase_12 AC 72 ms
78,348 KB
testcase_13 AC 74 ms
78,256 KB
testcase_14 AC 73 ms
78,772 KB
testcase_15 AC 79 ms
91,128 KB
testcase_16 AC 101 ms
98,196 KB
testcase_17 AC 78 ms
95,868 KB
testcase_18 AC 92 ms
92,824 KB
testcase_19 AC 103 ms
101,284 KB
testcase_20 AC 96 ms
98,924 KB
testcase_21 AC 94 ms
77,808 KB
testcase_22 AC 106 ms
78,204 KB
testcase_23 AC 114 ms
78,600 KB
testcase_24 AC 102 ms
78,076 KB
testcase_25 AC 101 ms
78,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline

t = int(input())
for _ in range(t):
    n,m = map(int,input().split())
    a = list(map(int,input().split()))
    if a[-1] != m:
        print('No')
        continue
    for i in range(1,n-1):
        if a[i] + a[i-1] < m:
            print('No')
            break
    else:
        print('Yes')
0