Codeforces 282A

Posted commario

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 282A相关的知识,希望对你有一定的参考价值。

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

int main()
{
	int n, plus, sub;
	string ope;
	while(cin>>n)
	{
		plus=sub=0;
		while(n--)
		{
			cin>>ope;
			if(ope[1]==‘-‘)
				++sub;
			else
				++plus;
		}
		cout<<plus-sub<<endl;
	}
	return 0;
}

  

以上是关于Codeforces 282A的主要内容,如果未能解决你的问题,请参考以下文章

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段

c_cpp Codeforces片段

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)

CodeForces 931F Teodor is not a liar!