結果

問題 No.2015 Stair Counter
ユーザー 👑 rin204rin204
提出日時 2022-07-22 21:21:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-07-04 05:17:43
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 125 ms
77,440 KB
testcase_02 AC 148 ms
77,696 KB
testcase_03 AC 147 ms
77,528 KB
testcase_04 AC 125 ms
77,440 KB
testcase_05 AC 121 ms
77,284 KB
testcase_06 AC 151 ms
77,824 KB
testcase_07 AC 151 ms
77,696 KB
testcase_08 AC 150 ms
77,568 KB
testcase_09 AC 54 ms
75,136 KB
testcase_10 AC 55 ms
75,264 KB
testcase_11 AC 58 ms
75,264 KB
testcase_12 AC 53 ms
76,032 KB
testcase_13 AC 54 ms
76,672 KB
testcase_14 AC 54 ms
76,372 KB
testcase_15 AC 64 ms
85,120 KB
testcase_16 AC 76 ms
98,432 KB
testcase_17 AC 65 ms
88,192 KB
testcase_18 AC 69 ms
90,624 KB
testcase_19 AC 82 ms
102,272 KB
testcase_20 AC 71 ms
96,384 KB
testcase_21 AC 130 ms
77,184 KB
testcase_22 AC 143 ms
77,440 KB
testcase_23 AC 151 ms
77,568 KB
testcase_24 AC 132 ms
77,568 KB
testcase_25 AC 128 ms
77,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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