zhyf • 12天前
using namespace std;
int main() {
int cnt = 0, ans = 0, n; cin >> n; while (n) { cnt++; if (n % 3 == 1 && ans == 0) { ans = cnt; } n -= (n + 2) / 3; } cout << cnt << " " << ans; return 0;
}
评论:
感觉你很靠谱,真的
请先登录,才能进行评论