#include <bits/stdc++.h>
using namespace std;
int favourite[200005];
int main() {
int n; cin >> n;
int ans = 0;
for (int i = 0; i < n; i++) cin >> favourite[i];
for (int left = 0; left < n; left++) {
for (int right = left; right < n; right++) {
int temp1 = 0; int temp2 = 0;
for (int i = left; i <= right; i++) {
if (favourite[i] == 1) temp1++;
else temp2++;
}
if (2*max(temp1, temp2) > temp1+temp2) ans++;
}
}
cout << ans << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3062 ms |
988 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |