結果

問題 No.218 経験値1.5倍
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-05-22 16:40:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 2,999 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-12-29 14:50:00
合計ジャッジ時間 8,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,156 KB
testcase_01 AC 145 ms
54,076 KB
testcase_02 AC 144 ms
54,060 KB
testcase_03 AC 143 ms
53,888 KB
testcase_04 AC 143 ms
53,996 KB
testcase_05 AC 143 ms
53,960 KB
testcase_06 AC 143 ms
54,096 KB
testcase_07 AC 139 ms
54,016 KB
testcase_08 AC 146 ms
54,340 KB
testcase_09 AC 144 ms
54,052 KB
testcase_10 AC 141 ms
54,204 KB
testcase_11 AC 140 ms
53,968 KB
testcase_12 AC 140 ms
54,084 KB
testcase_13 AC 144 ms
54,168 KB
testcase_14 AC 140 ms
54,364 KB
testcase_15 AC 142 ms
54,148 KB
testcase_16 AC 141 ms
54,040 KB
testcase_17 AC 141 ms
54,288 KB
testcase_18 AC 143 ms
54,084 KB
testcase_19 AC 142 ms
54,024 KB
testcase_20 AC 143 ms
54,092 KB
testcase_21 AC 141 ms
54,200 KB
testcase_22 AC 142 ms
54,092 KB
testcase_23 AC 141 ms
54,284 KB
testcase_24 AC 141 ms
54,112 KB
testcase_25 AC 144 ms
54,044 KB
testcase_26 AC 142 ms
53,992 KB
testcase_27 AC 144 ms
54,128 KB
testcase_28 AC 147 ms
53,996 KB
testcase_29 AC 144 ms
54,272 KB
testcase_30 AC 146 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private void solve() {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int x = a / b + (a%b>0 ? 1 : 0);
        int y = a / c + (a%c>0 ? 1 : 0);
        String res;
        if(2*x >= 3*y) { res = "YES"; }
        else { res = "NO"; }
        System.out.println(res);
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0