結果

問題 No.509 塗りつぶしツール
ユーザー takeya_okinotakeya_okino
提出日時 2017-09-30 20:27:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 43,000 KB
最終ジャッジ日時 2024-11-15 20:56:21
合計ジャッジ時間 7,281 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,156 KB
testcase_01 AC 133 ms
41,284 KB
testcase_02 AC 139 ms
41,288 KB
testcase_03 AC 133 ms
41,432 KB
testcase_04 AC 138 ms
41,372 KB
testcase_05 AC 135 ms
41,252 KB
testcase_06 AC 134 ms
41,328 KB
testcase_07 AC 136 ms
40,992 KB
testcase_08 AC 133 ms
41,468 KB
testcase_09 AC 133 ms
41,432 KB
testcase_10 AC 133 ms
41,360 KB
testcase_11 AC 135 ms
41,252 KB
testcase_12 AC 131 ms
41,292 KB
testcase_13 AC 135 ms
41,128 KB
testcase_14 AC 132 ms
41,388 KB
testcase_15 AC 132 ms
43,000 KB
testcase_16 AC 138 ms
41,528 KB
testcase_17 AC 136 ms
41,364 KB
testcase_18 AC 137 ms
41,244 KB
testcase_19 AC 136 ms
41,404 KB
testcase_20 AC 135 ms
41,108 KB
testcase_21 AC 141 ms
41,240 KB
testcase_22 AC 135 ms
41,460 KB
testcase_23 AC 133 ms
41,040 KB
testcase_24 AC 135 ms
41,332 KB
testcase_25 AC 133 ms
41,264 KB
testcase_26 AC 133 ms
41,388 KB
testcase_27 AC 132 ms
41,232 KB
testcase_28 AC 135 ms
41,588 KB
testcase_29 AC 135 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int[] num = new int[10];
    int r = 0;
    for(int i = 0; i < 10; i++) {
      int d = n % 10;
      num[d]++;
      r++;
      n /= 10;
      if(n == 0) break;
    }
    int ana = 0;
    for(int i = 0; i < 10; i++) {
      if((i == 0) || (i == 4) || (i == 6) || (i == 9)) ana += (num[i]);
      if(i == 8) ana += (2 * num[i]);
    }
    int ans1 = 2 * r + 1 + ana;
    int ans2 = r + (2 * ana) + 2;
    int ans = Math.min(ans1, ans2);
    System.out.println(ans);
  }
}
0