結果

問題 No.731 等差数列がだいすき
ユーザー daleksprinterdaleksprinter
提出日時 2018-09-08 02:04:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 168,912 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 17:50:46
合計ジャッジ時間 2,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,a,b) for(int i=a;i<b;i++)
typedef long long ll;

int main(){
    int n;
    cin >> n;
    vector<int> arr;
    rep(i,0,n){
        int t; cin >> t; arr.push_back(t);
    };

    double sumx = (n)*(n-1)/2;
    double sumy = accumulate(arr.begin(),arr.end(),0);
    double sumx2 = 0; rep(i,0,n) sumx2 += pow(i,2);
    double sumxy = 0; rep(i,0,n) sumxy += arr[i] * i;

    double a = (n * sumxy - sumx * sumy)/(n * sumx2 - sumx * sumx);
    double b = (sumx2 * sumy - sumxy * sumx)/(n * sumx2 - sumx * sumx);

    cout << b << " " << a << endl;

    double ans = 0;
    rep(i,0,n) ans += pow((arr[i]-(a*i+b)),2);
    cout << ans << endl;

}
0