結果

問題 No.1664 Unstable f(n)
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-09-03 22:52:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-05-09 06:02:29
合計ジャッジ時間 10,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
58,624 KB
testcase_01 AC 82 ms
58,496 KB
testcase_02 AC 71 ms
58,624 KB
testcase_03 AC 44 ms
58,240 KB
testcase_04 AC 56 ms
58,496 KB
testcase_05 AC 56 ms
58,752 KB
testcase_06 AC 56 ms
58,496 KB
testcase_07 AC 60 ms
58,752 KB
testcase_08 AC 58 ms
58,880 KB
testcase_09 AC 56 ms
58,880 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 75 ms
59,264 KB
testcase_22 AC 79 ms
58,880 KB
testcase_23 AC 78 ms
58,752 KB
testcase_24 AC 75 ms
59,392 KB
testcase_25 AC 79 ms
58,880 KB
testcase_26 AC 58 ms
58,880 KB
testcase_27 AC 58 ms
59,264 KB
testcase_28 AC 66 ms
58,880 KB
testcase_29 AC 58 ms
58,880 KB
testcase_30 AC 66 ms
58,752 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