結果

問題 No.1312 Snake Eyes
ユーザー milanis48663220milanis48663220
提出日時 2020-12-09 00:17:13
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,226 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 93,812 KB
最終ジャッジ日時 2025-01-16 20:07:41
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 84 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

bool ok(ll n, ll m){
    ll tmp = m;
    set<ll> st;
    while(n){
        st.insert(n%m);
        n /= m;
    }
    return st.size() == 1;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    ll n; cin >> n;
    if(n == 1){
        cout << 2 << endl;
        return 0;
    }
    if(n == 2){
        cout << 3 << endl;
        return 0;
    }
    ll ans = 1e15;
    for(ll m = 2; m*m <= n; m++){
        if(ok(n, m)) chmin(ans, m);
    }

    for(ll k = 1; k*k <= n; k++){
        if(n%k != 0) continue;
        ll m = (n/k)-1;
        if(k < m && m*m > n) chmin(ans, m);
    }
    cout << ans << endl;
}
0