結果

問題 No.432 占い(Easy)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-22 21:39:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 76,084 KB
実行使用メモリ 57,828 KB
最終ジャッジ日時 2024-11-23 17:42:47
合計ジャッジ時間 8,340 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,768 KB
testcase_01 AC 119 ms
53,704 KB
testcase_02 AC 120 ms
53,968 KB
testcase_03 AC 142 ms
54,156 KB
testcase_04 AC 123 ms
53,624 KB
testcase_05 AC 126 ms
54,128 KB
testcase_06 AC 129 ms
54,072 KB
testcase_07 AC 133 ms
54,156 KB
testcase_08 AC 115 ms
54,056 KB
testcase_09 AC 200 ms
55,100 KB
testcase_10 AC 143 ms
53,972 KB
testcase_11 AC 175 ms
56,648 KB
testcase_12 AC 245 ms
57,616 KB
testcase_13 AC 250 ms
57,744 KB
testcase_14 AC 151 ms
56,264 KB
testcase_15 AC 130 ms
54,132 KB
testcase_16 AC 117 ms
52,860 KB
testcase_17 AC 228 ms
57,828 KB
testcase_18 AC 245 ms
57,752 KB
testcase_19 AC 223 ms
57,820 KB
testcase_20 AC 195 ms
56,776 KB
testcase_21 AC 196 ms
57,256 KB
testcase_22 AC 153 ms
54,048 KB
testcase_23 AC 173 ms
54,288 KB
testcase_24 AC 200 ms
54,980 KB
testcase_25 AC 193 ms
55,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise156 {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int number = sc.nextInt();
    for(int i = 0; i < number; i++){
      System.out.println(calc(sc.next()));
    }
  }
  public static String calc(String numStr){
    while(numStr.length() > 1){
      char[] numArray = new char[numStr.length()];
      for(int i = 0; i < numStr.length(); i++){
        numArray[i] = numStr.charAt(i);
      }
      String str = "";
      for(int i = 0; i < numStr.length() - 1; i++){
        int x = Character.getNumericValue(numArray[i]) + Character.getNumericValue(numArray[i + 1]);
        if(x > 9){
          x = x - 10 + 1;
        }
        str = str + String.valueOf(x);
      }
      numStr = str;
    }
    return numStr;
  }
}
0