結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー tentententen
提出日時 2022-09-20 11:28:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,581 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 77,816 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-12-22 03:27:04
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,896 KB
testcase_01 AC 58 ms
50,216 KB
testcase_02 AC 59 ms
50,172 KB
testcase_03 AC 59 ms
50,072 KB
testcase_04 AC 58 ms
50,264 KB
testcase_05 AC 166 ms
54,864 KB
testcase_06 AC 162 ms
54,520 KB
testcase_07 AC 56 ms
49,944 KB
testcase_08 AC 140 ms
54,440 KB
testcase_09 AC 147 ms
53,972 KB
testcase_10 AC 164 ms
54,744 KB
testcase_11 AC 179 ms
55,400 KB
testcase_12 AC 56 ms
50,408 KB
testcase_13 AC 78 ms
50,940 KB
testcase_14 AC 164 ms
54,240 KB
testcase_15 AC 121 ms
51,852 KB
testcase_16 AC 165 ms
54,540 KB
testcase_17 AC 55 ms
50,416 KB
testcase_18 AC 87 ms
50,892 KB
testcase_19 AC 165 ms
54,612 KB
testcase_20 AC 149 ms
53,956 KB
testcase_21 AC 140 ms
54,144 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int[] cCounts = new int[3];
        int[] oCounts = new int[3];
        int[] nCounts = new int[3];
        for (int i = 0; i < n * 3; i++) {
            if (inputs[i] == 'c') {
                cCounts[i % 3]++;
            } else if (inputs[i] == 'o') {
                oCounts[i % 3]++;
            } else if (inputs[i] == 'n') {
                nCounts[i % 3]++;
            }
        }
        int ans = 0;
        for (int i = 0; i < 3; i++) {
            ans += Math.min(cCounts[i], Math.min(oCounts[(i + 1) % 3], nCounts[(i + 2) % 3]));
        }
        System.out.println(ans);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0