結果

問題 No.432 占い(Easy)
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 21:55:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 59,872 KB
最終ジャッジ日時 2024-11-21 21:28:38
合計ジャッジ時間 9,107 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
55,140 KB
testcase_01 AC 135 ms
54,296 KB
testcase_02 AC 171 ms
55,032 KB
testcase_03 AC 174 ms
55,128 KB
testcase_04 AC 192 ms
54,768 KB
testcase_05 AC 172 ms
54,940 KB
testcase_06 AC 151 ms
54,200 KB
testcase_07 AC 195 ms
55,060 KB
testcase_08 AC 180 ms
55,216 KB
testcase_09 AC 230 ms
55,104 KB
testcase_10 AC 207 ms
55,292 KB
testcase_11 AC 246 ms
57,796 KB
testcase_12 AC 308 ms
58,260 KB
testcase_13 AC 311 ms
58,220 KB
testcase_14 AC 247 ms
57,956 KB
testcase_15 AC 173 ms
54,756 KB
testcase_16 AC 190 ms
54,908 KB
testcase_17 AC 300 ms
58,320 KB
testcase_18 AC 332 ms
59,872 KB
testcase_19 AC 339 ms
59,488 KB
testcase_20 AC 258 ms
58,084 KB
testcase_21 AC 263 ms
57,876 KB
testcase_22 AC 209 ms
55,536 KB
testcase_23 AC 228 ms
55,408 KB
testcase_24 AC 244 ms
55,180 KB
testcase_25 AC 221 ms
54,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int t = sc.nextInt();
    for(int i = 0; i < t; i++) {
      String s = sc.next();
      while(s.length() > 1) {
        String q = "";
        for(int j = 0; j < s.length() - 1; j++) {
          int a = Integer.parseInt(String.valueOf(s.charAt(j)));
          int b = Integer.parseInt(String.valueOf(s.charAt(j + 1)));
          int c = a + b;
          if(c > 9) c = (c % 10) + 1;
          q += c; 
        }
        s = q;
      }
      int ans = Integer.parseInt(String.valueOf(s.charAt(0)));
      System.out.println(ans);
    }
  }
}
0