結果

問題 No.656 ゴルフ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 10:18:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,665 ms
コンパイル使用メモリ 79,024 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-06 15:23:35
合計ジャッジ時間 5,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,324 KB
testcase_01 AC 130 ms
41,500 KB
testcase_02 AC 128 ms
41,604 KB
testcase_03 AC 127 ms
41,196 KB
testcase_04 AC 125 ms
41,360 KB
testcase_05 AC 126 ms
41,068 KB
testcase_06 AC 127 ms
41,552 KB
testcase_07 AC 130 ms
41,624 KB
testcase_08 AC 116 ms
40,060 KB
testcase_09 AC 129 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con656 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String score = s.next();
		s.close();

		int count = 0;
		for(int i = 0;i < 9;i++){
			int k = Integer.parseInt(score.substring(i, i+1));
			if(k == 0){
				count += 10;
			}else{
				count += k;
			}
		}
		System.out.println(count);

	}

}
0