結果

問題 No.8061 uxs hxixtya pyuyn ixc hyixa kxuyn
コンテスト
ユーザー Utopiosphere
提出日時 2020-04-01 22:33:40
言語 C++14
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 656 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,176 ms
コンパイル使用メモリ 185,964 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-03-15 06:35:53
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 3
other AC * 7 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define ALL(a) (a).begin(),(a).end()
#define rALL(a) (a).rbegin(),(a).rend()
typedef pair<int, int> Pint;
typedef pair<int64_t, int64_t> Pll;
typedef int64_t ll;

int main() {
    string S;
    getline(cin, S);
    set<char> A, B;
    for (int i = 0; i < S.size(); i++){
        if (i % 2 == 0){
            A.insert(S.at(i));
        }
        else {
            B.insert(S.at(i));
        }
    }
    for (int i = 0; i < 26; i++){
        char a = 'a';
        a += i;
        if (A.count(a) ^ B.count(a)){
            cout << "YES" << endl;
            return 0;
        }
    }
    cout << "NO" << endl;
}
0