其他分享
首页 > 其他分享> > CF697A Pineapple Incident

CF697A Pineapple Incident

作者:互联网

https://www.luogu.com.cn/problem/CF697A
涉及知识点:模拟,数学,枚举暴力
橙色题
思路:

首先,假设菠萝从时间0开始叫,则想要吃的时间变为x-t。

然后,菠萝叫的时间变为0(原x),s,s+1,2s,2s+1.

就可以得到下面的极简代码:

#include<bits/stdc++.h>
using namespace std;
int main(){
    int t,s,x;
    scanf("%d%d%d",&t,&s,&x);
    x-=t;
    if(x < s && x != 0) printf("NO");//当吃的时间小于叫的间隔时,只有时间0才会叫
    else if(x % s == 0 || x % s == 1) printf("YES");//若吃的时间大于叫的间隔,当吃的时间取余叫的间隔等于0或1时,在吃的时间菠萝会叫
    else printf("NO");//当吃的时间取余叫的间隔不等于0或1时,在吃的时间菠萝不会叫
}

 

标签:d%,CF697A,Pineapple,Incident,时间,printf,取余,间隔,菠萝
来源: https://www.cnblogs.com/2elaina/p/16470100.html