結果

問題 No.376 立方体のN等分 (2)
ユーザー tookunn_1213tookunn_1213
提出日時 2016-06-05 02:02:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,937 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 63,764 KB
最終ジャッジ日時 2024-11-06 22:02:16
合計ジャッジ時間 15,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,804 KB
testcase_01 AC 40 ms
53,624 KB
testcase_02 AC 159 ms
59,980 KB
testcase_03 AC 156 ms
60,772 KB
testcase_04 AC 172 ms
58,184 KB
testcase_05 AC 39 ms
52,548 KB
testcase_06 AC 39 ms
52,248 KB
testcase_07 AC 39 ms
52,748 KB
testcase_08 AC 48 ms
58,264 KB
testcase_09 AC 71 ms
59,180 KB
testcase_10 AC 166 ms
61,964 KB
testcase_11 AC 99 ms
58,144 KB
testcase_12 AC 123 ms
60,488 KB
testcase_13 AC 123 ms
57,812 KB
testcase_14 AC 132 ms
57,856 KB
testcase_15 AC 141 ms
57,256 KB
testcase_16 AC 1,692 ms
63,764 KB
testcase_17 AC 154 ms
58,072 KB
testcase_18 AC 158 ms
58,332 KB
testcase_19 AC 163 ms
59,596 KB
testcase_20 AC 164 ms
58,512 KB
testcase_21 AC 1,715 ms
63,060 KB
testcase_22 AC 169 ms
57,552 KB
testcase_23 AC 1,771 ms
63,120 KB
testcase_24 AC 1,697 ms
63,248 KB
testcase_25 AC 173 ms
58,556 KB
testcase_26 AC 1,937 ms
63,380 KB
testcase_27 AC 176 ms
58,156 KB
testcase_28 AC 176 ms
58,740 KB
testcase_29 AC 174 ms
58,352 KB
testcase_30 AC 174 ms
58,196 KB
testcase_31 AC 175 ms
58,012 KB
testcase_32 AC 177 ms
58,504 KB
testcase_33 AC 176 ms
58,624 KB
testcase_34 AC 177 ms
58,300 KB
testcase_35 AC 175 ms
58,364 KB
testcase_36 AC 175 ms
58,052 KB
testcase_37 AC 176 ms
58,404 KB
testcase_38 AC 174 ms
58,040 KB
testcase_39 AC 175 ms
57,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input());m,y,i=40**9,[],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:m=min(m,a+b+N//(a*b)-3)
print(m,N-1)
0