結果

問題 No.2922 Rose Garden
ユーザー ryuusagiryuusagi
提出日時 2024-10-12 14:51:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 3,000 ms
コード長 334 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,896 KB
最終ジャッジ日時 2024-10-12 14:51:37
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
89,984 KB
testcase_01 AC 66 ms
78,464 KB
testcase_02 AC 70 ms
88,704 KB
testcase_03 AC 101 ms
112,512 KB
testcase_04 AC 67 ms
89,856 KB
testcase_05 AC 66 ms
85,760 KB
testcase_06 AC 59 ms
76,672 KB
testcase_07 AC 81 ms
102,016 KB
testcase_08 AC 53 ms
68,224 KB
testcase_09 AC 84 ms
107,264 KB
testcase_10 AC 61 ms
73,984 KB
testcase_11 AC 46 ms
67,968 KB
testcase_12 AC 69 ms
88,960 KB
testcase_13 AC 78 ms
97,920 KB
testcase_14 AC 47 ms
66,684 KB
testcase_15 AC 68 ms
86,784 KB
testcase_16 AC 75 ms
96,640 KB
testcase_17 AC 87 ms
108,288 KB
testcase_18 AC 52 ms
63,360 KB
testcase_19 AC 65 ms
81,536 KB
testcase_20 AC 72 ms
92,672 KB
testcase_21 AC 86 ms
107,136 KB
testcase_22 AC 67 ms
86,400 KB
testcase_23 AC 83 ms
102,912 KB
testcase_24 AC 46 ms
66,176 KB
testcase_25 AC 63 ms
83,328 KB
testcase_26 AC 73 ms
94,464 KB
testcase_27 AC 81 ms
98,304 KB
testcase_28 AC 73 ms
94,720 KB
testcase_29 AC 70 ms
89,640 KB
testcase_30 AC 41 ms
60,800 KB
testcase_31 AC 38 ms
59,008 KB
testcase_32 AC 39 ms
59,904 KB
testcase_33 AC 38 ms
58,752 KB
testcase_34 AC 42 ms
61,568 KB
testcase_35 AC 46 ms
59,136 KB
testcase_36 AC 40 ms
62,464 KB
testcase_37 AC 43 ms
63,744 KB
testcase_38 AC 41 ms
60,288 KB
testcase_39 AC 42 ms
62,208 KB
testcase_40 AC 72 ms
91,904 KB
testcase_41 AC 56 ms
74,752 KB
testcase_42 AC 90 ms
112,256 KB
testcase_43 AC 60 ms
80,896 KB
testcase_44 AC 89 ms
107,776 KB
testcase_45 AC 50 ms
68,352 KB
testcase_46 AC 94 ms
112,896 KB
testcase_47 AC 75 ms
93,696 KB
testcase_48 AC 47 ms
68,224 KB
testcase_49 AC 82 ms
103,552 KB
testcase_50 AC 34 ms
51,968 KB
testcase_51 AC 34 ms
51,968 KB
testcase_52 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, b, *h = map(int, open(0).read().split())
a = h[0]
c = s
for i in h[1:]:
    if i > a:
        if (i - a + b - 1) // b > c:
            print('No')
            exit()
        else:
            c -= (i - a + b - 1) // b
            a += (i - a + b - 1) // b * b
    if (s - c) * b > a - i:
        a = i
        c = s
print('Yes')
0