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

湖南省第六届 中信软件教育杯 ???学生程序设计大赛试题 第三题 数字整除

时间:2016-06-02 20:20:45      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:广告

http://www.baidu.com/


对于每组测试数据,输出一行,表示相应的n是否是17的倍数。1表示是,0表示否。


Sample Input


34

201

2098765413

1717171717171717171717171717171717171717171717171718

0


Sample Output


1

0

1

0


Problem Source


The Sixth Hunan Collegiate Programming Contest




题目连接: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); } } } }





湖南省第六届 中信软件教育杯 ???学生程序设计大赛试题 第三题 数字整除

标签:广告

原文地址:http://11585304.blog.51cto.com/11575304/1785478

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