結果

問題 No.910 素数部分列
ユーザー htensaihtensai
提出日時 2020-01-07 11:20:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 1,000 ms
コード長 1,000 bytes
コンパイル時間 5,323 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 46,692 KB
最終ジャッジ日時 2024-11-23 00:41:51
合計ジャッジ時間 14,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,076 KB
testcase_01 AC 138 ms
41,224 KB
testcase_02 AC 139 ms
41,060 KB
testcase_03 AC 140 ms
41,252 KB
testcase_04 AC 141 ms
41,172 KB
testcase_05 AC 138 ms
41,136 KB
testcase_06 AC 139 ms
40,860 KB
testcase_07 AC 138 ms
41,256 KB
testcase_08 AC 140 ms
41,208 KB
testcase_09 AC 139 ms
41,096 KB
testcase_10 AC 141 ms
41,356 KB
testcase_11 AC 139 ms
41,372 KB
testcase_12 AC 139 ms
41,388 KB
testcase_13 AC 139 ms
41,472 KB
testcase_14 AC 136 ms
40,996 KB
testcase_15 AC 139 ms
40,984 KB
testcase_16 AC 139 ms
41,144 KB
testcase_17 AC 139 ms
41,648 KB
testcase_18 AC 140 ms
41,500 KB
testcase_19 AC 143 ms
41,460 KB
testcase_20 AC 141 ms
41,272 KB
testcase_21 AC 141 ms
41,412 KB
testcase_22 AC 141 ms
41,000 KB
testcase_23 AC 241 ms
44,256 KB
testcase_24 AC 234 ms
44,600 KB
testcase_25 AC 249 ms
44,636 KB
testcase_26 AC 246 ms
44,540 KB
testcase_27 AC 245 ms
44,512 KB
testcase_28 AC 243 ms
44,312 KB
testcase_29 AC 258 ms
45,932 KB
testcase_30 AC 249 ms
45,852 KB
testcase_31 AC 257 ms
45,744 KB
testcase_32 AC 252 ms
46,252 KB
testcase_33 AC 263 ms
45,972 KB
testcase_34 AC 272 ms
45,820 KB
testcase_35 AC 263 ms
46,004 KB
testcase_36 AC 262 ms
45,696 KB
testcase_37 AC 258 ms
45,924 KB
testcase_38 AC 259 ms
45,952 KB
testcase_39 AC 260 ms
46,164 KB
testcase_40 AC 254 ms
45,708 KB
testcase_41 AC 256 ms
45,688 KB
testcase_42 AC 254 ms
45,780 KB
testcase_43 AC 259 ms
45,980 KB
testcase_44 AC 261 ms
46,692 KB
testcase_45 AC 253 ms
45,856 KB
testcase_46 AC 259 ms
45,852 KB
testcase_47 AC 257 ms
45,940 KB
testcase_48 AC 253 ms
45,852 KB
testcase_49 AC 239 ms
45,844 KB
testcase_50 AC 243 ms
46,080 KB
testcase_51 AC 225 ms
43,188 KB
testcase_52 AC 254 ms
46,392 KB
権限があれば一括ダウンロードができます

ソースコード

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 count = 0;
        ArrayList<Integer> list = new ArrayList<>();
        for (char c : arr) {
            if (c == '3' || c == '5' || c == '7') {
                count++;
            } else {
                list.add(c - '0');
            }
        }
        int oneCount = 0;
        int nineCount = 0;
        for (int x : list) {
            if (x == 1) {
                oneCount++;
            } else {
                if (oneCount > 0) {
                    count++;
                    oneCount--;
                } else {
                    nineCount++;
                }
            }
        }
        int n991 = Math.min(nineCount / 2 , oneCount);
        count += n991;
        oneCount -= n991;
        count += oneCount / 2;
        System.out.println(count);
    }
}
0