Codeforces_334_C
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces_334_C相关的知识,希望对你有一定的参考价值。
http://codeforces.com/problemset/problem/334/C
求不能凑整n,和最小,数量最多的数量。
#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; int main() { long long n; scanf("%I64d",&n); while(n%3 == 0) { n /= 3; } printf("%I64d\n",n/3+1); return 0; }
以上是关于Codeforces_334_C的主要内容,如果未能解决你的问题,请参考以下文章