Submission #62773973


Source Code Expand

Copy
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
cin >> s;
int len = s.length();
int count = 0;
for (int i = 1; i * 2 + 1 <= len; i++) {
for (int j = 0; j < len - i * 2; j++) {
if (s[j] == 'A' && s[j + i] == 'B' && s[j + i * 2] == 'C') {
count++;
}
}
}
cout << count << endl;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
using namespace std;

int main() {
    string s;
    cin >> s;
    int len = s.length();
    int count = 0;
    for (int i = 1; i * 2 + 1 <= len; i++) {
        for (int j = 0; j < len - i * 2; j++) {
            if (s[j] == 'A' && s[j + i] == 'B' && s[j + i * 2] == 'C') {
                count++;
            }
        }
    }
    cout << count << endl;
}

Submission Info

Submission Time
Task B - A..B..C
User mknia
Language C++ 20 (gcc 12.2)
Score 200
Code Size 398 Byte
Status AC
Exec Time 1 ms
Memory 3644 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 23
Set Name Test Cases
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 02_random2_00.txt, 02_random2_01.txt, 02_random2_02.txt, 02_random2_03.txt, 03_handmade_00.txt, 03_handmade_01.txt, 03_handmade_02.txt, 03_handmade_03.txt, 03_handmade_04.txt
Case Name Status Exec Time Memory
00_sample_00.txt AC 1 ms 3432 KB
00_sample_01.txt AC 1 ms 3528 KB
00_sample_02.txt AC 1 ms 3484 KB
01_random_00.txt AC 1 ms 3556 KB
01_random_01.txt AC 1 ms 3496 KB
01_random_02.txt AC 1 ms 3488 KB
01_random_03.txt AC 1 ms 3572 KB
01_random_04.txt AC 1 ms 3564 KB
01_random_05.txt AC 1 ms 3488 KB
01_random_06.txt AC 1 ms 3464 KB
01_random_07.txt AC 1 ms 3644 KB
01_random_08.txt AC 1 ms 3424 KB
01_random_09.txt AC 1 ms 3496 KB
01_random_10.txt AC 1 ms 3488 KB
02_random2_00.txt AC 1 ms 3456 KB
02_random2_01.txt AC 1 ms 3460 KB
02_random2_02.txt AC 1 ms 3528 KB
02_random2_03.txt AC 1 ms 3464 KB
03_handmade_00.txt AC 1 ms 3432 KB
03_handmade_01.txt AC 1 ms 3424 KB
03_handmade_02.txt AC 1 ms 3452 KB
03_handmade_03.txt AC 1 ms 3524 KB
03_handmade_04.txt AC 1 ms 3440 KB


2025-04-03 (Thu)
19:15:23 +00:00