結果

問題 No.1168 Digit Sum Sequence
ユーザー 遭難者遭難者
提出日時 2020-10-13 11:40:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 74,888 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-07-20 18:24:27
合計ジャッジ時間 7,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,360 KB
testcase_01 AC 131 ms
41,352 KB
testcase_02 AC 133 ms
41,504 KB
testcase_03 AC 131 ms
40,872 KB
testcase_04 AC 132 ms
41,348 KB
testcase_05 AC 135 ms
41,384 KB
testcase_06 AC 133 ms
41,048 KB
testcase_07 AC 133 ms
41,324 KB
testcase_08 AC 135 ms
41,160 KB
testcase_09 AC 131 ms
41,192 KB
testcase_10 AC 130 ms
41,364 KB
testcase_11 AC 131 ms
41,280 KB
testcase_12 AC 117 ms
39,648 KB
testcase_13 AC 130 ms
40,956 KB
testcase_14 AC 131 ms
41,036 KB
testcase_15 AC 131 ms
41,312 KB
testcase_16 AC 132 ms
41,316 KB
testcase_17 AC 132 ms
41,204 KB
testcase_18 AC 133 ms
41,136 KB
testcase_19 AC 136 ms
41,312 KB
testcase_20 AC 131 ms
41,544 KB
testcase_21 AC 132 ms
41,264 KB
testcase_22 AC 131 ms
41,160 KB
testcase_23 AC 133 ms
41,252 KB
testcase_24 AC 139 ms
41,188 KB
testcase_25 AC 131 ms
41,280 KB
testcase_26 AC 131 ms
41,064 KB
testcase_27 AC 133 ms
41,036 KB
testcase_28 AC 133 ms
41,224 KB
testcase_29 AC 132 ms
41,072 KB
testcase_30 AC 134 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int n = Integer.parseInt(sc.next());
		for(int i = 0 ; i < 100 ; i++){
			int s = 0 , cl = n;
			while(cl != 0){
				s += cl % 10;
				cl /= 10;
			}
			n = s;
		}
		ou.println(n);
		ou.flush();
		sc.close();
	}
}
0