結果

問題 No.376 立方体のN等分 (2)
ユーザー pluto77pluto77
提出日時 2016-09-11 18:15:19
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 217 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 155,520 KB
最終ジャッジ日時 2024-11-17 03:35:43
合計ジャッジ時間 45,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
152,704 KB
testcase_01 AC 80 ms
80,768 KB
testcase_02 AC 575 ms
153,984 KB
testcase_03 AC 1,202 ms
155,520 KB
testcase_04 AC 810 ms
82,304 KB
testcase_05 AC 81 ms
75,264 KB
testcase_06 AC 80 ms
75,520 KB
testcase_07 AC 81 ms
75,264 KB
testcase_08 AC 94 ms
76,800 KB
testcase_09 AC 129 ms
76,672 KB
testcase_10 AC 1,050 ms
77,184 KB
testcase_11 AC 246 ms
76,544 KB
testcase_12 AC 507 ms
77,184 KB
testcase_13 AC 225 ms
77,056 KB
testcase_14 AC 270 ms
76,416 KB
testcase_15 AC 181 ms
77,184 KB
testcase_16 TLE -
testcase_17 AC 510 ms
77,056 KB
testcase_18 AC 203 ms
76,544 KB
testcase_19 AC 958 ms
76,416 KB
testcase_20 AC 250 ms
77,056 KB
testcase_21 TLE -
testcase_22 AC 212 ms
76,672 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 226 ms
77,824 KB
testcase_26 TLE -
testcase_27 AC 326 ms
76,672 KB
testcase_28 AC 222 ms
76,544 KB
testcase_29 AC 499 ms
76,544 KB
testcase_30 AC 345 ms
76,672 KB
testcase_31 AC 222 ms
76,800 KB
testcase_32 AC 327 ms
76,416 KB
testcase_33 AC 214 ms
76,544 KB
testcase_34 AC 217 ms
76,800 KB
testcase_35 AC 408 ms
77,056 KB
testcase_36 AC 212 ms
76,288 KB
testcase_37 AC 213 ms
76,544 KB
testcase_38 AC 427 ms
77,184 KB
testcase_39 AC 479 ms
154,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki376
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