結果
問題 | No.1917 LCMST |
ユーザー | Georgi Petkov |
提出日時 | 2023-02-10 21:37:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,357 bytes |
コンパイル時間 | 1,516 ms |
コンパイル使用メモリ | 169,100 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 15:48:07 |
合計ジャッジ時間 | 14,071 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 287 ms
5,376 KB |
testcase_30 | AC | 286 ms
5,376 KB |
testcase_31 | AC | 281 ms
5,376 KB |
testcase_32 | AC | 283 ms
5,376 KB |
testcase_33 | AC | 294 ms
5,376 KB |
testcase_34 | AC | 78 ms
5,376 KB |
testcase_35 | AC | 79 ms
5,376 KB |
testcase_36 | AC | 79 ms
5,376 KB |
testcase_37 | AC | 278 ms
5,376 KB |
testcase_38 | AC | 282 ms
5,376 KB |
testcase_39 | AC | 280 ms
5,376 KB |
testcase_40 | AC | 286 ms
5,376 KB |
testcase_41 | AC | 281 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include <bits/stdc++.h> #define endl '\n' using namespace std; const int maxn = 1e5 + 3; const long long inf = 1e18; int n; bool is[maxn]; long long ans; int mins[maxn]; vector <int> get_divisors(int x) { vector <int> ans; for (int i = 1; i * i <= x; i++) if (x % i == 0) { ans.push_back(i); if (i * i != x) ans.push_back(x / i); } return ans; } void add_num(int x) { vector <int> d = get_divisors(x); for (auto i: d) { if (!mins[i]) mins[i] = x; if (!mins[x / i]) mins[x / i] = x; } } void read() { cin >> n; for (int i = 1; i <= n; i++) { int x; cin >> x; if (is[x]) { ans += x; continue; } is[x] = true; } } long long get_edge(int x) { long long ans = inf; auto d = get_divisors(x); for (auto i: d) if (mins[i] < x) ans = min(ans, (long long)x * mins[i] / i); return ans != inf ? ans : 0; } void solve() { for (int i = 1; i < maxn; i++) if (is[i]) add_num(i); for (int i = maxn-1; i >= 1; i--) if (is[i]) ans += get_edge(i); cout << ans << endl; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); read(); solve(); }