結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー Pump0129Pump0129
提出日時 2018-03-28 00:16:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-10-05 23:25:31
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,244 KB
testcase_01 AC 126 ms
54,204 KB
testcase_02 AC 124 ms
54,156 KB
testcase_03 AC 124 ms
53,844 KB
testcase_04 AC 128 ms
53,904 KB
testcase_05 AC 126 ms
53,844 KB
testcase_06 AC 115 ms
53,032 KB
testcase_07 AC 126 ms
54,092 KB
testcase_08 AC 126 ms
53,900 KB
testcase_09 AC 127 ms
54,100 KB
testcase_10 AC 127 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no89;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);

        int cal = Integer.parseInt(scan.nextLine());

        String[] data = scan.nextLine().split(" ");

        int rin = Integer.parseInt(data[0]);
        int rout = Integer.parseInt(data[1]);

        double doughnut = 0.25 * Math.pow(Math.PI, 2) * (rin + rout) * Math.pow((rout - rin), 2);

        System.out.println(doughnut * cal);
    }
}
0