結果

問題 No.1664 Unstable f(n)
ユーザー ks2mks2m
提出日時 2021-09-03 21:27:19
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 974 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-12-15 09:59:13
合計ジャッジ時間 9,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,188 KB
testcase_01 AC 140 ms
53,944 KB
testcase_02 AC 142 ms
54,212 KB
testcase_03 AC 141 ms
53,820 KB
testcase_04 AC 139 ms
54,148 KB
testcase_05 AC 141 ms
54,256 KB
testcase_06 AC 139 ms
54,164 KB
testcase_07 AC 141 ms
54,216 KB
testcase_08 AC 136 ms
54,288 KB
testcase_09 AC 140 ms
53,968 KB
testcase_10 AC 139 ms
54,212 KB
testcase_11 AC 134 ms
54,088 KB
testcase_12 AC 139 ms
54,144 KB
testcase_13 AC 137 ms
54,176 KB
testcase_14 AC 139 ms
53,844 KB
testcase_15 AC 141 ms
53,828 KB
testcase_16 AC 140 ms
54,300 KB
testcase_17 AC 140 ms
53,992 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 134 ms
54,028 KB
testcase_21 AC 134 ms
53,964 KB
testcase_22 AC 137 ms
54,000 KB
testcase_23 AC 135 ms
54,172 KB
testcase_24 AC 137 ms
54,400 KB
testcase_25 AC 135 ms
54,148 KB
testcase_26 AC 134 ms
54,200 KB
testcase_27 AC 135 ms
54,056 KB
testcase_28 AC 136 ms
54,048 KB
testcase_29 AC 135 ms
54,124 KB
testcase_30 AC 137 ms
54,104 KB
testcase_31 AC 135 ms
53,980 KB
testcase_32 AC 134 ms
53,988 KB
testcase_33 AC 136 ms
54,144 KB
testcase_34 AC 134 ms
54,152 KB
testcase_35 AC 134 ms
54,044 KB
testcase_36 AC 136 ms
54,412 KB
testcase_37 AC 136 ms
54,064 KB
testcase_38 AC 136 ms
54,192 KB
testcase_39 AC 133 ms
54,304 KB
testcase_40 AC 135 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		sc.close();

		long ans = n;
		for (int j = 1; j < 60; j++) {
			int i = root(n, j);
			long k = n - power(i, j);
			if (k < 0) {
				throw new Exception();
			}
			ans = Math.min(ans, i + j + k);
		}
		System.out.println(ans);
	}

	static int root(long x, int n) {
		int ng = 1000000001;
		int ok = 1;
		while (ng - ok > 1) {
			int mid = (ok + ng) / 2;
			if (Math.pow(mid, n) <= Long.MAX_VALUE) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		ng = ok + 1;
		ok = 1;
		while (ng - ok > 1) {
			int mid = (ok + ng) / 2;
			if (power(mid, n) <= x) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		return ok;
	}

	static long power(long x, long n) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2);
		val = val * val;
		if (n % 2 == 1) {
			val = val * x;
		}
		return val;
	}
}
0