結果

問題 No.289 数字を全て足そう
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 09:09:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 300 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-09-13 11:17:42
合計ジャッジ時間 6,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,928 KB
testcase_01 AC 127 ms
54,156 KB
testcase_02 AC 126 ms
54,040 KB
testcase_03 AC 126 ms
54,052 KB
testcase_04 AC 112 ms
52,712 KB
testcase_05 AC 132 ms
53,904 KB
testcase_06 AC 132 ms
53,932 KB
testcase_07 AC 138 ms
53,948 KB
testcase_08 AC 139 ms
54,084 KB
testcase_09 AC 129 ms
53,952 KB
testcase_10 AC 146 ms
53,892 KB
testcase_11 AC 142 ms
54,356 KB
testcase_12 AC 144 ms
54,160 KB
testcase_13 AC 139 ms
54,060 KB
testcase_14 AC 143 ms
54,052 KB
testcase_15 AC 138 ms
53,764 KB
testcase_16 AC 140 ms
54,256 KB
testcase_17 AC 142 ms
54,160 KB
testcase_18 AC 141 ms
54,140 KB
testcase_19 AC 141 ms
53,936 KB
testcase_20 AC 138 ms
54,004 KB
testcase_21 AC 123 ms
53,956 KB
testcase_22 AC 132 ms
52,908 KB
testcase_23 AC 139 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		int sum = 0;
		for (int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if ('0'<=c && c<='9') sum += c - 48;
		}
		System.out.println(sum);
	}
}
0