結果

問題 No.2922 Rose Garden
ユーザー うにれうにれ
提出日時 2024-10-12 14:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 3,000 ms
コード長 248 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 107,796 KB
最終ジャッジ日時 2024-10-12 15:00:03
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
87,536 KB
testcase_01 AC 61 ms
78,148 KB
testcase_02 AC 70 ms
86,400 KB
testcase_03 AC 90 ms
107,796 KB
testcase_04 AC 68 ms
87,132 KB
testcase_05 AC 65 ms
83,172 KB
testcase_06 AC 58 ms
74,884 KB
testcase_07 AC 81 ms
97,852 KB
testcase_08 AC 52 ms
68,928 KB
testcase_09 AC 84 ms
102,160 KB
testcase_10 AC 54 ms
72,964 KB
testcase_11 AC 49 ms
67,188 KB
testcase_12 AC 67 ms
87,160 KB
testcase_13 AC 75 ms
94,228 KB
testcase_14 AC 49 ms
65,744 KB
testcase_15 AC 66 ms
85,396 KB
testcase_16 AC 74 ms
93,692 KB
testcase_17 AC 84 ms
103,120 KB
testcase_18 AC 46 ms
63,344 KB
testcase_19 AC 62 ms
79,044 KB
testcase_20 AC 69 ms
90,000 KB
testcase_21 AC 87 ms
102,004 KB
testcase_22 AC 65 ms
83,052 KB
testcase_23 AC 79 ms
99,108 KB
testcase_24 AC 49 ms
66,780 KB
testcase_25 AC 62 ms
81,996 KB
testcase_26 AC 73 ms
91,256 KB
testcase_27 AC 76 ms
95,008 KB
testcase_28 AC 72 ms
91,060 KB
testcase_29 AC 68 ms
87,480 KB
testcase_30 AC 43 ms
62,528 KB
testcase_31 AC 43 ms
59,064 KB
testcase_32 AC 44 ms
60,648 KB
testcase_33 AC 43 ms
59,536 KB
testcase_34 AC 46 ms
61,544 KB
testcase_35 AC 45 ms
60,384 KB
testcase_36 AC 45 ms
62,952 KB
testcase_37 AC 47 ms
63,824 KB
testcase_38 AC 46 ms
60,540 KB
testcase_39 AC 47 ms
62,700 KB
testcase_40 AC 73 ms
90,416 KB
testcase_41 AC 57 ms
73,640 KB
testcase_42 AC 98 ms
107,452 KB
testcase_43 AC 62 ms
79,052 KB
testcase_44 AC 89 ms
102,744 KB
testcase_45 AC 53 ms
68,500 KB
testcase_46 AC 96 ms
107,376 KB
testcase_47 AC 74 ms
90,176 KB
testcase_48 AC 53 ms
67,232 KB
testcase_49 AC 82 ms
98,788 KB
testcase_50 AC 39 ms
52,308 KB
testcase_51 AC 38 ms
52,228 KB
testcase_52 AC 40 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
mod = 998244353
mod2 = 10**9+7

N, S, B = map(int, input().split())
H = list(map(int, input().split()))
h = H[0]
for i in range(1, N):
    if h >= H[i]:continue
    if (H[i] - h + B-1) // B > S:exit(print("No"))
    h = H[i]
print("Yes")
0