結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー samplelpmassamplelpmas
提出日時 2017-01-19 15:48:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-10-05 23:06:42
合計ジャッジ時間 4,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,492 KB
testcase_01 AC 129 ms
41,400 KB
testcase_02 AC 114 ms
41,636 KB
testcase_03 AC 127 ms
41,100 KB
testcase_04 AC 129 ms
41,064 KB
testcase_05 AC 126 ms
41,164 KB
testcase_06 AC 133 ms
41,184 KB
testcase_07 AC 127 ms
41,572 KB
testcase_08 AC 113 ms
41,408 KB
testcase_09 AC 121 ms
41,280 KB
testcase_10 AC 127 ms
41,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int perCalorie = sc.nextInt();

        double rIn = sc.nextInt();
        double rOut = sc.nextInt();

        double radius = (rOut - rIn) / 2;

        double surfaceArea = radius * radius * Math.PI;

        double centerGravity = (rOut + rIn) / 2;

        double volume = 2 * Math.PI * centerGravity * surfaceArea;

        System.out.println(volume * perCalorie);

    }

}
0