結果

問題 No.1176 少ない質問
ユーザー stngstng
提出日時 2022-09-24 17:45:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 216 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 61,176 KB
最終ジャッジ日時 2024-06-01 21:54:43
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,556 KB
testcase_01 AC 35 ms
59,544 KB
testcase_02 AC 32 ms
57,968 KB
testcase_03 AC 34 ms
58,536 KB
testcase_04 AC 34 ms
58,328 KB
testcase_05 AC 34 ms
58,792 KB
testcase_06 AC 35 ms
58,772 KB
testcase_07 AC 36 ms
61,176 KB
testcase_08 AC 37 ms
58,748 KB
testcase_09 AC 37 ms
60,432 KB
testcase_10 AC 36 ms
58,876 KB
testcase_11 AC 37 ms
58,764 KB
testcase_12 AC 36 ms
58,728 KB
testcase_13 AC 35 ms
59,228 KB
testcase_14 AC 36 ms
58,512 KB
testcase_15 AC 36 ms
59,356 KB
testcase_16 AC 34 ms
58,060 KB
testcase_17 AC 36 ms
58,256 KB
testcase_18 AC 36 ms
58,560 KB
testcase_19 AC 34 ms
58,808 KB
testcase_20 AC 31 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())

ans = 200
for i in range(2,200):
    n = i
    tmp = n
    for j in range(61):
        if tmp >= a:
            ans = min(ans,n*(j+1))
            break
        else:
            tmp *= i
print(ans)
0