結果

問題 No.1664 Unstable f(n)
ユーザー ks2mks2m
提出日時 2021-09-03 21:25:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-12-15 09:42:03
合計ジャッジ時間 7,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,420 KB
testcase_01 AC 107 ms
41,360 KB
testcase_02 AC 120 ms
40,064 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 109 ms
41,336 KB
testcase_07 AC 117 ms
41,468 KB
testcase_08 AC 106 ms
41,572 KB
testcase_09 AC 105 ms
41,244 KB
testcase_10 AC 117 ms
41,528 KB
testcase_11 AC 117 ms
41,356 KB
testcase_12 AC 118 ms
41,300 KB
testcase_13 AC 112 ms
41,724 KB
testcase_14 AC 105 ms
41,712 KB
testcase_15 AC 116 ms
41,592 KB
testcase_16 AC 111 ms
41,252 KB
testcase_17 AC 115 ms
41,464 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 120 ms
41,140 KB
testcase_21 AC 110 ms
41,572 KB
testcase_22 AC 103 ms
41,468 KB
testcase_23 AC 100 ms
41,612 KB
testcase_24 AC 113 ms
41,512 KB
testcase_25 AC 116 ms
41,312 KB
testcase_26 AC 109 ms
41,340 KB
testcase_27 AC 116 ms
41,424 KB
testcase_28 AC 107 ms
41,260 KB
testcase_29 AC 106 ms
41,608 KB
testcase_30 AC 121 ms
41,160 KB
testcase_31 AC 107 ms
41,412 KB
testcase_32 AC 115 ms
41,336 KB
testcase_33 AC 116 ms
41,392 KB
testcase_34 AC 115 ms
41,364 KB
testcase_35 AC 121 ms
41,584 KB
testcase_36 AC 114 ms
41,340 KB
testcase_37 AC 112 ms
41,320 KB
testcase_38 AC 120 ms
41,480 KB
testcase_39 AC 112 ms
41,652 KB
testcase_40 AC 103 ms
41,252 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 + 1;
		for (int j = 1; j < 60; j++) {
			int i = root(n, j);
			long k = n - power(i, j);
			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