Vasya the Hipster

简介: Vasya the Hipster

文章目录

一、 Vasya the Hipster

总结


一、 Vasya the Hipster

本题链接:Vasya the Hipster


题目:

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.


Examples

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.


本博客给出本题截图:


image.png

image.png

题意:给出两个不同颜色袜子的个数,每天穿一双之后扔掉这一双,优先穿两种不同颜色的袜子,穿完之后穿同色的袜子,问两种不同穿法的天数分别是多少

AC代码

#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    int a, b;
    cin >> a >> b;
    cout << min(a, b) << ' ' << (max(a, b) - min(a, b)) / 2;
    return 0;
}

总结

水题,不解释

目录
相关文章
|
存储 SQL JSON
mysql中根据json格式进行查询等操作
一般在mysql中,我们根据会存储json格式的文本内容,有的情况下,我们需要利用json的key去查询对应的value问题那么mysql支持对json格式数据的解析操作吗?当然是支持的事实上mysql5.7以上都已经支持json的操作,以及增加了json存储类型Mysql5.7版本以后新增的功能,Mysql提供了一个原生的Json类型,Json值将不再以字符串的形式存储,而是采用一种允许快速读取文本元素(document elements)的内部二进制(internal binary)格式。.
567 0
mysql中根据json格式进行查询等操作
|
Windows
『NSSM』将Kibana及Logstash设置为Windows服务启动
📣读完这篇文章里你能收获到 - NSSM下载及使用 - 将Kibana及Logstash设置为Windows服务启动
513 0
『NSSM』将Kibana及Logstash设置为Windows服务启动
|
8月前
|
缓存 机器人 网络安全
解决steam错误提示“您对 CAPTCHA 的响应似乎无效,请在下方重新验证您不是机器人”的解决办法
在使用 Steam 的过程中,许多新手用户可能会遇到这样一个问题:当他们试图完成注册或其他操作时,系统提示“您对 CAPTCHA 的响应似乎无效,请在下方重新验证您不是机器人。”即使多次尝试,错误提示仍然出现,阻碍了用户的下一步操作。这种情况可能令人沮丧,但了解其背后的原因和解决办法可以帮助我们顺利解决这个问题。
7383 11
|
SQL 敏捷开发 存储
制造业中最抢手的9个IT工作
制造业中最抢手的9个IT工作
324 0
|
开发工具 Android开发 开发者
Android 10.0 动态壁纸 LiveWallpaper (一)
Android 10.0 动态壁纸 LiveWallpaper (一)
1660 0
Android 10.0 动态壁纸 LiveWallpaper (一)
|
人工智能 自然语言处理 程序员
DayDayUp:我是CSDN开发者生态联盟成员“一个处女座的程序猿”:渡己是一种能力,渡人是一种格局
DayDayUp:我是CSDN开发者生态联盟成员“一个处女座的程序猿”:渡己是一种能力,渡人是一种格局
DayDayUp:我是CSDN开发者生态联盟成员“一个处女座的程序猿”:渡己是一种能力,渡人是一种格局
|
Cloud Native Dubbo Java
云原生分布式应用治理综述
分布式应用治理是微服务进行到一定程度之后的必经之路,也是在分布式基础架构之上构建的更高级特性。
云原生分布式应用治理综述
|
运维 Kubernetes 安全
Serverless Kubernetes ASK 概述|学习笔记
快速学习 Serverless Kubernetes ASK 概述
Serverless Kubernetes ASK 概述|学习笔记
|
Android开发
|
SQL 关系型数据库 MySQL
MySQL 删除数据表
MySQL 删除数据表
128 0