結果
問題 | No.1233 割り切れない気持ち |
ユーザー |
![]() |
提出日時 | 2024-05-02 12:58:52 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 633 bytes |
コンパイル時間 | 747 ms |
コンパイル使用メモリ | 68,480 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-11-23 03:01:07 |
合計ジャッジ時間 | 28,299 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 38 TLE * 1 |
ソースコード
#include <iostream> using namespace std; const int N = 2e5 + 5; int t, n; long long a[N], ans, maxi = 0, sum[N], vis[N]; int main() { ios::sync_with_stdio(0); cin.tie(0), cout.tie(0); cin >> n; for (int i = 1; i <= n; i++) { cin >> a[i]; vis[a[i]]++; maxi = max(maxi, a[i]); sum[a[i]] += a[i]; ans += a[i]; } for (int i = 1; i <= maxi + 1; i++) { sum[i] += sum[i - 1]; } ans *= n; for (int i = 1; i <= maxi; i++) { if (!vis[i]) { continue; } for (long long l = 1, r = 0; l <= i; l = r + 1) { r = i / (i / l); ans -= vis[i] * (i / l) * (sum[r] - sum[l - 1]); } } cout << ans; return 0; }