結果

問題 No.1664 Unstable f(n)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-16 11:19:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-24 06:45:52
合計ジャッジ時間 26,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
10,752 KB
testcase_01 AC 673 ms
10,624 KB
testcase_02 AC 492 ms
10,624 KB
testcase_03 AC 295 ms
10,624 KB
testcase_04 AC 293 ms
10,624 KB
testcase_05 AC 294 ms
10,624 KB
testcase_06 AC 301 ms
10,624 KB
testcase_07 AC 295 ms
10,752 KB
testcase_08 AC 293 ms
10,624 KB
testcase_09 AC 298 ms
10,624 KB
testcase_10 AC 295 ms
10,624 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 533 ms
10,624 KB
testcase_22 AC 529 ms
10,624 KB
testcase_23 AC 531 ms
10,624 KB
testcase_24 AC 505 ms
10,624 KB
testcase_25 AC 519 ms
10,624 KB
testcase_26 AC 339 ms
10,752 KB
testcase_27 AC 330 ms
10,624 KB
testcase_28 AC 402 ms
10,624 KB
testcase_29 AC 314 ms
10,624 KB
testcase_30 AC 358 ms
10,752 KB
testcase_31 AC 500 ms
10,624 KB
testcase_32 AC 751 ms
10,624 KB
testcase_33 AC 568 ms
10,624 KB
testcase_34 AC 506 ms
10,624 KB
testcase_35 AC 1,010 ms
10,624 KB
testcase_36 AC 554 ms
10,624 KB
testcase_37 AC 875 ms
10,624 KB
testcase_38 AC 312 ms
10,624 KB
testcase_39 AC 739 ms
10,752 KB
testcase_40 AC 816 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=10**18
for i in range(200000):
    for j in range(50):
        if i==0 and j==0:
            continue
        if pow(i,j)>n:
            break
        k=n-pow(i,j)
        ans=min(ans,i+j+k)
print(ans)
0