Submission #799521

# Submission time Handle Problem Language Result Execution time Memory
799521 2023-07-31T15:34:46 Z tlnk07 Kemija (COCI22_kemija) C++17
0 / 50
1 ms 212 KB
#include<bits/stdc++.h>
using namespace std;
 
long long n, nho, cnt[101], chk, pos;
string s;
 
int main()
{
	cin >> n;
	while(n--)
	{
		memset(cnt, 0, sizeof(cnt));
		nho = 1;
		chk = 0;
		getline(cin, s);
		for(int i = 0; i < s.size(); ++i)
		{
			if(chk == 0 && s[i] >= '0' && s[i] <= '9')
			{
				nho = s[i] - '0';
				chk = true;
			}
			else if(s[i] >= '0' && s[i] <= '9')	cnt[s[i - 1] - 'A'] += ((s[i] - '1') * nho);
			else if(s[i] >= 'A' && s[i] <= 'Z')
			{
				cnt[s[i] - 'A'] += nho;
				chk = true;
			}
			else if(s[i] == '+')
			{
				chk = 0;
				nho = 1;
			}
			else if(s[i] == '-' && s[i + 1] == '>')
			{
				pos = i + 2;
				break;
			}
		}
		chk = 0;
		nho = 1;
		for(int i = pos; i < s.size(); ++i)
		{
			if(chk == 0 && s[i] >= '0' && s[i] <= '9')
			{
				nho = s[i] - '0';
				chk = true;
			}
			else if(s[i] >= '0' && s[i] <= '9')	cnt[s[i - 1] - 'A'] -= (s[i] - '1') * nho;
			else if(s[i] >= 'A' && s[i] <= 'Z')
			{
				cnt[s[i] - 'A'] -= nho;
				chk = true;
			}
			else if(s[i] == '+')
			{
				chk = 0;
				nho = 1;
			}
		}
		chk = 0;
		for(int i = 0; i < 26; ++i)
		{
			if(cnt[i])
			{
				chk = true;
				cout << i << " " << cnt[i] << "\n";
			}
		}
		if(chk)	cout << "NE\n";
		else	cout << "DA\n";
	}
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:16:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   16 |   for(int i = 0; i < s.size(); ++i)
      |                  ~~^~~~~~~~~~
Main.cpp:42:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |   for(int i = pos; i < s.size(); ++i)
      |                    ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -