結果
問題 | No.2046 Ans Mod? Mod Ans! |
ユーザー | たたき@競プロ |
提出日時 | 2023-07-10 20:03:11 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 689 bytes |
コンパイル時間 | 2,731 ms |
コンパイル使用メモリ | 247,172 KB |
実行使用メモリ | 21,704 KB |
最終ジャッジ日時 | 2024-09-12 23:49:49 |
合計ジャッジ時間 | 13,284 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; using pp=pair<int,int>; #define sr string #define vc vector #define db double #define fi first #define se second #define rep(i,n) for(int i=0;i<(int)n;i++) #define pb push_back #define all(v) v.begin(),v.end() #define pque priority_queue #define bpc(a) __builtin_popcount(a) int main(){ int n;cin>>n; int m=3e5; vc<ll>v(m,0); vc<ll>s(m,0); rep(i,n){ ll a;cin>>a; v[a]++; } rep(i,m-1)v[i+1]+=v[i]; rep(i,m)s[i]=v[i]*i; ll ans=0; for(int i=1;i<m;i++){ ll now=v[i]-v[i-1]; ans+=now*v[m-1]; for(int j=i;j+i<m;j++){ int nj=j+i-1; ans+=now*(s[nj]-s[j]); ans-=now*(v[nj]-v[j])*j; } } cout<<ans; }