結果

問題 No.509 塗りつぶしツール
ユーザー htensaihtensai
提出日時 2019-12-19 14:07:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 37,120 KB
最終ジャッジ日時 2024-07-07 01:09:09
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,968 KB
testcase_01 AC 47 ms
36,876 KB
testcase_02 AC 46 ms
36,536 KB
testcase_03 AC 47 ms
36,844 KB
testcase_04 AC 48 ms
37,060 KB
testcase_05 AC 47 ms
37,024 KB
testcase_06 AC 50 ms
36,992 KB
testcase_07 AC 51 ms
37,112 KB
testcase_08 AC 51 ms
37,020 KB
testcase_09 AC 49 ms
36,884 KB
testcase_10 AC 48 ms
37,056 KB
testcase_11 AC 49 ms
36,660 KB
testcase_12 AC 47 ms
36,868 KB
testcase_13 AC 48 ms
37,016 KB
testcase_14 AC 47 ms
36,740 KB
testcase_15 AC 48 ms
36,892 KB
testcase_16 AC 48 ms
36,896 KB
testcase_17 AC 46 ms
37,020 KB
testcase_18 AC 46 ms
37,072 KB
testcase_19 AC 47 ms
36,788 KB
testcase_20 AC 46 ms
37,076 KB
testcase_21 AC 46 ms
37,076 KB
testcase_22 AC 45 ms
36,944 KB
testcase_23 AC 46 ms
36,876 KB
testcase_24 AC 48 ms
36,864 KB
testcase_25 AC 48 ms
36,976 KB
testcase_26 AC 48 ms
36,552 KB
testcase_27 AC 48 ms
36,740 KB
testcase_28 AC 47 ms
36,752 KB
testcase_29 AC 48 ms
37,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        char[] arr = br.readLine().toCharArray();
        int[] counts = new int[]{1, 0, 0, 0, 1, 0, 1, 0, 2, 1};
        long total = 0;
        for (char c : arr) {
            total += counts[c - '0'];
        }
        System.out.println(Math.min(arr.length * 2 + total + 1, arr.length + (total + 1) * 2));
    }
}
0