結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,444 KB
testcase_01 AC 130 ms
41,096 KB
testcase_02 AC 129 ms
40,828 KB
testcase_03 AC 117 ms
40,028 KB
testcase_04 AC 130 ms
41,336 KB
testcase_05 AC 131 ms
41,072 KB
testcase_06 AC 131 ms
41,152 KB
testcase_07 AC 131 ms
41,044 KB
testcase_08 AC 130 ms
41,216 KB
testcase_09 AC 134 ms
41,028 KB
testcase_10 AC 132 ms
41,032 KB
testcase_11 AC 128 ms
41,024 KB
testcase_12 AC 129 ms
40,792 KB
testcase_13 AC 132 ms
40,948 KB
testcase_14 AC 135 ms
41,256 KB
testcase_15 AC 131 ms
40,980 KB
testcase_16 WA -
testcase_17 AC 117 ms
39,660 KB
testcase_18 WA -
testcase_19 AC 129 ms
41,044 KB
testcase_20 AC 130 ms
40,936 KB
testcase_21 AC 129 ms
41,020 KB
testcase_22 AC 131 ms
41,392 KB
testcase_23 AC 132 ms
41,100 KB
testcase_24 AC 132 ms
40,912 KB
testcase_25 AC 131 ms
41,364 KB
testcase_26 AC 134 ms
41,056 KB
testcase_27 AC 133 ms
41,364 KB
testcase_28 AC 136 ms
41,448 KB
testcase_29 AC 130 ms
41,312 KB
testcase_30 AC 133 ms
41,336 KB
testcase_31 AC 130 ms
40,944 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 129 ms
41,072 KB
testcase_35 AC 137 ms
41,256 KB
testcase_36 AC 129 ms
41,112 KB
testcase_37 AC 132 ms
41,020 KB
testcase_38 AC 134 ms
41,196 KB
testcase_39 AC 132 ms
41,108 KB
testcase_40 AC 116 ms
39,752 KB
testcase_41 AC 128 ms
40,996 KB
testcase_42 AC 129 ms
41,180 KB
testcase_43 AC 129 ms
41,188 KB
testcase_44 AC 131 ms
41,304 KB
testcase_45 AC 129 ms
41,392 KB
testcase_46 AC 129 ms
41,024 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 128 ms
41,052 KB
testcase_51 AC 131 ms
40,900 KB
testcase_52 AC 129 ms
41,012 KB
testcase_53 WA -
testcase_54 AC 119 ms
39,848 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