結果

問題 No.1009 面積の求め方
ユーザー rahulsingh40grahulsingh40g
提出日時 2020-03-20 21:48:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 1,624 ms
コンパイル使用メモリ 166,396 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-15 05:20:26
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long int
#define w(t) int t;cin>>t;while(t--)
#define d double
using namespace std;
 d a, b;
d fun( d x)
{
    return (((x*x*x)/3)-((a+b)*x*x/2)+(a*b*x));
}
int main() {
    cin>>a>>b;
    d ans= fun(b)-fun(a);
    if(ans<0)
    ans=-ans;
    cout<<ans;
	
	return 0;
}
0