結果

問題 No.910 素数部分列
ユーザー htensaihtensai
提出日時 2019-11-11 09:14:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,083 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 50,664 KB
最終ジャッジ日時 2024-09-15 05:09:50
合計ジャッジ時間 16,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
45,352 KB
testcase_01 AC 131 ms
41,248 KB
testcase_02 AC 131 ms
41,104 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 128 ms
40,940 KB
testcase_06 AC 115 ms
39,972 KB
testcase_07 AC 117 ms
39,956 KB
testcase_08 AC 128 ms
41,152 KB
testcase_09 AC 118 ms
40,132 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 129 ms
41,192 KB
testcase_13 AC 118 ms
39,744 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 129 ms
41,124 KB
testcase_17 AC 129 ms
40,920 KB
testcase_18 WA -
testcase_19 AC 132 ms
41,268 KB
testcase_20 AC 119 ms
39,744 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 249 ms
45,856 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 303 ms
48,136 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 312 ms
48,176 KB
testcase_36 AC 302 ms
48,540 KB
testcase_37 AC 300 ms
48,540 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 284 ms
46,208 KB
testcase_43 AC 292 ms
45,876 KB
testcase_44 AC 294 ms
46,080 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 247 ms
43,532 KB
testcase_49 TLE -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] arr = sc.next().toCharArray();
		int[] counts = new int[10];
		StringBuilder sb = new StringBuilder();
		for (char c : arr) {
		    counts[c - '0']++;
		    if (c == '1' || c == '9') {
		        sb.append(c);
		    }
		}
		int total = counts[3] + counts[5] + counts[7];
		HashSet<Integer> set = new HashSet<>();
		for (int i = 0; i < sb.length(); i++) {
		    if (sb.charAt(i) == '9' || set.contains(i)) {
		        continue;
		    }
		    boolean flag = false;
		    for (int j = i + 1; j < sb.length(); j++) {
		        if (sb.charAt(j) == '9') {
		            flag = true;
		            set.add(j);
		            total++;
		            break;
		        }
		    }
		    if (flag) {
		        continue;
		    }
		    for (int j = i + 1; j < sb.length(); j++) {
		        if (sb.charAt(j) == '1') {
		            set.add(j);
		            total++;
		            break;
		        }
		    }
		}
		System.out.println(total);
	}
}
0