結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,064 KB
testcase_01 AC 125 ms
41,124 KB
testcase_02 AC 109 ms
40,144 KB
testcase_03 AC 125 ms
41,360 KB
testcase_04 AC 106 ms
40,636 KB
testcase_05 AC 114 ms
40,148 KB
testcase_06 AC 120 ms
41,188 KB
testcase_07 AC 129 ms
41,128 KB
testcase_08 AC 126 ms
41,136 KB
testcase_09 AC 125 ms
41,192 KB
testcase_10 AC 124 ms
41,008 KB
testcase_11 AC 122 ms
41,056 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