結果

問題 No.1009 面積の求め方
ユーザー htensaihtensai
提出日時 2020-03-25 09:47:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 76,372 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2025-01-01 19:59:18
合計ジャッジ時間 5,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
54,320 KB
testcase_01 AC 105 ms
54,420 KB
testcase_02 AC 102 ms
54,524 KB
testcase_03 AC 103 ms
54,276 KB
testcase_04 AC 105 ms
54,112 KB
testcase_05 AC 103 ms
54,188 KB
testcase_06 AC 103 ms
54,572 KB
testcase_07 AC 103 ms
54,260 KB
testcase_08 AC 102 ms
54,568 KB
testcase_09 AC 102 ms
54,272 KB
testcase_10 AC 108 ms
54,296 KB
testcase_11 AC 106 ms
54,364 KB
testcase_12 AC 107 ms
54,384 KB
testcase_13 AC 96 ms
54,256 KB
testcase_14 AC 100 ms
54,416 KB
testcase_15 AC 106 ms
54,116 KB
testcase_16 AC 104 ms
54,172 KB
testcase_17 AC 104 ms
54,128 KB
testcase_18 AC 102 ms
54,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double a = sc.nextInt();
        double b = sc.nextInt();
        double aResult = Math.pow(a, 3) / 3 - (a + b) * Math.pow(a, 2) / 2 + a * b * a;
        double bResult = Math.pow(b, 3) / 3 - (a + b) * Math.pow(b, 2) / 2 + a * b * b;
        System.out.println(aResult - bResult);
    }
}
0