結果

問題 No.289 数字を全て足そう
ユーザー len_discoreglen_discoreg
提出日時 2016-06-02 21:56:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 652 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-10-08 05:58:53
合計ジャッジ時間 7,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,980 KB
testcase_01 AC 128 ms
54,052 KB
testcase_02 AC 127 ms
54,032 KB
testcase_03 AC 126 ms
53,904 KB
testcase_04 AC 129 ms
53,940 KB
testcase_05 AC 134 ms
54,016 KB
testcase_06 AC 131 ms
53,764 KB
testcase_07 AC 139 ms
54,016 KB
testcase_08 AC 128 ms
52,880 KB
testcase_09 AC 133 ms
53,988 KB
testcase_10 AC 140 ms
54,336 KB
testcase_11 AC 141 ms
53,936 KB
testcase_12 AC 145 ms
53,932 KB
testcase_13 AC 144 ms
54,164 KB
testcase_14 AC 145 ms
54,184 KB
testcase_15 AC 142 ms
53,812 KB
testcase_16 AC 140 ms
53,932 KB
testcase_17 AC 145 ms
53,936 KB
testcase_18 AC 144 ms
53,920 KB
testcase_19 AC 143 ms
54,104 KB
testcase_20 AC 143 ms
54,132 KB
testcase_21 AC 128 ms
54,148 KB
testcase_22 AC 144 ms
54,060 KB
testcase_23 AC 145 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki289 {
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		String str = scan.next();
		char[] beforeOmitCharArr = str.toCharArray();
		int total = 0;

		for(int i = 0; i < beforeOmitCharArr.length; i++){
			if(isNum((beforeOmitCharArr[i]))){
				total = total + Character.getNumericValue(beforeOmitCharArr[i]);
			}
		}

		System.out.println(total);
	}

	static boolean isNum(char ch) {
		if(ch == '0' || ch == '1' || ch == '2' || ch == '3' || ch == '4' || ch == '5'||
		   ch == '6' || ch == '7' || ch == '8' || ch == '9'){
			return true;
		}else{
			return false;
		}

	}
}
0