下面的列表操作中哪些是O(1)的?(假设列表alist足够长,不导致任何报错) A、 alist.pop() B、 alist.pop(0) C、 alist[10:16] D、 alist.append(10)