結果

問題 No.218 経験値1.5倍
ユーザー YamaKasaYamaKasa
提出日時 2018-05-18 16:21:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-06-28 13:45:11
合計ジャッジ時間 7,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,856 KB
testcase_01 AC 133 ms
41,312 KB
testcase_02 AC 132 ms
41,296 KB
testcase_03 AC 132 ms
41,076 KB
testcase_04 AC 130 ms
41,168 KB
testcase_05 AC 130 ms
40,552 KB
testcase_06 AC 118 ms
41,168 KB
testcase_07 AC 131 ms
40,948 KB
testcase_08 AC 132 ms
41,372 KB
testcase_09 AC 129 ms
40,684 KB
testcase_10 AC 130 ms
41,288 KB
testcase_11 AC 131 ms
41,104 KB
testcase_12 AC 117 ms
40,912 KB
testcase_13 AC 131 ms
41,152 KB
testcase_14 AC 130 ms
41,080 KB
testcase_15 AC 118 ms
41,380 KB
testcase_16 AC 131 ms
41,104 KB
testcase_17 AC 132 ms
40,968 KB
testcase_18 AC 131 ms
40,936 KB
testcase_19 AC 134 ms
41,064 KB
testcase_20 AC 130 ms
41,008 KB
testcase_21 AC 131 ms
40,936 KB
testcase_22 AC 119 ms
40,856 KB
testcase_23 AC 130 ms
41,284 KB
testcase_24 AC 132 ms
41,008 KB
testcase_25 AC 131 ms
41,176 KB
testcase_26 AC 133 ms
41,392 KB
testcase_27 AC 132 ms
41,060 KB
testcase_28 AC 133 ms
41,020 KB
testcase_29 AC 132 ms
40,824 KB
testcase_30 AC 133 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		int c = scan.nextInt();
		scan.close();
		int k1 = (int)Math.ceil((double)a / b);
		int k2 = (int)Math.ceil((double)a / c);
		double k3 = ((double)2.0 * k1 / 3.0);

		if(k2 <= k3) {
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}

	}
}
0