QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#384840#3761. 2020wanyuAC ✓9ms3776kbC++20303b2024-04-10 13:06:252024-04-10 13:06:26

Judging History

你现在查看的是最新测评结果

  • [2024-04-10 13:06:26]
  • 评测
  • 测评结果:AC
  • 用时:9ms
  • 内存:3776kb
  • [2024-04-10 13:06:25]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

string s;
int n;

int main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	while (cin >> n >> s)
	{
		int cnt = 0;
		for (int i = 0; i < n; i++)
		{
			if (s.substr(i, 4) == "2020")
			{
				cnt++;
				i += 3;
			}
		}
		cout << cnt << "\n";
	}
}

详细

Test #1:

score: 100
Accepted
time: 9ms
memory: 3776kb

input:

4
2020
6
202020
10
1202012020
10
2222220000
10
0221200202
10
2202021022
10
0200222200
10
2222022122
10
2122222220
10
2200200002
10
2022222222
10
0000020220
10
0220022200
10
2020012000
10
0020020022
10
2220000020
10
0100220202
10
2202021022
10
0220222022
10
0220020000
10
0200000002
10
0202020002
10
2...

output:

1
1
2
0
0
1
0
0
0
0
0
0
0
1
0
0
1
1
0
0
0
1
0
1
1
1
0
1
0
0
0
0
0
1
0
0
1
1
0
0
0
0
1
0
0
0
0
1
0
0
0
0
0
1
0
0
0
0
0
0
0
1
1
0
0
0
0
1
0
1
2
0
1
1
0
0
0
0
1
1
0
1
1
0
0
0
1
0
0
1
0
1
0
1
1
0
0
1
1
0
0
0
1
0
0
0
1
1
0
0
1
0
0
0
0
0
0
0
0
0
1
0
0
0
0
0
0
1
0
0
0
0
0
0
0
0
0
0
0
0
0
1
0
0
1
1
0
0
2
1
...

result:

ok 11116 lines