本文主要是介绍Codeforces Round #264 (Div. 2) | ABCD,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
A. Caisa and Sugar
这题简直坑,题目中没描述清楚究竟是买一个,还是买一种。坑到最后还是没弄出来,我一直以为是一种可以买多个。
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <iomanip>
typedef long long ll;
using namespace std;
int n, s;
int main()
{cin>>n>>s;int yy = s*100, x, y;int res = -1;for(int i = 0;i < n; i++){cin>>x>>y;int tmp = x*100+y;if(tmp > yy) continue;res = max(res, (yy-tmp)%100);}cout<<res<<endl;return 0;
}
这篇关于Codeforces Round #264 (Div. 2) | ABCD的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!