結果

問題 No.1168 Digit Sum Sequence
ユーザー キョウチクキョウチク
提出日時 2022-05-14 12:34:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 76,132 KB
実行使用メモリ 37,536 KB
最終ジャッジ日時 2024-07-22 21:17:41
合計ジャッジ時間 5,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,328 KB
testcase_01 AC 45 ms
37,356 KB
testcase_02 AC 43 ms
37,248 KB
testcase_03 AC 46 ms
37,180 KB
testcase_04 AC 45 ms
37,200 KB
testcase_05 AC 44 ms
37,040 KB
testcase_06 AC 45 ms
36,576 KB
testcase_07 AC 44 ms
36,848 KB
testcase_08 AC 45 ms
36,932 KB
testcase_09 AC 45 ms
37,012 KB
testcase_10 AC 46 ms
37,328 KB
testcase_11 AC 50 ms
37,336 KB
testcase_12 AC 50 ms
37,024 KB
testcase_13 AC 50 ms
37,536 KB
testcase_14 AC 50 ms
37,312 KB
testcase_15 AC 49 ms
37,352 KB
testcase_16 AC 49 ms
37,064 KB
testcase_17 AC 52 ms
36,808 KB
testcase_18 AC 51 ms
37,288 KB
testcase_19 AC 49 ms
37,192 KB
testcase_20 AC 48 ms
36,960 KB
testcase_21 AC 47 ms
37,108 KB
testcase_22 AC 50 ms
37,236 KB
testcase_23 AC 47 ms
37,288 KB
testcase_24 AC 47 ms
37,484 KB
testcase_25 AC 49 ms
37,308 KB
testcase_26 AC 46 ms
37,168 KB
testcase_27 AC 48 ms
37,284 KB
testcase_28 AC 49 ms
37,352 KB
testcase_29 AC 48 ms
37,320 KB
testcase_30 AC 51 ms
37,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
  public static void main(String[] args) throws IOException{
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    String line=br.readLine();
    while(line.length()>1){
      int sum=0;
      for(int i=0;i<line.length();i++){
        sum+=(int)line.charAt(i)-48;
      }
      line=""+sum;
    }
    System.out.println(line);
  }
}
0