結果

問題 No.1168 Digit Sum Sequence
ユーザー キョウチクキョウチク
提出日時 2022-05-19 16:46:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 3,897 ms
コンパイル使用メモリ 76,848 KB
実行使用メモリ 46,672 KB
最終ジャッジ日時 2024-09-18 20:03:59
合計ジャッジ時間 9,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,352 KB
testcase_01 AC 130 ms
41,164 KB
testcase_02 AC 130 ms
41,100 KB
testcase_03 AC 117 ms
40,152 KB
testcase_04 AC 131 ms
41,316 KB
testcase_05 AC 131 ms
41,236 KB
testcase_06 AC 131 ms
41,444 KB
testcase_07 AC 132 ms
41,600 KB
testcase_08 AC 134 ms
41,704 KB
testcase_09 AC 134 ms
41,388 KB
testcase_10 AC 132 ms
41,480 KB
testcase_11 AC 131 ms
41,212 KB
testcase_12 AC 130 ms
41,240 KB
testcase_13 AC 130 ms
41,372 KB
testcase_14 AC 131 ms
41,204 KB
testcase_15 AC 134 ms
41,456 KB
testcase_16 AC 131 ms
41,160 KB
testcase_17 AC 130 ms
41,244 KB
testcase_18 AC 133 ms
41,252 KB
testcase_19 AC 131 ms
41,328 KB
testcase_20 AC 133 ms
41,396 KB
testcase_21 AC 120 ms
40,092 KB
testcase_22 AC 132 ms
41,364 KB
testcase_23 AC 134 ms
46,672 KB
testcase_24 AC 130 ms
41,300 KB
testcase_25 AC 131 ms
41,500 KB
testcase_26 AC 133 ms
41,288 KB
testcase_27 AC 132 ms
41,340 KB
testcase_28 AC 133 ms
41,424 KB
testcase_29 AC 131 ms
44,604 KB
testcase_30 AC 132 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int n=Integer.parseInt(line[0]);
    for(int i=1;i<100;i++){
      int tmp=n;
      n=0;
      while(tmp>0){
        n+=tmp%10;
        tmp=tmp/10;
      }
    }
    String result=""+n;
    System.out.println(result);
  }
}
0