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