結果

問題 No.2922 Rose Garden
ユーザー nouka28nouka28
提出日時 2024-09-07 11:48:00
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 207 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-09-29 10:35:45
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
86,784 KB
testcase_01 AC 60 ms
76,288 KB
testcase_02 AC 71 ms
85,760 KB
testcase_03 AC 91 ms
107,392 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 77 ms
98,048 KB
testcase_08 WA -
testcase_09 AC 81 ms
102,404 KB
testcase_10 AC 55 ms
71,808 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 76 ms
93,696 KB
testcase_14 WA -
testcase_15 AC 67 ms
83,456 KB
testcase_16 AC 76 ms
92,800 KB
testcase_17 AC 94 ms
104,320 KB
testcase_18 AC 46 ms
62,464 KB
testcase_19 AC 63 ms
78,976 KB
testcase_20 AC 69 ms
89,216 KB
testcase_21 AC 88 ms
103,040 KB
testcase_22 AC 67 ms
83,200 KB
testcase_23 AC 83 ms
98,304 KB
testcase_24 AC 48 ms
66,176 KB
testcase_25 AC 87 ms
80,768 KB
testcase_26 AC 74 ms
90,624 KB
testcase_27 AC 80 ms
94,208 KB
testcase_28 AC 76 ms
91,116 KB
testcase_29 AC 71 ms
86,400 KB
testcase_30 AC 44 ms
60,984 KB
testcase_31 AC 41 ms
59,008 KB
testcase_32 AC 40 ms
60,032 KB
testcase_33 AC 39 ms
58,880 KB
testcase_34 AC 50 ms
61,312 KB
testcase_35 AC 39 ms
59,648 KB
testcase_36 AC 40 ms
62,464 KB
testcase_37 AC 42 ms
62,976 KB
testcase_38 AC 40 ms
60,416 KB
testcase_39 AC 41 ms
62,336 KB
testcase_40 AC 81 ms
89,344 KB
testcase_41 AC 65 ms
72,320 KB
testcase_42 AC 109 ms
107,136 KB
testcase_43 AC 61 ms
78,464 KB
testcase_44 AC 103 ms
104,320 KB
testcase_45 AC 50 ms
67,456 KB
testcase_46 AC 88 ms
107,136 KB
testcase_47 AC 70 ms
89,728 KB
testcase_48 AC 57 ms
66,176 KB
testcase_49 AC 77 ms
98,048 KB
testcase_50 AC 36 ms
51,584 KB
testcase_51 AC 35 ms
51,328 KB
testcase_52 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s,b=map(int,input().split())
h=list(map(int,input().split()))
now=h[0]
for i in range(1,n):
    need=(max(0,h[i]-now)+b-1)//b
    if need>s:
        print("No")
        exit()
    now+=need*b

print("Yes")
0