結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint     = long long;
const lint inf = 1LL << 60;
const lint mod = 1000000007;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    double a, b;
    cin >> a >> b;
    double ret = 0;
    ret += (b * b * b - a * a * a) / 3.0;
    ret -= (b * b - a * a) * (a + b) / 2.0;
    ret += (b - a) * a * b;
    cout << fixed << setprecision(10) << -ret << "\n";
    return 0;
}
0