結果

問題 No.1070 Missing a space
ユーザー 遭難者遭難者
提出日時 2020-12-31 20:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 334 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-10-09 19:51:30
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,212 KB
testcase_01 AC 126 ms
53,996 KB
testcase_02 AC 132 ms
54,480 KB
testcase_03 AC 132 ms
53,800 KB
testcase_04 AC 126 ms
54,252 KB
testcase_05 AC 126 ms
54,072 KB
testcase_06 AC 127 ms
53,956 KB
testcase_07 AC 127 ms
53,792 KB
testcase_08 AC 112 ms
53,848 KB
testcase_09 AC 124 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		char[] s = sc.next().toCharArray();
		int n = s.length - 1;
		for(char i : s) if(i == '0') n--;
		ou.println(n);
		ou.flush();
		sc.close();
	}
}
0