結果

問題 No.289 数字を全て足そう
ユーザー kazapyon27kazapyon27
提出日時 2017-05-05 11:08:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 1,000 ms
コード長 535 bytes
コンパイル時間 3,470 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 38,520 KB
最終ジャッジ日時 2024-09-14 08:37:03
合計ジャッジ時間 5,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,920 KB
testcase_01 AC 54 ms
36,856 KB
testcase_02 AC 55 ms
36,884 KB
testcase_03 AC 54 ms
36,620 KB
testcase_04 AC 54 ms
36,920 KB
testcase_05 AC 58 ms
37,004 KB
testcase_06 AC 57 ms
36,940 KB
testcase_07 AC 69 ms
37,476 KB
testcase_08 AC 67 ms
37,880 KB
testcase_09 AC 56 ms
36,548 KB
testcase_10 AC 60 ms
36,740 KB
testcase_11 AC 63 ms
37,128 KB
testcase_12 AC 79 ms
38,460 KB
testcase_13 AC 61 ms
36,812 KB
testcase_14 AC 73 ms
37,964 KB
testcase_15 AC 64 ms
37,012 KB
testcase_16 AC 60 ms
36,720 KB
testcase_17 AC 74 ms
37,392 KB
testcase_18 AC 70 ms
38,344 KB
testcase_19 AC 64 ms
37,300 KB
testcase_20 AC 66 ms
37,336 KB
testcase_21 AC 54 ms
36,792 KB
testcase_22 AC 72 ms
38,220 KB
testcase_23 AC 90 ms
38,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.289 数字を全て足そう*/
import java.io.*;
public class No289 {
	public static void main(String[] args) {
		String r_moji,moji;
		int result=0;
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			r_moji=input.readLine();
			for(short i=0;i<r_moji.length();i++){
				moji=r_moji.substring(i, i+1);
				if(moji.codePointAt(0)>=48 &&moji.codePointAt(0)<=57){
					result+=Integer.parseInt(moji);
				}
			}
			System.out.println(result);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0