結果
問題 | No.2046 Ans Mod? Mod Ans! |
ユーザー | okkuukenken |
提出日時 | 2022-08-19 23:01:46 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 840 bytes |
コンパイル時間 | 1,756 ms |
コンパイル使用メモリ | 149,708 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 17:28:20 |
合計ジャッジ時間 | 2,876 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 7 ms
5,376 KB |
testcase_06 | AC | 6 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include<iostream> #include<vector> #include<algorithm> #include<cmath> #include<string> #include<iomanip> #include<numeric> #include<queue> #include<deque> #include<stack> #include<set> #include<map> #include<random> #include<bitset> #include<cassert> #include<complex> #include<fstream> #include<cstdlib> #include<functional> using namespace std; typedef long long ll; const int mod=998244353; const int dx[]={1,0,0,-1},dy[]={0,1,-1,0}; int sum[200001]; int main(){ int n,a[200000]; cin>>n; for(int i=0;i<n;i++){ cin>>a[i]; sum[a[i]]++; } sort(a,a+n); for(int i=0;i<200000;i++) sum[i+1]+=sum[i]; ll ans=0; for(int i=0;i<n;i++) for(int j=0;j*a[i]<=200000;j++) ans+=(sum[min(200000,(j+1)*a[i]-1)]-sum[max(j*a[i]-1,0)])*a[i]*j; for(int i=0;i<n;i++) ans+=a[i]*ll(n-(i+1)*2); cout<<ans<<endl; }