結果

問題 No.289 数字を全て足そう
ユーザー len_proglen_prog
提出日時 2016-06-02 22:55:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 677 bytes
コンパイル時間 3,412 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-10-08 06:04:24
合計ジャッジ時間 7,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,020 KB
testcase_01 AC 122 ms
41,352 KB
testcase_02 AC 125 ms
40,844 KB
testcase_03 AC 125 ms
41,272 KB
testcase_04 AC 126 ms
40,936 KB
testcase_05 AC 134 ms
41,004 KB
testcase_06 AC 115 ms
39,840 KB
testcase_07 AC 140 ms
41,072 KB
testcase_08 AC 140 ms
40,984 KB
testcase_09 AC 136 ms
40,980 KB
testcase_10 AC 140 ms
40,932 KB
testcase_11 AC 130 ms
40,980 KB
testcase_12 AC 145 ms
41,476 KB
testcase_13 AC 140 ms
40,928 KB
testcase_14 AC 145 ms
41,128 KB
testcase_15 AC 128 ms
40,064 KB
testcase_16 AC 143 ms
41,004 KB
testcase_17 AC 142 ms
41,276 KB
testcase_18 AC 146 ms
41,020 KB
testcase_19 AC 142 ms
41,088 KB
testcase_20 AC 142 ms
41,136 KB
testcase_21 AC 128 ms
40,884 KB
testcase_22 AC 145 ms
41,212 KB
testcase_23 AC 148 ms
41,052 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