結果

問題 No.218 経験値1.5倍
ユーザー dazydazy
提出日時 2017-02-26 01:07:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 3,352 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-09 09:41:36
合計ジャッジ時間 8,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,016 KB
testcase_01 AC 113 ms
52,960 KB
testcase_02 AC 126 ms
54,120 KB
testcase_03 AC 128 ms
54,108 KB
testcase_04 AC 118 ms
53,004 KB
testcase_05 AC 125 ms
54,040 KB
testcase_06 AC 131 ms
53,968 KB
testcase_07 AC 127 ms
53,756 KB
testcase_08 AC 127 ms
53,744 KB
testcase_09 AC 121 ms
53,904 KB
testcase_10 AC 107 ms
53,004 KB
testcase_11 AC 131 ms
54,148 KB
testcase_12 AC 126 ms
53,808 KB
testcase_13 AC 129 ms
53,944 KB
testcase_14 AC 130 ms
54,076 KB
testcase_15 AC 113 ms
52,820 KB
testcase_16 AC 124 ms
53,788 KB
testcase_17 AC 127 ms
54,284 KB
testcase_18 AC 128 ms
54,124 KB
testcase_19 AC 126 ms
54,320 KB
testcase_20 AC 125 ms
53,852 KB
testcase_21 AC 134 ms
53,920 KB
testcase_22 AC 129 ms
54,184 KB
testcase_23 AC 129 ms
53,808 KB
testcase_24 AC 111 ms
52,580 KB
testcase_25 AC 127 ms
54,224 KB
testcase_26 AC 124 ms
54,032 KB
testcase_27 AC 117 ms
54,008 KB
testcase_28 AC 121 ms
53,668 KB
testcase_29 AC 126 ms
54,180 KB
testcase_30 AC 125 ms
54,344 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