結果

問題 No.218 経験値1.5倍
ユーザー hikari2004hikari2004
提出日時 2016-04-22 13:43:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 4,667 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 42,020 KB
最終ジャッジ日時 2024-12-29 15:37:25
合計ジャッジ時間 10,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
41,752 KB
testcase_01 AC 150 ms
40,696 KB
testcase_02 AC 148 ms
40,668 KB
testcase_03 AC 154 ms
41,520 KB
testcase_04 AC 154 ms
41,752 KB
testcase_05 AC 158 ms
41,644 KB
testcase_06 AC 152 ms
41,256 KB
testcase_07 AC 165 ms
41,416 KB
testcase_08 AC 158 ms
41,636 KB
testcase_09 AC 157 ms
41,776 KB
testcase_10 AC 161 ms
41,712 KB
testcase_11 AC 159 ms
42,020 KB
testcase_12 AC 159 ms
41,004 KB
testcase_13 AC 155 ms
41,348 KB
testcase_14 AC 157 ms
41,388 KB
testcase_15 AC 147 ms
40,480 KB
testcase_16 AC 159 ms
41,628 KB
testcase_17 AC 161 ms
41,464 KB
testcase_18 AC 156 ms
41,508 KB
testcase_19 AC 154 ms
41,504 KB
testcase_20 AC 155 ms
41,532 KB
testcase_21 AC 153 ms
41,588 KB
testcase_22 AC 158 ms
41,392 KB
testcase_23 AC 159 ms
41,436 KB
testcase_24 AC 157 ms
41,680 KB
testcase_25 AC 154 ms
40,888 KB
testcase_26 AC 154 ms
41,468 KB
testcase_27 AC 164 ms
41,452 KB
testcase_28 AC 156 ms
41,500 KB
testcase_29 AC 151 ms
40,720 KB
testcase_30 AC 148 ms
40,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;

import java.util.Scanner;

public class No_218 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		double c = sc.nextDouble();

		int normal = (int)Math.ceil(a/b);
		int success = (int)Math.ceil(a/c);

		if(2 * normal >= 3 * success){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0