結果
| 問題 | No.1009 面積の求め方 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-20 21:25:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 18 ms / 2,000 ms |
| コード長 | 1,283 bytes |
| コンパイル時間 | 694 ms |
| コンパイル使用メモリ | 95,808 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-15 03:41:03 |
| 合計ジャッジ時間 | 1,620 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include <algorithm>
#include <array>
#include <cassert>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;
typedef long long ll;
#define REP(i,n) for(int i = 0; i < (int)(n); ++i)
#define FOR(i,a,b) for(int i = (a); i < (int)(b); ++i)
#define ALL(c) (c).begin(), (c).end()
#define SIZE(v) ((int)v.size())
template<class T> inline bool chmin(T& a, T b) {
if (a > b) {
a = b; return true;
}
return false;
}
template<class T> inline bool chmax(T& a, T b) {
if (a < b) {
a = b; return true;
}
return false;
}
#define pb push_back
#define mp make_pair
#define mt make_tuple
int main(void)
{
cin.sync_with_stdio(false);
int a, b;
cin >> a >> b;
int mx = 1e7;
double step = (double)(b - a) / mx;
double ans = 0.0;
REP(i, mx) {
double x = a + step * i;
double y = (x - a) * (x - b);
// cout << "x, y = " << x << "," << y << endl;
ans += y * step;
}
cout << fixed << setprecision(20) << abs(ans) << endl;
return 0;
}