水(C語言版本)

讀了二十分鐘題,做了五分鐘。。。。

A. Vasya the Hipster

time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had a red socks and b 


blue socks.


According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left 


foot, a blue one on the right foot.


Every day Vasya puts on new socks in the morning and throws them away before going to bed as he doesn't want 


to wash them.


Vasya wonders, what is the maximum number of days when he can dress fashionable and wear different socks, and 


after that, for how many days he can then wear the same socks until he either runs out of socks or cannot 


make a single pair from the socks he's got.


Can you help him?


Input
The single line of the input contains two positive integers a and b (1 ≤ a, b ≤ 100) — the number of red 


and blue socks that Vasya's got.


Output
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the 


number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair 


from the socks he's got.


Keep in mind that at the end of the day Vasya throws away the socks that he's been wearing on that day.


Sample test(s)
input
3 1
output
1 1
input
2 3
output
2 0
input
7 3
output
3 2
Note
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left 


to wear on the second day.

#include<stdio.h>
int main()
{
	int a,b,A=0,B=0;
	scanf("%d%d",&a,&b);
	while(a!=0&&b!=0)
	{
		a--;b--;
		A++;
	}
	if(a==0)
		while(1)
		{
			if(b>=2)
			{
				b=b-2;B++;
			}
			else
				break;
		}
	if(b==0)
		while(1)
		{
			if(a>=2)
			{
				a=a-2;B++;
			}
			else
				break;
		}
	printf("%d %d",A,B);
	return 0;
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章