結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー k_kadorak_kadora
提出日時 2015-05-24 03:41:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 2,956 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-10-05 22:35:25
合計ジャッジ時間 5,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,208 KB
testcase_01 AC 131 ms
54,244 KB
testcase_02 AC 130 ms
54,012 KB
testcase_03 AC 132 ms
54,200 KB
testcase_04 AC 140 ms
54,360 KB
testcase_05 AC 130 ms
54,184 KB
testcase_06 AC 131 ms
54,380 KB
testcase_07 AC 118 ms
53,540 KB
testcase_08 AC 132 ms
54,188 KB
testcase_09 AC 134 ms
54,172 KB
testcase_10 AC 131 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Donut{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		double ri,ro,c,res;
		c = sc.nextDouble();
		ri = sc.nextDouble();
		ro = sc.nextDouble();
		res = 2*Math.PI*(ri+(ro-ri)/2)*Math.PI*(ro-ri)*(ro-ri)*c/4;
		System.out.printf("%.10f\n",res);
	}
}
0