結果

問題 No.1168 Digit Sum Sequence
ユーザー syusyu
提出日時 2020-08-31 19:57:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 2,533 ms
コンパイル使用メモリ 76,328 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-11-17 02:19:23
合計ジャッジ時間 7,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,288 KB
testcase_01 AC 106 ms
39,736 KB
testcase_02 AC 120 ms
40,900 KB
testcase_03 AC 121 ms
41,080 KB
testcase_04 AC 115 ms
41,236 KB
testcase_05 AC 117 ms
41,088 KB
testcase_06 AC 118 ms
41,408 KB
testcase_07 AC 114 ms
41,068 KB
testcase_08 AC 108 ms
40,548 KB
testcase_09 AC 114 ms
41,144 KB
testcase_10 AC 110 ms
41,100 KB
testcase_11 AC 119 ms
41,236 KB
testcase_12 AC 124 ms
40,836 KB
testcase_13 AC 124 ms
41,148 KB
testcase_14 AC 118 ms
40,856 KB
testcase_15 AC 114 ms
41,380 KB
testcase_16 AC 116 ms
40,956 KB
testcase_17 AC 106 ms
40,072 KB
testcase_18 AC 112 ms
39,708 KB
testcase_19 AC 119 ms
41,020 KB
testcase_20 AC 118 ms
41,036 KB
testcase_21 AC 117 ms
40,992 KB
testcase_22 AC 118 ms
40,796 KB
testcase_23 AC 119 ms
41,236 KB
testcase_24 AC 126 ms
41,276 KB
testcase_25 AC 108 ms
39,956 KB
testcase_26 AC 108 ms
40,168 KB
testcase_27 AC 111 ms
39,904 KB
testcase_28 AC 117 ms
40,868 KB
testcase_29 AC 118 ms
41,172 KB
testcase_30 AC 116 ms
40,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int number=sc.nextInt();
        int length=String.valueOf(number).length();
        int checkNum=0;
        while(length>=2){
            for(int i=0;i<length;i++){
                checkNum+=number%10;
                number/=10;
                //System.out.println(checkNum+" "+length);
            }
            number=checkNum;
            length=String.valueOf(number).length();
            checkNum=0;
        }
        System.out.println(number);
    }
    
}
0