結果

問題 No.731 等差数列がだいすき
ユーザー firiexpfiriexp
提出日時 2018-09-07 21:49:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,500 ms
コード長 927 bytes
コンパイル時間 975 ms
コンパイル使用メモリ 95,780 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 01:03:55
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <map>
#include <queue>
#include <cmath>

static const int INF = 1000000007;
using ll = long long;
using u32 = unsigned;
using namespace std;

int main() {
    int n;
    cin >> n;
    vector<double> vy, vx;

    for (int i = 0; i < n; ++i) {
        double k;
        cin >> k;
        vy.emplace_back(k);
        vx.emplace_back(double(i));
    }
    double xy = 0, x = 0, y = 0, x2 = 0;
    for (int i = 0; i < n; ++i) {
        xy += vx[i] * vy[i];
        x += vx[i];
        y += vy[i];
        x2 += vx[i] * vx[i];
    }

    double a = (xy * n - x * y) /(x2 * n - x*x);
    double b = (x2 * y - xy * x) / (x2 * n - x*x);
    double c = 0;
    for (int i = 0; i < n; ++i) {
        double k = b + a * i;
        c += pow(vy[i]-k, 2);
    }
    cout << setprecision(16) << b << " " << a << "\n";
    cout << c << "\n";
    return 0;
}
0