結果

問題 No.432 占い(Easy)
ユーザー atkrymatkrym
提出日時 2016-10-18 18:22:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 58,916 KB
最終ジャッジ日時 2024-11-22 12:34:18
合計ジャッジ時間 8,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,148 KB
testcase_01 AC 138 ms
54,236 KB
testcase_02 AC 135 ms
54,060 KB
testcase_03 AC 144 ms
54,404 KB
testcase_04 AC 165 ms
54,244 KB
testcase_05 AC 142 ms
54,132 KB
testcase_06 AC 155 ms
54,052 KB
testcase_07 AC 156 ms
54,548 KB
testcase_08 AC 140 ms
54,328 KB
testcase_09 AC 208 ms
55,052 KB
testcase_10 AC 179 ms
54,100 KB
testcase_11 AC 209 ms
56,992 KB
testcase_12 AC 271 ms
58,672 KB
testcase_13 AC 268 ms
58,876 KB
testcase_14 AC 209 ms
56,980 KB
testcase_15 AC 144 ms
54,216 KB
testcase_16 AC 147 ms
53,920 KB
testcase_17 AC 272 ms
58,916 KB
testcase_18 AC 257 ms
57,728 KB
testcase_19 AC 237 ms
57,000 KB
testcase_20 AC 219 ms
56,900 KB
testcase_21 AC 208 ms
56,856 KB
testcase_22 AC 184 ms
54,200 KB
testcase_23 AC 184 ms
54,052 KB
testcase_24 AC 228 ms
54,900 KB
testcase_25 AC 224 ms
54,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        for (int i = 0;i < n;i++) {
            solve(sc.next());
        }
    }
    
    public static void solve(String s) {
        while (s.length() != 1) {
            StringBuilder sb = new StringBuilder();
            for (int i = 0;i < s.length()-1;i++) {
                int sum = Integer.valueOf(s.substring(i, i+1)) + Integer.valueOf(s.substring(i+1, i+2));
                if (sum >= 10) sum -= 9;
                sb.append(sum);
            }
            s = sb.toString();
        }
        System.out.println(s);
    }
}
0