結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー htensaihtensai
提出日時 2019-12-05 18:14:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-12-21 13:05:21
合計ジャッジ時間 4,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,648 KB
testcase_01 AC 128 ms
40,352 KB
testcase_02 AC 136 ms
41,100 KB
testcase_03 AC 134 ms
41,004 KB
testcase_04 AC 135 ms
41,112 KB
testcase_05 AC 140 ms
41,280 KB
testcase_06 AC 138 ms
41,116 KB
testcase_07 AC 136 ms
41,416 KB
testcase_08 AC 136 ms
41,112 KB
testcase_09 AC 130 ms
40,632 KB
testcase_10 AC 134 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		double c = sc.nextInt();
		double a = sc.nextInt();
		double b = sc.nextInt();
		double ans = Math.PI * Math.PI * (a + b) * (b - a) * (b - a) / 4.0 * c;
		System.out.println(ans);
   }
}

0