結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー kaoetayakaoetaya
提出日時 2016-11-10 18:04:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 3,520 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-10-05 23:00:21
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,516 KB
testcase_01 AC 120 ms
41,352 KB
testcase_02 AC 127 ms
40,672 KB
testcase_03 AC 122 ms
40,892 KB
testcase_04 AC 120 ms
41,272 KB
testcase_05 AC 112 ms
40,808 KB
testcase_06 AC 118 ms
41,348 KB
testcase_07 AC 117 ms
40,848 KB
testcase_08 AC 115 ms
41,320 KB
testcase_09 AC 116 ms
41,580 KB
testcase_10 AC 117 ms
41,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		double c = s.nextDouble(),r = s.nextDouble(),R = s.nextDouble();
		double V = 2 * Math.pow(Math.PI,2) * Math.pow((R-r)/2,2) * (R-((R-r)/2));
		System.out.println(c * V);
    }
}
0