結果

問題 No.1824 門\松\列
ユーザー horoyoisawahoroyoisawa
提出日時 2022-01-29 10:10:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 168,140 KB
実行使用メモリ 11,104 KB
最終ジャッジ日時 2024-12-31 21:09:29
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,060 KB
testcase_01 AC 6 ms
11,008 KB
testcase_02 AC 7 ms
11,000 KB
testcase_03 AC 22 ms
11,104 KB
testcase_04 AC 8 ms
11,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int t;
    cin >> t;
    vector<long long> out(1000001);
    out[3] = 4;
    for(int i=4;i<1000001;i++) {
        long long p = (long long)(i - 1) * (i - 2);
        // q = (1 + 2 + 3 + ... + i - 2) * 2
        long long q = (long long)(i - 1) * (i - 2);
        out[i] = out[i-1] + p + q;
    }

    for(int i=0;i<t;i++) {
        int n;
        cin >> n;
        cout << out[n] << endl;
    }

    return 0;
}
0