Create 1455.cpp

This commit is contained in:
KiritoTRw 2016-05-26 07:52:33 +08:00
parent 9388c50571
commit 76352e6915

24
QUSTOJ/1455.cpp Normal file
View File

@ -0,0 +1,24 @@
#include <cstdio>
using namespace std;
int main()
{
long n;
while(scanf("%ld",&n)==1&&n!=0)
{
if(n==1)
{
printf("0\n");
continue;
}
int t=1;
--n;
while(n>=3)
{
n=n/3;
t++;
}
printf("%d\n",t);
}
return 0;
}