Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5909 王循 汽水瓶 C++ 运行超时 0 1000 MS 248 KB 222 2020-08-16 09:29:00

Tests(0/1):


#include<iostream> using namespace std; int main(){ int n; while(cin>>n){ if(n==0) return 0; int ans=0; while(n!=0){ ans+=n; int x=n/3; n%=3; n+=x; } cout<<ans<<endl; } return 0; }


测评信息: