結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,452 KB
testcase_01 AC 114 ms
40,936 KB
testcase_02 AC 115 ms
41,200 KB
testcase_03 AC 131 ms
41,164 KB
testcase_04 AC 119 ms
41,180 KB
testcase_05 AC 127 ms
41,096 KB
testcase_06 AC 130 ms
41,184 KB
testcase_07 AC 129 ms
41,072 KB
testcase_08 AC 124 ms
40,520 KB
testcase_09 AC 126 ms
41,200 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 128 ms
41,244 KB
testcase_13 AC 111 ms
39,996 KB
testcase_14 AC 126 ms
41,432 KB
testcase_15 AC 118 ms
39,588 KB
testcase_16 WA -
testcase_17 AC 114 ms
41,020 KB
testcase_18 WA -
testcase_19 AC 114 ms
41,036 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 127 ms
41,116 KB
testcase_29 AC 123 ms
41,272 KB
testcase_30 AC 129 ms
41,076 KB
testcase_31 AC 126 ms
40,968 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 124 ms
41,296 KB
testcase_35 AC 124 ms
41,332 KB
testcase_36 AC 127 ms
41,328 KB
testcase_37 AC 128 ms
41,440 KB
testcase_38 AC 114 ms
41,316 KB
testcase_39 AC 113 ms
40,108 KB
testcase_40 AC 125 ms
40,988 KB
testcase_41 AC 127 ms
41,024 KB
testcase_42 AC 116 ms
40,036 KB
testcase_43 AC 127 ms
41,412 KB
testcase_44 AC 114 ms
40,164 KB
testcase_45 AC 125 ms
41,044 KB
testcase_46 AC 130 ms
41,280 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 127 ms
41,044 KB
testcase_51 AC 126 ms
41,224 KB
testcase_52 AC 122 ms
41,440 KB
testcase_53 WA -
testcase_54 AC 125 ms
40,936 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