結果

問題 No.218 経験値1.5倍
ユーザー kou6839kou6839
提出日時 2015-05-30 23:12:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 2,617 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-12-29 15:04:41
合計ジャッジ時間 8,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,052 KB
testcase_01 AC 136 ms
40,124 KB
testcase_02 AC 141 ms
41,344 KB
testcase_03 AC 141 ms
41,144 KB
testcase_04 AC 141 ms
40,996 KB
testcase_05 AC 148 ms
41,144 KB
testcase_06 AC 142 ms
41,288 KB
testcase_07 AC 142 ms
41,448 KB
testcase_08 AC 143 ms
41,428 KB
testcase_09 AC 139 ms
41,020 KB
testcase_10 AC 144 ms
41,576 KB
testcase_11 AC 138 ms
40,512 KB
testcase_12 AC 140 ms
41,144 KB
testcase_13 AC 140 ms
41,164 KB
testcase_14 AC 130 ms
40,076 KB
testcase_15 AC 140 ms
41,152 KB
testcase_16 AC 138 ms
40,744 KB
testcase_17 AC 142 ms
41,156 KB
testcase_18 AC 147 ms
41,292 KB
testcase_19 AC 144 ms
41,252 KB
testcase_20 AC 132 ms
40,512 KB
testcase_21 AC 144 ms
41,192 KB
testcase_22 AC 141 ms
41,268 KB
testcase_23 AC 137 ms
41,352 KB
testcase_24 AC 141 ms
41,140 KB
testcase_25 AC 140 ms
41,400 KB
testcase_26 AC 141 ms
41,284 KB
testcase_27 AC 129 ms
39,856 KB
testcase_28 AC 145 ms
41,152 KB
testcase_29 AC 146 ms
41,492 KB
testcase_30 AC 145 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        double aa = Math.ceil(a*1.0/b);
        double bb = Math.ceil(1.0*a/c);
        if(aa*2/3>=bb){
        	System.out.println("YES");
        }else{
        	System.out.println("NO");
        }
    }
}
0