摘要: Codeforces 973 div2 A:Zhan's Blender 点击查看代码 void solve() { int n,x,y; cin>>n>>x>>y; int ans=0; if(x>=y) { ans=n/y; if(n%y) ans++; } else { ans=n/x; if 阅读全文
posted @ 2024-09-27 00:30 manbin 阅读(59) 评论(0) 推荐(0)