2 solutions

  • 0
    @ 2025-4-30 17:39:01
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
      int t,n,m,z;
      cin>>t>>n>>m;
      z=n/m;
      if(z>t){
        cout<<"no";
      }
      else if(z<=t){
        cout<<"yes";
      }
      return 0;
    }
    
    • 0
      @ 2025-4-30 17:38:45

      #include<bits/stdc++.h> using namespace std; int main(){ int t,n,m,z; cin>>t>>n>>m; z=n/m; if(z>t){ cout<<"no"; } else if(z<=t){ cout<<"yes"; } return 0; }

      • 1

      Information

      ID
      1296
      Time
      1000ms
      Memory
      64MiB
      Difficulty
      10
      Tags
      # Submissions
      4
      Accepted
      3
      Uploaded By