結果

問題 No.218 経験値1.5倍
ユーザー fukuseifukusei
提出日時 2017-05-17 14:19:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 3,766 ms
コンパイル使用メモリ 76,748 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-12-29 16:04:40
合計ジャッジ時間 10,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,268 KB
testcase_01 AC 158 ms
54,020 KB
testcase_02 AC 156 ms
53,916 KB
testcase_03 AC 157 ms
54,384 KB
testcase_04 AC 160 ms
54,356 KB
testcase_05 AC 156 ms
54,224 KB
testcase_06 AC 152 ms
54,168 KB
testcase_07 AC 159 ms
54,148 KB
testcase_08 AC 158 ms
54,300 KB
testcase_09 AC 155 ms
53,980 KB
testcase_10 AC 160 ms
54,348 KB
testcase_11 AC 155 ms
54,380 KB
testcase_12 AC 157 ms
54,004 KB
testcase_13 AC 152 ms
54,236 KB
testcase_14 AC 162 ms
54,160 KB
testcase_15 AC 153 ms
54,248 KB
testcase_16 AC 155 ms
54,244 KB
testcase_17 AC 161 ms
53,968 KB
testcase_18 AC 155 ms
54,072 KB
testcase_19 AC 159 ms
54,060 KB
testcase_20 AC 156 ms
54,360 KB
testcase_21 AC 155 ms
54,004 KB
testcase_22 AC 164 ms
54,224 KB
testcase_23 AC 155 ms
54,140 KB
testcase_24 AC 157 ms
54,264 KB
testcase_25 AC 158 ms
54,388 KB
testcase_26 AC 158 ms
54,164 KB
testcase_27 AC 162 ms
54,200 KB
testcase_28 AC 159 ms
54,212 KB
testcase_29 AC 152 ms
54,244 KB
testcase_30 AC 158 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

public class test {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double a = sc.nextDouble(); 
        double b = sc.nextDouble();  
        double c = sc.nextDouble();
        
        double d = Math.ceil(a/b) * 2/3;  
        double e = Math.ceil(a/c);  

        if(e <= d){
        	System.out.println("YES");
        }
        else{
        	System.out.println("NO");
        }
    }
}
0