結果

問題 No.218 経験値1.5倍
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-01 00:25:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-12-29 15:58:00
合計ジャッジ時間 7,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,104 KB
testcase_01 AC 136 ms
53,860 KB
testcase_02 AC 137 ms
54,160 KB
testcase_03 AC 138 ms
54,212 KB
testcase_04 AC 126 ms
53,104 KB
testcase_05 AC 139 ms
54,032 KB
testcase_06 AC 125 ms
52,980 KB
testcase_07 AC 137 ms
54,060 KB
testcase_08 AC 135 ms
53,936 KB
testcase_09 AC 134 ms
54,060 KB
testcase_10 AC 141 ms
54,076 KB
testcase_11 AC 124 ms
54,228 KB
testcase_12 AC 137 ms
54,100 KB
testcase_13 AC 136 ms
54,268 KB
testcase_14 AC 140 ms
53,984 KB
testcase_15 AC 140 ms
54,276 KB
testcase_16 AC 140 ms
53,984 KB
testcase_17 AC 135 ms
54,048 KB
testcase_18 AC 136 ms
53,876 KB
testcase_19 AC 145 ms
54,156 KB
testcase_20 AC 137 ms
54,072 KB
testcase_21 AC 133 ms
54,172 KB
testcase_22 AC 132 ms
53,988 KB
testcase_23 AC 135 ms
53,880 KB
testcase_24 AC 133 ms
54,284 KB
testcase_25 AC 138 ms
54,324 KB
testcase_26 AC 133 ms
54,276 KB
testcase_27 AC 137 ms
54,088 KB
testcase_28 AC 136 ms
54,220 KB
testcase_29 AC 138 ms
54,352 KB
testcase_30 AC 135 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int a = in.nextInt();
        int b = in.nextInt();
        int c = in.nextInt();

        int normalCnt = 0;
        int normal = 0;

        while(normal < a) {
            normalCnt++;
            normal += b;
        }

        int upCnt = 0;
        int up = 0;

        while(up < a) {
            upCnt++;
            up += c;
        }

        double yosou = (double)normalCnt * 2.0 / 3.0;

        if(upCnt <= yosou) System.out.println("YES");
        else System.out.println("NO");

        in.close();
    }
}
0