結果

問題 No.218 経験値1.5倍
ユーザー yagi2yagi2
提出日時 2017-04-21 12:04:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 56,156 KB
最終ジャッジ日時 2024-07-20 05:01:15
合計ジャッジ時間 7,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,304 KB
testcase_01 AC 118 ms
39,720 KB
testcase_02 AC 127 ms
41,208 KB
testcase_03 AC 128 ms
40,860 KB
testcase_04 AC 132 ms
41,140 KB
testcase_05 AC 132 ms
41,088 KB
testcase_06 AC 131 ms
41,120 KB
testcase_07 AC 131 ms
41,312 KB
testcase_08 AC 130 ms
41,140 KB
testcase_09 AC 129 ms
40,804 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 130 ms
41,156 KB
testcase_14 AC 131 ms
41,160 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 130 ms
41,172 KB
testcase_18 WA -
testcase_19 AC 129 ms
41,100 KB
testcase_20 WA -
testcase_21 AC 131 ms
41,016 KB
testcase_22 AC 128 ms
41,220 KB
testcase_23 AC 129 ms
41,236 KB
testcase_24 AC 129 ms
41,156 KB
testcase_25 AC 132 ms
41,016 KB
testcase_26 WA -
testcase_27 AC 128 ms
40,928 KB
testcase_28 WA -
testcase_29 AC 130 ms
41,264 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long a = Long.parseLong(sc.next());
        long b = Long.parseLong(sc.next());
        long c = Long.parseLong(sc.next());

        if ((double)a / c <= ((double)a / b) * (2.0 / 3.0)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0