結果

問題 No.2015 Stair Counter
ユーザー Akijin_007Akijin_007
提出日時 2022-07-22 21:38:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 103,904 KB
最終ジャッジ日時 2024-07-04 05:43:48
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,284 KB
testcase_01 AC 113 ms
78,820 KB
testcase_02 AC 121 ms
79,292 KB
testcase_03 AC 120 ms
79,212 KB
testcase_04 AC 109 ms
78,844 KB
testcase_05 AC 106 ms
78,056 KB
testcase_06 AC 122 ms
79,804 KB
testcase_07 AC 121 ms
79,052 KB
testcase_08 AC 123 ms
78,980 KB
testcase_09 AC 57 ms
76,252 KB
testcase_10 AC 58 ms
76,288 KB
testcase_11 AC 61 ms
76,220 KB
testcase_12 AC 55 ms
76,120 KB
testcase_13 AC 58 ms
77,404 KB
testcase_14 AC 59 ms
77,348 KB
testcase_15 AC 63 ms
85,428 KB
testcase_16 AC 78 ms
98,680 KB
testcase_17 AC 65 ms
88,896 KB
testcase_18 AC 69 ms
91,808 KB
testcase_19 AC 80 ms
103,904 KB
testcase_20 AC 70 ms
96,924 KB
testcase_21 AC 109 ms
78,988 KB
testcase_22 AC 119 ms
79,060 KB
testcase_23 AC 124 ms
79,208 KB
testcase_24 AC 112 ms
78,932 KB
testcase_25 AC 112 ms
78,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

T = int(input())

n = [0] * T
a = [0] * T
for i in range(T):
    n[i] = list(map(int, input().split()))
    a[i] = list(map(int, input().split()))

for j in range(T):
    N, M = n[j][0], n[j][1]
    A = a[j]
    f = 1
    for i in range(N-1):
        if M > A[i] + A[i+1]:
            f = 0
            break
    if f == 1:
        print("Yes")
    else:
        print("No")

0