結果

問題 No.3061 uxs hxixtya pyuyn ixc hyixa kxuyn
ユーザー alorie10alorie10
提出日時 2020-04-01 23:09:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 65,912 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-09 19:58:20
合計ジャッジ時間 1,835 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
string t;
string s[100];
int c[26],d[26];
int main(void){
    for(int i=0;i<100;i++){
        cin>>s[i];
        if(s[i]==" ")cout<<"W"<<endl;
    }
    for(int i=0;i<100;i++){
        t+=s[i];
        t+='-';
    }
    //cout<<t<<endl;
    for(int i=0;i<100;i+=2){
        if(t[i]=='-')continue;
        else c[t[i]-'a']++;
    }
    for(int i=1;i<100;i+=2){
        if(t[i]=='-')continue;
        else d[t[i]-'a']++;
    }
    for(int i=0;i<26;i++){
        if(c[i]==0&&d[i]==0)continue;
        if(c[i]*d[i]==0){
            cout<<"Yes"<<endl;
            return 0;
        }
    }
    cout<<"NO"<<endl;
}
0