結果

問題 No.1230 Hall_and_me
ユーザー 37zigen37zigen
提出日時 2020-09-23 05:48:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-06-27 08:37:45
合計ジャッジ時間 8,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,284 KB
testcase_01 AC 114 ms
40,288 KB
testcase_02 AC 116 ms
40,200 KB
testcase_03 AC 125 ms
41,304 KB
testcase_04 AC 126 ms
41,520 KB
testcase_05 AC 117 ms
40,380 KB
testcase_06 AC 110 ms
40,504 KB
testcase_07 AC 118 ms
40,200 KB
testcase_08 AC 115 ms
40,404 KB
testcase_09 AC 129 ms
41,220 KB
testcase_10 AC 127 ms
41,460 KB
testcase_11 AC 127 ms
41,432 KB
testcase_12 AC 126 ms
41,720 KB
testcase_13 AC 127 ms
41,132 KB
testcase_14 AC 129 ms
41,316 KB
testcase_15 AC 116 ms
40,232 KB
testcase_16 AC 123 ms
40,888 KB
testcase_17 AC 128 ms
41,212 KB
testcase_18 AC 127 ms
41,556 KB
testcase_19 AC 129 ms
41,396 KB
testcase_20 AC 128 ms
41,556 KB
testcase_21 AC 129 ms
41,064 KB
testcase_22 AC 117 ms
40,120 KB
testcase_23 AC 119 ms
40,296 KB
testcase_24 AC 116 ms
40,204 KB
testcase_25 AC 125 ms
41,276 KB
testcase_26 AC 125 ms
41,404 KB
testcase_27 AC 128 ms
41,264 KB
testcase_28 AC 129 ms
41,264 KB
testcase_29 AC 126 ms
41,372 KB
testcase_30 AC 116 ms
40,212 KB
testcase_31 AC 125 ms
41,424 KB
testcase_32 AC 121 ms
40,888 KB
testcase_33 AC 124 ms
41,304 KB
testcase_34 AC 125 ms
41,616 KB
testcase_35 AC 116 ms
40,472 KB
testcase_36 AC 116 ms
40,380 KB
testcase_37 AC 126 ms
41,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
import java.util.Stack;

class Main {
	public static void main(String[] $) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int[] a=new int[3];
		for (int i=0;i<3;++i) a[i]=sc.nextInt();
		Arrays.sort(a);
		System.out.println(1-a[0]/(a[0]+a[1]+a[2]+.0));
		
		
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0