結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 22:50:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-10-05 23:00:32
合計ジャッジ時間 3,998 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,180 KB
testcase_01 AC 122 ms
41,488 KB
testcase_02 AC 122 ms
41,636 KB
testcase_03 AC 117 ms
41,116 KB
testcase_04 AC 110 ms
41,144 KB
testcase_05 AC 114 ms
41,496 KB
testcase_06 AC 125 ms
41,348 KB
testcase_07 AC 120 ms
41,136 KB
testcase_08 AC 121 ms
41,264 KB
testcase_09 AC 113 ms
41,148 KB
testcase_10 AC 126 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int C = sc.nextInt();
        int Rin = sc.nextInt();
        int Rout= sc.nextInt();
        double r = (Rout-Rin)/2.0;
        double d = (Rout+Rin)/2.0;
        double total = C*r*r*Math.PI * 2*d*Math.PI;
        System.out.println(total);
    }
}
0