結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー あかりきあかりき
提出日時 2021-02-08 08:46:59
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 109 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 87,060 KB
実行使用メモリ 71,320 KB
最終ジャッジ日時 2023-09-18 14:21:18
合計ジャッジ時間 2,158 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,112 KB
testcase_01 AC 77 ms
71,052 KB
testcase_02 AC 76 ms
71,228 KB
testcase_03 AC 77 ms
71,320 KB
testcase_04 AC 77 ms
71,220 KB
testcase_05 AC 77 ms
71,040 KB
testcase_06 AC 78 ms
71,304 KB
testcase_07 AC 80 ms
71,092 KB
testcase_08 AC 79 ms
71,292 KB
testcase_09 AC 78 ms
71,292 KB
testcase_10 AC 77 ms
71,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
c=int(input())
r1,r2=map(int,input().split())
print(math.pi**2*((r2-r1)/2)**2*(r1+(r2-r1)/2)*2*c)
0