結果

問題 No.656 ゴルフ
ユーザー GrenacheGrenache
提出日時 2018-03-04 00:16:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 75,304 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-07-05 05:03:52
合計ジャッジ時間 5,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,428 KB
testcase_01 AC 119 ms
41,096 KB
testcase_02 AC 122 ms
41,396 KB
testcase_03 AC 122 ms
41,088 KB
testcase_04 AC 128 ms
41,056 KB
testcase_05 AC 123 ms
41,152 KB
testcase_06 AC 117 ms
41,140 KB
testcase_07 AC 119 ms
41,120 KB
testcase_08 AC 122 ms
41,036 KB
testcase_09 AC 120 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder656 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] s = sc.next().toCharArray();

		int ans = 0;
		for (char c : s) {
			if (c == '0') {
				ans += 10;
			} else {
				ans += c - '0';
			}
		}

		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0