結果

問題 No.375 立方体のN等分 (1)
ユーザー lloyzlloyz
提出日時 2023-02-06 00:37:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-07-04 09:33:03
合計ジャッジ時間 3,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 77 ms
59,392 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 42 ms
58,624 KB
testcase_07 AC 47 ms
58,880 KB
testcase_08 AC 69 ms
61,184 KB
testcase_09 AC 46 ms
58,752 KB
testcase_10 AC 51 ms
58,624 KB
testcase_11 AC 50 ms
58,844 KB
testcase_12 AC 52 ms
58,880 KB
testcase_13 AC 53 ms
58,752 KB
testcase_14 AC 120 ms
61,824 KB
testcase_15 AC 58 ms
58,880 KB
testcase_16 AC 53 ms
58,880 KB
testcase_17 AC 173 ms
61,824 KB
testcase_18 AC 129 ms
61,056 KB
testcase_19 AC 57 ms
59,136 KB
testcase_20 AC 48 ms
58,496 KB
testcase_21 AC 48 ms
58,496 KB
testcase_22 AC 210 ms
62,080 KB
testcase_23 AC 53 ms
58,496 KB
testcase_24 AC 49 ms
58,880 KB
testcase_25 AC 73 ms
59,392 KB
testcase_26 AC 51 ms
58,752 KB
testcase_27 AC 58 ms
58,880 KB
testcase_28 AC 47 ms
58,112 KB
testcase_29 AC 46 ms
58,624 KB
testcase_30 AC 53 ms
59,008 KB
testcase_31 AC 55 ms
58,752 KB
testcase_32 AC 47 ms
58,240 KB
testcase_33 AC 52 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = n
m = int(n**(1/3) + 1)
for i in range(1, m + 1):
    if n % i == 0:
        nn = n // i
        f = 1
        while f * f <= nn:
            if nn % f == 0:
                ans = min(ans, i + f + (nn // f) - 3)
            f += 1
print(ans, n - 1)
0