結果

問題 No.2015 Stair Counter
ユーザー titiatitia
提出日時 2022-07-22 21:27:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,412 KB
最終ジャッジ日時 2024-07-04 05:24:40
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 97 ms
10,752 KB
testcase_02 AC 100 ms
10,752 KB
testcase_03 AC 102 ms
10,624 KB
testcase_04 AC 88 ms
10,752 KB
testcase_05 AC 84 ms
10,624 KB
testcase_06 AC 113 ms
10,752 KB
testcase_07 AC 109 ms
10,752 KB
testcase_08 AC 112 ms
10,752 KB
testcase_09 AC 76 ms
11,264 KB
testcase_10 AC 81 ms
11,136 KB
testcase_11 AC 79 ms
11,136 KB
testcase_12 AC 77 ms
13,404 KB
testcase_13 AC 80 ms
13,696 KB
testcase_14 AC 80 ms
13,272 KB
testcase_15 AC 113 ms
23,044 KB
testcase_16 AC 141 ms
27,220 KB
testcase_17 AC 86 ms
13,532 KB
testcase_18 AC 127 ms
24,280 KB
testcase_19 AC 164 ms
29,412 KB
testcase_20 AC 91 ms
14,752 KB
testcase_21 AC 92 ms
10,752 KB
testcase_22 AC 101 ms
10,752 KB
testcase_23 AC 107 ms
10,752 KB
testcase_24 AC 92 ms
10,752 KB
testcase_25 AC 91 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    N,M=map(int,input().split())
    A=list(map(int,input().split()))

    if max(A)>M:
        print("No")
        continue

    for i in range(1,N):
        kk=A[i-1]+A[i]

        if M<=kk<=2*M:
            True
        else:
            print("No")
            break
    else:
        print("Yes")
0