結果

問題 No.656 ゴルフ
ユーザー GrenacheGrenache
提出日時 2018-03-04 00:16:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 3,807 ms
コンパイル使用メモリ 72,828 KB
実行使用メモリ 56,120 KB
最終ジャッジ日時 2023-09-18 14:08:18
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,632 KB
testcase_01 AC 118 ms
55,692 KB
testcase_02 AC 118 ms
56,104 KB
testcase_03 AC 118 ms
56,120 KB
testcase_04 AC 117 ms
55,724 KB
testcase_05 AC 120 ms
55,884 KB
testcase_06 AC 116 ms
55,692 KB
testcase_07 AC 117 ms
55,700 KB
testcase_08 AC 116 ms
55,812 KB
testcase_09 AC 116 ms
55,684 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