結果

問題 No.3061 uxs hxixtya pyuyn ixc hyixa kxuyn
ユーザー tamatotamato
提出日時 2020-04-01 22:08:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,092 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-06-27 11:01:12
合計ジャッジ時間 1,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
51,968 KB
testcase_14 WA -
testcase_15 AC 39 ms
51,840 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 39 ms
52,096 KB
testcase_23 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')
    N = len(S)

    seen = set()
    new = [s for s in S]
    for i in range(0, N, 2):
        seen.add(S[i])
        new[i] = ' '
    for i in range(1, N, 2):
        if S[i] in seen:
            new[i] = ' '
    exist = []
    for i in range(N):
        if new[i] != ' ':
            exist.append(i)
    if len(exist) >= 2:
        diff = [exist[i+1] - exist[i] for i in range(len(exist) - 1)]
        if min(diff) == max(diff) == 2:
            print('Yes')
            exit()

    seen = set()
    new = [s for s in S]
    for i in range(1, N, 2):
        seen.add(S[i])
        new[i] = ' '
    for i in range(0, N, 2):
        if S[i] in seen:
            new[i] = ' '
    exist = []
    for i in range(N):
        if new[i] != ' ':
            exist.append(i)
    if len(exist) >= 2:
        diff = [exist[i + 1] - exist[i] for i in range(len(exist) - 1)]
        if min(diff) == max(diff) == 2:
            print('Yes')
            exit()

    print('NO')


if __name__ == '__main__':
    main()
0