首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
ICL2019E
】的更多相关文章
ICL2019E
https://www.codechef.com/ICL2019/problems/ICL1906 两个整数,[0,1e5]操作1是让两个数同时减1(只有都大于0的时候才可以用)操作2可以让一个数乘2问让两个数都变成0的最小操作次数 直接贪心.能乘就乘. #include <bits/stdc++.h> using namespace std; int t,x,y; int main(){ ios::sync_with_stdio(false); cin>>t; while…