結果

問題 No.2015 Stair Counter
ユーザー takahashi0359takahashi0359
提出日時 2022-11-16 15:42:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,400 KB
最終ジャッジ日時 2024-09-17 11:50:38
合計ジャッジ時間 4,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 116 ms
10,752 KB
testcase_02 AC 137 ms
10,624 KB
testcase_03 AC 146 ms
10,752 KB
testcase_04 AC 107 ms
10,752 KB
testcase_05 AC 93 ms
10,752 KB
testcase_06 AC 166 ms
10,496 KB
testcase_07 AC 164 ms
10,624 KB
testcase_08 AC 163 ms
10,496 KB
testcase_09 AC 69 ms
11,136 KB
testcase_10 AC 72 ms
11,136 KB
testcase_11 AC 74 ms
11,136 KB
testcase_12 AC 68 ms
13,368 KB
testcase_13 AC 70 ms
13,568 KB
testcase_14 AC 71 ms
13,556 KB
testcase_15 AC 99 ms
22,808 KB
testcase_16 AC 124 ms
28,432 KB
testcase_17 AC 78 ms
13,468 KB
testcase_18 AC 114 ms
25,552 KB
testcase_19 AC 144 ms
29,400 KB
testcase_20 AC 83 ms
14,460 KB
testcase_21 AC 104 ms
10,624 KB
testcase_22 AC 136 ms
10,624 KB
testcase_23 AC 157 ms
10,624 KB
testcase_24 AC 113 ms
10,624 KB
testcase_25 AC 110 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    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