結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-27 21:27:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 3,505 ms
コンパイル使用メモリ 72,776 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-10-05 23:13:51
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,908 KB
testcase_01 AC 43 ms
36,752 KB
testcase_02 AC 45 ms
36,872 KB
testcase_03 AC 45 ms
36,892 KB
testcase_04 AC 43 ms
37,040 KB
testcase_05 AC 44 ms
37,024 KB
testcase_06 AC 44 ms
36,768 KB
testcase_07 AC 43 ms
37,076 KB
testcase_08 AC 42 ms
36,816 KB
testcase_09 AC 45 ms
36,568 KB
testcase_10 AC 45 ms
37,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int C = Integer.parseInt(reader.readLine());
        String[] inputs = reader.readLine().split(" ");
        int Rin = Integer.parseInt(inputs[0]);
        int Rout = Integer.parseInt(inputs[1]);
        double r = (Rout - Rin )/2.0;
        double V = ((Rin +Rout) / 2.0) * 2 * Math.PI *  (r * r * Math.PI) * C;
        System.out.println(V);

    }
}
0