2 条题解
-
0
#include<bits/stdc++.h> using namespace std; int fun(int x,int y,int z) { int f=max(max(x,y),max(y,z)); int m=min(min(z,y),min(x,y)); if(x!=f&&x!=m)return x; else if(y!=f&&y!=m) return y; else return z; } int main() { int a,b,c,q; cin>>q>>a>>b>>c; int f=fun(a,b,c); cout<<q/f<<" "<<q%f; }
信息
- ID
- 462
- 时间
- 1000ms
- 内存
- 32MiB
- 难度
- 5
- 标签
- 递交数
- 229
- 已通过
- 84
- 上传者