結果

問題 No.375 立方体のN等分 (1)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-30 17:09:51
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 76,444 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-05-03 19:51:40
合計ジャッジ時間 4,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
75,540 KB
testcase_01 AC 64 ms
75,516 KB
testcase_02 AC 118 ms
77,440 KB
testcase_03 AC 71 ms
75,436 KB
testcase_04 AC 67 ms
75,432 KB
testcase_05 AC 65 ms
75,164 KB
testcase_06 AC 68 ms
76,188 KB
testcase_07 AC 77 ms
76,536 KB
testcase_08 AC 111 ms
77,092 KB
testcase_09 AC 73 ms
76,444 KB
testcase_10 AC 79 ms
76,428 KB
testcase_11 AC 80 ms
76,700 KB
testcase_12 AC 80 ms
76,328 KB
testcase_13 AC 81 ms
76,708 KB
testcase_14 AC 188 ms
77,344 KB
testcase_15 AC 91 ms
76,448 KB
testcase_16 AC 83 ms
76,696 KB
testcase_17 AC 274 ms
77,168 KB
testcase_18 AC 198 ms
77,336 KB
testcase_19 AC 87 ms
76,316 KB
testcase_20 AC 77 ms
76,852 KB
testcase_21 AC 79 ms
76,464 KB
testcase_22 AC 339 ms
77,244 KB
testcase_23 AC 80 ms
76,816 KB
testcase_24 AC 75 ms
76,828 KB
testcase_25 AC 114 ms
77,348 KB
testcase_26 AC 80 ms
76,428 KB
testcase_27 AC 88 ms
76,704 KB
testcase_28 AC 72 ms
76,452 KB
testcase_29 AC 75 ms
76,564 KB
testcase_30 AC 80 ms
76,188 KB
testcase_31 AC 83 ms
76,284 KB
testcase_32 AC 74 ms
76,332 KB
testcase_33 AC 83 ms
76,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
ans = float('inf')
a = 1
while a*a*a <= N:
    if N%a > 0:
        a += 1
        continue
    b = 1
    while b*b <= N/a:
        if N/a%b > 0:
            b += 1
            continue
        c = N/a/b
        ans = min(a+b+c-3, ans)
        b += 1
    a += 1
print ans, N-1
0