Arrays.asList - just this one would be O(1). Under the hood a new ArrayList is created with the given array - no matter of the size of the array.
Or simpler, the same action happens all the time no matter the size of the array = it's constant.
When you do new ArrayList(Arrays.asList...), internally it copies the data:
....
elementData = Arrays.copyOf(elementData, size, Object[].class);
that will ultimately call System::arrayCopy; and this is where it gets tricky. In general, that could be thought as O(n), but since that is a native method is could be implemented as a single CPU instruction; thus becoming O(1).
I would still go with O(n) as the answer.