結果

問題 No.1230 Hall_and_me
ユーザー キョウチクキョウチク
提出日時 2022-05-16 10:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 4,804 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 56,184 KB
最終ジャッジ日時 2024-09-14 02:09:59
合計ジャッジ時間 11,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,252 KB
testcase_01 AC 130 ms
54,200 KB
testcase_02 AC 130 ms
54,120 KB
testcase_03 AC 130 ms
54,340 KB
testcase_04 AC 130 ms
54,328 KB
testcase_05 AC 129 ms
54,200 KB
testcase_06 AC 130 ms
53,980 KB
testcase_07 AC 130 ms
54,132 KB
testcase_08 AC 132 ms
53,860 KB
testcase_09 AC 130 ms
54,376 KB
testcase_10 AC 128 ms
54,060 KB
testcase_11 AC 130 ms
54,052 KB
testcase_12 AC 129 ms
53,780 KB
testcase_13 AC 130 ms
54,156 KB
testcase_14 AC 129 ms
54,128 KB
testcase_15 AC 131 ms
56,184 KB
testcase_16 AC 129 ms
53,980 KB
testcase_17 AC 131 ms
54,180 KB
testcase_18 AC 129 ms
54,240 KB
testcase_19 AC 131 ms
54,204 KB
testcase_20 AC 127 ms
53,992 KB
testcase_21 AC 128 ms
54,312 KB
testcase_22 AC 129 ms
53,816 KB
testcase_23 AC 131 ms
54,116 KB
testcase_24 AC 128 ms
54,164 KB
testcase_25 AC 131 ms
54,364 KB
testcase_26 AC 130 ms
54,380 KB
testcase_27 AC 127 ms
53,952 KB
testcase_28 AC 129 ms
54,132 KB
testcase_29 AC 131 ms
54,172 KB
testcase_30 AC 129 ms
54,144 KB
testcase_31 AC 126 ms
54,084 KB
testcase_32 AC 129 ms
54,108 KB
testcase_33 AC 131 ms
54,188 KB
testcase_34 AC 131 ms
54,464 KB
testcase_35 AC 130 ms
54,192 KB
testcase_36 AC 125 ms
54,196 KB
testcase_37 AC 128 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    double[] data=new double[3];
    double sum=0;
    for(int i=0;i<3;i++){
      data[i]=Double.parseDouble(line[i]);
      sum+=data[i];
    }
    Arrays.sort(data);
    double p=1-(data[0]/sum);
    System.out.println(p);
    sc.close();
  }
}
0