結果

問題 No.937 Ultra Sword
ユーザー minatominato
提出日時 2019-11-29 23:15:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 175,612 KB
実行使用メモリ 22,472 KB
最終ジャッジ日時 2024-11-21 02:46:39
合計ジャッジ時間 91,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,644 KB
testcase_01 AC 2 ms
13,988 KB
testcase_02 AC 2 ms
13,768 KB
testcase_03 AC 2 ms
13,640 KB
testcase_04 AC 2 ms
12,704 KB
testcase_05 AC 468 ms
12,708 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,511 ms
11,168 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 22 ms
11,172 KB
testcase_17 AC 460 ms
11,296 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 691 ms
6,820 KB
testcase_25 WA -
testcase_26 TLE -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
const double PI = acos(-1);
const ll MOD = 1000000007;
using Graph = vector<vector<int>>;

int main() {
  int N; cin >> N;
  vector<ll> A(N);
  rep(i,N) cin >> A[i];

  set<ll> s;
  rep(i,N) {
    for (ll j = 1; j * j <= A[i]; j++) {
      if(A[i] % j == 0) {
        s.insert(j);
        s.insert(A[i] / j);
      }
    }
  }
  ll res = 1e18;
  for (auto i : s) {
    ll ans = 0;
    rep(j,N) {
      if (A[j] % i == 0) ans += (A[j] / i);
      else ans += A[j];
    }
    res = min(res,ans);
  }

  cout << res << endl;
}
0