結果

問題 No.671 1000000007
ユーザー bellbell
提出日時 2021-03-19 22:11:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-04-29 17:07:38
合計ジャッジ時間 4,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,200 KB
testcase_01 AC 101 ms
40,888 KB
testcase_02 AC 106 ms
41,084 KB
testcase_03 AC 113 ms
40,948 KB
testcase_04 AC 120 ms
40,848 KB
testcase_05 AC 107 ms
41,300 KB
testcase_06 AC 125 ms
41,416 KB
testcase_07 AC 121 ms
41,084 KB
testcase_08 AC 100 ms
41,368 KB
testcase_09 AC 122 ms
41,288 KB
testcase_10 AC 121 ms
41,232 KB
testcase_11 AC 115 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
    String [] n = sc.next().split("");
    int count  = 0;
      for (int i = 0; i < n.length; i++) {
        if (n[i].equals("0")) {
          count ++;
        }
      }
      System.out.println(Math.abs(8 - count));
		sc.close();
    }
}
0