結果

問題 No.1176 少ない質問
ユーザー pengin_2000pengin_2000
提出日時 2021-08-29 18:41:54
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 678 bytes
コンパイル時間 1,872 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 15,304 KB
最終ジャッジ日時 2024-11-22 07:11:28
合計ジャッジ時間 44,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
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 AC 1 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:15: warning: conflicting types for built-in function 'pow'; expected 'double(double,  double)' [-Wbuiltin-declaration-mismatch]
    2 | long long int pow(long long int a, long long int n)
      |               ^~~
main.c:2:1: note: 'pow' is declared in header '<math.h>'
    1 | #include<stdio.h>
  +++ |+#include <math.h>
    2 | long long int pow(long long int a, long long int n)

ソースコード

diff #

#include<stdio.h>
long long int pow(long long int a, long long int n)
{
	long long int res = 1;
	while (n > 0)
	{
		if (n % 2 > 0)
			res = res * a;
		a = a * a;
		n /= 2;
	}
	return res;
}
long long int root(long long int a, long long int n)
{
	long long int min, mid, max;
	min = 0;
	max = 1;
	while (pow(max, n) < a)
		max *= 2;
	while (max - min > 1)
	{
		mid = (max + min) / 2;
		if (pow(mid, n) < a)
			min = mid;
		else
			max = mid;
	}
	return max;
}
int main()
{
	long long int a;
	scanf("%lld", &a);
	long long int i, ans = a, r;
	for (i = 2;; i++)
	{
		r = root(a, i);
		if (ans > r * i)
			ans = r * i;
		if (r == 2)
			break;
	}
	printf("%lld\n", ans);
	return 0;
}
0