結果

問題 No.1664 Unstable f(n)
ユーザー abc3abc3
提出日時 2021-09-03 23:23:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,071 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 199,404 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-15 18:12:27
合計ジャッジ時間 47,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
5,248 KB
testcase_01 AC 1,051 ms
5,248 KB
testcase_02 AC 975 ms
5,248 KB
testcase_03 AC 965 ms
5,248 KB
testcase_04 AC 966 ms
5,248 KB
testcase_05 AC 962 ms
5,248 KB
testcase_06 AC 970 ms
5,248 KB
testcase_07 AC 969 ms
5,248 KB
testcase_08 AC 969 ms
5,248 KB
testcase_09 AC 966 ms
5,248 KB
testcase_10 AC 972 ms
5,248 KB
testcase_11 AC 1,088 ms
5,248 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,220 ms
5,248 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1,050 ms
5,248 KB
testcase_22 AC 1,059 ms
5,248 KB
testcase_23 AC 1,051 ms
5,248 KB
testcase_24 AC 1,051 ms
5,248 KB
testcase_25 AC 1,040 ms
5,248 KB
testcase_26 AC 979 ms
5,248 KB
testcase_27 AC 964 ms
5,248 KB
testcase_28 AC 970 ms
5,248 KB
testcase_29 AC 971 ms
5,248 KB
testcase_30 AC 965 ms
5,248 KB
testcase_31 AC 985 ms
5,248 KB
testcase_32 AC 1,058 ms
5,248 KB
testcase_33 AC 1,039 ms
5,248 KB
testcase_34 AC 970 ms
5,248 KB
testcase_35 AC 1,285 ms
5,248 KB
testcase_36 AC 1,057 ms
5,248 KB
testcase_37 AC 1,141 ms
5,248 KB
testcase_38 AC 964 ms
5,248 KB
testcase_39 AC 1,042 ms
5,248 KB
testcase_40 AC 1,071 ms
5,248 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<=100000000;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>n/i){break;}
                x*=i;
            }
        }
        cout<<res<<endl;
    }  

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