結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー utsumidaisukeutsumidaisuke
提出日時 2018-12-13 12:10:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,316 KB
最終ジャッジ日時 2024-10-05 23:32:57
合計ジャッジ時間 8,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 452 ms
44,060 KB
testcase_01 AC 445 ms
43,808 KB
testcase_02 AC 449 ms
44,188 KB
testcase_03 AC 450 ms
44,316 KB
testcase_04 AC 447 ms
43,804 KB
testcase_05 AC 447 ms
44,188 KB
testcase_06 AC 455 ms
44,300 KB
testcase_07 AC 459 ms
43,940 KB
testcase_08 AC 468 ms
43,924 KB
testcase_09 AC 461 ms
43,808 KB
testcase_10 AC 448 ms
43,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

c = int(input())
r, R = map(int,input().split())

pi = np.pi

v = pi * (r+R) * (((R-r)/2)**2) * pi

print(c*v)
0