結果

問題 No.1168 Digit Sum Sequence
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-04 09:24:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-10-04 12:40:15
合計ジャッジ時間 7,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,012 KB
testcase_01 AC 124 ms
53,980 KB
testcase_02 AC 127 ms
53,816 KB
testcase_03 AC 110 ms
52,896 KB
testcase_04 AC 120 ms
54,208 KB
testcase_05 AC 123 ms
52,928 KB
testcase_06 AC 108 ms
54,112 KB
testcase_07 AC 109 ms
53,044 KB
testcase_08 AC 128 ms
54,248 KB
testcase_09 AC 106 ms
53,004 KB
testcase_10 AC 123 ms
53,880 KB
testcase_11 AC 122 ms
54,012 KB
testcase_12 AC 120 ms
54,004 KB
testcase_13 AC 118 ms
54,328 KB
testcase_14 AC 121 ms
54,152 KB
testcase_15 AC 126 ms
54,148 KB
testcase_16 AC 123 ms
54,084 KB
testcase_17 AC 127 ms
54,124 KB
testcase_18 AC 123 ms
53,904 KB
testcase_19 AC 124 ms
54,036 KB
testcase_20 AC 119 ms
54,020 KB
testcase_21 AC 107 ms
53,104 KB
testcase_22 AC 125 ms
53,916 KB
testcase_23 AC 122 ms
54,064 KB
testcase_24 AC 106 ms
52,872 KB
testcase_25 AC 105 ms
53,036 KB
testcase_26 AC 116 ms
54,068 KB
testcase_27 AC 105 ms
52,800 KB
testcase_28 AC 114 ms
53,984 KB
testcase_29 AC 125 ms
54,180 KB
testcase_30 AC 119 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int a0 = sc.nextInt();
	    	for (int i = 0; i < 100; i++) {
	    		a0 = nextA(a0);
	    	}

	    	System.out.println(nextA(a0));

	    	}

	    static int nextA(int a) {
	    	int next_a = 0;
	    	while (a > 0) {
	    		next_a += a % 10;
	    		a /= 10;
	    	}

	    	return next_a;
	    }

}
0