結果

問題 No.671 1000000007
ユーザー asahi32942398asahi32942398
提出日時 2018-04-28 14:34:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 2,996 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 41,188 KB
最終ジャッジ日時 2024-06-27 23:18:28
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,856 KB
testcase_01 AC 122 ms
41,084 KB
testcase_02 AC 119 ms
41,188 KB
testcase_03 AC 117 ms
40,856 KB
testcase_04 AC 128 ms
41,152 KB
testcase_05 AC 123 ms
40,808 KB
testcase_06 AC 121 ms
40,984 KB
testcase_07 AC 122 ms
40,840 KB
testcase_08 AC 119 ms
40,864 KB
testcase_09 AC 121 ms
41,176 KB
testcase_10 AC 120 ms
40,888 KB
testcase_11 AC 123 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        char[] carr = s.toCharArray();
        int count = 0;
        int answer;
        for(char c:carr){
            if(c=='0')
            count++;
        }
        if(count<8)
        answer = 8-count;
        else
        answer = count-8;
        System.out.println(answer);
    }
}
0