結果

問題 No.509 塗りつぶしツール
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 16:29:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 2,976 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-22 06:19:29
合計ジャッジ時間 6,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,124 KB
testcase_01 AC 123 ms
54,068 KB
testcase_02 AC 121 ms
54,056 KB
testcase_03 AC 120 ms
53,892 KB
testcase_04 AC 122 ms
54,132 KB
testcase_05 AC 123 ms
54,128 KB
testcase_06 AC 121 ms
54,064 KB
testcase_07 AC 122 ms
54,048 KB
testcase_08 AC 120 ms
54,060 KB
testcase_09 AC 122 ms
54,080 KB
testcase_10 AC 123 ms
54,048 KB
testcase_11 AC 122 ms
54,304 KB
testcase_12 AC 122 ms
54,212 KB
testcase_13 AC 109 ms
53,004 KB
testcase_14 AC 121 ms
53,824 KB
testcase_15 AC 120 ms
54,008 KB
testcase_16 AC 122 ms
54,004 KB
testcase_17 AC 122 ms
54,216 KB
testcase_18 AC 120 ms
53,904 KB
testcase_19 AC 120 ms
54,224 KB
testcase_20 AC 122 ms
53,904 KB
testcase_21 AC 121 ms
54,072 KB
testcase_22 AC 122 ms
53,908 KB
testcase_23 AC 109 ms
52,988 KB
testcase_24 AC 125 ms
53,904 KB
testcase_25 AC 122 ms
53,860 KB
testcase_26 AC 123 ms
54,128 KB
testcase_27 AC 122 ms
53,868 KB
testcase_28 AC 120 ms
54,012 KB
testcase_29 AC 121 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s = scan.next();
		scan.close();
		int l = s.length();
		int k1 = 0;
		for(int i = 0; i < l; i++) {
			char c = s.charAt(i);
			if(c == '1' || c == '2' || c == '3' || c == '5' || c == '7') {
				continue;
			}else if(c == '4' || c == '6' || c == '9' || c == '0') {
				k1++;
			}else {
				k1 += 2;
			}
		}
		int min = Math.min(2 * l + k1 + 1, 2 * (k1 + 1) + l);
		System.out.println(min);
	}
}
0