結果

問題 No.509 塗りつぶしツール
ユーザー shinwisteriashinwisteria
提出日時 2017-05-04 22:20:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 75,740 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-09-14 07:17:08
合計ジャッジ時間 8,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,140 KB
testcase_01 AC 128 ms
41,436 KB
testcase_02 AC 129 ms
40,860 KB
testcase_03 AC 127 ms
41,164 KB
testcase_04 AC 126 ms
41,120 KB
testcase_05 AC 124 ms
41,272 KB
testcase_06 AC 126 ms
41,076 KB
testcase_07 AC 127 ms
41,544 KB
testcase_08 AC 132 ms
41,300 KB
testcase_09 AC 129 ms
41,388 KB
testcase_10 AC 130 ms
41,516 KB
testcase_11 AC 131 ms
41,336 KB
testcase_12 AC 113 ms
40,012 KB
testcase_13 AC 130 ms
41,444 KB
testcase_14 AC 128 ms
41,368 KB
testcase_15 AC 127 ms
41,132 KB
testcase_16 AC 130 ms
41,284 KB
testcase_17 AC 129 ms
41,024 KB
testcase_18 AC 128 ms
41,480 KB
testcase_19 AC 125 ms
41,148 KB
testcase_20 AC 127 ms
41,108 KB
testcase_21 AC 129 ms
41,408 KB
testcase_22 AC 125 ms
41,276 KB
testcase_23 AC 124 ms
41,032 KB
testcase_24 AC 128 ms
41,032 KB
testcase_25 AC 128 ms
41,536 KB
testcase_26 AC 128 ms
41,572 KB
testcase_27 AC 127 ms
41,420 KB
testcase_28 AC 130 ms
41,352 KB
testcase_29 AC 127 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Nuritsubushi {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder n = new StringBuilder(s.next());
		s.close();
		int a = 0,b = 0,c = 0,count = 0;
		while(n.length() != 0){
			char ch = n.charAt(0);
			n.deleteCharAt(0);
			if(ch == '8'){
				c++;
			}else if(ch == '0' || ch == '4' || ch == '6' || ch == '9'){
				b++;
			}else{
				a++;
			}
		}
		count = a*2 + b*3 + c*4 + 1;
		count = Math.min(count, a + b*3 + c*5 + 2);
		System.out.println(count);
	}

}
0