結果

問題 No.1664 Unstable f(n)
ユーザー ygd.ygd.
提出日時 2021-09-03 21:35:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 71,036 KB
最終ジャッジ日時 2024-12-15 10:44:02
合計ジャッジ時間 2,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,932 KB
testcase_01 AC 46 ms
64,960 KB
testcase_02 AC 44 ms
62,188 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 34 ms
52,820 KB
testcase_05 AC 33 ms
52,452 KB
testcase_06 AC 39 ms
52,684 KB
testcase_07 AC 39 ms
53,140 KB
testcase_08 AC 34 ms
52,888 KB
testcase_09 AC 38 ms
53,208 KB
testcase_10 AC 40 ms
53,288 KB
testcase_11 AC 46 ms
68,316 KB
testcase_12 AC 45 ms
70,372 KB
testcase_13 AC 44 ms
69,696 KB
testcase_14 AC 45 ms
69,656 KB
testcase_15 AC 43 ms
68,588 KB
testcase_16 AC 46 ms
69,104 KB
testcase_17 AC 45 ms
70,128 KB
testcase_18 AC 46 ms
70,840 KB
testcase_19 AC 45 ms
70,500 KB
testcase_20 AC 47 ms
71,036 KB
testcase_21 AC 43 ms
63,336 KB
testcase_22 AC 43 ms
64,344 KB
testcase_23 AC 41 ms
64,936 KB
testcase_24 AC 41 ms
63,060 KB
testcase_25 AC 40 ms
63,960 KB
testcase_26 AC 35 ms
55,204 KB
testcase_27 AC 38 ms
55,004 KB
testcase_28 AC 36 ms
55,848 KB
testcase_29 AC 38 ms
55,256 KB
testcase_30 AC 36 ms
54,876 KB
testcase_31 AC 41 ms
63,852 KB
testcase_32 AC 42 ms
66,344 KB
testcase_33 AC 42 ms
65,656 KB
testcase_34 AC 42 ms
63,364 KB
testcase_35 AC 48 ms
70,976 KB
testcase_36 AC 41 ms
64,336 KB
testcase_37 AC 45 ms
68,412 KB
testcase_38 AC 35 ms
55,096 KB
testcase_39 AC 41 ms
66,188 KB
testcase_40 AC 43 ms
68,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

import math

def main():
    n = int(input())
    ans = n
    j = 1
    while True:
        i = solve(j,n)
        k = n - pow(i, j)
        ans = min(ans, i+j+k)
        j += 1
        #print(i,j,k)
        if i == 1:
            break
    print(ans)

def solve(j,n):
    #i ** j <= nとなる最大のi
    ok = 0
    ng = pow(10,18)
    while abs(ok - ng) > 1:
        mid = (ok+ng)//2
        if pow(mid, j) <= n:
            ok = mid
        else:
            ng = mid
    return ok


if __name__ == "__main__":
    main()
0