結果

問題 No.1664 Unstable f(n)
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-09-03 22:52:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-12-15 16:17:36
合計ジャッジ時間 8,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
59,276 KB
testcase_01 AC 72 ms
59,112 KB
testcase_02 AC 62 ms
60,728 KB
testcase_03 AC 39 ms
59,280 KB
testcase_04 AC 51 ms
60,664 KB
testcase_05 AC 49 ms
60,012 KB
testcase_06 AC 49 ms
60,152 KB
testcase_07 AC 51 ms
59,496 KB
testcase_08 AC 50 ms
59,556 KB
testcase_09 AC 52 ms
59,504 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 65 ms
60,700 KB
testcase_22 AC 67 ms
59,360 KB
testcase_23 AC 67 ms
60,580 KB
testcase_24 AC 64 ms
60,696 KB
testcase_25 AC 67 ms
59,104 KB
testcase_26 AC 50 ms
59,676 KB
testcase_27 AC 49 ms
59,320 KB
testcase_28 AC 55 ms
59,504 KB
testcase_29 AC 49 ms
60,248 KB
testcase_30 AC 55 ms
59,428 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
h_k = 10 ** 18
ans = 10 ** 20
for i in range(1,10 ** 6):
    if i == 1:
        j = 0
        k = n-1
    else:
        j = -1
        while i ** (j+1) < n:
            k = n - i ** (j+1)
            j += 1
#     if k >= h_k:
#         break
#     else:
    ans = min(i+j+k,ans)
print(ans)
0