結果

問題 No.1048 Zero (Advanced)
ユーザー htensaihtensai
提出日時 2020-05-11 08:36:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-07-18 01:52:08
合計ジャッジ時間 5,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,916 KB
testcase_01 AC 132 ms
54,356 KB
testcase_02 AC 133 ms
53,872 KB
testcase_03 AC 134 ms
54,212 KB
testcase_04 AC 135 ms
54,072 KB
testcase_05 AC 133 ms
54,000 KB
testcase_06 AC 133 ms
54,264 KB
testcase_07 AC 134 ms
54,160 KB
testcase_08 AC 133 ms
54,176 KB
testcase_09 AC 135 ms
54,008 KB
testcase_10 AC 133 ms
54,180 KB
testcase_11 AC 133 ms
53,888 KB
testcase_12 AC 135 ms
54,164 KB
testcase_13 AC 134 ms
54,352 KB
testcase_14 AC 132 ms
53,920 KB
testcase_15 AC 133 ms
54,040 KB
testcase_16 WA -
testcase_17 AC 133 ms
54,280 KB
testcase_18 AC 133 ms
54,208 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 m = sc.nextInt();
		long k = sc.nextInt();
		long leftCount = (left * k - 1) / m;
		long rightCount = right * k / m;
		if (leftCount == rightCount && k != 0) {
		    System.out.println("No");
		} else {
		    System.out.println("Yes");
		}
	}
}
0