結果

問題 No.376 立方体のN等分 (2)
ユーザー kapokapo
提出日時 2016-06-09 21:27:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 564 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 65,672 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-06 23:29:31
合計ジャッジ時間 7,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 92 ms
5,248 KB
testcase_03 AC 88 ms
5,248 KB
testcase_04 AC 105 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 24 ms
5,248 KB
testcase_10 AC 61 ms
5,248 KB
testcase_11 AC 48 ms
5,248 KB
testcase_12 AC 64 ms
5,248 KB
testcase_13 AC 67 ms
5,248 KB
testcase_14 AC 75 ms
5,248 KB
testcase_15 AC 83 ms
5,248 KB
testcase_16 AC 491 ms
5,248 KB
testcase_17 AC 92 ms
5,248 KB
testcase_18 AC 95 ms
5,248 KB
testcase_19 AC 97 ms
5,248 KB
testcase_20 AC 99 ms
5,248 KB
testcase_21 AC 505 ms
5,248 KB
testcase_22 AC 104 ms
5,248 KB
testcase_23 AC 521 ms
5,248 KB
testcase_24 AC 504 ms
5,248 KB
testcase_25 AC 107 ms
5,248 KB
testcase_26 AC 564 ms
5,248 KB
testcase_27 AC 109 ms
5,248 KB
testcase_28 AC 109 ms
5,248 KB
testcase_29 AC 110 ms
5,248 KB
testcase_30 AC 109 ms
5,248 KB
testcase_31 AC 111 ms
5,248 KB
testcase_32 AC 110 ms
5,248 KB
testcase_33 AC 109 ms
5,248 KB
testcase_34 AC 109 ms
5,248 KB
testcase_35 AC 109 ms
5,248 KB
testcase_36 AC 109 ms
5,248 KB
testcase_37 AC 108 ms
5,248 KB
testcase_38 AC 109 ms
5,248 KB
testcase_39 AC 110 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define pb push_back
#define all(a) a.begin(),a.end()
#define ll long long
using namespace std; 

ll N;
vector<ll> V;

void divisor(void)
{
	for(ll i=2; i*i <= N; i++) {
		if(N%i == 0) {
			V.pb(i);
			if(i*i != N) V.pb(N/i);
		}
	}
}

int main(void)
{
	cin >> N;
	ll max = N-1;
	ll min = N-1;

	divisor();

	// for(auto i:V) cout << i << " ";	cout << endl;

	sort(all(V));
	rep(i,0,V.size()){
		if(min < V[i] *2 -3) break;
		rep(j,i,V.size()) {
			ll t = V[i] * V[j];
			if(N < t) break;
			if(N % t) continue;
			// printf("V[i]=%lld V[j]=%lld t=%lld\n",V[i],V[j],t);
			min = std::min(min, V[i]+V[j]+(N/t)-3);
		}
	}

	cout << min << " " << max << endl;

	return 0;
}
0