結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー mannshi222mannshi222
提出日時 2022-04-29 13:53:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 72,400 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-11 06:36:08
合計ジャッジ時間 1,519 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
	int C, Ri, Ro;
	cin >> C >> Ri >> Ro;

	double R, r, two, doubleC;
	two = 2.000000000000;
	doubleC = C;
	double P = 3.14159265358979;
	R = (double)( Ri + Ro ) / 2;
	r = R - (double)Ri;

	cout << setprecision(20) << (P*P*r*r*R)*two*doubleC << endl;

	return 0;
}
0