結果

問題 No.1664 Unstable f(n)
ユーザー tentententen
提出日時 2021-09-06 08:47:53
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,091 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-12-22 19:13:46
合計ジャッジ時間 34,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
42,324 KB
testcase_01 AC 71 ms
76,872 KB
testcase_02 AC 55 ms
42,208 KB
testcase_03 AC 55 ms
75,736 KB
testcase_04 AC 56 ms
42,280 KB
testcase_05 AC 55 ms
76,016 KB
testcase_06 AC 56 ms
41,936 KB
testcase_07 AC 55 ms
75,952 KB
testcase_08 AC 54 ms
42,420 KB
testcase_09 AC 54 ms
76,084 KB
testcase_10 AC 54 ms
42,428 KB
testcase_11 AC 872 ms
76,396 KB
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 56 ms
37,204 KB
testcase_22 AC 64 ms
37,032 KB
testcase_23 AC 64 ms
37,624 KB
testcase_24 AC 62 ms
37,340 KB
testcase_25 AC 61 ms
37,836 KB
testcase_26 AC 54 ms
37,352 KB
testcase_27 AC 55 ms
36,948 KB
testcase_28 AC 55 ms
37,180 KB
testcase_29 AC 55 ms
36,960 KB
testcase_30 AC 55 ms
36,928 KB
testcase_31 AC 54 ms
36,868 KB
testcase_32 AC 55 ms
36,916 KB
testcase_33 AC 59 ms
37,004 KB
testcase_34 AC 56 ms
37,168 KB
testcase_35 AC 55 ms
36,948 KB
testcase_36 AC 58 ms
37,108 KB
testcase_37 AC 56 ms
36,940 KB
testcase_38 AC 55 ms
36,816 KB
testcase_39 AC 55 ms
36,684 KB
testcase_40 AC 54 ms
75,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        long max = n;
        for (long i = 2; i <= max; i++) {
            long x = 1;
            int count = 0;
            while (n / i >= x) {
                count++;
                x *= i;
                max = Math.min(max, i + count + (n - x));
            }
        }
        System.out.println(max);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0