結果

問題 No.289 数字を全て足そう
ユーザー hikari2004hikari2004
提出日時 2016-04-20 11:33:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 365 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-10-08 00:53:46
合計ジャッジ時間 8,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,004 KB
testcase_01 AC 131 ms
54,092 KB
testcase_02 AC 134 ms
53,940 KB
testcase_03 AC 131 ms
53,736 KB
testcase_04 AC 135 ms
54,000 KB
testcase_05 AC 145 ms
54,024 KB
testcase_06 AC 138 ms
53,756 KB
testcase_07 AC 147 ms
54,240 KB
testcase_08 AC 151 ms
53,800 KB
testcase_09 AC 143 ms
53,916 KB
testcase_10 AC 151 ms
54,076 KB
testcase_11 AC 151 ms
54,128 KB
testcase_12 AC 154 ms
53,944 KB
testcase_13 AC 150 ms
54,532 KB
testcase_14 AC 153 ms
54,260 KB
testcase_15 AC 149 ms
53,868 KB
testcase_16 AC 157 ms
54,044 KB
testcase_17 AC 151 ms
54,068 KB
testcase_18 AC 158 ms
54,068 KB
testcase_19 AC 149 ms
54,108 KB
testcase_20 AC 149 ms
54,244 KB
testcase_21 AC 129 ms
53,988 KB
testcase_22 AC 136 ms
52,868 KB
testcase_23 AC 155 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No289 {

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

		int ans = 0;

		for(int i = 0; i < line.length(); i++){
			char ch = line.charAt(i);
			if(Character.isDigit(ch)){
				ans += Integer.parseInt(String.valueOf(ch));
			}
		}
		System.out.println(ans);
	}

}
0