結果

問題 No.509 塗りつぶしツール
ユーザー GrenacheGrenache
提出日時 2017-05-06 19:51:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 972 bytes
コンパイル時間 3,643 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-09-14 14:00:06
合計ジャッジ時間 8,616 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,800 KB
testcase_01 AC 131 ms
54,196 KB
testcase_02 AC 129 ms
54,028 KB
testcase_03 WA -
testcase_04 AC 129 ms
54,180 KB
testcase_05 AC 130 ms
53,992 KB
testcase_06 WA -
testcase_07 AC 128 ms
54,004 KB
testcase_08 AC 130 ms
53,796 KB
testcase_09 AC 129 ms
53,972 KB
testcase_10 AC 129 ms
53,884 KB
testcase_11 AC 130 ms
54,084 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 130 ms
54,176 KB
testcase_15 AC 130 ms
54,120 KB
testcase_16 WA -
testcase_17 AC 129 ms
54,240 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 130 ms
54,056 KB
testcase_23 AC 130 ms
54,116 KB
testcase_24 WA -
testcase_25 AC 132 ms
54,112 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 129 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder509 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] n = sc.next().toCharArray();

		int[] cnt = new int[10];
		for (char c : n) {
			cnt[c - '0']++;
		}

		int b = 1;
		int o = cnt[0] * 2 + cnt[4] + cnt[6] + cnt[8] * 2 + cnt[9];
		int g1 = cnt[1] + cnt[2] + cnt[3] + cnt[5] + cnt[7];
		int g2 = cnt[0] + cnt[4] + cnt[6] + cnt[8] + cnt[9];

		int min = Integer.MAX_VALUE;
		min = Math.min(min, g1 + g2 + o + b + g1 + g2);
		min = Math.min(min, b + o + g1 + g2 + o + b);
		min = Math.min(min, g2 + o + b + g1 + g2 + b);

		pr.println(min);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0