結果

問題 No.8061 uxs hxixtya pyuyn ixc hyixa kxuyn
ユーザー 👑 Nachia
提出日時 2020-09-28 14:56:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 1,531 ms
コンパイル使用メモリ 166,800 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 04:07:55
合計ジャッジ時間 2,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 3
other AC * 10 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#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+2; 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;
}
0