結果

問題 No.289 数字を全て足そう
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-01-25 17:21:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 736 bytes
コンパイル時間 3,817 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-10-08 00:42:50
合計ジャッジ時間 6,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,744 KB
testcase_01 AC 102 ms
52,840 KB
testcase_02 AC 115 ms
54,000 KB
testcase_03 AC 114 ms
54,068 KB
testcase_04 AC 113 ms
53,860 KB
testcase_05 AC 118 ms
54,020 KB
testcase_06 AC 117 ms
54,056 KB
testcase_07 AC 110 ms
52,992 KB
testcase_08 AC 128 ms
54,072 KB
testcase_09 AC 113 ms
54,192 KB
testcase_10 AC 127 ms
53,820 KB
testcase_11 AC 134 ms
53,816 KB
testcase_12 AC 128 ms
54,228 KB
testcase_13 AC 118 ms
52,976 KB
testcase_14 AC 128 ms
53,824 KB
testcase_15 AC 138 ms
54,076 KB
testcase_16 AC 127 ms
53,892 KB
testcase_17 AC 133 ms
54,072 KB
testcase_18 AC 115 ms
53,036 KB
testcase_19 AC 112 ms
52,968 KB
testcase_20 AC 138 ms
54,176 KB
testcase_21 AC 100 ms
52,732 KB
testcase_22 AC 133 ms
53,648 KB
testcase_23 AC 126 ms
53,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0289 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		String s = in.next();
		int n = s.length();
		int ans = 0;
		for (int i=0; i<n; i++) {
			if ('0' <= s.charAt(i) && s.charAt(i) <= '9') ans += s.charAt(i) - '0';
		}
		out.println(ans);
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0