結果

問題 No.1664 Unstable f(n)
ユーザー abc3abc3
提出日時 2021-09-03 23:20:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,087 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 201,464 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 07:15:59
合計ジャッジ時間 3,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
5,248 KB
testcase_01 AC 17 ms
5,376 KB
testcase_02 AC 16 ms
5,376 KB
testcase_03 AC 16 ms
5,376 KB
testcase_04 AC 16 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 16 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 17 ms
5,376 KB
testcase_22 AC 17 ms
5,376 KB
testcase_23 AC 16 ms
5,376 KB
testcase_24 AC 16 ms
5,376 KB
testcase_25 AC 16 ms
5,376 KB
testcase_26 AC 15 ms
5,376 KB
testcase_27 AC 16 ms
5,376 KB
testcase_28 AC 16 ms
5,376 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 17 ms
5,376 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 15 ms
5,376 KB
testcase_33 AC 17 ms
5,376 KB
testcase_34 AC 17 ms
5,376 KB
testcase_35 AC 15 ms
5,376 KB
testcase_36 AC 16 ms
5,376 KB
testcase_37 AC 16 ms
5,376 KB
testcase_38 AC 16 ms
5,376 KB
testcase_39 AC 16 ms
5,376 KB
testcase_40 AC 16 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<=1000000;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