数字整除 |
Time Limit: 1000ms, Special Time Limit:2500ms, Memory Limit:65536KB |
Total submit users: 22, Accepted users: 22 |
Problem 10932 : No special judgement |
Problem description |
定理:把一个至少两位的正整数的个位数字去掉,再从余下的数中减去个位数的5倍。当且仅当差是17的倍数时,原数也是17的倍数 。 例如,34是17的倍数,因为3-20=-17是17的倍数;201不是17的倍数,因为20-5=15不是17的倍数。输入一个正整数n,你的任务是判断它是否是17的倍数。 |
Input |
输入文件最多包含10组测试数据,每个数据占一行,仅包含一个正整数n(1<=n<=10100),表示待判断的正整数。n=0表示输入结束,你的程序不应当处理这一行。 |
Output |
对于每组测试数据,输出一行,表示相应的n是否是17的倍数。1表示是,0表示否。 |
Sample Input |
34 201 2098765413 1717171717171717171717171717171717171717171717171718 0 |
Sample Output |
1 0 1 0 |
Problem Source |
TheSixthHunanCollegiateProgrammingContest |
题目连接:http://acm.hunnu.edu.cn/online/?action=problem&type=show&id=10932
分析:简单的大数操作,按照习惯本人喜欢用JAVA做
源代码:
import java.math.BigInteger; import java.util.Scanner; //第六届湖南省ACM程序设计大赛的第三题目 public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while (scanner.hasNext()) { String str = scanner.next(); if (str.equals("0")) {//粗心的地方写成了endWith导致了WA六次呀,伤不起伤不起 break; } int len = str.length(); String aStr = str.substring(0, len - 1); String bStr = str.substring(len - 1); BigInteger num = new BigInteger(str);// 原数 BigInteger a = new BigInteger(aStr); BigInteger b = new BigInteger(bStr); BigInteger n = BigInteger.valueOf(5); BigInteger temp = b.multiply(n);// 个位数乘上5倍 // System.out.println(temp); BigInteger r = a.subtract(temp);// 再用原来剩下的数减去5*个位数 // System.out.println(r); r = r.abs();// 转换成绝对值 // System.out.println(r); BigInteger m = BigInteger.valueOf(17); // System.out.println(m); // System.out.println(r.mod(m)); if (r.mod(m).compareTo(BigInteger.valueOf(0)) == 0 && num.mod(m).compareTo(BigInteger.valueOf(0)) == 0) { System.out.println(1); } else { System.out.println(0); } } } }