結果

問題 No.2922 Rose Garden
ユーザー loop0919loop0919
提出日時 2024-10-02 01:17:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 3,000 ms
コード長 280 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-10-02 01:17:37
合計ジャッジ時間 5,912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
86,144 KB
testcase_01 AC 64 ms
75,776 KB
testcase_02 AC 75 ms
85,120 KB
testcase_03 AC 105 ms
107,904 KB
testcase_04 AC 80 ms
85,504 KB
testcase_05 AC 78 ms
82,432 KB
testcase_06 AC 63 ms
73,856 KB
testcase_07 AC 89 ms
97,408 KB
testcase_08 AC 56 ms
66,944 KB
testcase_09 AC 95 ms
101,760 KB
testcase_10 AC 61 ms
71,552 KB
testcase_11 AC 52 ms
66,816 KB
testcase_12 AC 80 ms
85,760 KB
testcase_13 AC 89 ms
93,696 KB
testcase_14 AC 55 ms
64,896 KB
testcase_15 AC 78 ms
83,584 KB
testcase_16 AC 87 ms
92,288 KB
testcase_17 AC 99 ms
102,784 KB
testcase_18 AC 52 ms
61,440 KB
testcase_19 AC 71 ms
78,208 KB
testcase_20 AC 82 ms
88,704 KB
testcase_21 AC 98 ms
101,888 KB
testcase_22 AC 76 ms
82,816 KB
testcase_23 AC 90 ms
97,664 KB
testcase_24 AC 55 ms
65,152 KB
testcase_25 AC 68 ms
80,000 KB
testcase_26 AC 79 ms
90,368 KB
testcase_27 AC 85 ms
94,080 KB
testcase_28 AC 81 ms
90,368 KB
testcase_29 AC 80 ms
85,760 KB
testcase_30 AC 46 ms
60,544 KB
testcase_31 AC 44 ms
58,752 KB
testcase_32 AC 44 ms
59,520 KB
testcase_33 AC 46 ms
58,496 KB
testcase_34 AC 46 ms
60,800 KB
testcase_35 AC 47 ms
59,008 KB
testcase_36 AC 50 ms
61,696 KB
testcase_37 AC 52 ms
63,360 KB
testcase_38 AC 48 ms
60,288 KB
testcase_39 AC 50 ms
61,824 KB
testcase_40 AC 83 ms
88,192 KB
testcase_41 AC 64 ms
72,704 KB
testcase_42 AC 109 ms
107,264 KB
testcase_43 AC 71 ms
78,080 KB
testcase_44 AC 99 ms
102,400 KB
testcase_45 AC 58 ms
67,200 KB
testcase_46 AC 115 ms
107,264 KB
testcase_47 AC 83 ms
89,344 KB
testcase_48 AC 58 ms
66,688 KB
testcase_49 AC 90 ms
98,176 KB
testcase_50 AC 40 ms
51,712 KB
testcase_51 AC 39 ms
51,712 KB
testcase_52 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S, B = map(int, input().split())
H = list(map(int, input().split()))

now_height = H[0]

for i in range(1, N):
    if H[i] <= now_height:
        continue
    elif H[i] <= now_height + B * S:
        now_height = H[i]
    else:
        print("No")
        exit()

print("Yes")
0