結果

問題 No.1664 Unstable f(n)
ユーザー uiromochiuiromochi
提出日時 2021-09-03 23:08:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-12-15 17:14:27
合計ジャッジ時間 39,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 AC 41 ms
17,696 KB
testcase_02 AC 26 ms
15,872 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 24 ms
15,872 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 26 ms
10,624 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 24 ms
10,752 KB
testcase_27 AC 24 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 24 ms
10,624 KB
testcase_30 AC 24 ms
10,752 KB
testcase_31 AC 25 ms
10,624 KB
testcase_32 AC 308 ms
10,624 KB
testcase_33 AC 31 ms
10,752 KB
testcase_34 AC 24 ms
10,752 KB
testcase_35 TLE -
testcase_36 AC 29 ms
10,624 KB
testcase_37 TLE -
testcase_38 AC 28 ms
10,624 KB
testcase_39 AC 127 ms
10,624 KB
testcase_40 AC 1,960 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline  # "\n"を含む

def solve(n):
    # j = 0 -> i+j+k = n-1
    # j = 1 -> i+j+k = n+1
    res = 0
    for j in range(2, 1<<10):
        # i = 0 -> i+j+k = n-1
        # i = 1 -> i+j+k = n
        i = 2
        while n - i**j >= 0:
            i += 1

        if i == 2:
            break

        i -= 1
        res = max(res, i**j - i - j)

    if res <= 1:
        return n - 1
    else:
        return n - res

def main():
    n = int(input())
    res = solve(n)
    print(res)

if __name__ == "__main__":
    main()
0