結果
| 問題 |
No.1176 少ない質問
|
| コンテスト | |
| ユーザー |
penguinman
|
| 提出日時 | 2020-11-01 01:00:52 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 147 bytes |
| コンパイル時間 | 240 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 24,504 KB |
| 最終ジャッジ日時 | 2024-07-22 05:31:28 |
| 合計ジャッジ時間 | 4,642 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 20 |
ソースコード
N=int(input())
ans=int(1e100)
for i in range(1000):
x=i+2
for j in range(1000):
if(x**j>N):
ans=min(ans,x*j)
print(ans)
penguinman