結果

問題 No.1009 面積の求め方
ユーザー ntk3264ntk3264
提出日時 2020-04-03 02:12:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 42,036 KB
最終ジャッジ日時 2024-06-28 17:12:18
合計ジャッジ時間 5,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,804 KB
testcase_01 AC 130 ms
41,808 KB
testcase_02 AC 135 ms
41,276 KB
testcase_03 AC 136 ms
41,836 KB
testcase_04 AC 131 ms
42,036 KB
testcase_05 AC 141 ms
41,608 KB
testcase_06 AC 135 ms
41,460 KB
testcase_07 AC 137 ms
41,940 KB
testcase_08 AC 137 ms
41,576 KB
testcase_09 AC 128 ms
41,564 KB
testcase_10 AC 139 ms
41,776 KB
testcase_11 AC 142 ms
41,624 KB
testcase_12 AC 141 ms
41,784 KB
testcase_13 AC 138 ms
41,824 KB
testcase_14 AC 138 ms
41,572 KB
testcase_15 AC 137 ms
41,648 KB
testcase_16 AC 131 ms
41,552 KB
testcase_17 AC 129 ms
41,812 KB
testcase_18 AC 136 ms
41,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;

public class Main {

    Scanner sc = new Scanner(System.in);

    PrintWriter out = new PrintWriter(System.out);

    public static void main(String[] args) {
        new Main().run();
    }

    void run() {

        double a = sc.nextDouble();
        double b = sc.nextDouble();

        if (b < a) {
            double tmp = b;
            b = a;
            a = tmp;
        }

        double x3 = (double)1 / (double)3;
        double x2 = (a*(-1)+b*(-1)) / (double)2;
        double x1 = a * b;

        double ans = 0;

        ans = x3*(Math.pow(b, 3)-Math.pow(a, 3))+x2*(Math.pow(b, 2)-Math.pow(a, 2))+x1*(b-a);

        out.print(Math.abs(ans));
        out.flush();

    }

}
0