結果

問題 No.376 立方体のN等分 (2)
ユーザー fiordfiord
提出日時 2016-07-16 19:05:06
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 475 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 62,604 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-10-15 13:51:40
合計ジャッジ時間 32,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 351 ms
5,248 KB
testcase_03 AC 754 ms
5,248 KB
testcase_04 AC 500 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 35 ms
5,248 KB
testcase_10 AC 648 ms
5,248 KB
testcase_11 AC 121 ms
5,248 KB
testcase_12 AC 300 ms
5,248 KB
testcase_13 AC 114 ms
5,248 KB
testcase_14 AC 148 ms
5,248 KB
testcase_15 AC 87 ms
5,248 KB
testcase_16 AC 4,158 ms
5,248 KB
testcase_17 AC 296 ms
5,248 KB
testcase_18 AC 98 ms
5,248 KB
testcase_19 AC 594 ms
5,248 KB
testcase_20 AC 129 ms
5,248 KB
testcase_21 AC 4,651 ms
5,248 KB
testcase_22 AC 105 ms
5,248 KB
testcase_23 AC 4,915 ms
5,248 KB
testcase_24 AC 4,938 ms
5,248 KB
testcase_25 AC 105 ms
5,248 KB
testcase_26 TLE -
testcase_27 AC 177 ms
5,248 KB
testcase_28 AC 106 ms
5,248 KB
testcase_29 AC 283 ms
5,248 KB
testcase_30 AC 195 ms
5,248 KB
testcase_31 AC 106 ms
5,248 KB
testcase_32 AC 178 ms
5,248 KB
testcase_33 AC 105 ms
5,248 KB
testcase_34 AC 105 ms
5,248 KB
testcase_35 AC 229 ms
5,248 KB
testcase_36 AC 105 ms
5,248 KB
testcase_37 AC 107 ms
5,248 KB
testcase_38 AC 245 ms
5,248 KB
testcase_39 AC 277 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <algorithm>
using namespace std;
typedef long long ll;
int main() {
	ll n;	cin >> n;
	//(a+1)(b+1)(c+1)=Nを満たす中でのa+b+cの最小値
	ll ans = 1e15;
	for (ll a = ceil(cbrt(n)); a > 0; a--) {
		if (n%a != 0)	continue;
		ll left = n / a;
		for (ll b = sqrt(left); b > 0; b--) {
			if (left%b != 0)	continue;
			ll c = left / b;
			ans = min(a + b + c - 3, ans);
		}
	}
	cout << ans << " " << n - 1 << endl;
	return 0;
}
0