結果

問題 No.656 ゴルフ
ユーザー Grenache
提出日時 2018-03-04 00:16:40
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

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