結果

問題 No.1048 Zero (Advanced)
ユーザー htensaihtensai
提出日時 2020-05-11 08:34:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-07-18 01:48:58
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,052 KB
testcase_01 AC 101 ms
53,092 KB
testcase_02 WA -
testcase_03 AC 111 ms
54,092 KB
testcase_04 AC 116 ms
54,200 KB
testcase_05 AC 114 ms
54,268 KB
testcase_06 AC 123 ms
53,908 KB
testcase_07 AC 121 ms
54,136 KB
testcase_08 AC 122 ms
53,944 KB
testcase_09 AC 111 ms
54,036 KB
testcase_10 AC 118 ms
54,068 KB
testcase_11 AC 118 ms
53,872 KB
testcase_12 AC 116 ms
54,116 KB
testcase_13 AC 113 ms
54,108 KB
testcase_14 AC 120 ms
53,896 KB
testcase_15 AC 116 ms
54,196 KB
testcase_16 WA -
testcase_17 AC 113 ms
54,332 KB
testcase_18 AC 116 ms
54,168 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) {
		    System.out.println("No");
		} else {
		    System.out.println("Yes");
		}
	}
}
0