結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,264 KB
testcase_01 AC 114 ms
53,860 KB
testcase_02 AC 116 ms
54,012 KB
testcase_03 AC 111 ms
53,852 KB
testcase_04 AC 126 ms
54,196 KB
testcase_05 AC 121 ms
54,192 KB
testcase_06 AC 106 ms
53,052 KB
testcase_07 AC 117 ms
54,264 KB
testcase_08 AC 119 ms
54,116 KB
testcase_09 AC 114 ms
54,468 KB
testcase_10 AC 112 ms
54,308 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