結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー itezpaceitezpace
提出日時 2016-08-22 17:24:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 1,836 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-10-05 22:57:43
合計ジャッジ時間 3,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,184 KB
testcase_01 AC 120 ms
41,344 KB
testcase_02 AC 120 ms
41,172 KB
testcase_03 AC 115 ms
40,928 KB
testcase_04 AC 113 ms
40,600 KB
testcase_05 AC 117 ms
41,428 KB
testcase_06 AC 117 ms
41,056 KB
testcase_07 AC 116 ms
41,316 KB
testcase_08 AC 114 ms
41,068 KB
testcase_09 AC 119 ms
41,316 KB
testcase_10 AC 119 ms
41,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;

class Yuki89 {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    double c = sc.nextDouble();
    double ri = sc.nextDouble();
    double ro = sc.nextDouble();
    double r = (double)((ro-ri)/2);
    double g = r+ri;
    double x = 0;
    double pi = Math.PI;
    double gd = 2*pi*g;
    double s = r*r*pi;
    x=c*gd*s;
    System.out.println(x);
  }
}
0