当前位置: 代码迷 >> 综合 >> Codeforces Round #350 (Div. 2) A - Holidays
  详细解决方案

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

热度:93   发布时间:2023-12-17 03:40:55.0

题意:

一年有n天,一星期7天,问最多多少个周六周日

思路:

水,考验代码精简的时候到了(这题居然198个测试数据,看起来当时很惨烈啊)

错误及反思:

代码:

#include<bits/stdc++.h>
using namespace std;
int main(){int n;scanf("%d",&n);int ans1=n/7*2;int ans2=n/7*2;ans1+=min(n%7,2);ans2+=max(n%7-5,0);printf("%d %d\n",ans2,ans1);
}
  相关解决方案