結果
問題 | No.2046 Ans Mod? Mod Ans! |
ユーザー | houren |
提出日時 | 2022-08-19 23:15:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 43 ms / 4,000 ms |
コード長 | 1,095 bytes |
コンパイル時間 | 1,645 ms |
コンパイル使用メモリ | 169,428 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-05-09 17:29:39 |
合計ジャッジ時間 | 3,069 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
7,808 KB |
testcase_01 | AC | 16 ms
7,936 KB |
testcase_02 | AC | 19 ms
7,936 KB |
testcase_03 | AC | 18 ms
7,936 KB |
testcase_04 | AC | 17 ms
7,808 KB |
testcase_05 | AC | 17 ms
7,808 KB |
testcase_06 | AC | 18 ms
7,936 KB |
testcase_07 | AC | 19 ms
7,936 KB |
testcase_08 | AC | 18 ms
7,936 KB |
testcase_09 | AC | 18 ms
7,936 KB |
testcase_10 | AC | 18 ms
7,808 KB |
testcase_11 | AC | 19 ms
7,936 KB |
testcase_12 | AC | 19 ms
7,936 KB |
testcase_13 | AC | 28 ms
7,936 KB |
testcase_14 | AC | 26 ms
7,936 KB |
testcase_15 | AC | 31 ms
7,936 KB |
testcase_16 | AC | 31 ms
7,936 KB |
testcase_17 | AC | 31 ms
7,936 KB |
testcase_18 | AC | 27 ms
7,808 KB |
testcase_19 | AC | 31 ms
7,936 KB |
testcase_20 | AC | 43 ms
7,936 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<ll,ll>; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector<x>, greater<x> #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;} const int MAX = 200000; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<ll> cnt(200200,0), tot(200200,0), sum(200200,0); rep(i,n){ ll a; cin >> a; cnt[a]++, tot[a]++; sum[a] += a; } rep(i,MAX) tot[i+1] += tot[i], sum[i+1] += sum[i]; ll ans = 0; for(int i=1;i<=MAX;i++){ ans += (tot[MAX] - tot[i])*cnt[i] * i; for(int j=2;;j++){ int x = min(i*j-1, MAX), y = i*(j-1); ll z = sum[x]-sum[y] - (tot[x]-tot[y])*y; z *= cnt[i]; ans -= z; if(x==MAX) break; } } cout << ans << '\n'; return 0; }