結果
| 問題 |
No.1176 少ない質問
|
| コンテスト | |
| ユーザー |
penguinman
|
| 提出日時 | 2020-11-01 00:48:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 449 ms |
| コンパイル使用メモリ | 81,708 KB |
| 実行使用メモリ | 64,512 KB |
| 最終ジャッジ日時 | 2024-07-22 05:31:04 |
| 合計ジャッジ時間 | 1,875 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 WA * 1 |
ソースコード
N=int(input())
ans=1e100
for i in range(20):
x=i+2
for j in range(100):
if(x**j>N):
ans=min(ans,x*j)
print(ans)
penguinman