Given two integers, a and b, you should check whether a is divisible by b or not. We know that an integer a is divisible by an integer b if and only if there exists an integer c such that a = b * c.

Input

Input starts with an integer T (≤ 525), denoting the number of test cases.

Each case starts with a line containing two integers a (-10200 ≤ a ≤ 10200) and b (|b| > 0, b fits into a 32 bit signed integer). Numbers will not contain leading zeroes.

Output

For each case, print the case number first. Then print 'divisible' if a is divisible by b. Otherwise print 'not divisible'.

Sample Input

6

101 101

0 67

-101 101

7678123668327637674887634 101

11010000000000000000 256

-202202202202000202202202 -101

Sample Output

Case 1: divisible

Case 2: divisible

Case 3: divisible

Case 4: not divisible

Case 5: divisible

Case 6: divisible

题意:给出t组数据,判断前者是否能被后者整除,能的话输出divisible,否则输出not divisible

思路:前者数据太大,用字符串输入,后者直接int输入即可。然后将前者每一位转换成int型,在每一位转换的时候进行取余。

  但是需要注意判断两者的正负,前者若为负直接将后面每一位往前移一位,且字符串长度记得-1;后者直接变符号即可。

取余操作:

for(int i=0; i<L; i++)
{
k=(k*10+a[i]-'0')%b;
}

上述还可以写成k=(k*10%b+a[i]-'0')%b;

同余定理:
      (a+b)%c=(a%c+b%c)%c
      (a*b)%c=(a%c*b%c)%c

大数取余操作:
一个大数对一个数取余,可以把大数看成各位数的权值与个
位数乘积的和。
1234 = ((1 * 10 + 2) * 10 + 3) * 10 + 4

 1 #include<stdio.h>
2 #include<cmath>
3 #include<string.h>
4 typedef long long ll;
5 using namespace std;
6
7 //const int N=2e200;
8 char a[20000];
9 int b;
10
11 int main()
12 {
13 int n;
14 int t;
15 scanf("%d",&t);
16 int tt=1;
17 while(t--)
18 {
19 scanf("%s %d",a,&b);
20 int L=strlen(a);
21 if(a[0]=='-')//判断前者字符串是否为负
22 {
23 for(int i=1; i<L; i++)
24 {
25 a[i-1]=a[i];
26 }
27 // strlen(a)--;
28 L--;//这里注意一下
29 }
30 if(b<0)//判断后者int是否为负
31 b=-b;
32
33 ll k=0;//这里要写成ll,不然WA
34 for(int i=0; i<L; i++)
35 {
36 k=(k*10+a[i]-'0')%b;
37 }
38 if(k==0)
39 printf("Case %d: divisible\n",tt++);
40 else
41 printf("Case %d: not divisible\n",tt++);
42 }
43 return 0;
44 }

LightOJ-1214-Large Division-大数取余的更多相关文章

  1. light oj 1214 - Large Division 大数除法

    1214 - Large Division Given two integers, a and b, you should check whether a is divisible by b or n ...

  2. LightOJ 1214 Large Division

    Large Division Given two integers, a and b, you should check whether a is divisible by b or not. We ...

  3. LightOJ 1214 Large Division 水题

    java有大数模板 import java.util.Scanner; import java.math.*; public class Main { public static void main( ...

  4. Large Division (大数求余)

    Given two integers, a and b, you should check whether a is divisible by b or not. We know that an in ...

  5. 1214 - Large Division -- LightOj(大数取余)

    http://lightoj.com/volume_showproblem.php?problem=1214 这就是一道简单的大数取余. 还想还用到了同余定理: 所谓的同余,顾名思义,就是许多的数被一 ...

  6. light oj 1214 - Large Division

    1214 - Large Division   PDF (English) Statistics Forum Time Limit: 1 second(s) Memory Limit: 32 MB G ...

  7. LightOJ1214 Large Division —— 大数求模

    题目链接:https://vjudge.net/problem/LightOJ-1214 1214 - Large Division    PDF (English) Statistics Forum ...

  8. POJ2635The Embarrassed Cryptographer(大数取余+素数筛选+好题)

    题目链接 题意:K是由两个素数乘积,如果最小的素数小于L,输出BAD最小的素数,否则输出GOOD 分析 素数打表将 L 大点的素数打出来,一定要比L大,然后就开始枚举,只需K对 素数 取余 看看是否为 ...

  9. java大数取余

    java大数取余: 类方法:BigInteger.divideAndRemainder() 返回一个数组,key = 0为商key = 1为余数 import java.util.*; import ...

  10. hdu 1226 bfs+余数判重+大数取余

    题目: 超级密码 Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total ...

随机推荐

  1. javabean 深拷贝

    <!-- https://mvnrepository.com/artifact/uk.com.robust-it/cloning --> <dependency> <gr ...

  2. break , continue 和 标签 跳出循环

    break跳出代码块或循环 var i = 0: while ( i <= 10){ console.log(' i '); i ++; if ( i === 5 ) break; }// 0 ...

  3. css 布局,过渡

    做了一个小案例,关于我们内边距的处理的,然后再加上一些过渡效果 效果: 具体实现重点加上这里: 具体代码实现: CSS部分: <style> #container{ border:2px ...

  4. HDU6315 Naive Operations 线段树

    目录 Catalog Solution: (有任何问题欢迎留言或私聊 && 欢迎交流讨论哦 Catalog Problem:Portal传送门  原题目描述在最下面. Solution ...

  5. [转] undefined reference to `clock_gettime'

    下面这个错误通常是因为链接选项里漏了-lrt,但有时发现即使加了-lrt仍出现这个问题,使用nm命令一直,会发现-lrt最终指向的文件 没有包含任何symbol,这个时候,可以找相应的静态库版本lib ...

  6. IAsyncResult

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...

  7. project1_calculator(使用tkinter实现python计算器,含有具体过程与注释)

    最终的运行效果图(程序见序号7): #!/usr/bin/env python# -*- coding:utf-8 -*-# ------------------------------------- ...

  8. STM32F427VI 电流

  9. 剑指offer——25链表中环的入口节点

    题目描述 给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null.   题解: 使用快慢指针即可,若快慢指针会相遇,则有环,否则快指针先到空节点: 此时,快指针从此处一次移一步遍历, ...

  10. jquery操作html元素之(删除元素)

    删除元素/内容 如需删除元素和内容,一般可使用以下两个 jQuery 方法: remove() - 删除被选元素(及其子元素) empty() - 从被选元素中删除子元素 jQuery remove( ...