結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー tkzw_21tkzw_21
提出日時 2014-12-07 19:13:55
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 65,952 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 22:19:27
合計ジャッジ時間 1,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <map>
#include <cmath>
#include <vector>

using namespace std;

int main(void){
	double c,ri,ro;
	cin >> c >> ri >> ro;
	double r = (ro-ri)/2.;
	printf("%.10f\n",M_PI * r*r * 2 * M_PI * (ri+r) * c);
	return 0;
}
0