結果

問題 No.2922 Rose Garden
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 15:00:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 3,000 ms
コード長 201 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 107,544 KB
最終ジャッジ日時 2024-10-12 15:00:42
合計ジャッジ時間 5,227 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
94,424 KB
testcase_01 AC 57 ms
80,464 KB
testcase_02 AC 71 ms
93,288 KB
testcase_03 AC 93 ms
107,544 KB
testcase_04 AC 68 ms
91,064 KB
testcase_05 AC 67 ms
88,244 KB
testcase_06 AC 59 ms
82,752 KB
testcase_07 AC 82 ms
101,452 KB
testcase_08 AC 50 ms
70,884 KB
testcase_09 AC 88 ms
103,740 KB
testcase_10 AC 55 ms
79,020 KB
testcase_11 AC 50 ms
67,056 KB
testcase_12 AC 68 ms
88,968 KB
testcase_13 AC 80 ms
101,656 KB
testcase_14 AC 50 ms
66,128 KB
testcase_15 AC 69 ms
94,212 KB
testcase_16 AC 71 ms
94,976 KB
testcase_17 AC 89 ms
104,416 KB
testcase_18 AC 44 ms
64,704 KB
testcase_19 AC 63 ms
84,884 KB
testcase_20 AC 71 ms
91,576 KB
testcase_21 AC 92 ms
104,048 KB
testcase_22 AC 67 ms
94,256 KB
testcase_23 AC 84 ms
100,764 KB
testcase_24 AC 45 ms
66,700 KB
testcase_25 AC 66 ms
87,368 KB
testcase_26 AC 81 ms
101,096 KB
testcase_27 AC 84 ms
99,948 KB
testcase_28 AC 75 ms
94,672 KB
testcase_29 AC 77 ms
94,812 KB
testcase_30 AC 42 ms
61,220 KB
testcase_31 AC 41 ms
59,640 KB
testcase_32 AC 41 ms
60,820 KB
testcase_33 AC 42 ms
60,272 KB
testcase_34 AC 41 ms
61,392 KB
testcase_35 AC 41 ms
60,324 KB
testcase_36 AC 42 ms
63,060 KB
testcase_37 AC 43 ms
63,760 KB
testcase_38 AC 41 ms
60,920 KB
testcase_39 AC 43 ms
62,848 KB
testcase_40 AC 70 ms
89,948 KB
testcase_41 AC 57 ms
78,028 KB
testcase_42 AC 93 ms
107,388 KB
testcase_43 AC 60 ms
81,076 KB
testcase_44 AC 92 ms
104,484 KB
testcase_45 AC 50 ms
70,800 KB
testcase_46 AC 104 ms
107,188 KB
testcase_47 AC 80 ms
102,560 KB
testcase_48 AC 51 ms
70,432 KB
testcase_49 AC 86 ms
101,124 KB
testcase_50 AC 36 ms
52,540 KB
testcase_51 AC 37 ms
52,108 KB
testcase_52 AC 37 ms
52,884 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