結果

問題 No.289 数字を全て足そう
ユーザー brave_reverse_brave_reverse_
提出日時 2016-01-08 00:27:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 3,969 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 55,888 KB
最終ジャッジ日時 2024-10-08 00:39:18
合計ジャッジ時間 7,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,896 KB
testcase_01 AC 122 ms
54,076 KB
testcase_02 AC 116 ms
53,956 KB
testcase_03 AC 112 ms
54,284 KB
testcase_04 AC 115 ms
53,856 KB
testcase_05 AC 125 ms
54,052 KB
testcase_06 AC 106 ms
52,672 KB
testcase_07 AC 116 ms
52,724 KB
testcase_08 AC 116 ms
53,160 KB
testcase_09 AC 123 ms
54,024 KB
testcase_10 AC 133 ms
54,100 KB
testcase_11 AC 137 ms
53,972 KB
testcase_12 AC 128 ms
53,888 KB
testcase_13 AC 135 ms
53,856 KB
testcase_14 AC 135 ms
54,060 KB
testcase_15 AC 143 ms
53,728 KB
testcase_16 AC 139 ms
53,960 KB
testcase_17 AC 141 ms
54,196 KB
testcase_18 AC 131 ms
53,960 KB
testcase_19 AC 126 ms
54,200 KB
testcase_20 AC 133 ms
53,960 KB
testcase_21 AC 113 ms
53,916 KB
testcase_22 AC 131 ms
54,036 KB
testcase_23 AC 143 ms
55,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;
import java.util.Scanner;

public class QNo279 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int num =0;
		char[] charas = s.toCharArray();
		for(int i=0;i<charas.length;i++){
			if(Character.isDigit(charas[i])){
				num += Character.getNumericValue(charas[i]);
			}
		}
		
		System.out.println(num);
	}

}
0