結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

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