結果

問題 No.1664 Unstable f(n)
ユーザー huka_hukahuka_huka
提出日時 2021-09-03 21:38:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 75,804 KB
最終ジャッジ日時 2024-12-15 11:04:11
合計ジャッジ時間 9,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,348 KB
testcase_01 AC 73 ms
59,856 KB
testcase_02 AC 64 ms
59,820 KB
testcase_03 AC 49 ms
58,476 KB
testcase_04 AC 50 ms
59,060 KB
testcase_05 AC 48 ms
59,940 KB
testcase_06 AC 50 ms
59,188 KB
testcase_07 AC 51 ms
59,064 KB
testcase_08 AC 55 ms
58,364 KB
testcase_09 AC 50 ms
59,548 KB
testcase_10 AC 48 ms
58,672 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 67 ms
60,288 KB
testcase_22 AC 66 ms
60,852 KB
testcase_23 AC 72 ms
60,444 KB
testcase_24 AC 63 ms
58,972 KB
testcase_25 AC 71 ms
60,212 KB
testcase_26 AC 56 ms
59,416 KB
testcase_27 AC 55 ms
59,500 KB
testcase_28 AC 57 ms
59,416 KB
testcase_29 AC 60 ms
60,832 KB
testcase_30 AC 57 ms
60,548 KB
testcase_31 AC 60 ms
59,604 KB
testcase_32 AC 80 ms
59,312 KB
testcase_33 AC 66 ms
58,376 KB
testcase_34 AC 65 ms
59,876 KB
testcase_35 AC 546 ms
75,248 KB
testcase_36 AC 66 ms
58,748 KB
testcase_37 AC 143 ms
75,112 KB
testcase_38 AC 57 ms
60,776 KB
testcase_39 AC 73 ms
59,988 KB
testcase_40 AC 83 ms
71,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = n
i = 2
while i <= 10**6:
    j = 1
    while 1:
        if i**j > n:
            j -= 1
            break
        j += 1
    ans = min(ans, i+j+(n-i**j))
    i += 1
print(ans)
0