結果

問題 No.1009 面積の求め方
ユーザー ks2mks2m
提出日時 2020-03-20 21:24:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 50,392 KB
最終ジャッジ日時 2024-12-15 03:35:35
合計ジャッジ時間 3,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int a = Integer.parseInt(sa[0]);
		int b = Integer.parseInt(sa[1]);
		br.close();

		if (a == b) {
			System.out.println(0);
			return;
		}

		double ans = 0;
		double eps = (b - a) / 100000.0;
		for (double i = a; i < b; i+=eps) {
			ans -= (i - a) * (i - b) * eps;
		}
		System.out.println(ans);
	}
}
0