結果
| 問題 |
No.2738 CPC To F
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-02 20:06:00 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 347 bytes |
| コンパイル時間 | 1,852 ms |
| コンパイル使用メモリ | 193,952 KB |
| 最終ジャッジ日時 | 2025-02-21 10:39:56 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int N;
string S;
cin>>N>>S;
int an=0;
for(int i=0;i<N;i++){
if(i+4<N&&S.substr(i,5)=="CPCTF"){
an++;
i+=4;
}
if(i+6<N&&S.substr(i,7)=="CPCTCPC"){
an++;
i+=6;
}
}
cout<<an<<endl;
}