結果

問題 No.218 経験値1.5倍
ユーザー dazydazy
提出日時 2017-02-26 01:07:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 3,817 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-12-29 16:00:09
合計ジャッジ時間 9,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,288 KB
testcase_01 AC 147 ms
41,156 KB
testcase_02 AC 135 ms
40,260 KB
testcase_03 AC 147 ms
41,296 KB
testcase_04 AC 151 ms
40,972 KB
testcase_05 AC 150 ms
41,384 KB
testcase_06 AC 143 ms
41,132 KB
testcase_07 AC 149 ms
41,068 KB
testcase_08 AC 147 ms
41,080 KB
testcase_09 AC 143 ms
41,232 KB
testcase_10 AC 143 ms
40,972 KB
testcase_11 AC 132 ms
39,848 KB
testcase_12 AC 148 ms
41,340 KB
testcase_13 AC 140 ms
40,948 KB
testcase_14 AC 146 ms
41,060 KB
testcase_15 AC 134 ms
40,184 KB
testcase_16 AC 147 ms
41,384 KB
testcase_17 AC 145 ms
41,236 KB
testcase_18 AC 148 ms
41,284 KB
testcase_19 AC 147 ms
41,132 KB
testcase_20 AC 139 ms
40,168 KB
testcase_21 AC 147 ms
41,364 KB
testcase_22 AC 145 ms
41,536 KB
testcase_23 AC 144 ms
41,068 KB
testcase_24 AC 143 ms
41,100 KB
testcase_25 AC 144 ms
41,132 KB
testcase_26 AC 146 ms
41,364 KB
testcase_27 AC 150 ms
41,256 KB
testcase_28 AC 140 ms
39,856 KB
testcase_29 AC 142 ms
41,196 KB
testcase_30 AC 149 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String ans = "YES";
        int a = scan.nextInt();
        int b = scan.nextInt();
        int c = scan.nextInt();
        int tmp1 = a / b;
        int tmp2 = a / c;

        if (a%b!=0) tmp1++;
        if (a%c!=0) tmp2++;

        if ((tmp1*10)/tmp2 < 15) ans = "NO";
        System.out.println(ans);
    }
}
0