結果
問題 | No.2738 CPC To F |
ユーザー | koufu193 |
提出日時 | 2024-04-21 14:30:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,589 bytes |
コンパイル時間 | 2,195 ms |
コンパイル使用メモリ | 76,604 KB |
実行使用メモリ | 37,932 KB |
最終ジャッジ日時 | 2024-10-13 13:15:47 |
合計ジャッジ時間 | 4,424 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,400 KB |
testcase_01 | AC | 49 ms
36,728 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.Scanner; public class Main { static int len; static int read; static final char[] chars="CPCT".toCharArray(); static final char[] CPC="CPC".toCharArray(); static int last=0; public static void main(String[] args) { FastScanner scanner=new FastScanner(); len=scanner.readInt(); int o=0; while (read<len){ skipTillCPCT(last,scanner); if(ableToBeF(scanner)) o++; } System.out.println(o); } private static boolean ableToBeF(FastScanner scanner){ int c=read(scanner); if(c=='F') return true; if(c!='C') return false; if((last=read(scanner))!='P') return false; if((last=read(scanner))!='C') return false; last=0; return true; } private static void skipTillCPCT(int last,FastScanner scanner){ int c; int index=0; if(last=='C') index++; last=0; while ((c=read(scanner))!=-1&&index!=3){ if(c!=chars[index]){ index=0; continue; } index++; } } private static int read(FastScanner scanner){ if(len<=read) return -1; read++; return scanner.readByte(); } private static class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } return buflen > 0; } } private int readByte() { if (hasNextByte()){ return buffer[ptr++]; } else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} public int readInt(){ int b = readByte(); int n=0; while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return n; }else{ throw new NumberFormatException(); } b = readByte(); } } } }