結果

問題 No.2015 Stair Counter
ユーザー V_MelvilleV_Melville
提出日時 2022-07-22 23:35:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,540 KB
最終ジャッジ日時 2024-07-04 08:26:30
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 119 ms
10,624 KB
testcase_02 AC 141 ms
10,752 KB
testcase_03 AC 147 ms
10,624 KB
testcase_04 AC 108 ms
10,624 KB
testcase_05 AC 97 ms
10,624 KB
testcase_06 AC 162 ms
10,752 KB
testcase_07 AC 167 ms
10,752 KB
testcase_08 AC 161 ms
10,752 KB
testcase_09 AC 73 ms
11,136 KB
testcase_10 AC 74 ms
11,136 KB
testcase_11 AC 78 ms
11,008 KB
testcase_12 AC 72 ms
13,248 KB
testcase_13 AC 74 ms
13,696 KB
testcase_14 AC 74 ms
13,420 KB
testcase_15 AC 100 ms
23,072 KB
testcase_16 AC 127 ms
28,436 KB
testcase_17 AC 92 ms
13,480 KB
testcase_18 AC 115 ms
25,440 KB
testcase_19 AC 141 ms
29,540 KB
testcase_20 AC 109 ms
14,592 KB
testcase_21 AC 111 ms
10,752 KB
testcase_22 AC 138 ms
10,752 KB
testcase_23 AC 158 ms
10,752 KB
testcase_24 AC 115 ms
10,752 KB
testcase_25 AC 111 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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