ac

zhyf  •  12天前


include <bits/stdc++.h>

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;

}


评论:

感觉你很靠谱,真的


み柒壹ン  •  6天前

请先登录,才能进行评论