結果

問題 No.910 素数部分列
ユーザー tentententen
提出日時 2023-01-10 18:03:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 2,075 bytes
コンパイル時間 2,662 ms
コンパイル使用メモリ 86,660 KB
実行使用メモリ 52,292 KB
最終ジャッジ日時 2024-06-01 07:53:47
合計ジャッジ時間 9,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
49,916 KB
testcase_01 AC 57 ms
50,184 KB
testcase_02 AC 55 ms
50,420 KB
testcase_03 AC 59 ms
50,384 KB
testcase_04 AC 56 ms
50,396 KB
testcase_05 AC 56 ms
50,020 KB
testcase_06 AC 56 ms
50,220 KB
testcase_07 AC 57 ms
50,136 KB
testcase_08 AC 56 ms
50,028 KB
testcase_09 AC 55 ms
50,092 KB
testcase_10 AC 55 ms
50,468 KB
testcase_11 AC 56 ms
50,388 KB
testcase_12 AC 55 ms
50,344 KB
testcase_13 AC 56 ms
50,436 KB
testcase_14 AC 57 ms
49,872 KB
testcase_15 AC 56 ms
50,360 KB
testcase_16 AC 58 ms
50,184 KB
testcase_17 AC 56 ms
50,452 KB
testcase_18 AC 56 ms
50,156 KB
testcase_19 AC 56 ms
50,492 KB
testcase_20 AC 56 ms
50,316 KB
testcase_21 AC 56 ms
49,876 KB
testcase_22 AC 55 ms
50,368 KB
testcase_23 AC 115 ms
51,900 KB
testcase_24 AC 116 ms
52,292 KB
testcase_25 AC 118 ms
51,956 KB
testcase_26 AC 111 ms
52,116 KB
testcase_27 AC 117 ms
52,216 KB
testcase_28 AC 120 ms
51,820 KB
testcase_29 AC 114 ms
51,936 KB
testcase_30 AC 119 ms
52,044 KB
testcase_31 AC 113 ms
51,832 KB
testcase_32 AC 119 ms
52,036 KB
testcase_33 AC 117 ms
52,084 KB
testcase_34 AC 107 ms
51,844 KB
testcase_35 AC 119 ms
52,020 KB
testcase_36 AC 114 ms
52,068 KB
testcase_37 AC 107 ms
52,028 KB
testcase_38 AC 115 ms
52,280 KB
testcase_39 AC 115 ms
52,200 KB
testcase_40 AC 118 ms
52,000 KB
testcase_41 AC 116 ms
51,924 KB
testcase_42 AC 118 ms
52,252 KB
testcase_43 AC 115 ms
52,084 KB
testcase_44 AC 120 ms
52,016 KB
testcase_45 AC 118 ms
52,184 KB
testcase_46 AC 117 ms
51,948 KB
testcase_47 AC 118 ms
52,076 KB
testcase_48 AC 112 ms
51,696 KB
testcase_49 AC 114 ms
52,176 KB
testcase_50 AC 113 ms
51,880 KB
testcase_51 AC 116 ms
51,928 KB
testcase_52 AC 117 ms
52,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int one = 0;
        int nine = 0;
        int[] counts = new int[10];
        int ans = 0;
        for (char c : sc.next().toCharArray()) {
            int num = c - '0';
            if (num == 9) {
                if (one > 0) {
                    one--;
                    ans++;
                } else {
                    nine++;
                }
            } else if (num == 1) {
                one++;
            } else {
                ans++;
            }
        }
        int min = Math.min(nine / 2, one);
        ans += min;
        one -= min;
        ans += one / 2;
        System.out.println(ans);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0