結果

問題 No.1312 Snake Eyes
ユーザー hiro71687khiro71687k
提出日時 2023-05-06 05:00:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,064 bytes
コンパイル時間 4,529 ms
コンパイル使用メモリ 260,964 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-02 21:17:11
合計ジャッジ時間 13,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 4 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
testcase_39 AC 719 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 23 ms
5,376 KB
testcase_42 AC 381 ms
5,376 KB
testcase_43 AC 62 ms
5,376 KB
testcase_44 AC 25 ms
5,376 KB
testcase_45 AC 5 ms
5,376 KB
testcase_46 AC 341 ms
5,376 KB
testcase_47 TLE -
testcase_48 AC 26 ms
5,376 KB
testcase_49 AC 33 ms
5,376 KB
testcase_50 AC 307 ms
5,376 KB
testcase_51 TLE -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=14449999999999999;
ll mod=998244353;
int main(){
    ll n;
    cin >> n;
    if (n==1)
    {
        cout << 2 << endl;
        return 0;
    }else if (n==2)
    {
        cout << 3 << endl;
        return 0;
    }
    ll ans=n-1;
    for (ll i = 2; i <=43; i++)
    {
        bool ok=false;
        for (ll j = 2; j >=0; j++)
        {
            ll x=0;
            ll now=1;
            for (ll k = 0; k < i; k++)
            {
                if (x>n)
                {
                    break;
                }
                x+=now;
                now*=j;
            }
            if (x>n)
            {
                break;
            }
            
            if (n%x==0&&n/x<j)
            {
                ok=true;
                ans=j;
                break;
            }
        }
        if (!ok)
        {
            break;
        }
    }
    cout << ans << endl;
}
0