結果

問題 No.2015 Stair Counter
ユーザー ikomaikoma
提出日時 2022-07-22 22:32:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 101,348 KB
最終ジャッジ日時 2024-07-04 07:03:43
合計ジャッジ時間 3,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 90 ms
76,316 KB
testcase_02 AC 93 ms
76,416 KB
testcase_03 AC 94 ms
76,360 KB
testcase_04 AC 82 ms
76,032 KB
testcase_05 AC 78 ms
76,672 KB
testcase_06 AC 97 ms
76,928 KB
testcase_07 AC 102 ms
76,544 KB
testcase_08 AC 94 ms
76,288 KB
testcase_09 AC 58 ms
75,392 KB
testcase_10 AC 57 ms
75,748 KB
testcase_11 AC 61 ms
75,556 KB
testcase_12 AC 56 ms
75,908 KB
testcase_13 AC 62 ms
77,184 KB
testcase_14 AC 60 ms
76,692 KB
testcase_15 AC 65 ms
84,736 KB
testcase_16 AC 80 ms
96,768 KB
testcase_17 AC 68 ms
87,936 KB
testcase_18 AC 70 ms
89,600 KB
testcase_19 AC 81 ms
101,348 KB
testcase_20 AC 73 ms
96,128 KB
testcase_21 AC 80 ms
76,800 KB
testcase_22 AC 84 ms
76,672 KB
testcase_23 AC 93 ms
76,520 KB
testcase_24 AC 87 ms
76,288 KB
testcase_25 AC 85 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()))
    for i in range(N-1):
        if A[i]+A[i+1]<M:
            print("No")
            break
    else:
        print("Yes")
0