結果

問題 No.289 数字を全て足そう
ユーザー yu_017yu_017
提出日時 2019-01-14 10:14:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 1,000 ms
コード長 322 bytes
コンパイル時間 3,610 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-10 22:37:23
合計ジャッジ時間 8,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,052 KB
testcase_01 AC 126 ms
54,096 KB
testcase_02 AC 127 ms
54,056 KB
testcase_03 AC 127 ms
53,996 KB
testcase_04 AC 127 ms
54,232 KB
testcase_05 AC 141 ms
53,800 KB
testcase_06 AC 140 ms
54,012 KB
testcase_07 AC 148 ms
53,992 KB
testcase_08 AC 161 ms
54,156 KB
testcase_09 AC 133 ms
54,108 KB
testcase_10 AC 144 ms
53,924 KB
testcase_11 AC 148 ms
54,180 KB
testcase_12 AC 169 ms
54,372 KB
testcase_13 AC 156 ms
54,304 KB
testcase_14 AC 165 ms
53,968 KB
testcase_15 AC 148 ms
54,060 KB
testcase_16 AC 160 ms
53,876 KB
testcase_17 AC 163 ms
54,124 KB
testcase_18 AC 174 ms
53,928 KB
testcase_19 AC 143 ms
54,004 KB
testcase_20 AC 149 ms
54,264 KB
testcase_21 AC 128 ms
53,812 KB
testcase_22 AC 167 ms
54,196 KB
testcase_23 AC 168 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000163 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.nextLine();
		sc.close();

		int r = 0;
		for(char c:str.toCharArray()) {
			int a = Character.getNumericValue(c);
			if(0<a&&a<10)r+=a;
		}
		System.out.println(r);
	}

}
0