CUC-SUMMER-9-A

A - Holidays
Codeforces Round #350 (Div. 2)

On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars.

Input
The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars.

Output
Print two integers — the minimum possible and the maximum possible number of days off per year on Mars.

Example
Input
14
Output
4 4
Input
2
Output
0 2

Note
In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off .

In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.


题意:在火星上一周与地球相同,周一到周五为工作日,周六周日为周末,已知火星一年有x天,求周末最多和最少有几天

解法:总天数除以7,余数分三种情况讨论,x<=2, 2<x<=5, 5<x

代码:

#include<iostream>
using namespace std;
int main()
{
    int n,r,x,y;
    cin>>n;
    r=n%7;
    x=n/7*2;
    y=x;
    if(r<=2)
        y+=r;
    else if(r<=5)
        y+=2;
    else{
        y+=2;
        x+=r-5;
    }
    cout<<x<<" "<<y<<endl;
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 13,430评论 0 23
  • 2016,春节到现在,病痛没有放过我,咳个没完没了。儿子第一次住院。让我觉得这个2016真够讨人厌。 4月,可喜的...
    QueenTsang阅读 1,800评论 0 0
  • 好不容易迎来十一长假,好不容易刷到的回家的票,我退了,还赔了一笔手续费,但我还是退了。 以前没来过北京,总是想来看...
    shahads阅读 1,189评论 0 0
  • 昨晚又没忍住发火了。做了一份数学检测,没有不会的题,但还有不少错的题。能不上火么。写作业不认真不专心我真是被打败了...
    三五班杨子贤妈妈阅读 1,267评论 0 0
  • 最近做的项目是前后端分离进行开发的,在后端给到前端接口前,需要前端自己去mock数据完成开发。因此查阅了一些资料,...
    2Youngg阅读 6,251评论 0 3