Submission #62762315


Source Code Expand

Copy
#include <bits/stdc++.h>
#define int long long
#define ONLINE_JUDGE
//#define MUL_TEST
#define FILENAME ""
using namespace std;
void solve() {
string s;
cin >> s;
int ans = 0;
for (int i = 0; i < s.length(); i++) {
for (int j = i + 1; j < s.length(); j++) {
int k = j + j - i;
if (k >= s.length()) break;
if (s[i] == 'A' && s[j] == 'B' && s[k] == 'C') ans++;
}
}
cout << ans << '\n';
}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
#define int long long
#define ONLINE_JUDGE
//#define MUL_TEST
#define FILENAME ""

using namespace std;

void solve() {
	string s;
	cin >> s;
	int ans = 0;
	for (int i = 0; i < s.length(); i++) {
		for (int j = i + 1; j < s.length(); j++) {
			int k = j + j - i;
			if (k >= s.length()) break;
			if (s[i] == 'A' && s[j] == 'B' && s[k] == 'C') ans++;
		}
	}
	cout << ans << '\n';
}

signed main() {
    ios::sync_with_stdio(false);
	cin.tie(nullptr); cout.tie(nullptr);

	#ifndef ONLINE_JUDGE
		freopen(FILENAME ".in","r",stdin);
		freopen(FILENAME ".out","w",stdout);
	#endif

	int _ = 1;
	#ifdef MUL_TEST
		cin >> _;
	#endif

	while (_--)
		solve();

	_^=_;
	return (0^_^0);
}

Submission Info

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

Compile Error

Main.cpp:3: warning: "ONLINE_JUDGE" redefined
    3 | #define ONLINE_JUDGE
      | 
<command-line>: note: this is the location of the previous definition
Main.cpp: In function ‘void solve()’:
Main.cpp:13:27: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   13 |         for (int i = 0; i < s.length(); i++) {
      |                         ~~^~~~~~~~~~~~
Main.cpp:14:39: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   14 |                 for (int j = i + 1; j < s.length(); j++) {
      |                                     ~~^~~~~~~~~~~~
Main.cpp:16:31: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   16 |                         if (k >= s.length()) break;
      |                             ~~^~~~~~~~~~~~~

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 3596 KB
00_sample_01.txt AC 1 ms 3460 KB
00_sample_02.txt AC 1 ms 3468 KB
01_random_00.txt AC 1 ms 3416 KB
01_random_01.txt AC 1 ms 3308 KB
01_random_02.txt AC 1 ms 3372 KB
01_random_03.txt AC 1 ms 3444 KB
01_random_04.txt AC 1 ms 3428 KB
01_random_05.txt AC 1 ms 3456 KB
01_random_06.txt AC 1 ms 3592 KB
01_random_07.txt AC 1 ms 3520 KB
01_random_08.txt AC 1 ms 3372 KB
01_random_09.txt AC 1 ms 3412 KB
01_random_10.txt AC 1 ms 3472 KB
02_random2_00.txt AC 1 ms 3460 KB
02_random2_01.txt AC 1 ms 3372 KB
02_random2_02.txt AC 1 ms 3404 KB
02_random2_03.txt AC 1 ms 3512 KB
03_handmade_00.txt AC 1 ms 3472 KB
03_handmade_01.txt AC 1 ms 3428 KB
03_handmade_02.txt AC 1 ms 3460 KB
03_handmade_03.txt AC 1 ms 3460 KB
03_handmade_04.txt AC 1 ms 3384 KB


2025-04-03 (Thu)
22:00:46 +00:00