結果

問題 No.3061 uxs hxixtya pyuyn ixc hyixa kxuyn
ユーザー googol_S0googol_S0
提出日時 2021-03-25 01:18:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 76,516 KB
最終ジャッジ日時 2024-11-26 23:45:39
合計ジャッジ時間 2,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,556 KB
testcase_01 AC 39 ms
52,596 KB
testcase_02 AC 40 ms
52,416 KB
testcase_03 AC 54 ms
64,408 KB
testcase_04 AC 47 ms
59,836 KB
testcase_05 AC 137 ms
76,516 KB
testcase_06 AC 84 ms
76,008 KB
testcase_07 AC 39 ms
52,028 KB
testcase_08 AC 39 ms
52,428 KB
testcase_09 AC 61 ms
67,980 KB
testcase_10 AC 59 ms
67,624 KB
testcase_11 AC 63 ms
68,964 KB
testcase_12 AC 48 ms
61,668 KB
testcase_13 AC 39 ms
52,768 KB
testcase_14 AC 63 ms
69,708 KB
testcase_15 AC 38 ms
52,704 KB
testcase_16 AC 39 ms
53,488 KB
testcase_17 AC 65 ms
69,520 KB
testcase_18 AC 54 ms
64,692 KB
testcase_19 AC 39 ms
52,940 KB
testcase_20 AC 39 ms
52,840 KB
testcase_21 AC 39 ms
53,228 KB
testcase_22 AC 39 ms
52,264 KB
testcase_23 AC 42 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

try:
  S=list(input())
except:
  print('NO')
  exit()
N=len(S)
for l in range(N+1):
  for r in range(l+1,N+1):
    if (r-l)==1 and r==N:
      continue
    X=set(S[:l]+S[r:])
    T=S[:]
    for i in range(N):
      if T[i] in X:
        T[i]=' '
    F=1
    for i in range(l,min(r+1,N)):
      if (i-r)&1==0:
        if T[i]!=' ':
          F=0
      else:
        if T[i]==' ':
          F=0
    if F:
      print('Yes')
      exit()
print('NO')
0