結果

問題 No.1700 floor X
ユーザー ks2mks2m
提出日時 2021-10-08 21:51:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 77,908 KB
実行使用メモリ 49,248 KB
最終ジャッジ日時 2024-07-03 10:17:34
合計ジャッジ時間 20,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,320 KB
testcase_01 AC 393 ms
48,260 KB
testcase_02 AC 377 ms
47,772 KB
testcase_03 AC 371 ms
47,420 KB
testcase_04 AC 409 ms
47,712 KB
testcase_05 AC 379 ms
47,636 KB
testcase_06 AC 381 ms
47,944 KB
testcase_07 AC 378 ms
47,684 KB
testcase_08 AC 387 ms
48,940 KB
testcase_09 AC 369 ms
47,896 KB
testcase_10 AC 390 ms
48,076 KB
testcase_11 AC 362 ms
47,572 KB
testcase_12 AC 372 ms
47,768 KB
testcase_13 AC 368 ms
47,892 KB
testcase_14 AC 386 ms
47,728 KB
testcase_15 AC 365 ms
47,632 KB
testcase_16 AC 364 ms
47,588 KB
testcase_17 AC 393 ms
47,680 KB
testcase_18 AC 369 ms
48,172 KB
testcase_19 AC 358 ms
47,540 KB
testcase_20 AC 365 ms
47,968 KB
testcase_21 AC 417 ms
48,008 KB
testcase_22 AC 421 ms
47,432 KB
testcase_23 AC 409 ms
48,356 KB
testcase_24 AC 425 ms
47,836 KB
testcase_25 AC 414 ms
48,112 KB
testcase_26 AC 420 ms
48,040 KB
testcase_27 AC 411 ms
48,268 KB
testcase_28 AC 417 ms
47,816 KB
testcase_29 AC 412 ms
47,988 KB
testcase_30 AC 423 ms
47,828 KB
testcase_31 AC 412 ms
48,128 KB
testcase_32 AC 398 ms
48,080 KB
testcase_33 AC 403 ms
48,152 KB
testcase_34 AC 416 ms
48,056 KB
testcase_35 AC 417 ms
47,936 KB
testcase_36 AC 419 ms
49,248 KB
testcase_37 AC 415 ms
48,044 KB
testcase_38 AC 433 ms
47,916 KB
testcase_39 AC 414 ms
47,732 KB
testcase_40 AC 399 ms
48,188 KB
testcase_41 AC 406 ms
48,100 KB
testcase_42 AC 121 ms
41,284 KB
testcase_43 AC 398 ms
48,124 KB
testcase_44 AC 415 ms
47,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		for (int z = 0; z < t; z++) {
			long n = sc.nextLong();
			System.out.println(root(n, 2));
		}
		sc.close();
	}

	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