結果

問題 No.509 塗りつぶしツール
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 15:35:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-11 17:08:54
合計ジャッジ時間 7,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,184 KB
testcase_01 AC 112 ms
53,988 KB
testcase_02 AC 111 ms
54,040 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 112 ms
54,076 KB
testcase_07 WA -
testcase_08 AC 113 ms
54,276 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 110 ms
53,920 KB
testcase_15 WA -
testcase_16 AC 97 ms
52,608 KB
testcase_17 WA -
testcase_18 AC 99 ms
52,684 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 107 ms
53,972 KB
testcase_23 AC 110 ms
54,408 KB
testcase_24 AC 101 ms
52,936 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 110 ms
53,924 KB
testcase_28 AC 98 ms
52,792 KB
testcase_29 AC 110 ms
54,248 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 cnt = 1;
		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:
				cnt += 2;
				break;
			case 0:
			case 4:
			case 6:
			case 9:
				cnt += 3;
				break;
			case 8:
				cnt += 4;
			}
		}
		
		System.out.println(cnt);
	}
}
0