結果
| 問題 | No.1009 面積の求め方 |
| コンテスト | |
| ユーザー |
onsen_manjuuu
|
| 提出日時 | 2020-06-14 18:13:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 2,000 ms |
| コード長 | 331 bytes |
| コンパイル時間 | 1,765 ms |
| コンパイル使用メモリ | 165,828 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-27 15:23:27 |
| 合計ジャッジ時間 | 2,560 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
ld a, b;
ld f(ld x) {
return (x - a) * (x - b);
}
int main()
{
cin >> a >> b;
ld ans = 0;
for(ld i = a; i <= b; i += 0.00001) {
ans += -f(i)*0.00001;
}
cout << fixed <<setprecision(12) << ans << endl;
}
onsen_manjuuu