3 条题解

  • 2
    @ 2025-8-7 15:52:25
    #include<bits/stdc++.h>
    using namespace std;
    int n,t,m;
    int main()
    {
    	cin>>t>>n>>m;
    	if(t*m>=n) cout<<"yes";
    	else cout<<"no"; 
    	return 0;
    }
    
    • 0
      @ 2025-10-10 13:13:08

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

      • -2
        @ 2024-11-16 21:54:42

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

        • 1

        信息

        ID
        475
        时间
        1000ms
        内存
        64MiB
        难度
        4
        标签
        递交数
        32
        已通过
        19
        上传者