結果

問題 No.1168 Digit Sum Sequence
ユーザー syusyu
提出日時 2020-08-31 19:57:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-04-28 11:06:50
合計ジャッジ時間 6,842 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,932 KB
testcase_01 AC 123 ms
41,196 KB
testcase_02 AC 117 ms
39,900 KB
testcase_03 AC 116 ms
41,432 KB
testcase_04 AC 123 ms
41,292 KB
testcase_05 AC 108 ms
41,176 KB
testcase_06 AC 121 ms
41,204 KB
testcase_07 AC 124 ms
41,236 KB
testcase_08 AC 111 ms
41,324 KB
testcase_09 AC 120 ms
41,244 KB
testcase_10 AC 104 ms
41,360 KB
testcase_11 AC 119 ms
39,968 KB
testcase_12 AC 114 ms
41,412 KB
testcase_13 AC 125 ms
41,240 KB
testcase_14 AC 121 ms
41,236 KB
testcase_15 AC 122 ms
41,316 KB
testcase_16 AC 114 ms
40,036 KB
testcase_17 AC 123 ms
41,232 KB
testcase_18 AC 122 ms
41,268 KB
testcase_19 AC 118 ms
41,108 KB
testcase_20 AC 118 ms
41,640 KB
testcase_21 AC 119 ms
41,144 KB
testcase_22 AC 105 ms
41,488 KB
testcase_23 AC 124 ms
41,088 KB
testcase_24 AC 107 ms
41,508 KB
testcase_25 AC 104 ms
40,312 KB
testcase_26 AC 114 ms
41,208 KB
testcase_27 AC 105 ms
41,308 KB
testcase_28 AC 109 ms
41,488 KB
testcase_29 AC 105 ms
40,232 KB
testcase_30 AC 120 ms
41,372 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