結果

問題 No.671 1000000007
ユーザー GrenacheGrenache
提出日時 2018-04-21 17:33:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-06-27 05:25:29
合計ジャッジ時間 5,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,064 KB
testcase_01 AC 129 ms
41,344 KB
testcase_02 AC 126 ms
41,088 KB
testcase_03 AC 126 ms
41,152 KB
testcase_04 AC 128 ms
40,940 KB
testcase_05 AC 112 ms
39,820 KB
testcase_06 AC 127 ms
41,500 KB
testcase_07 AC 130 ms
41,340 KB
testcase_08 AC 127 ms
41,152 KB
testcase_09 AC 124 ms
41,060 KB
testcase_10 AC 126 ms
41,248 KB
testcase_11 AC 125 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder671 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] n = sc.next().toCharArray();

		int cnt = 0;
		for (char c : n) {
			if (c == '0') {
				cnt++;
			}
		}

		pr.println(Math.abs(cnt - 8));
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0