結果

問題 No.289 数字を全て足そう
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 19:08:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 342 bytes
コンパイル時間 4,140 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-07-04 19:19:36
合計ジャッジ時間 7,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,408 KB
testcase_01 AC 126 ms
41,636 KB
testcase_02 AC 119 ms
41,424 KB
testcase_03 AC 125 ms
41,368 KB
testcase_04 AC 121 ms
41,536 KB
testcase_05 AC 138 ms
41,344 KB
testcase_06 AC 132 ms
41,700 KB
testcase_07 AC 140 ms
41,504 KB
testcase_08 AC 139 ms
41,636 KB
testcase_09 AC 126 ms
41,984 KB
testcase_10 AC 130 ms
41,568 KB
testcase_11 AC 140 ms
41,720 KB
testcase_12 AC 158 ms
41,944 KB
testcase_13 AC 137 ms
41,472 KB
testcase_14 AC 161 ms
41,740 KB
testcase_15 AC 158 ms
41,512 KB
testcase_16 AC 156 ms
41,588 KB
testcase_17 AC 139 ms
41,284 KB
testcase_18 AC 166 ms
41,600 KB
testcase_19 AC 144 ms
41,664 KB
testcase_20 AC 138 ms
41,636 KB
testcase_21 AC 125 ms
41,364 KB
testcase_22 AC 151 ms
41,968 KB
testcase_23 AC 167 ms
41,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Tas {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		char[] c = s.nextLine().toCharArray();
		s.close();
		int total = 0;
		
		for(char c2 : c){
			if(Character.isDigit(c2)){
				total += Character.getNumericValue(c2);
			}
		}
		
		System.out.println(total);

	}

}
0