結果

問題 No.2015 Stair Counter
ユーザー achapiachapi
提出日時 2022-07-22 21:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 103,896 KB
最終ジャッジ日時 2024-07-04 05:23:39
合計ジャッジ時間 4,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,500 KB
testcase_01 AC 148 ms
77,400 KB
testcase_02 AC 167 ms
77,224 KB
testcase_03 AC 163 ms
77,456 KB
testcase_04 AC 136 ms
77,120 KB
testcase_05 AC 111 ms
76,556 KB
testcase_06 AC 194 ms
78,656 KB
testcase_07 AC 195 ms
77,692 KB
testcase_08 AC 205 ms
77,552 KB
testcase_09 AC 62 ms
75,860 KB
testcase_10 AC 64 ms
75,556 KB
testcase_11 AC 64 ms
75,788 KB
testcase_12 AC 60 ms
76,340 KB
testcase_13 AC 61 ms
77,500 KB
testcase_14 AC 63 ms
76,964 KB
testcase_15 AC 68 ms
86,084 KB
testcase_16 AC 81 ms
99,664 KB
testcase_17 AC 75 ms
90,164 KB
testcase_18 AC 77 ms
91,428 KB
testcase_19 AC 90 ms
103,896 KB
testcase_20 AC 82 ms
97,476 KB
testcase_21 AC 132 ms
76,584 KB
testcase_22 AC 168 ms
77,092 KB
testcase_23 AC 199 ms
77,852 KB
testcase_24 AC 148 ms
76,976 KB
testcase_25 AC 141 ms
76,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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