結果
問題 | No.89 どんどんドーナツどーんといこう! |
ユーザー | aaaaasatori |
提出日時 | 2018-02-15 10:39:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 348 bytes |
コンパイル時間 | 5,814 ms |
コンパイル使用メモリ | 74,232 KB |
実行使用メモリ | 41,836 KB |
最終ジャッジ日時 | 2024-12-25 22:45:08 |
合計ジャッジ時間 | 7,724 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import java.util.Scanner; public class No89 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int C = sc.nextInt(); double r1 = sc.nextDouble(); double r2 = sc.nextDouble(); double V = Math.pow(Math.PI,2) * Math.pow((r2 - r1), 2) * (r1+r2) /4; System.out.println(V); System.out.println(C * V); } }