Submission #1365718


Source Code Expand

#include <iostream>
#include <string>
using namespace std;

string s;

int main() {
	cin >> s;
	int begin = -1, end = -1;
	for (int i = 0; i < s.length();i++) {
		if (s[i] == 'A' && begin == -1) {
			begin = i;
		}
		if (s[s.length() - 1 - i] == 'Z' && end == -1) {
			end = s.length() - 1 - i;
		}
	}

	cout << (end - begin + 1) << endl;
}

Submission Info

Submission Time
Task B - A to Z String
User ZxFkcjgN
Language C++14 (GCC 5.4.1)
Score 200
Code Size 359 Byte
Status AC
Exec Time 10 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 12
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt, 00_example_03.txt
All 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
00_example_03.txt AC 1 ms 256 KB
01.txt AC 7 ms 640 KB
02.txt AC 6 ms 640 KB
03.txt AC 4 ms 512 KB
04.txt AC 4 ms 512 KB
05.txt AC 8 ms 640 KB
06.txt AC 8 ms 640 KB
07.txt AC 8 ms 640 KB
08.txt AC 10 ms 640 KB
09.txt AC 10 ms 640 KB