結果

問題 No.289 数字を全て足そう
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 12:17:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 343 bytes
コンパイル時間 3,031 ms
コンパイル使用メモリ 75,296 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-11-27 18:53:25
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,164 KB
testcase_01 AC 118 ms
41,232 KB
testcase_02 AC 100 ms
40,172 KB
testcase_03 AC 113 ms
41,312 KB
testcase_04 AC 94 ms
39,376 KB
testcase_05 AC 132 ms
41,296 KB
testcase_06 AC 116 ms
41,472 KB
testcase_07 AC 132 ms
41,620 KB
testcase_08 AC 143 ms
41,496 KB
testcase_09 AC 129 ms
41,632 KB
testcase_10 AC 138 ms
41,188 KB
testcase_11 AC 126 ms
41,656 KB
testcase_12 AC 149 ms
41,216 KB
testcase_13 AC 126 ms
41,324 KB
testcase_14 AC 148 ms
41,272 KB
testcase_15 AC 128 ms
40,872 KB
testcase_16 AC 124 ms
40,664 KB
testcase_17 AC 128 ms
41,380 KB
testcase_18 AC 127 ms
41,324 KB
testcase_19 AC 127 ms
40,632 KB
testcase_20 AC 134 ms
40,712 KB
testcase_21 AC 109 ms
40,912 KB
testcase_22 AC 147 ms
41,556 KB
testcase_23 AC 148 ms
41,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		String S = sc.nextLine();
		int sum = 0;

		for(int i=0;i<S.length();i++) {
			sum += Character.isLetter(S.charAt(i)) ?
					0:Integer.parseInt(String.valueOf(S.charAt(i)));
		}

		System.out.println(sum);

	}

}
0