結果

問題 No.538 N.G.S.
ユーザー tentententen
提出日時 2021-02-08 12:17:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-07-05 08:40:34
合計ジャッジ時間 9,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,900 KB
testcase_01 AC 116 ms
40,936 KB
testcase_02 AC 104 ms
41,068 KB
testcase_03 AC 120 ms
41,304 KB
testcase_04 AC 107 ms
41,060 KB
testcase_05 AC 114 ms
41,052 KB
testcase_06 AC 121 ms
41,144 KB
testcase_07 AC 118 ms
41,132 KB
testcase_08 AC 110 ms
40,860 KB
testcase_09 AC 105 ms
41,132 KB
testcase_10 AC 106 ms
40,924 KB
testcase_11 AC 122 ms
41,028 KB
testcase_12 AC 122 ms
41,076 KB
testcase_13 AC 116 ms
41,036 KB
testcase_14 AC 125 ms
41,320 KB
testcase_15 AC 123 ms
41,076 KB
testcase_16 AC 112 ms
41,056 KB
testcase_17 AC 125 ms
41,072 KB
testcase_18 AC 121 ms
41,008 KB
testcase_19 AC 114 ms
41,016 KB
testcase_20 AC 111 ms
41,044 KB
testcase_21 AC 112 ms
41,012 KB
testcase_22 AC 112 ms
41,168 KB
testcase_23 AC 117 ms
41,176 KB
testcase_24 AC 117 ms
41,076 KB
testcase_25 AC 121 ms
40,900 KB
testcase_26 AC 122 ms
41,076 KB
testcase_27 AC 124 ms
41,152 KB
testcase_28 AC 124 ms
41,168 KB
testcase_29 AC 123 ms
41,188 KB
testcase_30 AC 118 ms
41,056 KB
testcase_31 AC 116 ms
41,080 KB
testcase_32 AC 115 ms
41,000 KB
testcase_33 AC 104 ms
39,972 KB
testcase_34 AC 116 ms
41,124 KB
testcase_35 AC 113 ms
40,820 KB
testcase_36 AC 102 ms
40,316 KB
testcase_37 AC 114 ms
41,120 KB
testcase_38 AC 123 ms
41,212 KB
testcase_39 AC 118 ms
40,964 KB
testcase_40 AC 113 ms
41,036 KB
testcase_41 AC 113 ms
40,316 KB
testcase_42 AC 103 ms
39,872 KB
testcase_43 AC 116 ms
40,888 KB
testcase_44 AC 116 ms
41,128 KB
testcase_45 AC 116 ms
40,940 KB
testcase_46 AC 115 ms
39,968 KB
testcase_47 AC 115 ms
41,304 KB
testcase_48 AC 105 ms
40,476 KB
testcase_49 AC 115 ms
41,012 KB
testcase_50 AC 101 ms
39,800 KB
testcase_51 AC 104 ms
40,384 KB
testcase_52 AC 105 ms
40,080 KB
testcase_53 AC 115 ms
40,836 KB
testcase_54 AC 119 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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