結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー zyxwzyxw
提出日時 2020-10-16 13:28:57
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 10,548 KB
実行使用メモリ 8,204 KB
最終ジャッジ日時 2023-09-28 01:54:34
合計ジャッジ時間 1,152 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
8,108 KB
testcase_01 AC 14 ms
8,204 KB
testcase_02 AC 14 ms
7,844 KB
testcase_03 AC 14 ms
8,120 KB
testcase_04 AC 14 ms
8,072 KB
testcase_05 AC 12 ms
8,148 KB
testcase_06 AC 13 ms
8,096 KB
testcase_07 AC 15 ms
8,196 KB
testcase_08 AC 15 ms
8,200 KB
testcase_09 AC 14 ms
8,096 KB
testcase_10 AC 14 ms
8,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c=int(input())
data=input().split()
a=int(data[0])
b=int(data[1])
import math
ans=c*(a+b)*((b-a)**2)*(math.pi**2)/4
print(ans)
0