大数除法java

来源:互联网 发布:淘宝做尾单童装 编辑:程序博客网 时间:2024/06/16 07:19
J - Single Round Math
Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u
Submit Status

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

31 111 1122 11

Sample Output

NOYESNO

【分析】

题意:给你一群单身狗,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

0 0