結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー syunsukesyunsuke
提出日時 2020-11-01 15:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-07-22 05:46:39
合計ジャッジ時間 1,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,372 KB
testcase_01 AC 37 ms
53,072 KB
testcase_02 AC 38 ms
53,308 KB
testcase_03 AC 37 ms
51,996 KB
testcase_04 AC 38 ms
52,472 KB
testcase_05 AC 38 ms
51,940 KB
testcase_06 AC 37 ms
52,312 KB
testcase_07 AC 37 ms
52,872 KB
testcase_08 AC 38 ms
52,568 KB
testcase_09 AC 39 ms
53,868 KB
testcase_10 AC 37 ms
53,536 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 + In)/2

Size=(r**2)*R*2*(P**2)
print(Size*C)
0