Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5690 王冯俊 汽水瓶 C++ 编译错误 0 0 MS 0 KB 300 2020-08-14 17:15:08

Tests(0/0):


#include<assert.h> int main() { int a; int count = 0; while (cin >> a) { int x, y; count = 0; while (a >= 3) { x = a / 3; y = a % 3; a = x + y; count += x; } if (a == 2) cout << count + 1 << endl; else cout << count << endl; } return 0; }


测评信息: