結果

問題 No.1070 Missing a space
ユーザー ks2mks2m
提出日時 2020-06-05 21:21:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 326 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-05-09 19:35:07
合計ジャッジ時間 3,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
41,484 KB
testcase_01 AC 92 ms
41,376 KB
testcase_02 AC 113 ms
41,360 KB
testcase_03 AC 101 ms
41,332 KB
testcase_04 AC 102 ms
41,648 KB
testcase_05 AC 107 ms
41,332 KB
testcase_06 AC 104 ms
41,176 KB
testcase_07 AC 93 ms
41,340 KB
testcase_08 AC 100 ms
41,492 KB
testcase_09 AC 102 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] c = sc.next().toCharArray();
		sc.close();

		int ans = 0;
		for (int i = 1; i < c.length; i++) {
			if (c[i] != '0') {
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0