結果

問題 No.289 数字を全て足そう
ユーザー kamonegi2236kamonegi2236
提出日時 2015-11-14 13:00:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 1,000 ms
コード長 560 bytes
コンパイル時間 3,284 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 46,832 KB
最終ジャッジ日時 2024-10-07 20:33:19
合計ジャッジ時間 8,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,948 KB
testcase_01 AC 112 ms
40,948 KB
testcase_02 AC 104 ms
41,216 KB
testcase_03 AC 110 ms
41,024 KB
testcase_04 AC 105 ms
41,424 KB
testcase_05 AC 199 ms
43,632 KB
testcase_06 AC 191 ms
42,720 KB
testcase_07 AC 231 ms
45,876 KB
testcase_08 AC 232 ms
45,772 KB
testcase_09 AC 194 ms
43,116 KB
testcase_10 AC 162 ms
44,184 KB
testcase_11 AC 176 ms
45,992 KB
testcase_12 AC 192 ms
46,832 KB
testcase_13 AC 168 ms
45,728 KB
testcase_14 AC 194 ms
46,272 KB
testcase_15 AC 175 ms
45,664 KB
testcase_16 AC 163 ms
45,664 KB
testcase_17 AC 181 ms
45,804 KB
testcase_18 AC 196 ms
46,504 KB
testcase_19 AC 170 ms
45,948 KB
testcase_20 AC 174 ms
45,956 KB
testcase_21 AC 103 ms
41,412 KB
testcase_22 AC 193 ms
46,736 KB
testcase_23 AC 160 ms
42,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.util.List;
public class No289 {

	public static void main(String[] args) {
		
		int count=0;
		
		Scanner in = new Scanner(System.in);
        String str = in.next();
        List<String> list = Arrays.asList(str.split(""));
        for(String q :list){
        	count += toInt(q);
        }
		in.close();
        System.out.println(count); 
	}
	
	public static int toInt(String str){
		int ans = 0;
		
		try{
			ans = Integer.parseInt(str);
		}
		catch(Exception ex){
			
		}
		return ans;
	}

}
0