結果

問題 No.1176 少ない質問
ユーザー lemondolemondo
提出日時 2020-08-21 23:24:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 421 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 75,736 KB
最終ジャッジ日時 2024-10-15 06:21:27
合計ジャッジ時間 2,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
75,232 KB
testcase_01 AC 55 ms
73,984 KB
testcase_02 AC 58 ms
75,116 KB
testcase_03 AC 59 ms
75,640 KB
testcase_04 AC 59 ms
75,560 KB
testcase_05 AC 57 ms
75,736 KB
testcase_06 AC 58 ms
75,264 KB
testcase_07 AC 58 ms
75,248 KB
testcase_08 AC 59 ms
75,292 KB
testcase_09 AC 57 ms
75,256 KB
testcase_10 AC 57 ms
75,672 KB
testcase_11 AC 55 ms
73,456 KB
testcase_12 AC 59 ms
75,344 KB
testcase_13 AC 54 ms
74,056 KB
testcase_14 AC 59 ms
75,408 KB
testcase_15 AC 58 ms
75,464 KB
testcase_16 AC 59 ms
75,400 KB
testcase_17 AC 58 ms
75,324 KB
testcase_18 AC 56 ms
74,260 KB
testcase_19 AC 59 ms
75,308 KB
testcase_20 AC 38 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

A = int(input())
ans = 10**10
for i in range(2, 1081):
    l, r = 0, 100
    if i>=A:
        ans = min(i, ans)
        break
    while l+1<r:
        half = -(-(l+r)//2)
        if i**half>=A:
            r = half
        else:
            l = half
    ans = min(ans, r*i)
print(ans)
0