結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー bokusunnybokusunny
提出日時 2022-02-12 23:26:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 205,244 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 02:37:22
合計ジャッジ時間 9,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 566 ms
5,248 KB
testcase_01 AC 209 ms
5,376 KB
testcase_02 AC 213 ms
5,376 KB
testcase_03 AC 223 ms
5,376 KB
testcase_04 AC 214 ms
5,376 KB
testcase_05 AC 208 ms
5,376 KB
testcase_06 AC 206 ms
5,376 KB
testcase_07 AC 210 ms
5,376 KB
testcase_08 AC 212 ms
5,376 KB
testcase_09 AC 212 ms
5,376 KB
testcase_10 AC 156 ms
5,376 KB
testcase_11 AC 159 ms
5,376 KB
testcase_12 AC 158 ms
5,376 KB
testcase_13 AC 161 ms
5,376 KB
testcase_14 AC 158 ms
5,376 KB
testcase_15 AC 160 ms
5,376 KB
testcase_16 AC 163 ms
5,376 KB
testcase_17 AC 164 ms
5,376 KB
testcase_18 AC 160 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define bokusunny ios::sync_with_stdio(false), cin.tie(nullptr);

template <class T>
vector<pair<T, int>> prime_factorize(T N) {
  vector<pair<T, int>> res;
  for (T i = 2; i * i <= N; i++) {
    if (N % i != 0) continue;
    int ex = 0;
    while (N % i == 0) {
      ex++;
      N /= i;
    }
    res.push_back({i, ex});
  }

  if (N != 1) res.push_back({N, 1});
  return res;
}

void solve() {
  long long X;
  cin >> X;

  const int MX = 40;
  for (int i = 2; i <= MX; i++) {
    auto XX = X;
    auto pf = prime_factorize(i);
    long long deno = 1;
    long long num = 1;
    for (auto &[p, ex] : pf) {
      int cnt = 0;
      while (XX % p == 0) {
        cnt++;
        XX /= p;
      }
      deno *= cnt + ex + 1;
      num *= cnt + 1;
    }

    if (deno % num == 0 && deno / num == 2) {
      cout << X * i << endl;
      break;
    }
  }
}

int main() {
  bokusunny;

  int t;
  cin >> t;
  while (t--) solve();

  return 0;
}
0