結果

問題 No.375 立方体のN等分 (1)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-30 16:49:24
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 4,965 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 76,328 KB
実行使用メモリ 77,608 KB
最終ジャッジ日時 2024-05-03 19:51:15
合計ジャッジ時間 18,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
75,424 KB
testcase_01 AC 88 ms
75,132 KB
testcase_02 AC 567 ms
77,496 KB
testcase_03 AC 91 ms
75,148 KB
testcase_04 AC 88 ms
75,520 KB
testcase_05 AC 87 ms
75,580 KB
testcase_06 AC 89 ms
76,456 KB
testcase_07 AC 125 ms
76,196 KB
testcase_08 AC 469 ms
77,216 KB
testcase_09 AC 101 ms
76,332 KB
testcase_10 AC 109 ms
76,324 KB
testcase_11 AC 131 ms
76,548 KB
testcase_12 AC 135 ms
76,416 KB
testcase_13 AC 126 ms
76,796 KB
testcase_14 AC 1,739 ms
77,568 KB
testcase_15 AC 183 ms
76,456 KB
testcase_16 AC 119 ms
76,196 KB
testcase_17 AC 3,583 ms
77,608 KB
testcase_18 AC 1,905 ms
77,056 KB
testcase_19 AC 141 ms
76,172 KB
testcase_20 AC 94 ms
76,452 KB
testcase_21 AC 95 ms
76,280 KB
testcase_22 AC 4,965 ms
77,208 KB
testcase_23 AC 111 ms
76,792 KB
testcase_24 AC 94 ms
76,320 KB
testcase_25 AC 544 ms
77,312 KB
testcase_26 AC 95 ms
76,600 KB
testcase_27 AC 176 ms
76,416 KB
testcase_28 AC 96 ms
76,832 KB
testcase_29 AC 96 ms
76,288 KB
testcase_30 AC 104 ms
76,072 KB
testcase_31 AC 113 ms
76,288 KB
testcase_32 AC 94 ms
76,072 KB
testcase_33 AC 106 ms
76,416 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:
        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