<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from time import clock

def temps_egalplus():
    t = clock()
    l = []
    for i in range(10**5):
        l = l + [0]
    return clock()-t

def temps_plusegal():
    t = clock()
    l = []
    for i in range(10**5):
        l += [0]
    return clock()-t

def temps_append():
    t = clock()
    l = []
    for i in range(10**5):
        l.append(0)
    return clock()-t
</pre></body></html>