結果

問題 No.218 経験値1.5倍
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-29 22:41:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 4,016 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-12-29 15:01:12
合計ジャッジ時間 6,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
36,908 KB
testcase_01 AC 56 ms
36,984 KB
testcase_02 AC 54 ms
36,660 KB
testcase_03 AC 51 ms
36,672 KB
testcase_04 AC 55 ms
36,956 KB
testcase_05 AC 56 ms
36,660 KB
testcase_06 AC 50 ms
37,008 KB
testcase_07 AC 54 ms
37,008 KB
testcase_08 AC 56 ms
36,776 KB
testcase_09 AC 54 ms
37,084 KB
testcase_10 AC 55 ms
36,876 KB
testcase_11 AC 52 ms
37,100 KB
testcase_12 AC 51 ms
36,824 KB
testcase_13 AC 55 ms
36,936 KB
testcase_14 AC 56 ms
37,064 KB
testcase_15 AC 53 ms
37,088 KB
testcase_16 AC 52 ms
36,876 KB
testcase_17 AC 54 ms
37,100 KB
testcase_18 AC 58 ms
37,088 KB
testcase_19 AC 58 ms
36,776 KB
testcase_20 AC 60 ms
37,088 KB
testcase_21 AC 58 ms
36,776 KB
testcase_22 AC 57 ms
36,956 KB
testcase_23 AC 58 ms
37,052 KB
testcase_24 AC 57 ms
36,908 KB
testcase_25 AC 56 ms
36,824 KB
testcase_26 AC 54 ms
36,672 KB
testcase_27 AC 55 ms
37,008 KB
testcase_28 AC 54 ms
36,908 KB
testcase_29 AC 56 ms
36,956 KB
testcase_30 AC 53 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No218 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int a = Integer.parseInt(br.readLine());
            int b = Integer.parseInt(br.readLine());
            int c = Integer.parseInt(br.readLine());

            double normal = Math.ceil(a / (double) b);
            double campeign = Math.ceil(a / (double) c);

            String str = "NO";
            if (normal * (2 / 3.0) >= campeign) {
                str = "YES";
            }

            System.out.println(str);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

    static int[] strToIntArray(String S) {
        String[] strArray = S.split(" ");
        int[] intArray = new int[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            intArray[i] = Integer.parseInt(strArray[i]);
        }
        return intArray;
    }
}
0