結果
問題 | No.1009 面積の求め方 |
ユーザー | leaf_1415 |
提出日時 | 2020-03-20 21:22:05 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 647 bytes |
コンパイル時間 | 3,062 ms |
コンパイル使用メモリ | 78,608 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-15 02:45:36 |
合計ジャッジ時間 | 1,984 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) using namespace std; double a, b; int main(void) { //ios::sync_with_stdio(0); //cin.tie(0); cin >> a >> b; double ans = a-b; ans = ans*ans*ans; printf("%.11f\n", fabs(ans/6)); return 0; }