結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー SSRSSSRS
提出日時 2021-07-21 21:31:50
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,541 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 162,724 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-14 05:10:30
合計ジャッジ時間 12,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,541 ms
6,816 KB
testcase_01 AC 339 ms
6,944 KB
testcase_02 AC 339 ms
6,940 KB
testcase_03 AC 336 ms
6,940 KB
testcase_04 AC 334 ms
6,944 KB
testcase_05 AC 334 ms
6,940 KB
testcase_06 AC 334 ms
6,944 KB
testcase_07 AC 335 ms
6,940 KB
testcase_08 AC 330 ms
6,940 KB
testcase_09 AC 337 ms
6,940 KB
testcase_10 AC 191 ms
6,940 KB
testcase_11 AC 209 ms
6,940 KB
testcase_12 AC 213 ms
6,944 KB
testcase_13 AC 214 ms
6,940 KB
testcase_14 AC 215 ms
6,940 KB
testcase_15 AC 208 ms
6,944 KB
testcase_16 AC 209 ms
6,944 KB
testcase_17 AC 209 ms
6,940 KB
testcase_18 AC 210 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 4 ms
6,948 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int T;
  cin >> T;
  for (int i = 0; i < T; i++){
    long long X;
    cin >> X;
    long long Y = X * 2;
    while (true){
      int cx = 1, cy = 1;
      int p = 2;
      long long X2 = X, Y2 = Y;
      while (X2 != Y2){
        int cntx = 0;
        while (X2 % p == 0){
          X2 /= p;
          cntx++;
        }
        int cnty = 0;
        while (Y2 % p == 0){
          Y2 /= p;
          cnty++;
        }
        cx *= cntx + 1;
        cy *= cnty + 1;
        p++;
      }
      if (cy == cx * 2){
        cout << Y << endl;
        break;
      } else {
        Y += X;
      }
    }
  }
}
0