⌨️

[AtCoder]ABC-359|B - Couples

2024/07/02に公開

設問ページ

提出結果

def getInt():
    return int(input())


def getIntList():
    return list(map(int, input().split()))


def main():
    N = getInt()
    A = getIntList()

    c = 0
    for i in range(2 * N - 2):
        if A[i] == A[i + 2] and A[i] != A[i + 1]:
            c += 1

    print(c)


if __name__ == "__main__":
    main()

Discussion