結果

問題 No.1664 Unstable f(n)
ユーザー pengin_2000pengin_2000
提出日時 2021-09-03 21:26:11
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 308 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 28,544 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-12-15 09:47:26
合計ジャッジ時間 43,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,640 KB
testcase_01 AC 1 ms
8,352 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 AC 1 ms
8,352 KB
testcase_04 AC 1 ms
13,636 KB
testcase_05 AC 1 ms
8,352 KB
testcase_06 AC 0 ms
8,360 KB
testcase_07 AC 1 ms
8,484 KB
testcase_08 AC 1 ms
13,644 KB
testcase_09 AC 1 ms
8,356 KB
testcase_10 AC 1 ms
8,480 KB
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 TLE -
testcase_21 AC 1 ms
8,480 KB
testcase_22 AC 1 ms
13,640 KB
testcase_23 AC 1 ms
8,352 KB
testcase_24 AC 1 ms
8,488 KB
testcase_25 AC 1 ms
8,484 KB
testcase_26 AC 1 ms
8,356 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 TLE -
testcase_33 AC 1 ms
6,820 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 TLE -
testcase_36 AC 1 ms
6,816 KB
testcase_37 TLE -
testcase_38 AC 1 ms
6,816 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	long long int n;
	scanf("%lld", &n);
	long long int i, j, k;
	long long int ans = n, v;
	for (i = 2; i * i <= n; i++)
	{
		for (v = i, j = 1; v <= n; v *= i, j++);
		j--;
		v /= i;
		k = n - v;
		if (ans > i + j + k)
			ans = i + j + k;
	}
	printf("%lld\n", ans);
	return 0;
}
0