結果

問題 No.289 数字を全て足そう
ユーザー MatumoMatumo
提出日時 2018-07-13 03:14:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-10-05 06:11:14
合計ジャッジ時間 6,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,088 KB
testcase_01 AC 127 ms
40,904 KB
testcase_02 AC 127 ms
40,952 KB
testcase_03 AC 128 ms
41,104 KB
testcase_04 AC 126 ms
40,992 KB
testcase_05 AC 135 ms
41,252 KB
testcase_06 AC 147 ms
41,080 KB
testcase_07 AC 145 ms
41,036 KB
testcase_08 AC 152 ms
41,044 KB
testcase_09 AC 133 ms
40,992 KB
testcase_10 AC 145 ms
41,036 KB
testcase_11 AC 151 ms
41,088 KB
testcase_12 AC 147 ms
41,048 KB
testcase_13 AC 154 ms
41,196 KB
testcase_14 AC 155 ms
41,316 KB
testcase_15 AC 143 ms
41,044 KB
testcase_16 AC 142 ms
41,032 KB
testcase_17 AC 154 ms
41,188 KB
testcase_18 AC 155 ms
41,344 KB
testcase_19 AC 136 ms
39,944 KB
testcase_20 AC 151 ms
40,956 KB
testcase_21 AC 127 ms
40,840 KB
testcase_22 AC 134 ms
40,292 KB
testcase_23 AC 151 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {

		String s = sc.next();
		int ans = 0;

		for(int i = 0; i < s.length(); i++) {
			char c = s.charAt(i);
			if(Character.isDigit(c)) ans += Integer.parseInt(Character.toString(c));
		}
		
		System.out.println(ans);
    }
}
0