結果

問題 No.218 経験値1.5倍
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 21:48:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-06-09 09:35:02
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,244 KB
testcase_01 AC 140 ms
54,112 KB
testcase_02 AC 136 ms
53,960 KB
testcase_03 AC 135 ms
54,484 KB
testcase_04 AC 148 ms
54,212 KB
testcase_05 AC 135 ms
54,676 KB
testcase_06 AC 138 ms
54,264 KB
testcase_07 AC 143 ms
54,252 KB
testcase_08 AC 143 ms
54,416 KB
testcase_09 AC 152 ms
54,592 KB
testcase_10 AC 150 ms
54,336 KB
testcase_11 AC 143 ms
54,304 KB
testcase_12 AC 134 ms
54,108 KB
testcase_13 AC 140 ms
54,344 KB
testcase_14 AC 139 ms
53,976 KB
testcase_15 AC 133 ms
54,208 KB
testcase_16 AC 147 ms
54,492 KB
testcase_17 AC 144 ms
54,404 KB
testcase_18 AC 133 ms
53,872 KB
testcase_19 AC 133 ms
54,108 KB
testcase_20 AC 125 ms
54,488 KB
testcase_21 AC 130 ms
54,056 KB
testcase_22 AC 134 ms
54,196 KB
testcase_23 AC 137 ms
54,216 KB
testcase_24 AC 139 ms
54,432 KB
testcase_25 AC 139 ms
54,168 KB
testcase_26 AC 143 ms
54,128 KB
testcase_27 AC 144 ms
54,380 KB
testcase_28 AC 121 ms
53,460 KB
testcase_29 AC 137 ms
54,296 KB
testcase_30 AC 136 ms
54,104 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