結果

問題 No.1070 Missing a space
ユーザー htensaihtensai
提出日時 2020-06-10 10:11:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 313 bytes
コンパイル時間 1,818 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-06-22 05:51:55
合計ジャッジ時間 3,626 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,748 KB
testcase_01 AC 113 ms
53,892 KB
testcase_02 AC 110 ms
54,088 KB
testcase_03 AC 113 ms
54,016 KB
testcase_04 AC 106 ms
52,988 KB
testcase_05 AC 111 ms
54,252 KB
testcase_06 AC 100 ms
53,008 KB
testcase_07 AC 110 ms
53,752 KB
testcase_08 AC 112 ms
53,728 KB
testcase_09 AC 111 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int count = 0;
		for (int i = 1; i < arr.length; i++) {
		    if (arr[i] != '0') {
		        count++;
		    }
		}
		System.out.println(count);
	}
}
0