結果

問題 No.656 ゴルフ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 14:29:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-09-13 09:57:46
合計ジャッジ時間 3,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,012 KB
testcase_01 AC 125 ms
53,884 KB
testcase_02 AC 128 ms
54,056 KB
testcase_03 AC 124 ms
53,808 KB
testcase_04 AC 110 ms
52,788 KB
testcase_05 AC 123 ms
53,772 KB
testcase_06 AC 127 ms
54,080 KB
testcase_07 AC 124 ms
53,876 KB
testcase_08 AC 124 ms
53,888 KB
testcase_09 AC 126 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		int ans = 0;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i) == '0') ans += 10;
			else ans += Character.getNumericValue(s.charAt(i));
		}
		System.out.println(ans);
		
	}
}
0