結果

問題 No.289 数字を全て足そう
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 16:00:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 1,000 ms
コード長 432 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 57,660 KB
最終ジャッジ日時 2024-06-27 04:48:45
合計ジャッジ時間 7,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,504 KB
testcase_01 AC 123 ms
53,880 KB
testcase_02 AC 125 ms
54,096 KB
testcase_03 AC 123 ms
54,160 KB
testcase_04 AC 124 ms
54,220 KB
testcase_05 AC 190 ms
56,300 KB
testcase_06 AC 185 ms
56,320 KB
testcase_07 AC 210 ms
57,480 KB
testcase_08 AC 210 ms
57,320 KB
testcase_09 AC 180 ms
56,480 KB
testcase_10 AC 192 ms
57,036 KB
testcase_11 AC 205 ms
57,228 KB
testcase_12 AC 211 ms
57,176 KB
testcase_13 AC 199 ms
57,160 KB
testcase_14 AC 215 ms
57,444 KB
testcase_15 AC 208 ms
57,448 KB
testcase_16 AC 204 ms
57,016 KB
testcase_17 AC 212 ms
57,088 KB
testcase_18 AC 211 ms
57,316 KB
testcase_19 AC 204 ms
57,516 KB
testcase_20 AC 206 ms
57,660 KB
testcase_21 AC 120 ms
53,860 KB
testcase_22 AC 210 ms
57,616 KB
testcase_23 AC 219 ms
57,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		//System.out.println("半角英数字の文字列");
		Scanner scanner = new Scanner(System.in);
		String str = scanner.next();
		scanner.close();
		int sum = 0;
		for(int i = 0; i < str.length(); i++) {
			String s = str.substring(i,i+1);
			if(s.matches("[0-9]{1}")) {
				sum += Integer.parseInt(s);
			}
		}
		System.out.println(sum);
	}
}
0