結果
問題 | No.1664 Unstable f(n) |
ユーザー | donuthole |
提出日時 | 2021-09-03 22:13:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 1,430 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 78,620 KB |
最終ジャッジ日時 | 2024-05-09 04:26:06 |
合計ジャッジ時間 | 6,407 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
78,592 KB |
testcase_01 | AC | 126 ms
78,080 KB |
testcase_02 | AC | 125 ms
78,208 KB |
testcase_03 | AC | 117 ms
78,440 KB |
testcase_04 | AC | 119 ms
78,376 KB |
testcase_05 | AC | 117 ms
78,336 KB |
testcase_06 | AC | 120 ms
78,296 KB |
testcase_07 | AC | 117 ms
78,464 KB |
testcase_08 | AC | 119 ms
78,296 KB |
testcase_09 | AC | 118 ms
78,336 KB |
testcase_10 | AC | 120 ms
78,208 KB |
testcase_11 | AC | 118 ms
78,324 KB |
testcase_12 | AC | 119 ms
78,080 KB |
testcase_13 | AC | 120 ms
78,564 KB |
testcase_14 | AC | 122 ms
78,104 KB |
testcase_15 | AC | 117 ms
77,952 KB |
testcase_16 | AC | 116 ms
77,952 KB |
testcase_17 | AC | 116 ms
78,316 KB |
testcase_18 | AC | 117 ms
78,464 KB |
testcase_19 | AC | 116 ms
78,172 KB |
testcase_20 | AC | 117 ms
78,080 KB |
testcase_21 | AC | 114 ms
78,208 KB |
testcase_22 | AC | 117 ms
78,076 KB |
testcase_23 | AC | 120 ms
78,280 KB |
testcase_24 | AC | 121 ms
78,080 KB |
testcase_25 | AC | 119 ms
78,080 KB |
testcase_26 | AC | 119 ms
77,952 KB |
testcase_27 | AC | 118 ms
78,576 KB |
testcase_28 | AC | 116 ms
78,164 KB |
testcase_29 | AC | 116 ms
78,536 KB |
testcase_30 | AC | 118 ms
77,980 KB |
testcase_31 | AC | 118 ms
78,208 KB |
testcase_32 | AC | 118 ms
78,620 KB |
testcase_33 | AC | 119 ms
78,080 KB |
testcase_34 | AC | 117 ms
78,448 KB |
testcase_35 | AC | 117 ms
78,208 KB |
testcase_36 | AC | 118 ms
78,060 KB |
testcase_37 | AC | 122 ms
78,416 KB |
testcase_38 | AC | 125 ms
78,288 KB |
testcase_39 | AC | 120 ms
77,968 KB |
testcase_40 | AC | 118 ms
78,172 KB |
ソースコード
# region template import typing import sys import math import collections import bisect import itertools import heapq import copy def ni(): return int(sys.stdin.buffer.readline()) def ns(): return map(int, sys.stdin.buffer.readline().split()) def ns1(): return map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()) def na(): return list(map(int, sys.stdin.buffer.readline().split())) def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split())) def nall(): return list(map(int, sys.stdin.buffer.read().split())) def flush(): return sys.stdout.flush() def nic(): return int(sys.stdin.readline()) def nsc(): return map(int, sys.stdin.readline().split()) def nac(): return list(map(int, sys.stdin.readline().split())) def na1c(): return list(map(lambda x: int(x)-1, sys.stdin.readline().split())) # endregion # sys.setrecursionlimit(10**7+1) inf = 10**20 mod = 10**9+7 # mod = 998244353 def main(): n = ni() res = n lim = 200 def bisect(n, p): ng = 10**18 ok = 0 while ng-ok > 1: nxt = (ng+ok)//2 v = pow(nxt, p) if v > n: ng = nxt else: ok = nxt return ok for j in range(2, lim): i = bisect(n, j) k = n-pow(i, j) tres = i+j+k if tres >= 0: res = min(res, tres) print(res) if __name__ == '__main__': main()