結果

問題 No.218 経験値1.5倍
ユーザー fukuseifukusei
提出日時 2017-05-17 14:19:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 2,856 ms
コンパイル使用メモリ 75,124 KB
実行使用メモリ 54,568 KB
最終ジャッジ日時 2024-06-09 09:43:25
合計ジャッジ時間 7,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,568 KB
testcase_01 AC 123 ms
54,144 KB
testcase_02 AC 125 ms
53,688 KB
testcase_03 AC 127 ms
53,552 KB
testcase_04 AC 126 ms
53,844 KB
testcase_05 AC 124 ms
54,392 KB
testcase_06 AC 132 ms
53,912 KB
testcase_07 AC 120 ms
53,388 KB
testcase_08 AC 116 ms
54,016 KB
testcase_09 AC 132 ms
53,868 KB
testcase_10 AC 126 ms
54,004 KB
testcase_11 AC 122 ms
53,800 KB
testcase_12 AC 119 ms
54,312 KB
testcase_13 AC 120 ms
53,888 KB
testcase_14 AC 123 ms
53,740 KB
testcase_15 AC 124 ms
54,256 KB
testcase_16 AC 110 ms
53,792 KB
testcase_17 AC 128 ms
54,340 KB
testcase_18 AC 121 ms
54,020 KB
testcase_19 AC 118 ms
53,956 KB
testcase_20 AC 108 ms
53,024 KB
testcase_21 AC 122 ms
54,416 KB
testcase_22 AC 111 ms
53,756 KB
testcase_23 AC 115 ms
53,892 KB
testcase_24 AC 124 ms
53,176 KB
testcase_25 AC 129 ms
53,932 KB
testcase_26 AC 122 ms
53,456 KB
testcase_27 AC 122 ms
53,468 KB
testcase_28 AC 114 ms
53,356 KB
testcase_29 AC 137 ms
54,064 KB
testcase_30 AC 130 ms
54,264 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