結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-04 23:32:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 89,528 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-08 10:11:01
合計ジャッジ時間 32,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 388 ms
6,816 KB
testcase_03 AC 768 ms
6,820 KB
testcase_04 AC 548 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 13 ms
6,820 KB
testcase_09 AC 52 ms
6,820 KB
testcase_10 AC 604 ms
6,820 KB
testcase_11 AC 154 ms
6,816 KB
testcase_12 AC 332 ms
6,816 KB
testcase_13 AC 161 ms
6,816 KB
testcase_14 AC 198 ms
6,820 KB
testcase_15 AC 148 ms
6,820 KB
testcase_16 AC 3,686 ms
6,816 KB
testcase_17 AC 357 ms
6,816 KB
testcase_18 AC 172 ms
6,816 KB
testcase_19 AC 629 ms
6,820 KB
testcase_20 AC 205 ms
6,816 KB
testcase_21 AC 4,207 ms
6,820 KB
testcase_22 AC 191 ms
6,820 KB
testcase_23 AC 4,388 ms
6,820 KB
testcase_24 AC 4,432 ms
6,816 KB
testcase_25 AC 191 ms
6,816 KB
testcase_26 TLE -
testcase_27 AC 254 ms
6,820 KB
testcase_28 AC 190 ms
6,816 KB
testcase_29 AC 349 ms
6,820 KB
testcase_30 AC 260 ms
6,820 KB
testcase_31 AC 190 ms
6,820 KB
testcase_32 AC 261 ms
6,816 KB
testcase_33 AC 189 ms
6,816 KB
testcase_34 AC 197 ms
6,820 KB
testcase_35 AC 308 ms
6,816 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 320 ms
6,820 KB
testcase_39 AC 357 ms
6,816 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;

	long long Tmin=n;
	
	for(long long a=1;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<<" "<<n-1<<endl;

	
	return 0;
}
0