結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー spaciaspacia
提出日時 2015-12-19 12:15:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 37,360 KB
最終ジャッジ日時 2024-10-05 22:48:22
合計ジャッジ時間 3,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,144 KB
testcase_01 AC 46 ms
36,828 KB
testcase_02 AC 49 ms
37,360 KB
testcase_03 AC 48 ms
36,784 KB
testcase_04 AC 48 ms
37,168 KB
testcase_05 AC 49 ms
37,232 KB
testcase_06 AC 47 ms
36,952 KB
testcase_07 AC 48 ms
36,896 KB
testcase_08 AC 48 ms
37,164 KB
testcase_09 AC 48 ms
36,916 KB
testcase_10 AC 46 ms
37,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main89 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		double c = Double.parseDouble(br.readLine());
		String[] line = br.readLine().split(" ");
		double in = Double.parseDouble(line[0]);
		double out = Double.parseDouble(line[1]);
		
		System.out.println(1.0 / 4.0 * Math.pow(Math.PI, 2) * (in + out) * Math.pow(out - in, 2) * c);
	}
}
0