結果

問題 No.1168 Digit Sum Sequence
ユーザー eagleeagle
提出日時 2022-06-15 14:28:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 54,576 KB
最終ジャッジ日時 2024-10-04 03:42:53
合計ジャッジ時間 6,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,968 KB
testcase_01 AC 102 ms
52,976 KB
testcase_02 AC 113 ms
53,780 KB
testcase_03 AC 116 ms
53,972 KB
testcase_04 AC 105 ms
54,576 KB
testcase_05 AC 101 ms
52,924 KB
testcase_06 AC 105 ms
52,904 KB
testcase_07 AC 117 ms
53,800 KB
testcase_08 AC 118 ms
53,716 KB
testcase_09 AC 120 ms
53,888 KB
testcase_10 AC 117 ms
54,312 KB
testcase_11 AC 113 ms
54,212 KB
testcase_12 AC 110 ms
53,972 KB
testcase_13 AC 113 ms
53,984 KB
testcase_14 AC 114 ms
54,180 KB
testcase_15 AC 100 ms
52,716 KB
testcase_16 AC 102 ms
53,660 KB
testcase_17 AC 102 ms
52,992 KB
testcase_18 AC 113 ms
54,180 KB
testcase_19 AC 113 ms
54,192 KB
testcase_20 AC 103 ms
52,888 KB
testcase_21 AC 111 ms
53,808 KB
testcase_22 AC 110 ms
53,872 KB
testcase_23 AC 112 ms
53,736 KB
testcase_24 AC 111 ms
54,176 KB
testcase_25 AC 101 ms
52,900 KB
testcase_26 AC 113 ms
53,808 KB
testcase_27 AC 113 ms
53,756 KB
testcase_28 AC 103 ms
52,736 KB
testcase_29 AC 117 ms
53,868 KB
testcase_30 AC 111 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long a = N;
		for(int i = 2; i <= 100; i++) {
			int sum;
			long val = a;
			a = 0;
			while(val > 0) {
				a += val % 10;
				val /= 10;
			}
		}
		System.out.println(a);
	}
}
0