結果

問題 No.1176 少ない質問
ユーザー gorugo30gorugo30
提出日時 2021-02-25 14:57:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 320 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 65,808 KB
最終ジャッジ日時 2024-10-01 05:59:12
合計ジャッジ時間 6,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 923 ms
59,084 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 685 ms
59,476 KB
testcase_11 AC 443 ms
58,368 KB
testcase_12 TLE -
testcase_13 AC 507 ms
58,256 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 606 ms
58,544 KB
testcase_19 TLE -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
N = 2
M = 1
x = N
while x < A:
    M += 1
    x *= N
ans = N * M
M = 2
N = int(A ** 0.5)
while N * N < A:
    N += 1
ans = min(ans, N * M)
N = 3
M = 1
x = N
while x < A:
    M += 1
    x *= N
ans = min(ans, N * M)
M = 3
N = int(A ** 0.333333)
while N * N < A:
    N += 1
ans = min(ans, N * M)
print(ans)
0