結果

問題 No.376 立方体のN等分 (2)
ユーザー legendcn666legendcn666
提出日時 2024-10-17 22:09:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,536 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 1,628 ms
コンパイル使用メモリ 166,416 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-17 22:10:04
合計ジャッジ時間 29,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 321 ms
6,816 KB
testcase_03 AC 721 ms
6,816 KB
testcase_04 AC 453 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 9 ms
6,820 KB
testcase_09 AC 31 ms
6,816 KB
testcase_10 AC 584 ms
6,816 KB
testcase_11 AC 107 ms
6,820 KB
testcase_12 AC 268 ms
6,820 KB
testcase_13 AC 102 ms
6,816 KB
testcase_14 AC 132 ms
6,820 KB
testcase_15 AC 77 ms
6,816 KB
testcase_16 AC 3,616 ms
6,816 KB
testcase_17 AC 271 ms
6,816 KB
testcase_18 AC 86 ms
6,816 KB
testcase_19 AC 536 ms
6,816 KB
testcase_20 AC 117 ms
6,820 KB
testcase_21 AC 4,055 ms
6,816 KB
testcase_22 AC 92 ms
6,816 KB
testcase_23 AC 4,247 ms
6,820 KB
testcase_24 AC 4,373 ms
6,816 KB
testcase_25 AC 92 ms
6,816 KB
testcase_26 AC 4,536 ms
6,820 KB
testcase_27 AC 163 ms
6,816 KB
testcase_28 AC 91 ms
6,816 KB
testcase_29 AC 253 ms
6,820 KB
testcase_30 AC 162 ms
6,816 KB
testcase_31 AC 92 ms
6,820 KB
testcase_32 AC 160 ms
6,820 KB
testcase_33 AC 92 ms
6,816 KB
testcase_34 AC 100 ms
6,820 KB
testcase_35 AC 205 ms
6,820 KB
testcase_36 AC 92 ms
6,816 KB
testcase_37 AC 91 ms
6,816 KB
testcase_38 AC 221 ms
6,816 KB
testcase_39 AC 247 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll; 
# define int long long
# define lc u << 1
# define rc u << 1 | 1
# define fi first
# define se second

int n;
signed main ()
{
	// freopen ("square.in", "r", stdin); freopen ("square.out", "w", stdout);  
	scanf ("%lld", &n);
	int ans = n - 1;
	for (int i = 2; i * i <= n; i ++ )
	{
		if (n % i == 0)
		{
			ans = min (ans, (i - 1) + (n / i - 1));
			int m = n / i;
			for (int j = i; j * j <= m; j ++ )
			{
				if (m % j == 0)
					ans = min (ans, (i - 1) + (j - 1) + (m / j - 1));
			}
		}
	}
	printf ("%lld %lld\n", ans, n - 1);
	return 0;
}

0