結果

問題 No.218 経験値1.5倍
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-01 00:25:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 76,188 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-06-09 09:40:39
合計ジャッジ時間 7,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,104 KB
testcase_01 AC 121 ms
53,920 KB
testcase_02 AC 121 ms
53,892 KB
testcase_03 AC 119 ms
52,696 KB
testcase_04 AC 132 ms
53,840 KB
testcase_05 AC 128 ms
54,004 KB
testcase_06 AC 107 ms
52,788 KB
testcase_07 AC 119 ms
53,672 KB
testcase_08 AC 121 ms
53,868 KB
testcase_09 AC 130 ms
54,080 KB
testcase_10 AC 136 ms
53,836 KB
testcase_11 AC 140 ms
54,240 KB
testcase_12 AC 137 ms
54,128 KB
testcase_13 AC 129 ms
53,944 KB
testcase_14 AC 131 ms
54,032 KB
testcase_15 AC 119 ms
53,832 KB
testcase_16 AC 121 ms
54,028 KB
testcase_17 AC 132 ms
54,108 KB
testcase_18 AC 132 ms
53,828 KB
testcase_19 AC 134 ms
54,112 KB
testcase_20 AC 130 ms
54,104 KB
testcase_21 AC 115 ms
53,032 KB
testcase_22 AC 130 ms
54,020 KB
testcase_23 AC 123 ms
53,948 KB
testcase_24 AC 123 ms
53,760 KB
testcase_25 AC 130 ms
53,960 KB
testcase_26 AC 126 ms
53,992 KB
testcase_27 AC 124 ms
54,140 KB
testcase_28 AC 129 ms
54,108 KB
testcase_29 AC 130 ms
53,896 KB
testcase_30 AC 130 ms
54,084 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