結果

問題 No.538 N.G.S.
ユーザー tentententen
提出日時 2021-02-08 12:02:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 2,602 ms
コンパイル使用メモリ 73,788 KB
実行使用メモリ 42,000 KB
最終ジャッジ日時 2024-07-05 08:20:17
合計ジャッジ時間 9,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
42,000 KB
testcase_01 AC 119 ms
41,360 KB
testcase_02 AC 113 ms
41,364 KB
testcase_03 AC 117 ms
41,820 KB
testcase_04 AC 115 ms
41,520 KB
testcase_05 AC 100 ms
41,492 KB
testcase_06 AC 114 ms
41,292 KB
testcase_07 AC 103 ms
41,560 KB
testcase_08 AC 116 ms
41,664 KB
testcase_09 AC 103 ms
41,160 KB
testcase_10 AC 114 ms
41,424 KB
testcase_11 AC 115 ms
41,384 KB
testcase_12 AC 111 ms
41,176 KB
testcase_13 AC 111 ms
41,640 KB
testcase_14 AC 103 ms
41,424 KB
testcase_15 AC 113 ms
41,340 KB
testcase_16 AC 101 ms
41,416 KB
testcase_17 AC 104 ms
41,004 KB
testcase_18 AC 113 ms
41,288 KB
testcase_19 AC 114 ms
41,624 KB
testcase_20 AC 111 ms
41,484 KB
testcase_21 AC 113 ms
40,920 KB
testcase_22 AC 96 ms
41,528 KB
testcase_23 AC 104 ms
41,472 KB
testcase_24 AC 111 ms
41,400 KB
testcase_25 AC 111 ms
41,272 KB
testcase_26 AC 100 ms
41,500 KB
testcase_27 AC 115 ms
41,708 KB
testcase_28 AC 131 ms
39,952 KB
testcase_29 AC 109 ms
41,164 KB
testcase_30 AC 111 ms
41,456 KB
testcase_31 AC 101 ms
41,576 KB
testcase_32 AC 108 ms
41,164 KB
testcase_33 AC 108 ms
41,360 KB
testcase_34 AC 107 ms
41,800 KB
testcase_35 AC 99 ms
41,304 KB
testcase_36 AC 112 ms
41,448 KB
testcase_37 AC 110 ms
41,416 KB
testcase_38 AC 100 ms
41,284 KB
testcase_39 AC 110 ms
41,324 KB
testcase_40 AC 110 ms
41,024 KB
testcase_41 AC 111 ms
41,520 KB
testcase_42 AC 99 ms
41,164 KB
testcase_43 AC 102 ms
41,640 KB
testcase_44 AC 112 ms
41,388 KB
testcase_45 AC 112 ms
41,780 KB
testcase_46 AC 112 ms
41,200 KB
testcase_47 AC 115 ms
41,616 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 115 ms
41,524 KB
testcase_52 AC 114 ms
41,160 KB
testcase_53 WA -
testcase_54 AC 110 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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