結果

問題 No.538 N.G.S.
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-08 01:00:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 3,314 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 56,328 KB
最終ジャッジ日時 2024-04-28 12:58:37
合計ジャッジ時間 12,346 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
39,912 KB
testcase_01 AC 134 ms
41,340 KB
testcase_02 AC 133 ms
41,304 KB
testcase_03 AC 132 ms
41,304 KB
testcase_04 AC 134 ms
41,164 KB
testcase_05 AC 134 ms
41,640 KB
testcase_06 AC 132 ms
40,992 KB
testcase_07 AC 132 ms
41,456 KB
testcase_08 AC 133 ms
41,320 KB
testcase_09 AC 133 ms
41,416 KB
testcase_10 AC 119 ms
40,112 KB
testcase_11 AC 132 ms
40,932 KB
testcase_12 AC 134 ms
41,268 KB
testcase_13 AC 133 ms
41,468 KB
testcase_14 AC 131 ms
40,672 KB
testcase_15 AC 131 ms
41,032 KB
testcase_16 WA -
testcase_17 AC 130 ms
40,968 KB
testcase_18 WA -
testcase_19 AC 135 ms
41,024 KB
testcase_20 AC 120 ms
40,044 KB
testcase_21 AC 134 ms
41,352 KB
testcase_22 AC 133 ms
41,128 KB
testcase_23 AC 120 ms
39,984 KB
testcase_24 AC 133 ms
41,232 KB
testcase_25 AC 134 ms
41,168 KB
testcase_26 AC 119 ms
40,048 KB
testcase_27 AC 135 ms
41,312 KB
testcase_28 AC 133 ms
41,304 KB
testcase_29 AC 134 ms
41,260 KB
testcase_30 AC 134 ms
41,352 KB
testcase_31 AC 131 ms
41,728 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 131 ms
41,052 KB
testcase_35 AC 132 ms
41,256 KB
testcase_36 AC 131 ms
40,912 KB
testcase_37 AC 133 ms
41,088 KB
testcase_38 AC 132 ms
40,988 KB
testcase_39 AC 129 ms
40,952 KB
testcase_40 AC 130 ms
40,800 KB
testcase_41 AC 123 ms
41,192 KB
testcase_42 AC 131 ms
40,884 KB
testcase_43 AC 133 ms
41,380 KB
testcase_44 AC 133 ms
41,300 KB
testcase_45 AC 133 ms
41,096 KB
testcase_46 AC 133 ms
41,336 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 133 ms
41,204 KB
testcase_51 AC 134 ms
41,496 KB
testcase_52 AC 134 ms
41,424 KB
testcase_53 WA -
testcase_54 AC 132 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No538 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] b = {sc.nextInt(), sc.nextInt(), sc.nextInt()};
        double r, d, keisu;

        keisu = 1.0 / (b[1] - b[0]);
        r = keisu * b[2] + -keisu * b[1];
        d = keisu * -b[0] * b[2] + keisu * b[1] * b[1];

        System.out.println((long)(r * b[2] + d));
    }
}
0