結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-04 23:27:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 88,924 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-08 09:59:44
合計ジャッジ時間 30,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,824 KB
testcase_01 WA -
testcase_02 AC 360 ms
5,248 KB
testcase_03 AC 771 ms
5,248 KB
testcase_04 AC 514 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 36 ms
5,248 KB
testcase_10 AC 641 ms
5,248 KB
testcase_11 AC 125 ms
5,248 KB
testcase_12 AC 308 ms
5,248 KB
testcase_13 AC 117 ms
5,248 KB
testcase_14 AC 151 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 4,060 ms
5,248 KB
testcase_17 AC 302 ms
5,248 KB
testcase_18 WA -
testcase_19 AC 611 ms
5,248 KB
testcase_20 AC 129 ms
5,248 KB
testcase_21 AC 4,561 ms
5,248 KB
testcase_22 AC 105 ms
5,248 KB
testcase_23 AC 4,809 ms
5,248 KB
testcase_24 AC 4,850 ms
5,248 KB
testcase_25 AC 106 ms
5,248 KB
testcase_26 TLE -
testcase_27 WA -
testcase_28 AC 105 ms
6,816 KB
testcase_29 AC 300 ms
6,820 KB
testcase_30 AC 185 ms
6,820 KB
testcase_31 WA -
testcase_32 AC 181 ms
6,816 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 234 ms
6,820 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 249 ms
6,820 KB
testcase_39 AC 283 ms
6,824 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;

const long long mod=1000000007; 

double PI =3.141592653589793;

int main()
{
	
	long long n;
	cin>>n;

	long long Tmax=n-1;
	long long Tmin=n;
	
	for(long long a=2;a*a<=n;a++){
		if(n%a) continue;
		long long m=n/a;
		for(long long b=a;b*b<=m;b++){
			if(m%b) continue;
			
			long long c=m/b;
			Tmin=min(Tmin,a+b+c);
		}
	}
	
	cout<<Tmin-3<<" "<<Tmax<<endl;

	
	return 0;
}
0