結果
| 問題 |
No.8061 uxs hxixtya pyuyn ixc hyixa kxuyn
|
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2020-09-28 14:53:17 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 504 bytes |
| コンパイル時間 | 1,576 ms |
| コンパイル使用メモリ | 166,792 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-02 04:04:00 |
| 合計ジャッジ時間 | 2,897 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 3 |
| other | AC * 7 WA * 12 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)
int main() {
string S; getline(cin,S);
bool ok=false;
rep(l,S.size()) for(int r=l+1; r<=S.size(); r++){
int st[128] ={};
rep(i,S.size()){
if(i<l || r<=i || (i-l)%2==1) st[S[i]]|=1;
else st[S[i]]|=2;
}
bool tmp=true;
rep(i,128) if(st[i]==3) tmp=false;
if(st[' ']==2) tmp=false;
ok = (ok||tmp);
}
cout<<(ok?"YES":"NO")<<endl;
return 0;
}
Nachia