inline __int128 read(){
__int128 x =0;char c =getchar_unlocked();while(c <'0') c =getchar_unlocked();while(c >='0'){
x = x *10+ c -'0';
c =getchar_unlocked();}return x;}voidwrite(__int128 x){if(x <=9){putchar_unlocked(x +'0');return;}write(x /10);putchar_unlocked(x %10+'0');}inlinevoidwriteline(__int128 x){write(x);putchar_unlocked('\n');}
Python 6.0.0 (tags/v6.0.0:25e3198, Oct 8 2047, 13:17:30) [MSC v.1944 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> array = [2**89, 2**27, 2**28, 2**53, 2**84]
>>> size = sys.getsizeof(array) + sum([sys.getsizeof(x) for x in array])
>>> print(size)
256