結果
| 問題 |
No.1176 少ない質問
|
| コンテスト | |
| ユーザー |
platinum
|
| 提出日時 | 2020-08-21 21:32:55 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 353 bytes |
| コンパイル時間 | 1,579 ms |
| コンパイル使用メモリ | 165,256 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-15 05:16:13 |
| 合計ジャッジ時間 | 2,306 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(int)(n); i++)
using namespace std;
using LL = long long;
using P = pair<int,int>;
const LL INF = 1e15;
int main(){
LL A;
cin >> A;
LL ans=INF;
for(LL i=2; i<=100; i++){
LL res=1, num=i;
while(num<A){
res++;
num*=i;
}
ans=min(ans,res*i);
}
cout << ans << endl;
return 0;
}
platinum