結果

問題 No.1176 少ない質問
ユーザー gorugo30gorugo30
提出日時 2021-02-25 15:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 247 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 53,368 KB
最終ジャッジ日時 2024-10-01 06:22:32
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,304 KB
testcase_01 AC 39 ms
52,072 KB
testcase_02 AC 39 ms
52,004 KB
testcase_03 AC 38 ms
52,068 KB
testcase_04 AC 39 ms
52,156 KB
testcase_05 AC 39 ms
52,972 KB
testcase_06 AC 39 ms
53,304 KB
testcase_07 AC 38 ms
52,892 KB
testcase_08 AC 39 ms
51,500 KB
testcase_09 AC 39 ms
52,028 KB
testcase_10 AC 38 ms
51,824 KB
testcase_11 AC 38 ms
53,212 KB
testcase_12 AC 39 ms
53,368 KB
testcase_13 AC 40 ms
52,360 KB
testcase_14 AC 39 ms
52,436 KB
testcase_15 AC 40 ms
51,744 KB
testcase_16 AC 39 ms
52,624 KB
testcase_17 AC 39 ms
51,752 KB
testcase_18 AC 39 ms
52,908 KB
testcase_19 AC 38 ms
52,204 KB
testcase_20 AC 39 ms
52,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
ans = A
for N in range(2, 10):
    en = 100
    st = -1
    while en - st > 1:
        mid = (en + st) // 2
        if pow(N, mid) >= A:
            en = mid
        else:
            st = mid
    ans = min(ans, N * en)
print(ans)
0