結果

問題 No.1168 Digit Sum Sequence
ユーザー tentententen
提出日時 2020-08-17 18:21:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 76,836 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-10-11 11:11:57
合計ジャッジ時間 7,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,276 KB
testcase_01 AC 132 ms
41,456 KB
testcase_02 AC 131 ms
41,436 KB
testcase_03 AC 127 ms
41,120 KB
testcase_04 AC 127 ms
41,620 KB
testcase_05 AC 132 ms
41,532 KB
testcase_06 AC 118 ms
40,004 KB
testcase_07 AC 131 ms
41,344 KB
testcase_08 AC 129 ms
40,984 KB
testcase_09 AC 132 ms
41,280 KB
testcase_10 AC 133 ms
41,272 KB
testcase_11 AC 130 ms
41,012 KB
testcase_12 AC 132 ms
41,264 KB
testcase_13 AC 137 ms
41,324 KB
testcase_14 AC 132 ms
41,208 KB
testcase_15 AC 132 ms
41,460 KB
testcase_16 AC 120 ms
39,872 KB
testcase_17 AC 131 ms
41,152 KB
testcase_18 AC 130 ms
41,096 KB
testcase_19 AC 134 ms
41,164 KB
testcase_20 AC 132 ms
41,268 KB
testcase_21 AC 130 ms
41,440 KB
testcase_22 AC 129 ms
41,156 KB
testcase_23 AC 133 ms
41,444 KB
testcase_24 AC 133 ms
41,036 KB
testcase_25 AC 130 ms
41,068 KB
testcase_26 AC 131 ms
41,524 KB
testcase_27 AC 135 ms
41,336 KB
testcase_28 AC 131 ms
41,268 KB
testcase_29 AC 116 ms
41,164 KB
testcase_30 AC 132 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for (int i = 1; i < 100; i++) {
            n = calc(n);
        }
        System.out.println(n);
    }
    
    static int calc(int x) {
        int ans = 0;
        while (x > 0) {
            ans += x % 10;
            x /= 10;
        }
        return ans;
    }
}
0