• + 0 comments
    if __name__ == '__main__':
        n = int(input())
        l = tuple(map(int, input().split()))
        tuple_hash = hash(l)
        print(tuple_hash)
    

    note implement in Pypy3