結果
問題 | No.1611 Minimum Multiple with Double Divisors |
ユーザー | nawawan |
提出日時 | 2021-07-21 22:21:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,344 bytes |
コンパイル時間 | 1,710 ms |
コンパイル使用メモリ | 177,164 KB |
実行使用メモリ | 17,088 KB |
最終ジャッジ日時 | 2024-07-17 19:15:23 |
合計ジャッジ時間 | 8,494 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:30:26: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 30 | for(auto [v, ko] : m){ | ^ main.cpp:38:26: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 38 | for(auto [v, ko] : m){ | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int testcase; cin >> testcase; vector<int> prime(100, -1); for(int i = 2; i < 100; i++){ if(prime[i] != -1) continue; int t = i; prime[i] = i; while(t + i < 100){ t += i; prime[t] = i; } } while(testcase--){ long long X; cin >> X; if(X % 2 == 1) cout << X * 2 << endl; else{ long long res0 = 1000000000000000; for(long long i = 2; i < 100; i++){ map<int, int> m, m2; int t = i; while(t != 1){ m[prime[t]]++; t /= prime[t]; } long long temp = X; for(auto [v, ko] : m){ while(temp % v == 0){ m2[v]++; temp /= v; } } long long res = 1; temp = 1; for(auto [v, ko] : m){ res *= (m2[v] + 1); temp *= (m2[v] + ko + 1); } if(temp % res == 0 && temp / res == 2){ res0 = min(res0, i); } } cout << X * res0 << endl; } } }