結果
問題 | No.1824 門\松\列 |
ユーザー | 🍮かんプリン |
提出日時 | 2022-01-30 08:59:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 464 bytes |
コンパイル時間 | 1,465 ms |
コンパイル使用メモリ | 168,300 KB |
実行使用メモリ | 11,160 KB |
最終ジャッジ日時 | 2024-06-11 08:09:09 |
合計ジャッジ時間 | 1,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,024 KB |
testcase_01 | AC | 6 ms
11,060 KB |
testcase_02 | AC | 7 ms
11,160 KB |
testcase_03 | AC | 23 ms
11,084 KB |
testcase_04 | AC | 8 ms
11,088 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2022.01.30 08:59:43 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; int main() { const int max_n = 1000000; vector<ll> dp(max_n+1); dp[3] = 4; for (int i = 4; i <= max_n; i++) { dp[i] = dp[i-1]+(ll)(i-1)*(i-2)*2; } int t;cin >> t; for (int i = 0; i < t; i++) { int n;cin >> n; cout << dp[n] << endl; } return 0; }