結果

問題 No.1664 Unstable f(n)
ユーザー abc3abc3
提出日時 2021-09-03 23:21:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,088 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 199,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 07:18:09
合計ジャッジ時間 9,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
5,248 KB
testcase_01 AC 138 ms
5,376 KB
testcase_02 AC 137 ms
5,376 KB
testcase_03 AC 135 ms
5,376 KB
testcase_04 AC 133 ms
5,376 KB
testcase_05 AC 137 ms
5,376 KB
testcase_06 AC 138 ms
5,376 KB
testcase_07 AC 136 ms
5,376 KB
testcase_08 AC 137 ms
5,376 KB
testcase_09 AC 138 ms
5,376 KB
testcase_10 AC 138 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 134 ms
5,376 KB
testcase_22 AC 130 ms
5,376 KB
testcase_23 AC 135 ms
5,376 KB
testcase_24 AC 133 ms
5,376 KB
testcase_25 AC 134 ms
5,376 KB
testcase_26 AC 131 ms
5,376 KB
testcase_27 AC 132 ms
5,376 KB
testcase_28 AC 134 ms
5,376 KB
testcase_29 AC 137 ms
5,376 KB
testcase_30 AC 132 ms
5,376 KB
testcase_31 AC 132 ms
5,376 KB
testcase_32 AC 136 ms
5,376 KB
testcase_33 AC 133 ms
5,376 KB
testcase_34 AC 137 ms
5,376 KB
testcase_35 AC 145 ms
5,376 KB
testcase_36 AC 135 ms
5,376 KB
testcase_37 AC 147 ms
5,376 KB
testcase_38 AC 134 ms
5,376 KB
testcase_39 AC 132 ms
5,376 KB
testcase_40 AC 145 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    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; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    typedef long double ld;
    using P=pair<ll,ll>;
    const ld INF=1e18;
    const int mod=1e9+7;
    
    void solve(){
        ll n;
        cin>>n;
        ll res=1e18;
        for(int i=1;i<=10000000;i++){
            ll x=1;
            for(int j=0;j<=30;j++){
                ll y=i+n-x+j;
                if(n-x>=0){
                    chmin(res,y);
                }
                if(x>1000000000000000000/i){break;}
                x*=i;
            }
        }
        cout<<res<<endl;
    }  

    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve();
        
        return 0;
    }
0