結果
問題 | No.89 どんどんドーナツどーんといこう! |
ユーザー | treeone |
提出日時 | 2016-05-04 15:55:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 447 bytes |
コンパイル時間 | 1,197 ms |
コンパイル使用メモリ | 158,216 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 06:29:57 |
合計ジャッジ時間 | 1,794 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,a,n) for(int i=a;i<n;i++) #define repb(i,a,b) for(int i=a;i>=b;i--) #define all(a) a.begin(),a.end() #define o(a) cout<<a<<endl #define int long long #define fi first #define se second using namespace std; typedef vector<int> vi; typedef vector<vi> vvi; typedef pair<int,int> pii; signed main(){ double c,r,R; cin>>c>>r>>R; double ans=pow(acos(-1.0),2)*pow((R-r)/2.0,2)*(R+r); printf("%.10lf\n", ans); }