結果

問題 No.2015 Stair Counter
ユーザー Meso MesoMeso Meso
提出日時 2024-07-18 19:40:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,412 KB
最終ジャッジ日時 2024-07-18 19:40:19
合計ジャッジ時間 4,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 98 ms
10,624 KB
testcase_02 AC 120 ms
10,624 KB
testcase_03 AC 130 ms
10,752 KB
testcase_04 AC 92 ms
10,752 KB
testcase_05 AC 80 ms
10,624 KB
testcase_06 AC 147 ms
10,496 KB
testcase_07 AC 170 ms
10,496 KB
testcase_08 AC 144 ms
10,624 KB
testcase_09 AC 60 ms
11,008 KB
testcase_10 AC 66 ms
11,136 KB
testcase_11 AC 68 ms
11,136 KB
testcase_12 AC 59 ms
13,144 KB
testcase_13 AC 59 ms
13,312 KB
testcase_14 AC 58 ms
13,296 KB
testcase_15 AC 83 ms
23,068 KB
testcase_16 AC 107 ms
28,308 KB
testcase_17 AC 67 ms
13,352 KB
testcase_18 AC 99 ms
25,556 KB
testcase_19 AC 120 ms
29,412 KB
testcase_20 AC 84 ms
14,592 KB
testcase_21 AC 97 ms
10,752 KB
testcase_22 AC 128 ms
10,496 KB
testcase_23 AC 152 ms
10,496 KB
testcase_24 AC 105 ms
10,624 KB
testcase_25 AC 107 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for i in range(t):
    n, m = map(int, input().split())
    A = list(map(int, input().split()))
    flg = True
    for j in range(n-1):
        if A[j] + A[j+1] >= m:
            continue
        else:
            flg = False
            break
    if flg:
        print("Yes")
    else:
        print("No")
 
0