#include <bits/stdc++.h>
using namespace std;
long long n,l,ans[100000],a[100000],q;
int main()
{
int o;
cin>>n>>l;
cin>>q;
cin>>o;
for (int i=0;i<n-l+1;i++)
{
for (int j=0;j<n-l+1;j++)
{
o=1;
for (int k=0;k<l;k++)
{
if (a[k+i]!=a[j+k])
{
o=0;
break;
}
}
if (o==1)
{
ans[i]++;
ans[j]++;
}
}
}
for (int i=0;i<n-l+1;i++) cout<<ans[i]<<" ";
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
355 ms |
492 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
355 ms |
492 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |