結果

問題 No.218 経験値1.5倍
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 21:48:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-12-29 15:41:32
合計ジャッジ時間 7,725 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
54,044 KB
testcase_01 AC 134 ms
53,328 KB
testcase_02 AC 146 ms
54,212 KB
testcase_03 AC 150 ms
54,224 KB
testcase_04 AC 146 ms
54,240 KB
testcase_05 AC 149 ms
54,072 KB
testcase_06 AC 132 ms
53,352 KB
testcase_07 AC 154 ms
54,400 KB
testcase_08 AC 151 ms
54,280 KB
testcase_09 AC 152 ms
54,176 KB
testcase_10 AC 148 ms
54,324 KB
testcase_11 AC 148 ms
54,096 KB
testcase_12 AC 148 ms
53,440 KB
testcase_13 AC 150 ms
54,376 KB
testcase_14 AC 149 ms
54,224 KB
testcase_15 AC 134 ms
53,596 KB
testcase_16 AC 149 ms
54,292 KB
testcase_17 AC 154 ms
54,072 KB
testcase_18 AC 152 ms
53,992 KB
testcase_19 AC 149 ms
54,356 KB
testcase_20 AC 147 ms
54,228 KB
testcase_21 AC 148 ms
54,472 KB
testcase_22 AC 144 ms
54,140 KB
testcase_23 AC 134 ms
53,748 KB
testcase_24 AC 145 ms
54,104 KB
testcase_25 AC 133 ms
53,532 KB
testcase_26 AC 144 ms
54,164 KB
testcase_27 AC 153 ms
54,124 KB
testcase_28 AC 143 ms
54,096 KB
testcase_29 AC 147 ms
54,136 KB
testcase_30 AC 147 ms
54,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static public 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)(a/b+0.99999999);
        int event =(int)(a/c+0.99999999);

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