結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,244 KB
testcase_01 AC 148 ms
41,624 KB
testcase_02 AC 143 ms
41,356 KB
testcase_03 AC 142 ms
41,704 KB
testcase_04 AC 146 ms
41,508 KB
testcase_05 AC 151 ms
41,532 KB
testcase_06 AC 146 ms
41,488 KB
testcase_07 AC 152 ms
41,488 KB
testcase_08 AC 150 ms
41,660 KB
testcase_09 AC 149 ms
41,784 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 143 ms
41,720 KB
testcase_14 AC 149 ms
41,400 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 148 ms
41,728 KB
testcase_18 WA -
testcase_19 AC 147 ms
41,552 KB
testcase_20 WA -
testcase_21 AC 134 ms
41,000 KB
testcase_22 AC 150 ms
41,420 KB
testcase_23 AC 148 ms
41,568 KB
testcase_24 AC 146 ms
41,640 KB
testcase_25 AC 146 ms
41,592 KB
testcase_26 WA -
testcase_27 AC 148 ms
41,484 KB
testcase_28 WA -
testcase_29 AC 147 ms
41,412 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