結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー fal_rndfal_rnd
提出日時 2017-09-30 00:16:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 605 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 78,968 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-10-05 23:19:21
合計ジャッジ時間 3,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,068 KB
testcase_01 AC 112 ms
41,208 KB
testcase_02 AC 117 ms
40,980 KB
testcase_03 AC 112 ms
41,200 KB
testcase_04 AC 101 ms
41,088 KB
testcase_05 AC 112 ms
41,232 KB
testcase_06 AC 117 ms
41,128 KB
testcase_07 AC 102 ms
41,048 KB
testcase_08 AC 121 ms
40,936 KB
testcase_09 AC 121 ms
40,860 KB
testcase_10 AC 117 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n){return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	static long getLong(){return Long.parseLong(s.next());}

	public static void main(String[]$){
		int c=getInt(),rin=getInt(),rout=getInt();
		double rs=(rout-rin)/2.0;
		System.out.println(c*Math.PI*(rout+rin)*rs*rs*Math.PI);
	}
}
0