zoukankan      html  css  js  c++  java
  • A. Kirill And The Game

    A. Kirill And The Game
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers — amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to the cost. Efficiency may be a non-integer number.

    For each two integer numbers a and b such that l ≤ a ≤ r and x ≤ b ≤ y there is a potion with experience a and cost b in the store (that is, there are (r - l + 1)·(y - x + 1) potions).

    Kirill wants to buy a potion which has efficiency k. Will he be able to do this?

    Input

    First string contains five integer numbers l, r, x, y, k (1 ≤ l ≤ r ≤ 107, 1 ≤ x ≤ y ≤ 107, 1 ≤ k ≤ 107).

    Output

    Print "YES" without quotes if a potion with efficiency exactly k can be bought in the store and "NO" without quotes otherwise.

    You can output each of the letters in any register.

    Examples
    Input
    1 10 1 10 1
    Output
    YES
    Input
    1 5 6 10 1
    Output
    NO

    其实挺水的,但是我也哇了两次.
     1 #include <iostream>
     2 #define ll long long int
     3 using namespace std;
     4 int main(){
     5     int l,r,x,y,k;
     6     cin>>l>>r>>x>>y>>k;
     7     for(ll i=x;i<=y;i++){
     8         if(k*i>=l&&k*i<=r){
     9             cout<<"YES"<<endl;
    10             return 0;
    11         }
    12     }
    13         cout<<"NO"<<endl;
    14     return 0;
    15 }
  • 相关阅读:
    pycharm永久破解方法
    Django-视图&网址
    Django-初体验
    Appium+Pytest实现app并发测试
    我是如何在一周内拿到4份offer的?
    Jenkins集成allure测试报告
    Allure-pytest功能特性介绍
    requests的深入刨析及封装调用
    pytest-html报告修改与汉化
    RobotFrameWork Web自动化测试环境搭建
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7460207.html
Copyright © 2011-2022 走看看