結果

問題 No.1176 少ない質問
ユーザー penguinmanpenguinman
提出日時 2020-11-01 01:02:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 167 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-07-22 05:32:00
合計ジャッジ時間 17,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 903 ms
75,520 KB
testcase_01 AC 667 ms
75,264 KB
testcase_02 TLE -
testcase_03 AC 999 ms
75,648 KB
testcase_04 AC 785 ms
75,264 KB
testcase_05 AC 928 ms
75,264 KB
testcase_06 AC 704 ms
75,520 KB
testcase_07 AC 720 ms
75,264 KB
testcase_08 AC 740 ms
75,264 KB
testcase_09 AC 807 ms
75,264 KB
testcase_10 AC 548 ms
75,264 KB
testcase_11 AC 413 ms
75,520 KB
testcase_12 AC 792 ms
75,648 KB
testcase_13 AC 453 ms
75,392 KB
testcase_14 TLE -
testcase_15 AC 825 ms
75,136 KB
testcase_16 AC 853 ms
75,776 KB
testcase_17 TLE -
testcase_18 AC 506 ms
75,520 KB
testcase_19 AC 900 ms
75,520 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=int(1e100)
for i in range(1000000):
    x=i+2
    for j in range(100):
        if(x**j>N):
            ans=min(ans,x*j)
            break
print(ans)
0