码迷,mamicode.com
首页 > 其他好文 > 详细

Educational Codeforces Round 77 (Rated for Div. 2) B. Obtain Two Zeroes

时间:2019-12-26 21:09:49      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:com   force   ace   ref   ==   math   mes   main   pre   

题目:https://codeforces.com/contest/1260/problem/B
思路:易得成立的条件为:\((a+b)\mod3==0\) && \(max(a,b)\le min(a,b)*2\)

#include<bits/stdc++.h>

using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;cin>>T;
    while(T--)
    {
        int a,b;
        cin>>a>>b;
        if((a+b)%3==0&&max(a,b)<=min(a,b)*2) cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
    }
    return 0;
}

Educational Codeforces Round 77 (Rated for Div. 2) B. Obtain Two Zeroes

标签:com   force   ace   ref   ==   math   mes   main   pre   

原文地址:https://www.cnblogs.com/c4Lnn/p/12104200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!