結果
問題 |
No.1233 割り切れない気持ち
|
ユーザー |
![]() |
提出日時 | 2024-05-02 12:58:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 1,906 ms |
コンパイル使用メモリ | 194,616 KB |
最終ジャッジ日時 | 2025-02-21 10:35:33 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 2 WA * 37 |
ソースコード
#include<bits/stdc++.h> using namespace std; const int MAXN = 200001; int n, a[MAXN], tot, Max, l, r, x; long long ans, sum[MAXN]; int main() { ios::sync_with_stdio(false), cin.tie(0), cout.tie(0); cin >> n; for(int i = 1; i <= n; ++i) { cin >> a[i]; sum[a[i]] += a[i], ans += 1ll * a[i] * n, Max = max(Max, a[i]); } sort(a + 1, a + n + 1); for(int i = 1; i <= n; ++i) { if(!tot || a[i] > a[tot]) { a[++tot] = a[i]; } } n = tot; for(int i = 1; i <= Max; ++i) { sum[i] += sum[i - 1]; } for(int i = 1; i <= n; ++i) { for(l = 1; l <= a[i]; l = r + 1) { x = a[i] / l; r = a[i] / x; ans -= 1ll * x * (sum[r] - sum[l - 1]); } } cout << ans; return 0; }