結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー darknightdarknight
提出日時 2016-11-25 22:07:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 1,954 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-10-05 23:01:19
合計ジャッジ時間 3,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,344 KB
testcase_01 AC 118 ms
41,344 KB
testcase_02 AC 117 ms
41,568 KB
testcase_03 AC 116 ms
41,444 KB
testcase_04 AC 112 ms
41,436 KB
testcase_05 AC 111 ms
41,204 KB
testcase_06 AC 110 ms
41,108 KB
testcase_07 AC 116 ms
41,540 KB
testcase_08 AC 117 ms
41,392 KB
testcase_09 AC 116 ms
41,388 KB
testcase_10 AC 115 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
	Scanner sc  = new Scanner(System.in);
    double ans = 0;
    int C   = Integer.parseInt(sc.next());
    int a   = Integer.parseInt(sc.next());
    int b   = Integer.parseInt(sc.next());
    ans = C*(b*b-a*a)*(b-a)*2.46740110027;
    System.out.print(ans);
    System.out.println();
	}
        
}
0