QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#277659#7879. Colorful BalloonsluhanningWA 0ms3620kbC++17562b2023-12-06 21:16:392023-12-06 21:16:41

Judging History

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

  • [2023-12-06 21:16:41]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3620kb
  • [2023-12-06 21:16:39]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N=1e5+10;
map<string,LL>mp;
string s;
int main() 
{
	ios::sync_with_stdio(false);cin.tie(nullptr);
    LL n;
    cin>>n;
    LL maxn=0;
    string t;
    for(int i=1;i<=n;i++)
    {
    	cin>>s;
    	mp[s]++;
    	if(mp[s]>maxn)
    	{
    		t=s;
    		maxn=mp[s];
    	}
        if(maxn>=n/2)
        {
            t=s;
            break;
        }
    }
    if(maxn<=n/2)
    {
    	cout<<"uh-oh"<<endl;
    }
    else cout<<t<<endl;
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3620kb

input:

5
red
green
red
red
blue

output:

uh-oh

result:

wrong answer 1st words differ - expected: 'red', found: 'uh-oh'