結果

問題 No.376 立方体のN等分 (2)
ユーザー pluto77pluto77
提出日時 2018-02-09 13:58:48
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,940 ms / 5,000 ms
コード長 187 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 76,764 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-10-06 06:05:10
合計ジャッジ時間 17,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
75,264 KB
testcase_01 AC 88 ms
75,520 KB
testcase_02 AC 207 ms
76,672 KB
testcase_03 AC 205 ms
77,440 KB
testcase_04 AC 220 ms
75,904 KB
testcase_05 AC 88 ms
75,520 KB
testcase_06 AC 88 ms
75,136 KB
testcase_07 AC 90 ms
75,264 KB
testcase_08 AC 97 ms
75,776 KB
testcase_09 AC 117 ms
76,032 KB
testcase_10 AC 217 ms
77,440 KB
testcase_11 AC 147 ms
76,544 KB
testcase_12 AC 171 ms
76,544 KB
testcase_13 AC 170 ms
75,904 KB
testcase_14 AC 180 ms
75,904 KB
testcase_15 AC 190 ms
76,160 KB
testcase_16 AC 1,702 ms
77,440 KB
testcase_17 AC 203 ms
76,160 KB
testcase_18 AC 206 ms
76,160 KB
testcase_19 AC 211 ms
76,672 KB
testcase_20 AC 214 ms
76,160 KB
testcase_21 AC 1,721 ms
77,312 KB
testcase_22 AC 217 ms
75,904 KB
testcase_23 AC 1,776 ms
77,696 KB
testcase_24 AC 1,707 ms
77,312 KB
testcase_25 AC 222 ms
76,288 KB
testcase_26 AC 1,940 ms
77,056 KB
testcase_27 AC 223 ms
76,288 KB
testcase_28 AC 224 ms
75,904 KB
testcase_29 AC 222 ms
75,904 KB
testcase_30 AC 224 ms
76,416 KB
testcase_31 AC 222 ms
75,904 KB
testcase_32 AC 223 ms
76,416 KB
testcase_33 AC 222 ms
76,288 KB
testcase_34 AC 223 ms
76,160 KB
testcase_35 AC 224 ms
75,904 KB
testcase_36 AC 224 ms
76,416 KB
testcase_37 AC 225 ms
76,160 KB
testcase_38 AC 223 ms
76,160 KB
testcase_39 AC 225 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki376

res=float('inf')
n=int(raw_input())
l=[]
i=1
while i*i<=n:
 if n%i==0:
  l.append(i)
 i+=1
for a in l:
 for b in l:
  if n%(a*b)==0:
   res=min(res,a+b+n/(a*b))
print res-3,n-1
0