結果

問題 No.289 数字を全て足そう
ユーザー villachvillach
提出日時 2017-10-13 16:00:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 3,440 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-11-17 11:25:24
合計ジャッジ時間 7,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,968 KB
testcase_01 AC 116 ms
41,196 KB
testcase_02 AC 119 ms
41,236 KB
testcase_03 AC 116 ms
41,084 KB
testcase_04 AC 119 ms
41,056 KB
testcase_05 AC 130 ms
41,112 KB
testcase_06 AC 123 ms
40,912 KB
testcase_07 AC 138 ms
41,072 KB
testcase_08 AC 133 ms
40,624 KB
testcase_09 AC 124 ms
41,180 KB
testcase_10 AC 137 ms
41,028 KB
testcase_11 AC 129 ms
40,772 KB
testcase_12 AC 132 ms
40,868 KB
testcase_13 AC 135 ms
40,512 KB
testcase_14 AC 151 ms
41,024 KB
testcase_15 AC 131 ms
41,168 KB
testcase_16 AC 142 ms
40,572 KB
testcase_17 AC 132 ms
41,308 KB
testcase_18 AC 134 ms
40,720 KB
testcase_19 AC 138 ms
40,680 KB
testcase_20 AC 128 ms
40,868 KB
testcase_21 AC 117 ms
41,088 KB
testcase_22 AC 152 ms
41,064 KB
testcase_23 AC 154 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N289 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String hoge = sc.nextLine();
		int meu = 0;
		char c;
		for(int i = 0;i < hoge.length();++i){
			c = hoge.charAt(i);
			if(c - 48 > 0 && c - 48 < 10){
				meu += c - 48;
			}
		}
		System.out.println(meu);
	}
}
0