結果

問題 No.2015 Stair Counter
ユーザー DrDrpilotDrDrpilot
提出日時 2022-07-29 16:17:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-07-19 07:30:34
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 143 ms
77,224 KB
testcase_02 AC 138 ms
77,160 KB
testcase_03 AC 147 ms
77,056 KB
testcase_04 AC 120 ms
77,200 KB
testcase_05 AC 117 ms
76,900 KB
testcase_06 AC 149 ms
77,084 KB
testcase_07 AC 151 ms
77,312 KB
testcase_08 AC 148 ms
77,184 KB
testcase_09 AC 55 ms
74,880 KB
testcase_10 AC 55 ms
75,008 KB
testcase_11 AC 56 ms
74,880 KB
testcase_12 AC 51 ms
75,520 KB
testcase_13 AC 53 ms
76,288 KB
testcase_14 AC 51 ms
76,048 KB
testcase_15 AC 58 ms
85,120 KB
testcase_16 AC 70 ms
97,792 KB
testcase_17 AC 59 ms
87,680 KB
testcase_18 AC 65 ms
90,496 KB
testcase_19 AC 75 ms
102,528 KB
testcase_20 AC 69 ms
96,128 KB
testcase_21 AC 115 ms
77,308 KB
testcase_22 AC 135 ms
77,312 KB
testcase_23 AC 141 ms
77,184 KB
testcase_24 AC 122 ms
77,008 KB
testcase_25 AC 118 ms
77,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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