結果

問題 No.1048 Zero (Advanced)
ユーザー tentententen
提出日時 2021-01-19 09:42:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-05-09 12:14:16
合計ジャッジ時間 6,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,368 KB
testcase_01 AC 151 ms
41,140 KB
testcase_02 AC 153 ms
41,656 KB
testcase_03 AC 150 ms
41,308 KB
testcase_04 AC 151 ms
41,300 KB
testcase_05 AC 155 ms
41,644 KB
testcase_06 AC 152 ms
41,272 KB
testcase_07 AC 154 ms
41,560 KB
testcase_08 AC 154 ms
41,368 KB
testcase_09 AC 153 ms
41,188 KB
testcase_10 AC 151 ms
41,340 KB
testcase_11 AC 154 ms
41,076 KB
testcase_12 AC 156 ms
41,500 KB
testcase_13 AC 158 ms
41,572 KB
testcase_14 AC 154 ms
41,264 KB
testcase_15 AC 148 ms
41,412 KB
testcase_16 WA -
testcase_17 AC 153 ms
41,232 KB
testcase_18 AC 156 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int left = sc.nextInt();
		int right = sc.nextInt();
		int mod = sc.nextInt();
		long k = sc.nextInt();
		if ((left * k - 1) / mod < right * k / mod || k == 0) {
		    System.out.println("Yes");
		} else {
		    System.out.println("No");
		}
	}
}
0