大数除法java

4 篇文章 0 订阅
J - Single Round Math
Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Description

Association for Couples Math (ACM) is a non-profit organization which is engaged in helping single people to find his/her other half. As November 11th is “Single Day”, on this day, ACM invites a large group of singles to the party. People round together, chatting with others, and matching partners.

There are N gentlemen and M ladies in the party, each gentleman should only match with a lady and vice versa. To memorize the Singles Day, ACM decides to divides to divide people into 11 groups, each group should have the same amount of couples and no people are left without the groups.

Can ACM achieve the goal?

Input

The first line of the input is a positive integer T. T is the number of test cases followed. Each test case contains two integer N and M (0 ≤ N, M ≤ 101000), which are the amount of gentlemen and ladies.

Output

For each test case, output “YES” if it is possible to find a way, output “NO” if not.

Sample Input

3
1 1
11 11
22 11

Sample Output

NO
YES
NO

【分析】

题意:给你一群单身狗,n个男性单身狗和m个女性单身狗,问你他们能不能完全成对并且均分成11组..所以首先要满足n=m

然后满足n%11=0就可以了...10^1000次所以大数除法...这里要提一下讲道理稍微学一下Java会做个大数四则运算还是有用的....

大数除法是比较麻烦的所以直接java了,大数加减乘法最好还是要熟练的会写

【代码】

[cpp]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. import java.math.BigInteger;    
  2. import java.util.Scanner;     
  3. public class Main   
  4. {    
  5.     public static void main(String[] args)  
  6.     {          
  7.         BigInteger MOD=new BigInteger("11");    
  8.         BigInteger zero=new BigInteger("0");    
  9.         Scanner sc=new Scanner(System.in);    
  10.         int pp;  
  11.         pp=sc.nextInt();    
  12.         while((pp--)>0)  
  13.         {          
  14.             BigInteger n=sc.nextBigInteger();    
  15.             BigInteger m=sc.nextBigInteger();    
  16.             if(n.compareTo(m)==0 && n.mod(MOD).compareTo(zero)==0)    
  17.                 System.out.println("YES");    
  18.             else  
  19.                 System.out.println("NO");    
  20.         }    
  21.             
  22.     }    
  23. 转自http://blog.csdn.net/jnxxhzz/article/details/60969546

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值