結果
| 問題 |
No.89 どんどんドーナツどーんといこう!
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-30 12:38:52 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 232 bytes |
| コンパイル時間 | 3,429 ms |
| コンパイル使用メモリ | 189,856 KB |
| 最終ジャッジ日時 | 2025-01-09 11:02:00 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
10 | double c,r,R; scanf("%lf%lf%lf",&c,&r,&R);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
const double PI=acos(-1);
int main(){
double c,r,R; scanf("%lf%lf%lf",&c,&r,&R);
printf("%.9f\n",c*PI*PI*(R-r)*(R-r)*(R+r)/4);
return 0;
}