結果

問題 No.2015 Stair Counter
ユーザー hiragnhiragn
提出日時 2022-11-30 19:38:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,548 KB
最終ジャッジ日時 2024-10-07 14:40:50
合計ジャッジ時間 4,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 110 ms
10,752 KB
testcase_02 AC 133 ms
10,752 KB
testcase_03 AC 139 ms
10,752 KB
testcase_04 AC 100 ms
10,752 KB
testcase_05 AC 88 ms
10,880 KB
testcase_06 AC 161 ms
10,752 KB
testcase_07 AC 160 ms
10,752 KB
testcase_08 AC 160 ms
10,880 KB
testcase_09 AC 62 ms
11,136 KB
testcase_10 AC 64 ms
11,136 KB
testcase_11 AC 66 ms
11,136 KB
testcase_12 AC 62 ms
13,288 KB
testcase_13 AC 64 ms
13,568 KB
testcase_14 AC 63 ms
13,432 KB
testcase_15 AC 87 ms
22,952 KB
testcase_16 AC 112 ms
28,444 KB
testcase_17 AC 70 ms
13,356 KB
testcase_18 AC 101 ms
25,564 KB
testcase_19 AC 122 ms
29,548 KB
testcase_20 AC 77 ms
14,600 KB
testcase_21 AC 99 ms
10,752 KB
testcase_22 AC 130 ms
10,880 KB
testcase_23 AC 151 ms
10,624 KB
testcase_24 AC 110 ms
10,880 KB
testcase_25 AC 106 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    t = int(input())

    for _ in range(t):
        n, m = map(int, input().split())
        a = list(map(int, input().split()))

        if all(a[i] + a[i + 1] >= m for i in range(n - 1)):
            print("Yes")
        else:
            print("No")


if __name__ == "__main__":
    main()
0