結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,740 KB
testcase_01 AC 108 ms
41,084 KB
testcase_02 AC 117 ms
40,812 KB
testcase_03 AC 121 ms
41,152 KB
testcase_04 AC 105 ms
39,992 KB
testcase_05 AC 119 ms
40,656 KB
testcase_06 AC 118 ms
41,000 KB
testcase_07 AC 142 ms
41,312 KB
testcase_08 AC 136 ms
41,312 KB
testcase_09 AC 105 ms
40,012 KB
testcase_10 AC 134 ms
41,256 KB
testcase_11 AC 141 ms
41,144 KB
testcase_12 AC 140 ms
41,004 KB
testcase_13 AC 116 ms
40,244 KB
testcase_14 AC 139 ms
41,340 KB
testcase_15 AC 135 ms
41,012 KB
testcase_16 AC 114 ms
40,380 KB
testcase_17 AC 139 ms
41,152 KB
testcase_18 AC 144 ms
41,296 KB
testcase_19 AC 120 ms
40,128 KB
testcase_20 AC 146 ms
41,200 KB
testcase_21 AC 107 ms
40,416 KB
testcase_22 AC 126 ms
40,892 KB
testcase_23 AC 141 ms
41,708 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