結果

問題 No.2738 CPC To F
ユーザー tentententen
提出日時 2024-07-03 13:16:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 3,019 ms
コンパイル使用メモリ 80,636 KB
実行使用メモリ 57,336 KB
最終ジャッジ日時 2024-07-03 13:16:32
合計ジャッジ時間 6,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,788 KB
testcase_01 AC 60 ms
50,972 KB
testcase_02 AC 215 ms
56,360 KB
testcase_03 AC 268 ms
57,336 KB
testcase_04 AC 61 ms
50,384 KB
testcase_05 AC 62 ms
50,836 KB
testcase_06 AC 60 ms
50,512 KB
testcase_07 AC 63 ms
50,916 KB
testcase_08 AC 65 ms
50,596 KB
testcase_09 AC 79 ms
51,468 KB
testcase_10 AC 61 ms
50,912 KB
testcase_11 AC 78 ms
51,232 KB
testcase_12 AC 80 ms
51,056 KB
testcase_13 AC 88 ms
52,756 KB
testcase_14 AC 90 ms
52,860 KB
testcase_15 AC 96 ms
51,384 KB
testcase_16 AC 88 ms
53,024 KB
testcase_17 AC 91 ms
54,200 KB
testcase_18 AC 90 ms
52,800 KB
testcase_19 AC 96 ms
53,828 KB
testcase_20 AC 93 ms
51,836 KB
testcase_21 AC 89 ms
52,332 KB
testcase_22 AC 92 ms
52,928 KB
testcase_23 AC 96 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long ans = sc.next().replaceAll("CPCTCPC", "x").replaceAll("CPCTF", "x")
            .chars()
            .filter(x -> x == 'x')
            .count();
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0