結果
| 問題 | 
                            No.1048 Zero (Advanced)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             joybeeee
                         | 
                    
| 提出日時 | 2020-05-12 17:00:13 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 353 bytes | 
| コンパイル時間 | 2,232 ms | 
| コンパイル使用メモリ | 74,924 KB | 
| 実行使用メモリ | 54,340 KB | 
| 最終ジャッジ日時 | 2024-09-13 15:15:20 | 
| 合計ジャッジ時間 | 5,617 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 11 WA * 4 | 
ソースコード
import java.util.*;
public class Main {
    public static void main(String args[]) throws Exception {
        Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        long r = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        System.out.println(l <= m && m <= r * k || k == 0 ? "Yes" : "No");
    }
}
            
            
            
        
            
joybeeee