結果

問題 No.509 塗りつぶしツール
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 15:35:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 5,717 ms
コンパイル使用メモリ 72,340 KB
実行使用メモリ 57,792 KB
最終ジャッジ日時 2023-09-02 10:27:14
合計ジャッジ時間 8,804 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,736 KB
testcase_01 AC 115 ms
55,604 KB
testcase_02 AC 123 ms
55,628 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 119 ms
55,772 KB
testcase_07 WA -
testcase_08 AC 125 ms
55,696 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 119 ms
55,968 KB
testcase_15 WA -
testcase_16 AC 117 ms
55,696 KB
testcase_17 WA -
testcase_18 AC 119 ms
55,836 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 120 ms
55,736 KB
testcase_23 AC 119 ms
55,856 KB
testcase_24 AC 119 ms
55,824 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 121 ms
55,648 KB
testcase_28 AC 120 ms
56,068 KB
testcase_29 AC 121 ms
55,436 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