結果

問題 No.538 N.G.S.
ユーザー syuki791syuki791
提出日時 2017-07-08 22:08:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-10-06 20:12:00
合計ジャッジ時間 9,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,216 KB
testcase_01 AC 121 ms
41,248 KB
testcase_02 AC 120 ms
40,972 KB
testcase_03 AC 117 ms
41,028 KB
testcase_04 AC 109 ms
41,056 KB
testcase_05 AC 119 ms
41,272 KB
testcase_06 AC 115 ms
41,188 KB
testcase_07 AC 116 ms
41,016 KB
testcase_08 AC 113 ms
41,244 KB
testcase_09 AC 129 ms
40,976 KB
testcase_10 AC 118 ms
41,196 KB
testcase_11 AC 119 ms
40,980 KB
testcase_12 AC 119 ms
41,116 KB
testcase_13 AC 119 ms
41,040 KB
testcase_14 AC 117 ms
41,144 KB
testcase_15 AC 127 ms
40,984 KB
testcase_16 AC 115 ms
40,900 KB
testcase_17 AC 111 ms
41,116 KB
testcase_18 AC 100 ms
40,996 KB
testcase_19 AC 110 ms
41,220 KB
testcase_20 AC 118 ms
41,296 KB
testcase_21 AC 116 ms
40,956 KB
testcase_22 AC 113 ms
41,120 KB
testcase_23 AC 114 ms
40,932 KB
testcase_24 AC 114 ms
40,976 KB
testcase_25 AC 117 ms
41,072 KB
testcase_26 AC 112 ms
41,004 KB
testcase_27 AC 115 ms
41,000 KB
testcase_28 AC 114 ms
40,940 KB
testcase_29 AC 111 ms
41,136 KB
testcase_30 AC 100 ms
41,076 KB
testcase_31 AC 109 ms
41,052 KB
testcase_32 AC 104 ms
41,056 KB
testcase_33 AC 114 ms
41,200 KB
testcase_34 AC 117 ms
40,940 KB
testcase_35 AC 115 ms
41,052 KB
testcase_36 AC 115 ms
41,060 KB
testcase_37 AC 116 ms
40,940 KB
testcase_38 AC 104 ms
40,936 KB
testcase_39 AC 117 ms
41,116 KB
testcase_40 AC 113 ms
40,872 KB
testcase_41 AC 103 ms
41,200 KB
testcase_42 AC 106 ms
41,248 KB
testcase_43 AC 114 ms
40,972 KB
testcase_44 AC 116 ms
40,844 KB
testcase_45 AC 112 ms
41,108 KB
testcase_46 AC 119 ms
40,764 KB
testcase_47 AC 105 ms
40,740 KB
testcase_48 AC 104 ms
41,328 KB
testcase_49 AC 102 ms
40,952 KB
testcase_50 WA -
testcase_51 AC 116 ms
40,936 KB
testcase_52 AC 104 ms
40,812 KB
testcase_53 WA -
testcase_54 AC 118 ms
40,868 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 = Math.ceil(r*b3 + d);
		System.out.println((long)b4);
		
	}

}
0