結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,164 KB
testcase_01 AC 117 ms
53,712 KB
testcase_02 AC 105 ms
52,932 KB
testcase_03 AC 116 ms
54,076 KB
testcase_04 AC 110 ms
53,468 KB
testcase_05 AC 109 ms
52,936 KB
testcase_06 AC 100 ms
52,288 KB
testcase_07 AC 105 ms
53,072 KB
testcase_08 AC 111 ms
53,176 KB
testcase_09 AC 120 ms
53,984 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 119 ms
53,960 KB
testcase_13 AC 119 ms
53,928 KB
testcase_14 AC 123 ms
54,096 KB
testcase_15 AC 111 ms
53,172 KB
testcase_16 WA -
testcase_17 AC 123 ms
53,816 KB
testcase_18 WA -
testcase_19 AC 122 ms
53,904 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 110 ms
54,092 KB
testcase_29 AC 109 ms
53,708 KB
testcase_30 AC 114 ms
53,640 KB
testcase_31 AC 116 ms
54,052 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 106 ms
52,976 KB
testcase_35 AC 120 ms
53,868 KB
testcase_36 AC 107 ms
53,052 KB
testcase_37 AC 111 ms
53,948 KB
testcase_38 AC 118 ms
53,888 KB
testcase_39 AC 121 ms
53,748 KB
testcase_40 AC 118 ms
53,988 KB
testcase_41 AC 110 ms
53,056 KB
testcase_42 AC 118 ms
53,960 KB
testcase_43 AC 118 ms
53,948 KB
testcase_44 AC 104 ms
53,088 KB
testcase_45 AC 121 ms
53,656 KB
testcase_46 AC 110 ms
53,056 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 120 ms
54,024 KB
testcase_51 AC 119 ms
53,748 KB
testcase_52 AC 107 ms
52,948 KB
testcase_53 WA -
testcase_54 AC 104 ms
53,060 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((int)(r * b[2] + d));
    }
}
0