結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー syunsukesyunsuke
提出日時 2020-11-01 15:27:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 183 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-22 05:45:59
合計ジャッジ時間 1,395 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 37 ms
53,668 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,384 KB
testcase_07 WA -
testcase_08 AC 38 ms
53,144 KB
testcase_09 AC 38 ms
53,156 KB
testcase_10 AC 36 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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*100)
0