結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー Mcpu3Mcpu3
提出日時 2018-06-23 18:03:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 54,632 KB
最終ジャッジ日時 2024-10-05 23:28:46
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,060 KB
testcase_01 AC 125 ms
53,828 KB
testcase_02 AC 125 ms
54,208 KB
testcase_03 AC 124 ms
54,072 KB
testcase_04 AC 114 ms
53,652 KB
testcase_05 AC 116 ms
54,632 KB
testcase_06 AC 127 ms
54,120 KB
testcase_07 AC 134 ms
54,232 KB
testcase_08 AC 113 ms
53,660 KB
testcase_09 AC 121 ms
54,292 KB
testcase_10 AC 121 ms
54,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no89{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		double c,i,o,t,p=3.141592653589793;
		c=stdIn.nextDouble();
		i=stdIn.nextDouble();
		o=stdIn.nextDouble();
		t=.5*(o-i);
		System.out.print(t*t*(i+t)*p*p*c*2);
	}
}
0