結果
問題 | No.1824 門\松\列 |
ユーザー | abc3 |
提出日時 | 2022-01-29 16:41:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 16 ms / 2,000 ms |
コード長 | 999 bytes |
コンパイル時間 | 2,127 ms |
コンパイル使用メモリ | 201,152 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 16:10:12 |
合計ジャッジ時間 | 2,703 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 16 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <math.h> #include <iomanip> #include <cstdint> #include <string> #include <sstream> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } #define rep(i,n) for (int i = 0; i < (n); ++i) typedef long long ll; typedef unsigned long long ull; using P=pair<ll,ll>; const int INF=1001001001; const ll INFL=1e18; const int mod=998244353; void solve(){ ll n; cin>>n; ll ans=n*(n+1)*(2*n+1)/6-n*(n+1)/2; ans-=1; ans-=n*n; ans+=1; ans+=n; ans*=2; cout<<ans<<endl; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int t; cin>>t; rep(i,t){ solve(); } return 0; }