結果
| 問題 | No.2922 Rose Garden |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-12 14:46:32 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 106,240 KB |
| 最終ジャッジ日時 | 2026-04-29 15:24:19 |
| 合計ジャッジ時間 | 5,020 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 25 |
ソースコード
n,s,b=map(int,input().split())
h=list(map(int,input().split()))
for i in range(n-1):
if s*b>=(h[i+1]-h[i]):
pass
else:
print("No")
exit()
print("Yes")