結果

問題 No.289 数字を全て足そう
ユーザー TakaTaka
提出日時 2016-11-01 19:22:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 398 bytes
コンパイル時間 3,164 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-11-25 01:13:55
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,652 KB
testcase_01 AC 119 ms
53,900 KB
testcase_02 AC 110 ms
52,908 KB
testcase_03 AC 121 ms
53,968 KB
testcase_04 AC 119 ms
53,816 KB
testcase_05 AC 122 ms
54,048 KB
testcase_06 AC 127 ms
54,040 KB
testcase_07 AC 126 ms
52,988 KB
testcase_08 AC 133 ms
53,664 KB
testcase_09 AC 125 ms
53,956 KB
testcase_10 AC 140 ms
54,148 KB
testcase_11 AC 137 ms
54,060 KB
testcase_12 AC 120 ms
52,996 KB
testcase_13 AC 145 ms
54,208 KB
testcase_14 AC 147 ms
53,896 KB
testcase_15 AC 122 ms
52,820 KB
testcase_16 AC 144 ms
53,772 KB
testcase_17 AC 144 ms
54,064 KB
testcase_18 AC 147 ms
53,956 KB
testcase_19 AC 126 ms
53,016 KB
testcase_20 AC 143 ms
53,896 KB
testcase_21 AC 124 ms
54,052 KB
testcase_22 AC 146 ms
53,884 KB
testcase_23 AC 134 ms
53,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class a{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String a=sc.next();
		int sum=0;
		for(int i=0; i<a.length(); i++){
			if(a.charAt(i)>='a'&&a.charAt(i)<='z' || a.charAt(i)>='A'&&a.charAt(i)<='Z'){
				
			}else{
				sum+=Integer.parseInt(String.valueOf(a.charAt(i)));
			}
		}
		System.out.println(sum);
    }
}
0