結果

問題 No.218 経験値1.5倍
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 23:06:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-11-21 11:26:41
合計ジャッジ時間 8,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,292 KB
testcase_01 AC 147 ms
54,448 KB
testcase_02 AC 145 ms
54,160 KB
testcase_03 AC 143 ms
54,320 KB
testcase_04 AC 144 ms
54,472 KB
testcase_05 AC 143 ms
54,204 KB
testcase_06 AC 146 ms
54,240 KB
testcase_07 AC 147 ms
54,068 KB
testcase_08 AC 143 ms
54,540 KB
testcase_09 AC 143 ms
54,184 KB
testcase_10 AC 143 ms
54,472 KB
testcase_11 AC 143 ms
54,340 KB
testcase_12 AC 145 ms
54,200 KB
testcase_13 AC 143 ms
54,256 KB
testcase_14 AC 145 ms
54,360 KB
testcase_15 AC 147 ms
54,456 KB
testcase_16 AC 143 ms
54,424 KB
testcase_17 AC 146 ms
54,392 KB
testcase_18 AC 147 ms
54,092 KB
testcase_19 AC 149 ms
54,368 KB
testcase_20 AC 145 ms
54,272 KB
testcase_21 AC 143 ms
54,104 KB
testcase_22 AC 145 ms
54,492 KB
testcase_23 AC 145 ms
54,340 KB
testcase_24 AC 150 ms
54,232 KB
testcase_25 AC 147 ms
54,352 KB
testcase_26 AC 147 ms
54,532 KB
testcase_27 AC 143 ms
54,372 KB
testcase_28 AC 143 ms
54,068 KB
testcase_29 AC 143 ms
54,384 KB
testcase_30 AC 142 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		double n = sc.nextDouble();
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		double a_num = Math.ceil(n/a);
		double b_num = Math.ceil(n/b);
		System.out.println(b_num<=a_num*2/3?"YES":"NO"); 
	}
}
0