結果

問題 No.2015 Stair Counter
ユーザー dangodango
提出日時 2023-06-25 14:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-07-02 13:15:54
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 137 ms
77,392 KB
testcase_02 AC 152 ms
76,672 KB
testcase_03 AC 169 ms
77,440 KB
testcase_04 AC 121 ms
76,648 KB
testcase_05 AC 107 ms
76,404 KB
testcase_06 AC 174 ms
76,800 KB
testcase_07 AC 171 ms
77,240 KB
testcase_08 AC 176 ms
77,568 KB
testcase_09 AC 60 ms
75,008 KB
testcase_10 AC 61 ms
75,136 KB
testcase_11 AC 61 ms
75,104 KB
testcase_12 AC 55 ms
75,520 KB
testcase_13 AC 57 ms
76,160 KB
testcase_14 AC 57 ms
75,904 KB
testcase_15 AC 66 ms
84,608 KB
testcase_16 AC 78 ms
98,176 KB
testcase_17 AC 67 ms
87,936 KB
testcase_18 AC 71 ms
89,984 KB
testcase_19 AC 83 ms
102,272 KB
testcase_20 AC 75 ms
96,256 KB
testcase_21 AC 120 ms
76,416 KB
testcase_22 AC 110 ms
76,160 KB
testcase_23 AC 168 ms
77,056 KB
testcase_24 AC 136 ms
77,252 KB
testcase_25 AC 133 ms
76,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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