結果

問題 No.218 経験値1.5倍
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-09 19:18:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 3,447 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 42,132 KB
最終ジャッジ日時 2024-04-17 12:17:09
合計ジャッジ時間 9,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,720 KB
testcase_01 AC 142 ms
41,404 KB
testcase_02 AC 142 ms
41,852 KB
testcase_03 AC 142 ms
41,620 KB
testcase_04 AC 143 ms
41,424 KB
testcase_05 AC 129 ms
41,680 KB
testcase_06 AC 144 ms
41,532 KB
testcase_07 AC 142 ms
41,548 KB
testcase_08 AC 141 ms
41,844 KB
testcase_09 AC 143 ms
41,576 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 143 ms
41,888 KB
testcase_14 AC 142 ms
41,628 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 141 ms
41,800 KB
testcase_18 WA -
testcase_19 AC 141 ms
41,428 KB
testcase_20 WA -
testcase_21 AC 143 ms
41,564 KB
testcase_22 AC 144 ms
41,904 KB
testcase_23 AC 145 ms
41,816 KB
testcase_24 AC 144 ms
41,612 KB
testcase_25 AC 141 ms
41,736 KB
testcase_26 WA -
testcase_27 AC 142 ms
41,780 KB
testcase_28 WA -
testcase_29 AC 141 ms
41,492 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise73{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    double a = sc.nextDouble();
    double b = sc.nextDouble();
    double c = sc.nextDouble();
    
    if(((a / c) / (a / b)) <= ((double)2 / (double)3)){
      System.out.println("YES");
    }else{
      System.out.println("NO");
    }
  }
}
0