結果

問題 No.218 経験値1.5倍
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-29 22:41:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 3,676 ms
コンパイル使用メモリ 76,232 KB
実行使用メモリ 50,472 KB
最終ジャッジ日時 2024-06-09 09:19:17
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,068 KB
testcase_01 AC 45 ms
50,316 KB
testcase_02 AC 47 ms
50,128 KB
testcase_03 AC 47 ms
50,472 KB
testcase_04 AC 50 ms
49,956 KB
testcase_05 AC 49 ms
50,196 KB
testcase_06 AC 46 ms
50,240 KB
testcase_07 AC 48 ms
50,268 KB
testcase_08 AC 49 ms
50,360 KB
testcase_09 AC 50 ms
50,264 KB
testcase_10 AC 51 ms
50,428 KB
testcase_11 AC 47 ms
50,260 KB
testcase_12 AC 48 ms
50,248 KB
testcase_13 AC 49 ms
50,288 KB
testcase_14 AC 47 ms
50,060 KB
testcase_15 AC 49 ms
50,252 KB
testcase_16 AC 48 ms
50,312 KB
testcase_17 AC 47 ms
50,264 KB
testcase_18 AC 47 ms
50,368 KB
testcase_19 AC 48 ms
50,244 KB
testcase_20 AC 50 ms
50,236 KB
testcase_21 AC 47 ms
50,196 KB
testcase_22 AC 48 ms
50,304 KB
testcase_23 AC 46 ms
50,344 KB
testcase_24 AC 47 ms
50,224 KB
testcase_25 AC 47 ms
50,256 KB
testcase_26 AC 49 ms
50,148 KB
testcase_27 AC 47 ms
50,284 KB
testcase_28 AC 47 ms
49,816 KB
testcase_29 AC 47 ms
50,248 KB
testcase_30 AC 46 ms
49,944 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