AN94 @ 2019-07-04 14:55:22
from math import log10
p = int(input())
cnt = int(p*log10(2)) + 1
print(cnt)
s = str(((1<<p)-1)%(10**500))
a = len(s)
if a < 500:
s = '0'*(500-a) + s
for i in range(0,500,50):
print(s[i:i+50])
by Plozia @ 2019-07-04 15:51:28
自带高精的py (C++表示不爽)
by Soledad_S @ 2019-07-04 15:52:28
py本来就是一些不好的东西
by tZEROちゃん @ 2019-10-23 12:36:39
自带高精qwq……