結果

問題 No.1664 Unstable f(n)
ユーザー playerplayer
提出日時 2023-12-26 22:15:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 62,496 KB
最終ジャッジ日時 2024-09-27 15:17:31
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,932 KB
testcase_01 AC 61 ms
59,944 KB
testcase_02 AC 53 ms
60,236 KB
testcase_03 AC 45 ms
57,800 KB
testcase_04 AC 45 ms
58,648 KB
testcase_05 AC 45 ms
57,900 KB
testcase_06 AC 45 ms
58,724 KB
testcase_07 AC 45 ms
60,168 KB
testcase_08 AC 45 ms
57,916 KB
testcase_09 AC 45 ms
57,772 KB
testcase_10 AC 45 ms
58,232 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 58 ms
60,072 KB
testcase_22 AC 59 ms
61,096 KB
testcase_23 AC 59 ms
60,508 KB
testcase_24 AC 57 ms
60,332 KB
testcase_25 AC 58 ms
60,728 KB
testcase_26 AC 47 ms
59,412 KB
testcase_27 AC 48 ms
60,468 KB
testcase_28 AC 48 ms
60,140 KB
testcase_29 AC 47 ms
60,336 KB
testcase_30 AC 48 ms
59,980 KB
testcase_31 AC 58 ms
61,176 KB
testcase_32 AC 76 ms
61,248 KB
testcase_33 AC 61 ms
60,436 KB
testcase_34 AC 62 ms
60,144 KB
testcase_35 AC 81 ms
59,984 KB
testcase_36 AC 58 ms
59,988 KB
testcase_37 AC 74 ms
60,624 KB
testcase_38 AC 48 ms
58,996 KB
testcase_39 AC 71 ms
60,428 KB
testcase_40 AC 73 ms
59,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = 10**100

for j in range(0,73):
    for i in range(1,10**6+1):
        num = i**j
        if num > n:
            break
        k = n-num
        ans = min(ans,i+j+k)
        
print(ans)
0