結果
問題 |
No.2922 Rose Garden
|
ユーザー |
|
提出日時 | 2024-10-12 14:40:25 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-12 14:40:37 |
合計ジャッジ時間 | 3,169 ms |
ジャッジサーバーID (参考情報) |
judge / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 50 |
ソースコード
n,s,b=map(int,input().split) ans=1 a=[*map(int,input().split())] for i in range(1,n): d=a[i]-a[i-1] if d>s*b:ans=0 if ans:print("Yes") else:print("No")