結果

問題 No.1664 Unstable f(n)
ユーザー zezerozezero
提出日時 2021-09-03 21:48:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 601 bytes
コンパイル時間 3,421 ms
コンパイル使用メモリ 167,148 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-12-15 12:05:08
合計ジャッジ時間 47,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
13,636 KB
testcase_01 AC 22 ms
10,016 KB
testcase_02 AC 14 ms
13,640 KB
testcase_03 AC 13 ms
10,020 KB
testcase_04 AC 14 ms
13,636 KB
testcase_05 AC 14 ms
10,020 KB
testcase_06 AC 14 ms
13,640 KB
testcase_07 AC 14 ms
10,148 KB
testcase_08 AC 14 ms
13,644 KB
testcase_09 AC 14 ms
10,020 KB
testcase_10 AC 14 ms
10,148 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 22 ms
10,020 KB
testcase_22 AC 22 ms
10,020 KB
testcase_23 AC 22 ms
10,020 KB
testcase_24 AC 22 ms
10,020 KB
testcase_25 AC 22 ms
10,144 KB
testcase_26 AC 14 ms
10,020 KB
testcase_27 AC 15 ms
6,816 KB
testcase_28 AC 14 ms
6,816 KB
testcase_29 AC 15 ms
6,816 KB
testcase_30 AC 15 ms
6,816 KB
testcase_31 AC 23 ms
6,820 KB
testcase_32 TLE -
testcase_33 AC 22 ms
6,820 KB
testcase_34 AC 20 ms
6,816 KB
testcase_35 TLE -
testcase_36 AC 23 ms
6,816 KB
testcase_37 TLE -
testcase_38 AC 15 ms
6,816 KB
testcase_39 AC 23 ms
6,820 KB
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
  ll n;
  cin >> n;
  ll ans = 1e18;
  for (ll i = 1; i < 1e7;i++){
    ll x = i;
    ans = min(ans,i+n-1);
    if (i == 1) continue;
    ll j = 1;
    while(x <= n){
      ans = min(ans,i+j+n-x);
      j++;
      x*=i;
    }
  }
  cout << ans << endl;
  return 0;
}
0