結果

問題 No.1664 Unstable f(n)
ユーザー JetmanJetman
提出日時 2021-09-03 23:14:23
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 2,308 bytes
コンパイル時間 3,373 ms
コンパイル使用メモリ 79,596 KB
実行使用メモリ 52,012 KB
最終ジャッジ日時 2024-12-15 17:37:05
合計ジャッジ時間 7,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,476 KB
testcase_01 AC 55 ms
50,512 KB
testcase_02 AC 51 ms
50,476 KB
testcase_03 AC 54 ms
50,304 KB
testcase_04 AC 56 ms
49,996 KB
testcase_05 AC 54 ms
50,108 KB
testcase_06 AC 52 ms
50,348 KB
testcase_07 AC 51 ms
50,348 KB
testcase_08 AC 50 ms
50,292 KB
testcase_09 AC 50 ms
50,300 KB
testcase_10 AC 50 ms
50,396 KB
testcase_11 AC 69 ms
50,916 KB
testcase_12 AC 125 ms
51,172 KB
testcase_13 AC 124 ms
51,568 KB
testcase_14 AC 123 ms
51,320 KB
testcase_15 AC 84 ms
51,344 KB
testcase_16 AC 105 ms
51,392 KB
testcase_17 AC 133 ms
51,328 KB
testcase_18 AC 140 ms
51,156 KB
testcase_19 AC 153 ms
51,340 KB
testcase_20 AC 119 ms
50,888 KB
testcase_21 AC 55 ms
50,468 KB
testcase_22 AC 53 ms
50,512 KB
testcase_23 AC 52 ms
50,268 KB
testcase_24 AC 52 ms
50,408 KB
testcase_25 AC 54 ms
50,532 KB
testcase_26 AC 52 ms
50,156 KB
testcase_27 AC 53 ms
50,312 KB
testcase_28 AC 51 ms
50,508 KB
testcase_29 AC 52 ms
50,144 KB
testcase_30 AC 53 ms
50,568 KB
testcase_31 WA -
testcase_32 AC 56 ms
50,400 KB
testcase_33 AC 55 ms
50,252 KB
testcase_34 AC 53 ms
50,372 KB
testcase_35 AC 116 ms
51,260 KB
testcase_36 AC 50 ms
50,056 KB
testcase_37 AC 74 ms
51,436 KB
testcase_38 AC 52 ms
50,372 KB
testcase_39 AC 54 ms
52,012 KB
testcase_40 AC 67 ms
51,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        FastReader in = new FastReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        No1664UnstableFn solver = new No1664UnstableFn();
        solver.solve(1, in, out);
        out.close();
    }

    static class No1664UnstableFn {
        public void solve(int testNumber, FastReader in, PrintWriter out) {
            long n = in.nextLong();
            long ans = n;
            long tmp = toLong((Math.sqrt(n)));
            ans = Math.min(ans, tmp + 2 + (n - tmp * tmp));
            for (long i = 2; i * i * i <= n; i++) {
                long k = toLong((Math.log(n) / Math.log(i)));
                if (Math.pow(i, k) > n) {
                    out.println(i + " " + k);
                }
                ans = Math.min(ans, i + k + (n - toLong(Math.pow(i, k))));

            }
            out.println(ans);
        }

        private long toLong(double sqrt) {
            long tmp = (long) sqrt;
            if (tmp + 1.0 <= sqrt) return tmp + 1;
            return tmp;
        }

    }

    static class FastReader {
        BufferedReader br;
        StringTokenizer st = new StringTokenizer("");

        public FastReader() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }

        public FastReader(InputStream in) {
            br = new BufferedReader(new InputStreamReader(in));
        }

        public String next() {
            while (st == null || (!st.hasMoreElements())) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }

            }
            return st.nextToken();
        }

        public long nextLong() {
            return Long.parseLong(next());
        }

    }
}

0