結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー tsunabittsunabit
提出日時 2018-09-16 12:35:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 3,886 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-10-05 23:30:59
合計ジャッジ時間 5,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,252 KB
testcase_01 AC 120 ms
41,132 KB
testcase_02 AC 115 ms
40,788 KB
testcase_03 AC 133 ms
41,740 KB
testcase_04 AC 126 ms
41,660 KB
testcase_05 AC 136 ms
41,768 KB
testcase_06 AC 123 ms
40,648 KB
testcase_07 AC 116 ms
41,120 KB
testcase_08 AC 124 ms
41,704 KB
testcase_09 AC 119 ms
41,088 KB
testcase_10 AC 138 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No89 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int c=sc.nextInt();
		double in=sc.nextDouble();
		double out=sc.nextDouble();
		System.out.println(c*Math.PI*Math.PI/4*(in+out)*(in-out)*(in-out));
        
	}
}
0