結果

問題 No.1664 Unstable f(n)
ユーザー rlangevinrlangevin
提出日時 2022-12-31 19:51:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 72,160 KB
最終ジャッジ日時 2024-11-26 19:17:18
合計ジャッジ時間 3,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
70,492 KB
testcase_01 AC 50 ms
70,780 KB
testcase_02 AC 49 ms
70,596 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 49 ms
70,644 KB
testcase_07 AC 50 ms
71,012 KB
testcase_08 AC 49 ms
71,340 KB
testcase_09 AC 49 ms
70,720 KB
testcase_10 AC 50 ms
70,476 KB
testcase_11 AC 50 ms
70,804 KB
testcase_12 AC 51 ms
72,160 KB
testcase_13 AC 51 ms
70,824 KB
testcase_14 AC 51 ms
71,216 KB
testcase_15 AC 50 ms
70,676 KB
testcase_16 AC 51 ms
71,140 KB
testcase_17 AC 49 ms
70,040 KB
testcase_18 AC 49 ms
70,428 KB
testcase_19 AC 49 ms
69,964 KB
testcase_20 AC 50 ms
71,644 KB
testcase_21 AC 49 ms
70,244 KB
testcase_22 AC 50 ms
71,820 KB
testcase_23 AC 50 ms
70,408 KB
testcase_24 AC 50 ms
70,028 KB
testcase_25 AC 50 ms
70,600 KB
testcase_26 AC 50 ms
70,700 KB
testcase_27 AC 50 ms
70,524 KB
testcase_28 AC 50 ms
71,684 KB
testcase_29 AC 51 ms
71,508 KB
testcase_30 AC 50 ms
69,996 KB
testcase_31 AC 50 ms
70,224 KB
testcase_32 AC 50 ms
70,404 KB
testcase_33 AC 50 ms
70,180 KB
testcase_34 AC 50 ms
70,184 KB
testcase_35 AC 50 ms
70,544 KB
testcase_36 AC 50 ms
69,840 KB
testcase_37 AC 50 ms
70,616 KB
testcase_38 AC 50 ms
70,412 KB
testcase_39 AC 49 ms
71,524 KB
testcase_40 AC 49 ms
70,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(N, j):
    yes = 1
    no = 10 ** 18 + 1
    while no - yes != 1:
        mid = (yes + no)//2
        if mid ** j <= N:
            yes = mid
        else:
            no = mid
    return yes


N = int(input())
ans = 10 ** 20
for j in range(1, 65):
    i = calc(N, j)
    k = N - i ** j
    ans = min(ans, i + j + k)
print(ans)
0