結果
| 問題 |
No.8061 uxs hxixtya pyuyn ixc hyixa kxuyn
|
| コンテスト | |
| ユーザー |
Utopiosphere
|
| 提出日時 | 2020-04-01 22:36:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 672 bytes |
| コンパイル時間 | 1,936 ms |
| コンパイル使用メモリ | 172,044 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-27 11:52:54 |
| 合計ジャッジ時間 | 2,458 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 19 |
ソースコード
#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) && S.at(0) != a){
cout << "Yes" << endl;
return 0;
}
}
cout << "NO" << endl;
}
Utopiosphere