結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-05 01:24:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,031 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 92,328 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 13:34:49
合計ジャッジ時間 18,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 80 ms
5,248 KB
testcase_03 AC 82 ms
5,248 KB
testcase_04 AC 94 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 20 ms
5,248 KB
testcase_10 AC 196 ms
5,248 KB
testcase_11 AC 42 ms
5,248 KB
testcase_12 AC 56 ms
5,248 KB
testcase_13 AC 59 ms
5,248 KB
testcase_14 AC 65 ms
5,248 KB
testcase_15 AC 73 ms
5,248 KB
testcase_16 AC 2,655 ms
5,248 KB
testcase_17 AC 84 ms
5,248 KB
testcase_18 AC 85 ms
5,248 KB
testcase_19 AC 85 ms
5,248 KB
testcase_20 AC 90 ms
5,248 KB
testcase_21 AC 2,681 ms
5,248 KB
testcase_22 AC 93 ms
5,248 KB
testcase_23 AC 2,759 ms
5,248 KB
testcase_24 AC 2,668 ms
5,248 KB
testcase_25 AC 98 ms
5,248 KB
testcase_26 AC 3,031 ms
5,248 KB
testcase_27 AC 96 ms
5,248 KB
testcase_28 AC 96 ms
5,248 KB
testcase_29 AC 96 ms
5,248 KB
testcase_30 AC 98 ms
5,248 KB
testcase_31 AC 97 ms
5,248 KB
testcase_32 AC 95 ms
5,248 KB
testcase_33 AC 97 ms
5,248 KB
testcase_34 AC 94 ms
5,248 KB
testcase_35 AC 96 ms
5,248 KB
testcase_36 AC 96 ms
5,248 KB
testcase_37 AC 95 ms
5,248 KB
testcase_38 AC 95 ms
5,248 KB
testcase_39 AC 96 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <map>
#include <queue>
#include <stack>

using namespace std;

int main()
{
    
	long long n;
	cin>>n;
	
	vector<long long> div;
	for(long long d=1;d*d<=n;d++){
		if(n%d==0){
			div.push_back(d);
			if(d*d!=n) div.push_back(n/d);
		}
	}
	
	long long Tmin=2*n;
	for(int i=0;i<div.size();i++){
		for(int j=0;j<div.size();j++){
			if(n%div[i]==0 && (n/div[i])%div[j]==0)
			Tmin=min(Tmin,div[i]+div[j]+n/div[i]/div[j]);
		}
	}
	cout<<Tmin-3<<" "<<n-1<<endl;
    
    return 0;
}
0