結果

問題 No.656 ゴルフ
ユーザー GBGB
提出日時 2018-04-23 12:29:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 73,656 KB
実行使用メモリ 37,080 KB
最終ジャッジ日時 2024-06-27 14:04:19
合計ジャッジ時間 3,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,968 KB
testcase_01 AC 50 ms
37,000 KB
testcase_02 AC 50 ms
36,932 KB
testcase_03 AC 50 ms
36,988 KB
testcase_04 AC 53 ms
36,772 KB
testcase_05 AC 54 ms
37,012 KB
testcase_06 AC 49 ms
37,004 KB
testcase_07 AC 50 ms
37,080 KB
testcase_08 AC 50 ms
36,764 KB
testcase_09 AC 50 ms
36,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.lang.*;

class Main{
  public static void main(String[] args) throws IOException{
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    String n=br.readLine();

    int sum=0;
    for(int i=0;i<n.length();i++){
      int x=Character.getNumericValue(n.charAt(i));
      if(x==0){
        sum+=10;
      }
      sum+=x;
    }

    System.out.println(sum);
  }
  }
0