UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#191515#3394. 走路gzxworld1001ms1248kbC++608b2023-10-08 18:27:182023-10-08 21:49:56

answer

#include <bits/stdc++.h>
using namespace std;

long long int n;

int main()
{
	ios :: sync_with_stdio(false), cin.tie(0), cout.tie(0);
	cin >> n;
	if(n == 0)
	{
		cout << 0 << " " << 0;
		return 0;
	}
	long long int part =  n % 4;
	if(part == 1)
	{
		cout << 1ll + n / 4ll * 2ll << " " << - n / 4ll * 2ll;
	}
	else if(part == 2)
	{
		cout << 1ll + n / 4ll * 2ll << " " << 2ll + n / 4ll * 2ll;
	}
	else if(part == 3)
	{
		cout << - 2ll - n / 4ll * 2ll << " " <<  2 + n / 4ll * 2ll;
	}
	else if(part == 0)
	{
		cout << - n / 4ll * 2ll << " " << - n / 4ll * 2ll;
	}
	return 0;	
}

详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 10
Accepted
time: 0ms
memory: 1244kb

input:

3

output:

-2 2

result:

ok single line: '-2 2'

Test #2:

score: 10
Accepted
time: 0ms
memory: 1244kb

input:

14

output:

7 8

result:

ok single line: '7 8'

Test #3:

score: 10
Accepted
time: 1ms
memory: 1248kb

input:

29

output:

15 -14

result:

ok single line: '15 -14'

Test #4:

score: 10
Accepted
time: 0ms
memory: 1244kb

input:

44

output:

-22 -22

result:

ok single line: '-22 -22'

Test #5:

score: 10
Accepted
time: 0ms
memory: 1244kb

input:

512

output:

-256 -256

result:

ok single line: '-256 -256'

Test #6:

score: 10
Accepted
time: 0ms
memory: 1248kb

input:

931

output:

-466 466

result:

ok single line: '-466 466'

Test #7:

score: 10
Accepted
time: 0ms
memory: 1244kb

input:

777777

output:

388889 -388888

result:

ok single line: '388889 -388888'

Test #8:

score: 10
Accepted
time: 0ms
memory: 1248kb

input:

989898

output:

494949 494950

result:

ok single line: '494949 494950'

Test #9:

score: 10
Accepted
time: 0ms
memory: 1248kb

input:

132431

output:

-66216 66216

result:

ok single line: '-66216 66216'

Test #10:

score: 10
Accepted
time: 0ms
memory: 1248kb

input:

1998244353

output:

999122177 -999122176

result:

ok single line: '999122177 -999122176'

Extra Test:

score: 0
Extra Test Passed