結果

問題 No.2015 Stair Counter
ユーザー tamatotamato
提出日時 2022-07-22 21:23:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-07-04 05:19:49
合計ジャッジ時間 3,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 72 ms
76,452 KB
testcase_02 AC 76 ms
76,288 KB
testcase_03 AC 82 ms
76,356 KB
testcase_04 AC 75 ms
76,360 KB
testcase_05 AC 73 ms
76,276 KB
testcase_06 AC 93 ms
76,424 KB
testcase_07 AC 96 ms
76,544 KB
testcase_08 AC 89 ms
76,328 KB
testcase_09 AC 53 ms
75,136 KB
testcase_10 AC 53 ms
75,136 KB
testcase_11 AC 55 ms
75,292 KB
testcase_12 AC 52 ms
75,776 KB
testcase_13 AC 55 ms
77,056 KB
testcase_14 AC 64 ms
76,032 KB
testcase_15 AC 63 ms
83,840 KB
testcase_16 AC 76 ms
96,512 KB
testcase_17 AC 64 ms
87,936 KB
testcase_18 AC 66 ms
89,728 KB
testcase_19 AC 80 ms
100,608 KB
testcase_20 AC 72 ms
96,244 KB
testcase_21 AC 73 ms
76,468 KB
testcase_22 AC 77 ms
76,672 KB
testcase_23 AC 81 ms
76,400 KB
testcase_24 AC 73 ms
76,436 KB
testcase_25 AC 70 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N, M = map(int, input().split())
        A = list(map(int, input().split()))

        ok = 1
        for i in range(N - 1):
            if A[i] + A[i - 1] < M:
                ok = 0
        if ok:
            print("Yes")
        else:
            print("No")


if __name__ == '__main__':
    main()
0