2 条题解
-
0
202509cj108 (王宇浩) LV 6 @ 2025-12-13 15:37:04
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int n,k,t,ys;
cin>>n>>k>>t;
ys=k*t;
if (ys>n)
cout<<n;
else
cout<<ys;
return 0;
} -
0@ 2025-07-16 12:25:51
#include<bits/stdc++.h>
using namespace std;
int a,b,c;
int main()
{
cin>>a>>b>>c;
cout<<min(a,b*c)<<endl;
return 0;
}
- 1
信息
- ID
- 2945
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 29
- 已通过
- 20
- 通过率
- 69%
- 上传者