Submission #49438529


Source Code Expand

/**
 *  @the_hyp0cr1t3
 *  20.01.2024 17:32
**/
#include <bits/stdc++.h>

int main() {
    std::cin.tie(nullptr)->sync_with_stdio(false);

    std::string s;
    std::cin >> s;
    int n = s.length();
    
    int i;
    for (; i < n and s[i] == 'A'; i++);
    for (; i < n and s[i] == 'B'; i++);
    for (; i < n and s[i] == 'C'; i++);

    std::cout << (i == n ? "Yes" : "No");

}

Submission Info

Submission Time
Task B - Extended ABC
User the_hyp0cr1t3
Language C++ 20 (gcc 12.2)
Score 200
Code Size 404 Byte
Status AC
Exec Time 1 ms
Memory 3608 KiB

Compile Error

Main.cpp: In function ‘int main()’:
Main.cpp:14:9: warning: ‘i’ may be used uninitialized [-Wmaybe-uninitialized]
   14 |     int i;
      |         ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 4
AC × 33
Set Name Test Cases
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 01_handmade_04.txt, 01_handmade_05.txt, 01_handmade_06.txt, 01_handmade_07.txt, 01_handmade_08.txt, 01_handmade_09.txt, 01_handmade_10.txt, 01_handmade_11.txt, 01_handmade_12.txt, 01_handmade_13.txt, 02_random_07.txt, 02_random_08.txt, 02_random_09.txt, 02_random_10.txt, 02_random_11.txt, 02_random_12.txt, 02_random_13.txt, 02_random_14.txt, 02_random_15.txt, 02_random_16.txt, 02_random_17.txt, 02_random_18.txt, 02_random_19.txt, 02_random_20.txt, 02_random_21.txt, 02_random_22.txt, 02_random_23.txt, 02_random_24.txt, 02_random_25.txt
Case Name Status Exec Time Memory
00_sample_00.txt AC 1 ms 3420 KiB
00_sample_01.txt AC 1 ms 3460 KiB
00_sample_02.txt AC 1 ms 3600 KiB
00_sample_03.txt AC 1 ms 3412 KiB
01_handmade_04.txt AC 1 ms 3480 KiB
01_handmade_05.txt AC 1 ms 3464 KiB
01_handmade_06.txt AC 1 ms 3528 KiB
01_handmade_07.txt AC 1 ms 3604 KiB
01_handmade_08.txt AC 1 ms 3424 KiB
01_handmade_09.txt AC 1 ms 3512 KiB
01_handmade_10.txt AC 1 ms 3372 KiB
01_handmade_11.txt AC 1 ms 3480 KiB
01_handmade_12.txt AC 1 ms 3408 KiB
01_handmade_13.txt AC 1 ms 3392 KiB
02_random_07.txt AC 1 ms 3416 KiB
02_random_08.txt AC 1 ms 3392 KiB
02_random_09.txt AC 1 ms 3608 KiB
02_random_10.txt AC 1 ms 3516 KiB
02_random_11.txt AC 1 ms 3456 KiB
02_random_12.txt AC 1 ms 3432 KiB
02_random_13.txt AC 1 ms 3392 KiB
02_random_14.txt AC 1 ms 3412 KiB
02_random_15.txt AC 1 ms 3468 KiB
02_random_16.txt AC 1 ms 3516 KiB
02_random_17.txt AC 1 ms 3416 KiB
02_random_18.txt AC 1 ms 3472 KiB
02_random_19.txt AC 1 ms 3416 KiB
02_random_20.txt AC 1 ms 3408 KiB
02_random_21.txt AC 1 ms 3436 KiB
02_random_22.txt AC 1 ms 3464 KiB
02_random_23.txt AC 1 ms 3604 KiB
02_random_24.txt AC 1 ms 3452 KiB
02_random_25.txt AC 1 ms 3408 KiB