結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-04 23:53:48
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 4,947 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 03:10:29
合計ジャッジ時間 33,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 441 ms
6,944 KB
testcase_03 AC 823 ms
6,940 KB
testcase_04 AC 591 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 54 ms
6,940 KB
testcase_10 AC 634 ms
6,940 KB
testcase_11 AC 163 ms
6,940 KB
testcase_12 AC 352 ms
6,940 KB
testcase_13 AC 173 ms
6,944 KB
testcase_14 AC 213 ms
6,940 KB
testcase_15 AC 161 ms
6,940 KB
testcase_16 AC 3,948 ms
6,940 KB
testcase_17 AC 373 ms
6,940 KB
testcase_18 AC 182 ms
6,940 KB
testcase_19 AC 679 ms
6,940 KB
testcase_20 AC 221 ms
6,944 KB
testcase_21 AC 4,458 ms
6,940 KB
testcase_22 AC 200 ms
6,940 KB
testcase_23 AC 4,687 ms
6,940 KB
testcase_24 AC 4,710 ms
6,944 KB
testcase_25 AC 204 ms
6,944 KB
testcase_26 AC 4,947 ms
6,940 KB
testcase_27 AC 275 ms
6,944 KB
testcase_28 AC 208 ms
6,940 KB
testcase_29 AC 382 ms
6,944 KB
testcase_30 AC 285 ms
6,940 KB
testcase_31 AC 204 ms
6,940 KB
testcase_32 AC 279 ms
6,944 KB
testcase_33 AC 205 ms
6,940 KB
testcase_34 AC 206 ms
6,944 KB
testcase_35 AC 329 ms
6,944 KB
testcase_36 AC 205 ms
6,940 KB
testcase_37 AC 206 ms
6,944 KB
testcase_38 AC 345 ms
6,944 KB
testcase_39 AC 376 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%lld",&n);
      |         ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>
int main()
{
	
	long long n;
	scanf("%lld",&n);
	long long Tmin=2*n;
	
	long long N=sqrt(n);
	N++;
	long long a,b,m,M;
	for(a=1;a<=N;++a){
		if(n%a) continue;
		m=n/a;
		M=sqrt(m)+1;
		for(b=a;b<=M;++b){
			if(m%b==0 && Tmin>a+b+m/b) Tmin=a+b+m/b;
		}
	}
	printf("%lld %lld\n",Tmin-3,n-1);
	//cout<<Tmin-3<<" "<<n-1<<endl;

	
	return 0;
}
0