結果

問題 No.811 約数の個数の最大化
ユーザー SumitacchanSumitacchan
提出日時 2019-04-12 22:02:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 2,721 bytes
コンパイル時間 3,181 ms
コンパイル使用メモリ 174,048 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-10-12 20:22:07
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 3 ms
4,348 KB
testcase_02 AC 90 ms
4,352 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 4 ms
4,352 KB
testcase_06 AC 11 ms
4,348 KB
testcase_07 AC 14 ms
4,348 KB
testcase_08 AC 48 ms
4,348 KB
testcase_09 AC 46 ms
4,352 KB
testcase_10 AC 33 ms
4,352 KB
testcase_11 AC 80 ms
4,352 KB
testcase_12 AC 27 ms
4,348 KB
testcase_13 AC 90 ms
4,348 KB
testcase_14 AC 96 ms
4,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
次のファイルから読み込み:  /usr/local/gcc7/include/c++/12.2.0/istream:39,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/sstream:38,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/complex:45,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/ccomplex:39,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/x86_64-pc-linux-gnu/bits/stdc++.h:54,
         次から読み込み:  main.cpp:1:
メンバ関数 ‘std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits<char>]’ 内,
    inlined from ‘int main()’ at main.cpp:96:13:
/usr/local/gcc7/include/c++/12.2.0/ostream:202:25: 警告: ‘ans’ may be used uninitialized [-Wmaybe-uninitialized]
  202 |       { return _M_insert(__n); }
      |                ~~~~~~~~~^~~~~
main.cpp: 関数 ‘int main()’ 内:
main.cpp:78:9: 備考: ‘ans’ はここで定義されています
   78 |     int ans, n = 0;
      |         ^~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define Max(a, b) a = max(a, b)
#define Min(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define bit_exist(x, n) ((x >> n) & 1)
#define Ans(f, y, n) if(f) cout << y << endl; else cout << n << endl;
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) cout << #v << "=" << endl; REP(i, v.size()){ cout << v[i] << ","; } cout << endl;
#define mdebug(m) cout << #m << "=" << endl; REP(i, m.size()){ REP(j, m[i].size()){ cout << m[i][j] << ","; } cout << endl;}
#define pb push_back
#define f first
#define s second
#define int long long
#define INF 1000000000000000000

using vec = vector<int>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using PiP = pair<int, Pii>;
using PPi = pair<Pii, int>;
using bools = vector<bool>;
using pairs = vector<Pii>;

template<typename T> void readv(vector<T> &a){ REP(i, a.size()) cin >> a[i]; }
void readv_m1(vector<int> &a){ REP(i, a.size()){cin >> a[i]; a[i]--;} }

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};

int mod = 1000000007;
//int mod = 998244353;
#define Add(x, y) x = (x + (y)) % mod
#define Mult(x, y) x = (x * (y)) % mod

int yakusuu(int x, vec &prime){
    int n = 1;
    for(int p: prime){
        int k = 0;
        while(x % p == 0){
            k++;
            x /= p;
        }
        n *= k + 1;
    }
    return n;
}

signed main(){

    vec prime;
    FOR(i, 2, 316){
        bool f = true;
        FOR(j, 2, i) if(i % j == 0) f = false;
        if(f) prime.pb(i);
    }

    int N, K; cin >> N >> K;
    map<int, int> m;
    int N0 = N;
    FOR(i, 2, N + 1){
        while(N0 % i == 0){
            m[i] += 1;
            N0 /= i;
        }
    }
    int ans, n = 0;
    FOR(i, 1, N){
        int c = 0;
        int i0 = i;
        for(auto p: m){
            REP(k, p.s){
                if(i0 % p.f == 0){
                    c++;
                    i0 /= p.f;
                }
            }
        }
        int y = yakusuu(i, prime);
        if(c >= K && y > n){
            n = y;
            ans = i;
        }
    }
    cout << ans << endl;

    return 0;
}
0