結果

問題 No.375 立方体のN等分 (1)
ユーザー pluto77pluto77
提出日時 2016-06-07 08:06:51
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 219 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-10-11 21:05:13
合計ジャッジ時間 4,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,648 KB
testcase_01 AC 77 ms
75,552 KB
testcase_02 AC 135 ms
77,696 KB
testcase_03 AC 71 ms
75,520 KB
testcase_04 AC 74 ms
75,552 KB
testcase_05 AC 73 ms
75,320 KB
testcase_06 AC 78 ms
76,444 KB
testcase_07 AC 86 ms
76,844 KB
testcase_08 AC 104 ms
77,440 KB
testcase_09 AC 78 ms
76,972 KB
testcase_10 AC 82 ms
76,552 KB
testcase_11 AC 82 ms
77,056 KB
testcase_12 AC 86 ms
76,688 KB
testcase_13 AC 86 ms
76,576 KB
testcase_14 AC 163 ms
77,696 KB
testcase_15 AC 91 ms
76,444 KB
testcase_16 AC 84 ms
76,672 KB
testcase_17 AC 219 ms
77,952 KB
testcase_18 AC 171 ms
77,376 KB
testcase_19 AC 90 ms
77,096 KB
testcase_20 AC 82 ms
76,928 KB
testcase_21 AC 81 ms
76,808 KB
testcase_22 AC 258 ms
77,452 KB
testcase_23 AC 85 ms
76,708 KB
testcase_24 AC 82 ms
76,828 KB
testcase_25 AC 107 ms
76,544 KB
testcase_26 AC 85 ms
76,544 KB
testcase_27 AC 89 ms
76,808 KB
testcase_28 AC 78 ms
76,440 KB
testcase_29 AC 79 ms
76,672 KB
testcase_30 AC 82 ms
76,672 KB
testcase_31 AC 86 ms
77,096 KB
testcase_32 AC 79 ms
76,544 KB
testcase_33 AC 85 ms
76,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki375

import math


n=int(raw_input())
temp=n
i=1
while i**3<=n:
 if n%i==0:
  m=n/i
  j=1
  while j*j<=m:
   if m%j==0:
    k=m/j
    if temp>i+j+k-3:
     temp=i+j+k-3
   j+=1
 i+=1

print temp,n-1
0