結果

問題 No.376 立方体のN等分 (2)
ユーザー tookunn_1213tookunn_1213
提出日時 2016-06-05 01:46:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 64,048 KB
最終ジャッジ日時 2024-10-08 13:48:48
合計ジャッジ時間 14,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,308 KB
testcase_01 AC 33 ms
53,184 KB
testcase_02 AC 152 ms
61,132 KB
testcase_03 AC 154 ms
60,808 KB
testcase_04 AC 168 ms
60,048 KB
testcase_05 AC 35 ms
53,136 KB
testcase_06 AC 35 ms
53,188 KB
testcase_07 AC 33 ms
52,548 KB
testcase_08 AC 43 ms
58,200 KB
testcase_09 AC 65 ms
58,448 KB
testcase_10 AC 157 ms
62,832 KB
testcase_11 WA -
testcase_12 AC 119 ms
60,572 KB
testcase_13 AC 118 ms
57,932 KB
testcase_14 AC 127 ms
58,184 KB
testcase_15 WA -
testcase_16 AC 1,608 ms
63,344 KB
testcase_17 AC 150 ms
58,236 KB
testcase_18 WA -
testcase_19 AC 157 ms
60,360 KB
testcase_20 AC 157 ms
58,040 KB
testcase_21 AC 1,628 ms
63,168 KB
testcase_22 AC 161 ms
57,868 KB
testcase_23 AC 1,669 ms
63,524 KB
testcase_24 AC 1,605 ms
63,716 KB
testcase_25 AC 170 ms
57,868 KB
testcase_26 AC 1,827 ms
64,048 KB
testcase_27 WA -
testcase_28 AC 168 ms
59,240 KB
testcase_29 AC 166 ms
57,716 KB
testcase_30 AC 166 ms
57,876 KB
testcase_31 AC 165 ms
58,080 KB
testcase_32 AC 167 ms
58,744 KB
testcase_33 AC 169 ms
59,048 KB
testcase_34 AC 168 ms
58,904 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 170 ms
59,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input());m,y,i=10**11,[],1
while i*i<=N:
	if N%i==0:y.append(i)
	i+=1
for a in y:
	for b in y:
		if N%(a*b)==0:c=N//(a*b);m=min(m,a-1+b-1+c-1)
print(m,N-1)
0