結果

問題 No.538 N.G.S.
ユーザー Mcpu3Mcpu3
提出日時 2018-09-21 22:31:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-07-18 08:48:43
合計ジャッジ時間 9,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,688 KB
testcase_01 AC 116 ms
41,212 KB
testcase_02 AC 121 ms
41,000 KB
testcase_03 AC 123 ms
41,148 KB
testcase_04 AC 103 ms
39,948 KB
testcase_05 AC 107 ms
40,096 KB
testcase_06 AC 105 ms
40,176 KB
testcase_07 AC 121 ms
41,104 KB
testcase_08 AC 102 ms
39,932 KB
testcase_09 AC 120 ms
41,480 KB
testcase_10 AC 120 ms
41,308 KB
testcase_11 AC 118 ms
41,320 KB
testcase_12 AC 119 ms
41,348 KB
testcase_13 AC 117 ms
41,008 KB
testcase_14 AC 114 ms
41,120 KB
testcase_15 AC 120 ms
41,496 KB
testcase_16 AC 126 ms
41,212 KB
testcase_17 AC 117 ms
41,488 KB
testcase_18 AC 118 ms
41,360 KB
testcase_19 AC 117 ms
41,740 KB
testcase_20 AC 115 ms
41,548 KB
testcase_21 AC 120 ms
41,360 KB
testcase_22 AC 118 ms
41,220 KB
testcase_23 AC 121 ms
41,664 KB
testcase_24 AC 103 ms
39,960 KB
testcase_25 AC 105 ms
40,244 KB
testcase_26 AC 119 ms
41,192 KB
testcase_27 AC 117 ms
41,200 KB
testcase_28 AC 115 ms
41,344 KB
testcase_29 AC 117 ms
41,284 KB
testcase_30 AC 117 ms
41,440 KB
testcase_31 AC 119 ms
41,196 KB
testcase_32 AC 103 ms
39,972 KB
testcase_33 AC 114 ms
41,264 KB
testcase_34 AC 118 ms
41,088 KB
testcase_35 AC 102 ms
40,064 KB
testcase_36 AC 105 ms
40,456 KB
testcase_37 AC 113 ms
41,220 KB
testcase_38 AC 114 ms
41,060 KB
testcase_39 AC 114 ms
41,492 KB
testcase_40 AC 115 ms
40,920 KB
testcase_41 AC 106 ms
39,972 KB
testcase_42 AC 117 ms
41,088 KB
testcase_43 AC 119 ms
41,236 KB
testcase_44 AC 118 ms
41,192 KB
testcase_45 AC 104 ms
40,188 KB
testcase_46 AC 119 ms
41,196 KB
testcase_47 AC 117 ms
41,044 KB
testcase_48 AC 118 ms
41,260 KB
testcase_49 AC 118 ms
41,184 KB
testcase_50 AC 124 ms
41,440 KB
testcase_51 AC 115 ms
41,280 KB
testcase_52 AC 103 ms
40,172 KB
testcase_53 AC 118 ms
41,232 KB
testcase_54 AC 115 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        long b1=sc.nextLong(),b2=sc.nextLong(),b3=sc.nextLong();
        sc.close();
        System.out.print((b2*b3-b3*b3+b1*b3-b2*b2)/(b1-b2));
    }
}
0