結果

問題 No.538 N.G.S.
ユーザー mosmos_21mosmos_21
提出日時 2017-06-30 23:59:48
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 75,524 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-10-04 21:59:01
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,924 KB
testcase_01 AC 118 ms
54,000 KB
testcase_02 AC 111 ms
53,960 KB
testcase_03 AC 103 ms
52,816 KB
testcase_04 AC 105 ms
52,952 KB
testcase_05 AC 113 ms
54,048 KB
testcase_06 AC 112 ms
53,972 KB
testcase_07 AC 96 ms
52,584 KB
testcase_08 AC 101 ms
52,976 KB
testcase_09 AC 114 ms
53,996 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 107 ms
52,732 KB
testcase_13 AC 104 ms
52,764 KB
testcase_14 AC 109 ms
53,856 KB
testcase_15 AC 105 ms
53,452 KB
testcase_16 AC 111 ms
53,976 KB
testcase_17 AC 107 ms
53,388 KB
testcase_18 AC 117 ms
53,924 KB
testcase_19 AC 112 ms
54,208 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 103 ms
52,696 KB
testcase_29 AC 112 ms
54,100 KB
testcase_30 AC 112 ms
53,876 KB
testcase_31 AC 111 ms
54,396 KB
testcase_32 AC 100 ms
52,576 KB
testcase_33 AC 112 ms
54,068 KB
testcase_34 AC 102 ms
52,968 KB
testcase_35 AC 109 ms
52,976 KB
testcase_36 AC 113 ms
53,960 KB
testcase_37 AC 114 ms
53,964 KB
testcase_38 AC 111 ms
53,940 KB
testcase_39 AC 114 ms
54,228 KB
testcase_40 AC 100 ms
54,308 KB
testcase_41 AC 114 ms
53,912 KB
testcase_42 AC 116 ms
54,016 KB
testcase_43 AC 102 ms
52,968 KB
testcase_44 AC 111 ms
53,868 KB
testcase_45 AC 115 ms
53,868 KB
testcase_46 AC 109 ms
53,016 KB
testcase_47 AC 113 ms
54,060 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 102 ms
52,884 KB
testcase_52 AC 108 ms
52,792 KB
testcase_53 WA -
testcase_54 AC 98 ms
52,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
       Scanner in = new Scanner(System.in);
       int b1 = in.nextInt();
       int b2 = in.nextInt();
       int b3 = in.nextInt();

       double r = (b3 - b2) / ((b2 - b1) * 1.0);
       double d = b3 - r * b2;
       System.out.println((int)(r * b3 + d));
    }
}
0