結果

問題 No.2922 Rose Garden
ユーザー pluto77pluto77
提出日時 2024-10-30 11:45:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 3,000 ms
コード長 202 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 107,576 KB
最終ジャッジ日時 2024-10-30 11:45:19
合計ジャッジ時間 6,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
94,752 KB
testcase_01 AC 59 ms
79,864 KB
testcase_02 AC 70 ms
94,660 KB
testcase_03 AC 96 ms
107,324 KB
testcase_04 AC 70 ms
91,792 KB
testcase_05 AC 92 ms
89,200 KB
testcase_06 AC 61 ms
82,780 KB
testcase_07 AC 80 ms
100,848 KB
testcase_08 AC 50 ms
72,124 KB
testcase_09 AC 87 ms
103,984 KB
testcase_10 AC 56 ms
77,992 KB
testcase_11 AC 47 ms
67,920 KB
testcase_12 AC 67 ms
88,200 KB
testcase_13 AC 83 ms
101,556 KB
testcase_14 AC 47 ms
67,148 KB
testcase_15 AC 70 ms
94,088 KB
testcase_16 AC 73 ms
94,480 KB
testcase_17 AC 89 ms
104,224 KB
testcase_18 AC 44 ms
64,016 KB
testcase_19 AC 63 ms
84,132 KB
testcase_20 AC 69 ms
92,528 KB
testcase_21 AC 90 ms
104,520 KB
testcase_22 AC 69 ms
93,484 KB
testcase_23 AC 83 ms
100,816 KB
testcase_24 AC 48 ms
66,420 KB
testcase_25 AC 74 ms
87,908 KB
testcase_26 AC 82 ms
100,668 KB
testcase_27 AC 82 ms
99,816 KB
testcase_28 AC 75 ms
94,464 KB
testcase_29 AC 71 ms
93,624 KB
testcase_30 AC 42 ms
61,164 KB
testcase_31 AC 41 ms
59,200 KB
testcase_32 AC 40 ms
59,880 KB
testcase_33 AC 40 ms
58,796 KB
testcase_34 AC 42 ms
62,512 KB
testcase_35 AC 41 ms
61,172 KB
testcase_36 AC 41 ms
62,580 KB
testcase_37 AC 43 ms
63,744 KB
testcase_38 AC 41 ms
61,336 KB
testcase_39 AC 43 ms
63,260 KB
testcase_40 AC 70 ms
90,248 KB
testcase_41 AC 58 ms
78,640 KB
testcase_42 AC 92 ms
107,576 KB
testcase_43 AC 59 ms
81,176 KB
testcase_44 AC 89 ms
104,248 KB
testcase_45 AC 50 ms
71,728 KB
testcase_46 AC 93 ms
107,192 KB
testcase_47 AC 81 ms
102,264 KB
testcase_48 AC 48 ms
70,268 KB
testcase_49 AC 90 ms
100,872 KB
testcase_50 AC 37 ms
52,444 KB
testcase_51 AC 37 ms
53,740 KB
testcase_52 AC 37 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,S,B=map(int,input().split())
h=list(map(int,input().split()))
q=[]
for v in h:
  if len(q)==0 or q[-1]<v:
    q+=[v]
p=h[0]+S*B
for v in q:
  if p<v:
    print("No")
    exit()
  p=v+S*B
print("Yes")
0