結果
| 問題 |
No.2922 Rose Garden
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-23 14:19:49 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 151 bytes |
| コンパイル時間 | 466 ms |
| コンパイル使用メモリ | 82,172 KB |
| 実行使用メモリ | 98,352 KB |
| 最終ジャッジ日時 | 2025-05-23 14:19:57 |
| 合計ジャッジ時間 | 6,608 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 50 |
ソースコード
n,s,b=map(int,input().split())
*a,=int(input().split())
x = a[0]
z = s*b
for i in a:
if i <= x + s * b:
x = i
print('Yes' if i >= a[-1] else 'No')