結果

問題 No.218 経験値1.5倍
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 21:48:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 71,708 KB
実行使用メモリ 56,664 KB
最終ジャッジ日時 2023-08-28 14:24:01
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
56,228 KB
testcase_01 AC 129 ms
56,056 KB
testcase_02 AC 128 ms
55,992 KB
testcase_03 AC 128 ms
56,024 KB
testcase_04 AC 127 ms
56,016 KB
testcase_05 AC 132 ms
56,192 KB
testcase_06 AC 132 ms
56,240 KB
testcase_07 AC 132 ms
55,948 KB
testcase_08 AC 129 ms
56,120 KB
testcase_09 AC 132 ms
56,148 KB
testcase_10 AC 132 ms
55,896 KB
testcase_11 AC 130 ms
55,972 KB
testcase_12 AC 132 ms
56,180 KB
testcase_13 AC 133 ms
56,664 KB
testcase_14 AC 129 ms
55,888 KB
testcase_15 AC 130 ms
55,612 KB
testcase_16 AC 132 ms
55,932 KB
testcase_17 AC 132 ms
56,224 KB
testcase_18 AC 132 ms
55,980 KB
testcase_19 AC 138 ms
55,816 KB
testcase_20 AC 138 ms
56,040 KB
testcase_21 AC 134 ms
56,044 KB
testcase_22 AC 132 ms
56,224 KB
testcase_23 AC 132 ms
56,440 KB
testcase_24 AC 135 ms
56,112 KB
testcase_25 AC 135 ms
56,280 KB
testcase_26 AC 136 ms
56,288 KB
testcase_27 AC 135 ms
56,184 KB
testcase_28 AC 131 ms
55,924 KB
testcase_29 AC 133 ms
55,932 KB
testcase_30 AC 134 ms
55,896 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