結果

問題 No.289 数字を全て足そう
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 12:17:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 343 bytes
コンパイル時間 3,184 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-05-05 18:44:38
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,216 KB
testcase_01 AC 101 ms
40,172 KB
testcase_02 AC 112 ms
41,400 KB
testcase_03 AC 114 ms
41,012 KB
testcase_04 AC 110 ms
41,064 KB
testcase_05 AC 112 ms
40,400 KB
testcase_06 AC 103 ms
40,144 KB
testcase_07 AC 124 ms
40,740 KB
testcase_08 AC 127 ms
41,104 KB
testcase_09 AC 120 ms
41,192 KB
testcase_10 AC 123 ms
41,248 KB
testcase_11 AC 128 ms
40,868 KB
testcase_12 AC 128 ms
40,940 KB
testcase_13 AC 136 ms
40,832 KB
testcase_14 AC 144 ms
41,084 KB
testcase_15 AC 126 ms
41,084 KB
testcase_16 AC 139 ms
40,960 KB
testcase_17 AC 129 ms
41,088 KB
testcase_18 AC 137 ms
41,464 KB
testcase_19 AC 144 ms
41,128 KB
testcase_20 AC 132 ms
41,172 KB
testcase_21 AC 112 ms
41,272 KB
testcase_22 AC 142 ms
41,172 KB
testcase_23 AC 156 ms
41,192 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