結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー dazydazy
提出日時 2016-09-10 02:06:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 2,927 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-10-05 22:58:41
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,036 KB
testcase_01 AC 106 ms
41,164 KB
testcase_02 AC 103 ms
39,896 KB
testcase_03 AC 124 ms
41,436 KB
testcase_04 AC 109 ms
41,432 KB
testcase_05 AC 99 ms
40,164 KB
testcase_06 AC 113 ms
41,124 KB
testcase_07 AC 108 ms
40,680 KB
testcase_08 AC 102 ms
40,296 KB
testcase_09 AC 101 ms
39,992 KB
testcase_10 AC 106 ms
40,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        byte S = scan.nextByte();
        double Rin = scan.nextByte();
        double Rout = scan.nextByte();

        double V;
        V = Math.pow(Math.PI,2) * (Rin + Rout) * Math.pow(Rout-Rin,2) / 4;
        System.out.println(S*V);
    }
}
0