結果

問題 No.538 N.G.S.
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 21:24:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-22 13:04:16
合計ジャッジ時間 10,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,992 KB
testcase_01 AC 117 ms
53,924 KB
testcase_02 AC 116 ms
53,928 KB
testcase_03 AC 117 ms
53,948 KB
testcase_04 AC 122 ms
53,636 KB
testcase_05 AC 115 ms
54,164 KB
testcase_06 AC 113 ms
53,888 KB
testcase_07 AC 116 ms
54,304 KB
testcase_08 AC 103 ms
52,960 KB
testcase_09 AC 116 ms
53,804 KB
testcase_10 AC 115 ms
53,000 KB
testcase_11 AC 105 ms
52,748 KB
testcase_12 AC 119 ms
54,032 KB
testcase_13 AC 115 ms
53,876 KB
testcase_14 AC 103 ms
52,888 KB
testcase_15 AC 103 ms
53,012 KB
testcase_16 AC 107 ms
53,296 KB
testcase_17 AC 121 ms
53,884 KB
testcase_18 AC 112 ms
53,796 KB
testcase_19 AC 115 ms
54,104 KB
testcase_20 AC 117 ms
53,800 KB
testcase_21 AC 118 ms
54,204 KB
testcase_22 AC 107 ms
54,052 KB
testcase_23 AC 122 ms
53,868 KB
testcase_24 AC 104 ms
52,812 KB
testcase_25 AC 117 ms
53,896 KB
testcase_26 AC 114 ms
53,768 KB
testcase_27 AC 119 ms
54,252 KB
testcase_28 AC 105 ms
52,608 KB
testcase_29 AC 121 ms
53,876 KB
testcase_30 AC 120 ms
53,900 KB
testcase_31 AC 105 ms
52,804 KB
testcase_32 AC 106 ms
52,816 KB
testcase_33 AC 117 ms
54,104 KB
testcase_34 AC 102 ms
52,736 KB
testcase_35 AC 113 ms
53,820 KB
testcase_36 AC 111 ms
53,848 KB
testcase_37 AC 102 ms
52,932 KB
testcase_38 AC 115 ms
54,024 KB
testcase_39 AC 125 ms
53,692 KB
testcase_40 AC 123 ms
54,048 KB
testcase_41 AC 112 ms
53,820 KB
testcase_42 AC 100 ms
52,788 KB
testcase_43 AC 103 ms
52,944 KB
testcase_44 AC 115 ms
53,924 KB
testcase_45 AC 100 ms
52,776 KB
testcase_46 AC 111 ms
54,352 KB
testcase_47 AC 113 ms
53,920 KB
testcase_48 AC 113 ms
53,872 KB
testcase_49 AC 120 ms
54,012 KB
testcase_50 AC 120 ms
53,812 KB
testcase_51 AC 110 ms
54,332 KB
testcase_52 AC 121 ms
53,876 KB
testcase_53 AC 113 ms
53,788 KB
testcase_54 AC 109 ms
53,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No538 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long b1 = sc.nextLong();
		long b2 = sc.nextLong();
		long b3 = sc.nextLong();
		
		System.out.println((b3-b2)*(b3-b1)/(b2-b1)+b2);
	}
}

0