結果
| 問題 |
No.89 どんどんドーナツどーんといこう!
|
| コンテスト | |
| ユーザー |
syunsuke
|
| 提出日時 | 2020-11-01 15:32:16 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 179 bytes |
| コンパイル時間 | 184 ms |
| コンパイル使用メモリ | 82,436 KB |
| 実行使用メモリ | 54,164 KB |
| 最終ジャッジ日時 | 2024-07-22 05:46:16 |
| 合計ジャッジ時間 | 1,102 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 3 WA * 6 |
ソースコード
import math
P=math.pi
#print(P)
C=int(input())
if C==0:
print(0)
exit()
In,Out=map(int,input().split())
r = (Out - In)/2
R = Out - r
Size=(r**2)*R*2*(P**2)
print(Size/C)
syunsuke