change to 10-base

This commit is contained in:
2023-11-01 16:22:52 +08:00
parent c3efb8d678
commit 7b2db73aaa
2 changed files with 29 additions and 29 deletions

View File

@ -36,9 +36,7 @@ opt_python=[]
if True:
for i in range(0,10):
val=randint(-10**32,10**32)
if i==0:
val=randint(-10**100,10**100)
val=randint(-10**1000,10**1000)
opt_cpp.append("a_"+str(i)+"=int2048(\""+str(val)+"\");")
opt_python.append("a_"+str(i)+"="+str(val))
opt_cpp.append("a_"+str(i)+".print(); puts(\"\");")