結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー juugayajuugaya
提出日時 2020-06-12 18:47:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-06-24 04:05:49
合計ジャッジ時間 7,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,104 KB
testcase_01 AC 128 ms
54,292 KB
testcase_02 AC 128 ms
53,992 KB
testcase_03 AC 130 ms
53,940 KB
testcase_04 AC 130 ms
54,124 KB
testcase_05 AC 128 ms
54,000 KB
testcase_06 AC 128 ms
54,144 KB
testcase_07 AC 131 ms
54,068 KB
testcase_08 AC 128 ms
54,456 KB
testcase_09 AC 129 ms
54,220 KB
testcase_10 AC 132 ms
54,156 KB
testcase_11 AC 132 ms
53,952 KB
testcase_12 AC 131 ms
54,228 KB
testcase_13 AC 130 ms
54,064 KB
testcase_14 AC 128 ms
54,224 KB
testcase_15 AC 129 ms
54,128 KB
testcase_16 AC 130 ms
54,032 KB
testcase_17 AC 130 ms
54,040 KB
testcase_18 AC 129 ms
54,064 KB
testcase_19 AC 129 ms
54,300 KB
testcase_20 AC 128 ms
53,964 KB
testcase_21 AC 129 ms
53,876 KB
testcase_22 AC 132 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class a{
    public  static void main(String[] args){
        Scanner scan  =new Scanner(System.in);
        String a =scan.nextLine(); 
        String [] o =a.split("");
        //int  n =Integer.parseInt(o);  
        int sum =0;
        for(int i=0;i<o.length;i++ ){ 
            sum +=Integer.parseInt(a.substring(i,i+1)  );
            //System.out.print(m+sum);
        }
       System.out.println(sum );
        }
    
    
}
0