結果

問題 No.218 経験値1.5倍
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 17:05:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 50,396 KB
最終ジャッジ日時 2024-06-09 09:42:53
合計ジャッジ時間 4,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,268 KB
testcase_01 AC 50 ms
50,248 KB
testcase_02 AC 50 ms
49,804 KB
testcase_03 AC 54 ms
50,264 KB
testcase_04 AC 54 ms
49,740 KB
testcase_05 AC 55 ms
50,212 KB
testcase_06 AC 52 ms
50,212 KB
testcase_07 AC 50 ms
50,288 KB
testcase_08 AC 52 ms
50,056 KB
testcase_09 AC 50 ms
49,764 KB
testcase_10 AC 51 ms
50,028 KB
testcase_11 AC 51 ms
50,200 KB
testcase_12 AC 52 ms
50,220 KB
testcase_13 AC 49 ms
50,232 KB
testcase_14 AC 54 ms
50,016 KB
testcase_15 AC 56 ms
50,292 KB
testcase_16 AC 53 ms
50,304 KB
testcase_17 AC 53 ms
50,084 KB
testcase_18 AC 55 ms
50,256 KB
testcase_19 AC 53 ms
50,028 KB
testcase_20 AC 54 ms
50,248 KB
testcase_21 AC 54 ms
50,288 KB
testcase_22 AC 55 ms
50,112 KB
testcase_23 AC 54 ms
50,396 KB
testcase_24 AC 53 ms
50,272 KB
testcase_25 AC 54 ms
50,280 KB
testcase_26 AC 54 ms
49,788 KB
testcase_27 AC 53 ms
50,168 KB
testcase_28 AC 55 ms
50,228 KB
testcase_29 AC 54 ms
49,872 KB
testcase_30 AC 54 ms
49,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int a = Integer.parseInt(reader.readLine());
        int b = Integer.parseInt(reader.readLine());
        int c = Integer.parseInt(reader.readLine());
        int requiredSource = (a + b - 1) / b;
        int requiredSourceDuringCampaign = (a + c - 1) / c;
        if(requiredSource * 2 >= requiredSourceDuringCampaign*3 ) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0