結果

問題 No.376 立方体のN等分 (2)
ユーザー legendcn666legendcn666
提出日時 2024-10-13 23:35:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,748 ms / 5,000 ms
コード長 615 bytes
コンパイル時間 1,507 ms
コンパイル使用メモリ 165,196 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 23:36:22
合計ジャッジ時間 30,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 326 ms
5,248 KB
testcase_03 AC 733 ms
5,248 KB
testcase_04 AC 495 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 36 ms
5,248 KB
testcase_10 AC 585 ms
5,248 KB
testcase_11 AC 113 ms
5,248 KB
testcase_12 AC 278 ms
5,248 KB
testcase_13 AC 131 ms
5,248 KB
testcase_14 AC 136 ms
5,248 KB
testcase_15 AC 82 ms
5,248 KB
testcase_16 AC 3,813 ms
5,248 KB
testcase_17 AC 288 ms
5,248 KB
testcase_18 AC 88 ms
5,248 KB
testcase_19 AC 578 ms
5,248 KB
testcase_20 AC 117 ms
5,248 KB
testcase_21 AC 4,377 ms
5,248 KB
testcase_22 AC 95 ms
5,248 KB
testcase_23 AC 4,580 ms
5,248 KB
testcase_24 AC 4,519 ms
5,248 KB
testcase_25 AC 99 ms
5,248 KB
testcase_26 AC 4,748 ms
5,248 KB
testcase_27 AC 166 ms
5,248 KB
testcase_28 AC 97 ms
5,248 KB
testcase_29 AC 264 ms
5,248 KB
testcase_30 AC 174 ms
5,248 KB
testcase_31 AC 94 ms
5,248 KB
testcase_32 AC 163 ms
5,248 KB
testcase_33 AC 96 ms
5,248 KB
testcase_34 AC 99 ms
5,248 KB
testcase_35 AC 237 ms
5,248 KB
testcase_36 AC 98 ms
5,248 KB
testcase_37 AC 98 ms
5,248 KB
testcase_38 AC 247 ms
5,248 KB
testcase_39 AC 262 ms
5,248 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