結果

問題 No.2015 Stair Counter
ユーザー asumo0729asumo0729
提出日時 2022-07-25 23:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,528 KB
最終ジャッジ日時 2024-07-08 02:19:33
合計ジャッジ時間 4,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,892 KB
testcase_01 AC 108 ms
76,180 KB
testcase_02 AC 120 ms
76,284 KB
testcase_03 AC 120 ms
76,620 KB
testcase_04 AC 96 ms
76,284 KB
testcase_05 AC 90 ms
76,212 KB
testcase_06 AC 137 ms
76,980 KB
testcase_07 AC 143 ms
76,756 KB
testcase_08 AC 139 ms
77,040 KB
testcase_09 AC 61 ms
75,772 KB
testcase_10 AC 62 ms
75,428 KB
testcase_11 AC 64 ms
75,552 KB
testcase_12 AC 59 ms
76,224 KB
testcase_13 AC 61 ms
77,120 KB
testcase_14 AC 63 ms
77,016 KB
testcase_15 AC 67 ms
86,740 KB
testcase_16 AC 81 ms
100,404 KB
testcase_17 AC 70 ms
90,584 KB
testcase_18 AC 74 ms
91,404 KB
testcase_19 AC 84 ms
103,528 KB
testcase_20 AC 79 ms
98,724 KB
testcase_21 AC 94 ms
76,352 KB
testcase_22 AC 111 ms
76,296 KB
testcase_23 AC 149 ms
76,672 KB
testcase_24 AC 98 ms
76,144 KB
testcase_25 AC 96 ms
76,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    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'
    print(ans)
0