結果

問題 No.538 N.G.S.
ユーザー syuki791syuki791
提出日時 2017-07-02 00:52:22
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 464 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 41,932 KB
最終ジャッジ日時 2024-10-05 16:31:26
合計ジャッジ時間 10,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,076 KB
testcase_01 AC 126 ms
41,148 KB
testcase_02 AC 123 ms
41,060 KB
testcase_03 AC 125 ms
41,112 KB
testcase_04 AC 125 ms
41,188 KB
testcase_05 AC 127 ms
41,308 KB
testcase_06 AC 111 ms
41,188 KB
testcase_07 AC 123 ms
41,116 KB
testcase_08 AC 124 ms
41,300 KB
testcase_09 AC 125 ms
41,460 KB
testcase_10 AC 125 ms
41,188 KB
testcase_11 AC 123 ms
41,172 KB
testcase_12 AC 125 ms
41,032 KB
testcase_13 AC 126 ms
41,932 KB
testcase_14 AC 126 ms
41,316 KB
testcase_15 AC 126 ms
41,112 KB
testcase_16 AC 125 ms
41,412 KB
testcase_17 AC 126 ms
41,176 KB
testcase_18 AC 126 ms
41,192 KB
testcase_19 AC 112 ms
41,156 KB
testcase_20 AC 132 ms
41,372 KB
testcase_21 AC 128 ms
41,180 KB
testcase_22 AC 125 ms
41,648 KB
testcase_23 AC 125 ms
41,200 KB
testcase_24 AC 123 ms
41,176 KB
testcase_25 AC 124 ms
40,992 KB
testcase_26 AC 123 ms
41,180 KB
testcase_27 AC 124 ms
41,028 KB
testcase_28 AC 120 ms
41,128 KB
testcase_29 AC 121 ms
41,164 KB
testcase_30 AC 121 ms
41,548 KB
testcase_31 AC 121 ms
40,816 KB
testcase_32 AC 122 ms
41,348 KB
testcase_33 AC 123 ms
41,220 KB
testcase_34 AC 125 ms
41,228 KB
testcase_35 AC 125 ms
41,264 KB
testcase_36 AC 124 ms
41,300 KB
testcase_37 AC 125 ms
40,956 KB
testcase_38 AC 126 ms
41,156 KB
testcase_39 AC 111 ms
40,976 KB
testcase_40 AC 124 ms
41,260 KB
testcase_41 AC 125 ms
41,184 KB
testcase_42 AC 126 ms
40,996 KB
testcase_43 AC 125 ms
41,060 KB
testcase_44 AC 125 ms
41,224 KB
testcase_45 AC 124 ms
41,020 KB
testcase_46 AC 125 ms
40,976 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 122 ms
40,904 KB
testcase_51 AC 123 ms
41,040 KB
testcase_52 AC 123 ms
41,332 KB
testcase_53 WA -
testcase_54 AC 124 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner s = new Scanner(System.in);
		
		String[] str = s.nextLine().split(" ");
		s.close();
		
		double b1 = Double.parseDouble(str[0]);
		
		double b2 = Double.parseDouble(str[1]);
		
		double b3 = Double.parseDouble(str[2]);
		
		
		double r = (b3 - b2) / (b2 - b1);
		double d = (b2*b2-b1*b3)/(b2-b1);
		double b4 = r*b3 + d;
		System.out.println((long)b4);
		
	}

}
0