結果

問題 No.1176 少ない質問
ユーザー H20H20
提出日時 2021-09-26 17:20:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-07-05 15:40:02
合計ジャッジ時間 3,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
75,136 KB
testcase_01 AC 111 ms
75,008 KB
testcase_02 AC 120 ms
75,136 KB
testcase_03 AC 122 ms
75,136 KB
testcase_04 AC 112 ms
75,520 KB
testcase_05 AC 118 ms
75,136 KB
testcase_06 AC 113 ms
75,136 KB
testcase_07 AC 122 ms
75,008 KB
testcase_08 AC 120 ms
75,136 KB
testcase_09 AC 133 ms
75,392 KB
testcase_10 AC 121 ms
75,392 KB
testcase_11 AC 109 ms
75,392 KB
testcase_12 AC 131 ms
75,264 KB
testcase_13 AC 110 ms
75,136 KB
testcase_14 AC 135 ms
74,880 KB
testcase_15 AC 133 ms
75,264 KB
testcase_16 AC 130 ms
75,136 KB
testcase_17 AC 137 ms
75,136 KB
testcase_18 AC 111 ms
75,648 KB
testcase_19 AC 124 ms
75,008 KB
testcase_20 AC 41 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
ans = 10**18
for n in range(2,10**5):
    m = 1
    while A>n**m:
        m+=1
    ans = min(ans,n*m)
print(ans)
0