码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces round #616 div2 A (Even but not even)水题

时间:2020-04-08 18:46:51      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:str   偶数   print   string   san   char   ORC   ble   mes   

水题:

链接:https://codeforces.com/contest/1291/problem/A

题意:给一个字符数组,删去数组中的一些数,使得剩下的数字的和为偶数,其中的数字有偶数多个奇数且首尾数字为奇数

找两个奇数就满足题意了:

代码:

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
#define maxx 1010
const int maxn=3e5+10;
int n;
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
    scanf("%d",&n);
    char s[maxn];
    scanf("%s",s);
    string ch="";
    int flag=0;
    for(int i=0; i<n; i++)
    {
        if((s[i]-‘0‘)&1)
            ch+=s[i];
        if(ch.size()>=2)
        {
            flag=1;
            break;
        }
    }
    if(flag)
        cout<<ch<<endl;
    else printf("-1\n");
    }
    return 0;}

 

codeforces round #616 div2 A (Even but not even)水题

标签:str   偶数   print   string   san   char   ORC   ble   mes   

原文地址:https://www.cnblogs.com/sweetlittlebaby/p/12661437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!