結果

問題 No.656 ゴルフ
ユーザー htensaihtensai
提出日時 2019-11-13 09:04:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 41,160 KB
最終ジャッジ日時 2024-09-21 21:03:36
合計ジャッジ時間 4,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,876 KB
testcase_01 AC 99 ms
39,860 KB
testcase_02 AC 98 ms
40,044 KB
testcase_03 AC 112 ms
41,020 KB
testcase_04 AC 112 ms
40,920 KB
testcase_05 AC 104 ms
40,132 KB
testcase_06 AC 115 ms
41,160 KB
testcase_07 AC 112 ms
41,024 KB
testcase_08 AC 113 ms
40,900 KB
testcase_09 AC 112 ms
40,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int score = 0;
		for (char c : arr) {
		    if (c == '0') {
		        score += 10;
		    } else {
		        score += c - '0';
		    }
		}
		System.out.println(score);
  }
 }
0