結果

問題 No.1664 Unstable f(n)
ユーザー titiatitia
提出日時 2021-09-03 21:24:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-12-15 09:41:20
合計ジャッジ時間 11,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
60,448 KB
testcase_01 AC 96 ms
75,684 KB
testcase_02 AC 85 ms
75,704 KB
testcase_03 AC 62 ms
59,320 KB
testcase_04 AC 61 ms
60,672 KB
testcase_05 AC 65 ms
60,148 KB
testcase_06 AC 65 ms
60,404 KB
testcase_07 AC 61 ms
59,412 KB
testcase_08 AC 64 ms
60,440 KB
testcase_09 AC 59 ms
59,348 KB
testcase_10 AC 61 ms
61,228 KB
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 95 ms
75,436 KB
testcase_22 AC 99 ms
75,740 KB
testcase_23 AC 99 ms
75,572 KB
testcase_24 AC 92 ms
75,620 KB
testcase_25 AC 96 ms
75,484 KB
testcase_26 AC 63 ms
61,992 KB
testcase_27 AC 63 ms
61,776 KB
testcase_28 AC 80 ms
75,744 KB
testcase_29 AC 63 ms
61,676 KB
testcase_30 AC 80 ms
75,772 KB
testcase_31 AC 96 ms
75,772 KB
testcase_32 AC 112 ms
75,360 KB
testcase_33 AC 94 ms
75,548 KB
testcase_34 AC 94 ms
75,664 KB
testcase_35 AC 645 ms
75,804 KB
testcase_36 AC 97 ms
75,640 KB
testcase_37 AC 182 ms
75,612 KB
testcase_38 AC 76 ms
75,692 KB
testcase_39 AC 106 ms
75,512 KB
testcase_40 AC 116 ms
75,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n=int(input())

ANS=n

for i in range(2,10**6):
    for j in range(100):
        if i**j>n:
            break
        else:
            ANS=min(ANS,i+j+n-i**j)

print(ANS)
0