Submission #3451701


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main() {
	int N;
	string S;
	cin >> N;
	cin >> S;
	int cnt1[N], cnt2[N];
	for (int i = 0; i < N; i++) {
		cnt1[i] = 0;
		cnt2[i] = 0;
	}

	for (int i = 0; i < N; i++) {
		for (int j = 0; j < i ; j++) {
			if (S[j] == 'W') {
				cnt1[i]++;
			}
		}
		for (int j = i+1; j < N; j++) {
			if (S[j] == 'W') {
				cnt2[i]++;
			}
		}
	}
	int ans[N];

	for (int i = 0; i < N; i++) {
		ans[i] = cnt1[i] + cnt2[2];
	}
	sort(ans, ans + N);

	cout << ans[0] << endl;
	
}

Submission Info

Submission Time
Task D - People on a Line
User ikedayuu
Language C++14 (GCC 5.4.1)
Score 0
Code Size 542 Byte
Status WA
Exec Time 2103 ms
Memory 1024 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
WA × 5
WA × 5
TLE × 42
Set Name Test Cases
Sample sample01.txt, sample02.txt, sample03.txt, sample04.txt, sample05.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, sample01.txt, sample02.txt, sample03.txt, sample04.txt, sample05.txt
Case Name Status Exec Time Memory
01.txt TLE 2103 ms 1024 KB
02.txt TLE 2103 ms 1024 KB
03.txt TLE 2103 ms 1024 KB
04.txt TLE 2103 ms 1024 KB
05.txt TLE 2103 ms 1024 KB
06.txt TLE 2103 ms 1024 KB
07.txt TLE 2103 ms 1024 KB
08.txt TLE 2103 ms 1024 KB
09.txt TLE 2103 ms 1024 KB
10.txt TLE 2103 ms 1024 KB
11.txt TLE 2103 ms 1024 KB
12.txt TLE 2103 ms 1024 KB
13.txt TLE 2103 ms 1024 KB
14.txt TLE 2103 ms 1024 KB
15.txt TLE 2103 ms 1024 KB
16.txt TLE 2103 ms 1024 KB
17.txt TLE 2103 ms 1024 KB
18.txt TLE 2103 ms 1024 KB
19.txt TLE 2103 ms 1024 KB
20.txt TLE 2103 ms 1024 KB
21.txt TLE 2103 ms 1024 KB
22.txt TLE 2103 ms 1024 KB
23.txt TLE 2103 ms 1024 KB
24.txt TLE 2103 ms 1024 KB
25.txt TLE 2103 ms 1024 KB
26.txt TLE 2103 ms 1024 KB
27.txt TLE 2103 ms 1024 KB
28.txt TLE 2103 ms 1024 KB
29.txt TLE 2103 ms 1024 KB
30.txt TLE 2103 ms 1024 KB
31.txt TLE 2103 ms 1024 KB
32.txt TLE 2103 ms 1024 KB
33.txt TLE 2103 ms 1024 KB
34.txt TLE 2103 ms 1024 KB
35.txt TLE 2103 ms 1024 KB
36.txt TLE 2103 ms 1024 KB
37.txt TLE 2103 ms 1024 KB
38.txt TLE 2103 ms 1024 KB
39.txt TLE 2103 ms 1024 KB
40.txt TLE 2103 ms 1024 KB
41.txt TLE 2103 ms 1024 KB
42.txt TLE 2103 ms 1024 KB
sample01.txt WA 1 ms 256 KB
sample02.txt WA 1 ms 256 KB
sample03.txt WA 1 ms 256 KB
sample04.txt WA 1 ms 256 KB
sample05.txt WA 1 ms 256 KB