记录编号 |
520562 |
评测结果 |
AAAAAAAAAA |
题目名称 |
简单题HS |
最终得分 |
100 |
用户昵称 |
callG |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2018-11-04 15:43:05 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include <cmath>
#include <cstdio>
#include <iostream>
using namespace std;
double n, ans, r = 1;
int main()
{
#ifndef LOCAL
freopen("hs.in", "r", stdin);
freopen("hs.out", "w", stdout);
#endif
cin >> n;
if (n < 5) ans = r = n;
while (r < n) r *= 3, ans += 3;
ans -= (r / 3 * 2 >= n);
ans -= (r / 9 * 4 >= n);
cout << ans << endl;
#ifdef LOCAL
#include <cstdlib>
system("pause");
#endif
return 0;
}