結果

問題 No.1664 Unstable f(n)
ユーザー kohei2019kohei2019
提出日時 2022-11-04 13:51:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 200,636 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 13:25:11
合計ジャッジ時間 5,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
6,816 KB
testcase_01 AC 73 ms
6,816 KB
testcase_02 AC 44 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 24 ms
6,940 KB
testcase_07 AC 24 ms
6,940 KB
testcase_08 AC 25 ms
6,940 KB
testcase_09 AC 24 ms
6,940 KB
testcase_10 AC 24 ms
6,940 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 69 ms
6,944 KB
testcase_22 AC 68 ms
6,940 KB
testcase_23 AC 69 ms
6,944 KB
testcase_24 AC 67 ms
6,940 KB
testcase_25 AC 69 ms
6,940 KB
testcase_26 AC 26 ms
6,940 KB
testcase_27 AC 25 ms
6,940 KB
testcase_28 AC 28 ms
6,944 KB
testcase_29 AC 25 ms
6,940 KB
testcase_30 AC 27 ms
6,944 KB
testcase_31 AC 72 ms
6,940 KB
testcase_32 WA -
testcase_33 AC 73 ms
6,944 KB
testcase_34 AC 70 ms
6,940 KB
testcase_35 WA -
testcase_36 AC 68 ms
6,940 KB
testcase_37 WA -
testcase_38 AC 24 ms
6,940 KB
testcase_39 AC 100 ms
6,940 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;


int main() {
    ll n,ans,val,lim,k;
    cin >> n;
    lim = 1000000000000;
    ans = 1000000000000000000;
    for (ll i=1; i<=1000000;i++){
        for (ll j=1; j<=50;j++){
            if (pow(i,j) > min(lim,n)){
                break;
            }
            k = i+j+n-(pow(i,j));
            ans = min(ans,k);
        }
    }
    cout << ans << endl;
}
0