結果
問題 | No.1917 LCMST |
ユーザー | Trí Tâm Nguyễn |
提出日時 | 2024-03-12 23:43:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,290 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 172,020 KB |
実行使用メモリ | 28,228 KB |
最終ジャッジ日時 | 2024-09-29 22:29:42 |
合計ジャッジ時間 | 13,959 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
19,328 KB |
testcase_01 | AC | 58 ms
19,328 KB |
testcase_02 | AC | 59 ms
19,328 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 58 ms
19,328 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 | 244 ms
27,872 KB |
testcase_30 | AC | 243 ms
27,904 KB |
testcase_31 | AC | 248 ms
28,000 KB |
testcase_32 | AC | 244 ms
27,872 KB |
testcase_33 | AC | 249 ms
28,032 KB |
testcase_34 | AC | 169 ms
27,136 KB |
testcase_35 | AC | 153 ms
27,136 KB |
testcase_36 | AC | 177 ms
27,264 KB |
testcase_37 | AC | 241 ms
27,904 KB |
testcase_38 | AC | 243 ms
28,032 KB |
testcase_39 | AC | 239 ms
28,008 KB |
testcase_40 | AC | 245 ms
27,968 KB |
testcase_41 | AC | 243 ms
28,032 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; ll u[100005]; vector<ll> a[100005]; ll b[1000005]; //void dfs() int main() { ios_base::sync_with_stdio(false); cin.tie(0); for(ll i = 1;i <= 100000;i++) { for(ll j = i;j <= 100000;j += i) { a[j].push_back(i); } } ll n; cin >> n; ll i,j; for(i = 1;i <= n;i++) cin >> b[i]; sort(b + 1,b + 1 + n); ll ans = 0; for(i = 1;i <= n;i++) { ll x = b[i]; //ll y = sqrt(x); if(i == 1) { for(ll tmp = 0;tmp < a[x].size();tmp++) { j = a[x][tmp]; if(u[j] == 0) u[j] = x/j; //else u[j] = min(u[j], x/j); } }else { ll add = LLONG_MAX/2; for(ll tmp = 0;tmp < a[x].size();tmp++) { j = a[x][tmp]; if(u[j] != 0) add = min(add, x * u[j]); //else u[j] = min(u[j], x/j); } for(ll tmp = 0;tmp < a[x].size();tmp++) { j = a[x][tmp]; if(u[j] == 0) u[j] = x/j; //else u[j] = min(u[j], x/j); } ans += add; } } cout << ans; }