結果

問題 No.289 数字を全て足そう
ユーザー nCk_cvnCk_cv
提出日時 2015-11-28 00:40:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 75,172 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-10-07 20:34:38
合計ジャッジ時間 6,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,224 KB
testcase_01 AC 117 ms
53,868 KB
testcase_02 AC 115 ms
53,976 KB
testcase_03 AC 115 ms
53,884 KB
testcase_04 AC 114 ms
53,840 KB
testcase_05 AC 123 ms
54,180 KB
testcase_06 AC 121 ms
54,120 KB
testcase_07 AC 129 ms
54,060 KB
testcase_08 AC 117 ms
52,928 KB
testcase_09 AC 120 ms
54,020 KB
testcase_10 AC 137 ms
54,204 KB
testcase_11 AC 137 ms
54,016 KB
testcase_12 AC 132 ms
54,124 KB
testcase_13 AC 137 ms
53,940 KB
testcase_14 AC 142 ms
54,172 KB
testcase_15 AC 139 ms
53,860 KB
testcase_16 AC 134 ms
53,992 KB
testcase_17 AC 118 ms
53,112 KB
testcase_18 AC 129 ms
52,860 KB
testcase_19 AC 141 ms
54,080 KB
testcase_20 AC 131 ms
53,956 KB
testcase_21 AC 103 ms
52,684 KB
testcase_22 AC 118 ms
52,944 KB
testcase_23 AC 140 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Map.Entry;
import java.math.*;
import java.awt.geom.*;
import java.io.*;
      
      
public class Main {	

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] S = sc.next().toCharArray();
		int count = 0;
		for(int i = 0; i < S.length; i++) {
			if(S[i] >= '0' && S[i] <= '9') {
				count += S[i] - '0';
			}
		}
		System.out.println(count);
	}
}
0