結果

問題 No.910 素数部分列
ユーザー tentententen
提出日時 2023-01-10 17:55:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,917 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 90,984 KB
実行使用メモリ 55,284 KB
最終ジャッジ日時 2024-06-01 07:53:37
合計ジャッジ時間 9,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,504 KB
testcase_01 AC 57 ms
50,316 KB
testcase_02 AC 58 ms
50,444 KB
testcase_03 AC 59 ms
50,028 KB
testcase_04 AC 58 ms
50,416 KB
testcase_05 AC 59 ms
50,348 KB
testcase_06 AC 58 ms
50,396 KB
testcase_07 AC 58 ms
50,368 KB
testcase_08 AC 59 ms
50,420 KB
testcase_09 AC 58 ms
50,284 KB
testcase_10 AC 58 ms
50,520 KB
testcase_11 AC 61 ms
50,472 KB
testcase_12 AC 55 ms
50,476 KB
testcase_13 WA -
testcase_14 AC 57 ms
50,448 KB
testcase_15 WA -
testcase_16 AC 57 ms
50,384 KB
testcase_17 WA -
testcase_18 AC 58 ms
50,392 KB
testcase_19 AC 58 ms
50,408 KB
testcase_20 WA -
testcase_21 AC 59 ms
50,392 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 119 ms
52,308 KB
testcase_44 AC 117 ms
52,040 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 119 ms
52,208 KB
testcase_49 AC 117 ms
52,312 KB
testcase_50 AC 118 ms
52,260 KB
testcase_51 AC 118 ms
52,072 KB
testcase_52 AC 110 ms
52,232 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[] 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 if (num == 1) {
                one++;
            } else {
                ans++;
            }
        }
        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