結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー YU HiroseYU Hirose
提出日時 2024-06-19 12:52:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 145 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-06-19 12:53:00
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,432 KB
testcase_01 AC 36 ms
52,520 KB
testcase_02 AC 36 ms
52,068 KB
testcase_03 AC 36 ms
52,516 KB
testcase_04 AC 38 ms
53,276 KB
testcase_05 AC 34 ms
51,948 KB
testcase_06 AC 34 ms
51,940 KB
testcase_07 AC 36 ms
52,516 KB
testcase_08 AC 36 ms
52,864 KB
testcase_09 AC 34 ms
52,216 KB
testcase_10 AC 35 ms
52,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
C = int(input())
rin, rout = map(int, input().split())
R = (rout + rin) / 2
r = (rout - rin) / 2
print(2 * math.pi**2 * r**2 * R * C)
0