2016-09-19 17:02
武汉理工大学 Java 牛客135210号:int n ;
while (cin >> n)
{
n = n > 0 ? n : 0 - n;
int index = 1;
int sum = 0;
while (sum < n)
{
sum += index;
index++;
}
if ((sum - n) % 2 == 0)
{
cout << index - 1 << endl;
}
else {
if (index % 2 == 1)
{
cout << index << endl;
}
else
{
cout << index + 1 << endl;
}
}
}
0 点赞 评论 收藏
分享
关注他的用户也关注了: