結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー tanon710tanon710
提出日時 2020-05-04 23:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 109 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 71,620 KB
最終ジャッジ日時 2023-09-07 10:59:13
合計ジャッジ時間 1,960 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,144 KB
testcase_01 AC 69 ms
71,472 KB
testcase_02 AC 69 ms
71,336 KB
testcase_03 AC 68 ms
71,472 KB
testcase_04 AC 69 ms
71,620 KB
testcase_05 AC 68 ms
71,360 KB
testcase_06 AC 67 ms
71,332 KB
testcase_07 AC 67 ms
71,204 KB
testcase_08 AC 67 ms
71,536 KB
testcase_09 AC 68 ms
71,028 KB
testcase_10 AC 69 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

pi=3.141592653589793238
c=int(input())
r,R=map(int,input().split())
print(c*2*pi*((R+r)/2)*pi*(((R-r)/2)**2))
0