結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー yuki2006yuki2006
提出日時 2015-02-11 21:19:02
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-10-05 22:27:14
合計ジャッジ時間 1,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,648 KB
testcase_01 AC 70 ms
75,904 KB
testcase_02 AC 66 ms
75,392 KB
testcase_03 AC 64 ms
75,796 KB
testcase_04 AC 69 ms
75,392 KB
testcase_05 AC 67 ms
75,392 KB
testcase_06 AC 70 ms
75,804 KB
testcase_07 AC 67 ms
75,776 KB
testcase_08 AC 68 ms
75,904 KB
testcase_09 AC 68 ms
75,520 KB
testcase_10 AC 70 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

C = int(raw_input())
Ri, Ro = map(int, raw_input().split())

r = 1.0 * (Ro - Ri) / 2
l = 1.0 * (Ro + Ri) / 2

print C * r * r * math.pi * 2 * l * math.pi
0