結果

問題 No.509 塗りつぶしツール
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 15:42:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 3,800 ms
コンパイル使用メモリ 79,804 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-06-11 17:19:29
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,984 KB
testcase_01 AC 111 ms
54,128 KB
testcase_02 AC 109 ms
54,140 KB
testcase_03 AC 115 ms
54,048 KB
testcase_04 AC 106 ms
53,932 KB
testcase_05 AC 111 ms
53,908 KB
testcase_06 AC 112 ms
54,016 KB
testcase_07 AC 96 ms
52,764 KB
testcase_08 AC 109 ms
53,916 KB
testcase_09 AC 94 ms
54,132 KB
testcase_10 AC 110 ms
54,464 KB
testcase_11 AC 109 ms
54,120 KB
testcase_12 AC 113 ms
54,376 KB
testcase_13 AC 113 ms
54,152 KB
testcase_14 AC 117 ms
54,080 KB
testcase_15 AC 110 ms
54,108 KB
testcase_16 AC 103 ms
53,488 KB
testcase_17 AC 112 ms
53,728 KB
testcase_18 AC 113 ms
53,844 KB
testcase_19 AC 108 ms
53,780 KB
testcase_20 AC 117 ms
53,952 KB
testcase_21 AC 112 ms
54,104 KB
testcase_22 AC 108 ms
53,816 KB
testcase_23 AC 111 ms
53,928 KB
testcase_24 AC 109 ms
54,140 KB
testcase_25 AC 105 ms
54,212 KB
testcase_26 AC 109 ms
54,104 KB
testcase_27 AC 98 ms
52,868 KB
testcase_28 AC 112 ms
54,036 KB
testcase_29 AC 109 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No509 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String N = sc.next();
		String n[] = N.split("");
		int ana = 0;
		int x[] = new int[n.length];
		for(int i = 0;i < n.length;i++) {
			x[i] = Integer.parseInt(n[i]);
		}
		for(int i = 0;i < n.length;i++) {
			switch(x[i]) {
			case 1:
			case 2:
			case 3:
			case 5:
			case 7:
				break;
			case 0:
			case 4:
			case 6:
			case 9:
				ana += 1;
				break;
			case 8:
				ana += 2;
			}
		}
		System.out.println(Math.min(2*n.length + ana + 1, 2*(ana + 1) + n.length));
	}
}
0