結果

問題 No.289 数字を全て足そう
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-08 22:31:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 57,956 KB
最終ジャッジ日時 2024-04-08 16:29:14
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
57,720 KB
testcase_01 AC 132 ms
57,692 KB
testcase_02 AC 129 ms
57,936 KB
testcase_03 AC 127 ms
57,824 KB
testcase_04 AC 130 ms
57,816 KB
testcase_05 AC 137 ms
57,828 KB
testcase_06 AC 134 ms
57,548 KB
testcase_07 AC 151 ms
57,932 KB
testcase_08 AC 148 ms
57,848 KB
testcase_09 AC 134 ms
57,832 KB
testcase_10 AC 148 ms
57,908 KB
testcase_11 AC 151 ms
56,404 KB
testcase_12 AC 151 ms
57,956 KB
testcase_13 AC 147 ms
57,824 KB
testcase_14 AC 148 ms
57,832 KB
testcase_15 AC 145 ms
57,844 KB
testcase_16 AC 145 ms
57,952 KB
testcase_17 AC 144 ms
57,828 KB
testcase_18 AC 147 ms
57,828 KB
testcase_19 AC 150 ms
57,824 KB
testcase_20 AC 147 ms
57,828 KB
testcase_21 AC 132 ms
57,676 KB
testcase_22 AC 151 ms
57,688 KB
testcase_23 AC 161 ms
57,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int sum = 0;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i)>=49 && s.charAt(i)<=57) {
				String temp = String.valueOf(s.charAt(i));
				sum += Integer.parseInt(temp);
			}
		}
		System.out.println(sum);
	}
}
0