結果

問題 No.289 数字を全て足そう
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-19 23:01:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 568 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-10-08 00:41:40
合計ジャッジ時間 7,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,256 KB
testcase_01 AC 138 ms
54,160 KB
testcase_02 AC 152 ms
54,284 KB
testcase_03 AC 144 ms
54,136 KB
testcase_04 AC 137 ms
53,852 KB
testcase_05 AC 144 ms
54,016 KB
testcase_06 AC 142 ms
54,372 KB
testcase_07 AC 153 ms
53,900 KB
testcase_08 AC 152 ms
53,968 KB
testcase_09 AC 142 ms
53,868 KB
testcase_10 AC 151 ms
54,016 KB
testcase_11 AC 153 ms
53,936 KB
testcase_12 AC 155 ms
53,844 KB
testcase_13 AC 150 ms
54,296 KB
testcase_14 AC 156 ms
53,688 KB
testcase_15 AC 165 ms
54,124 KB
testcase_16 AC 152 ms
54,680 KB
testcase_17 AC 153 ms
54,220 KB
testcase_18 AC 158 ms
54,436 KB
testcase_19 AC 152 ms
54,372 KB
testcase_20 AC 150 ms
54,004 KB
testcase_21 AC 136 ms
53,868 KB
testcase_22 AC 156 ms
53,748 KB
testcase_23 AC 162 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		String S = sc.next();

		char charS[] = S.toCharArray();
		int cnt = 0;
		
		for(int i = 0;i < charS.length; i++) {
			if(charS[i] == '1' ||
			   charS[i] == '2' ||
		       charS[i] == '3' ||
			   charS[i] == '4' ||
			   charS[i] == '5' ||
			   charS[i] == '6' ||
			   charS[i] == '7' ||
			   charS[i] == '8' ||
			   charS[i] == '9') {
				cnt+=Integer.parseInt(String.valueOf(charS[i]));
			}
		}
		
		System.out.println(cnt);
	}
}
0