結果

問題 No.218 経験値1.5倍
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-05-22 16:40:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-09 09:15:33
合計ジャッジ時間 7,386 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,176 KB
testcase_01 AC 128 ms
54,112 KB
testcase_02 AC 126 ms
54,220 KB
testcase_03 AC 131 ms
53,812 KB
testcase_04 AC 119 ms
53,988 KB
testcase_05 AC 126 ms
54,132 KB
testcase_06 AC 132 ms
53,848 KB
testcase_07 AC 129 ms
54,104 KB
testcase_08 AC 123 ms
53,744 KB
testcase_09 AC 122 ms
53,852 KB
testcase_10 AC 118 ms
53,908 KB
testcase_11 AC 132 ms
54,004 KB
testcase_12 AC 127 ms
53,988 KB
testcase_13 AC 129 ms
54,204 KB
testcase_14 AC 132 ms
54,320 KB
testcase_15 AC 120 ms
53,868 KB
testcase_16 AC 124 ms
53,952 KB
testcase_17 AC 118 ms
53,872 KB
testcase_18 AC 134 ms
54,132 KB
testcase_19 AC 107 ms
52,836 KB
testcase_20 AC 129 ms
53,880 KB
testcase_21 AC 129 ms
54,200 KB
testcase_22 AC 106 ms
53,088 KB
testcase_23 AC 120 ms
54,056 KB
testcase_24 AC 133 ms
53,788 KB
testcase_25 AC 132 ms
54,132 KB
testcase_26 AC 128 ms
53,900 KB
testcase_27 AC 128 ms
54,092 KB
testcase_28 AC 134 ms
53,956 KB
testcase_29 AC 126 ms
54,204 KB
testcase_30 AC 109 ms
52,780 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