結果

問題 No.1824 門\松\列
ユーザー horoyoisawahoroyoisawa
提出日時 2022-01-29 10:36:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 1,492 ms
コンパイル使用メモリ 157,528 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-10 08:21:01
合計ジャッジ時間 1,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    int t;
    cin >> t;
    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