結果

問題 No.1009 面積の求め方
ユーザー tentententen
提出日時 2020-10-09 08:46:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 1,818 ms
コンパイル使用メモリ 73,768 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-07-20 06:39:42
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,236 KB
testcase_01 AC 122 ms
41,380 KB
testcase_02 AC 106 ms
40,004 KB
testcase_03 AC 110 ms
40,372 KB
testcase_04 AC 113 ms
41,188 KB
testcase_05 AC 101 ms
40,160 KB
testcase_06 AC 123 ms
41,360 KB
testcase_07 AC 112 ms
40,420 KB
testcase_08 AC 109 ms
40,244 KB
testcase_09 AC 124 ms
41,592 KB
testcase_10 AC 120 ms
41,272 KB
testcase_11 AC 116 ms
41,524 KB
testcase_12 AC 127 ms
41,244 KB
testcase_13 AC 127 ms
41,376 KB
testcase_14 AC 108 ms
40,460 KB
testcase_15 AC 120 ms
41,628 KB
testcase_16 AC 123 ms
41,392 KB
testcase_17 AC 118 ms
41,372 KB
testcase_18 AC 109 ms
40,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        double dif = (b - a) / 1000000.0;
        double ans = 0;
        for (double i = a; i < b; i += dif) {
            ans += (i - a) * (i - b) * dif;
        }
        System.out.println(Math.abs(ans));
    }
}
0