10929 - You can say 11

UVa網站題目連結
My Solved Problems Performance

Introduction to the problem
Your job is, given a positive number N, determine if it is a multiple of eleven.

Description of the input
The input is a file such that each line contains a positive number. A line containing the number 0 is the end of the input. The given numbers can contain up to 1000 digits.

Description of the output
The output of the program shall indicate, for each input number, if it is a multiple of eleven or not.

Sample input:
112233
30800
2937
323455693
5038297
112234
0

Sample output
112233 is a multiple of 11.
30800 is a multiple of 11.
2937 is a multiple of 11.
323455693 is a multiple of 11.
5038297 is a multiple of 11.
112234 is not a multiple of 11.

Solution
  1. import java.io.BufferedInputStream;
  2. import java.math.BigInteger;
  3. import java.util.Scanner;

  4. public class Main {

  5. public static void main(String[] args) {

  6. Scanner in = new Scanner(new BufferedInputStream(System.in));
  7. BigInteger bigInt;
  8. String s;

  9. while (!(s=in.nextLine().trim()).equals("0")) {
  10. System.out.print(s);
  11. while (s.charAt(0)=='0') s = s.substring(1);
  12. bigInt = new BigInteger(s);
  13. if (bigInt.divideAndRemainder(new BigInteger(String.valueOf(11)))[1].
  14. equals(BigInteger.ZERO))
  15. System.out.println(" is a multiple of 11.");
  16. else
  17. System.out.println(" is not a multiple of 11.");
  18. }
  19. }
  20. }
關鍵字:UVa Online Judge, ACM. Java

留言

這個網誌中的熱門文章

【銀行代碼查詢】3碼銀行代碼列表、7碼分行代碼查詢

【博客來折價券】博客來免費序號e-coupon分享(持續更新)

【博客來折價券】25/50/100/150現領現折+天天簽到換200+OP兩倍換!

【新光卡攻略】台灣Pay單筆888送50+寰宇3%,LINE會員繳費10%!

Gmail 無限分身術:產生無限 email 帳號