結果

問題 No.671 1000000007
ユーザー takeya_okinotakeya_okino
提出日時 2018-05-05 20:35:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 41,224 KB
最終ジャッジ日時 2024-06-28 02:00:31
合計ジャッジ時間 4,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,140 KB
testcase_01 AC 107 ms
39,892 KB
testcase_02 AC 122 ms
40,888 KB
testcase_03 AC 120 ms
41,140 KB
testcase_04 AC 122 ms
41,140 KB
testcase_05 AC 120 ms
40,916 KB
testcase_06 AC 123 ms
40,948 KB
testcase_07 AC 111 ms
40,276 KB
testcase_08 AC 121 ms
41,028 KB
testcase_09 AC 127 ms
41,024 KB
testcase_10 AC 122 ms
41,224 KB
testcase_11 AC 116 ms
40,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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