Besiege

Besiege

Not enough ratings
IO System
   
Award
Favorite
Favorited
Unfavorite
Types: Levels
Level Categories: Sandbox
File Size
Posted
Updated
240.151 KB
5 Sep, 2019 @ 7:14am
5 Sep, 2019 @ 8:08am
2 Change Notes ( view )

Subscribe to download
IO System

In 1 collection by Nice Name
Nice Name Science
116 items
Description
Input /Output System:

A system designed to transfer a variable instantaneously with one single float.

It might sound familiar to SetGet, but the difference between them is that the IO system can only output a variable for once while SetGet can output the same value over and over again.


.Press Enter to start transferring variable "I" to "O".
.The maximum and the minimum value of the variables are ±52022.
.You can change the variables inside the Cyan block.
.Once the two variables fits, Cyan progress will display.


Research Result:

One block can read up to 37th digits ( 0 +37 ),
two blocks can read up to 1406th digits ( 37 +37^2),
three blocks can read up to 52022nd digits (37^2 +37^3 )... and so on.

(Quick math: 37^2 =1369, 37^3 =50653)

For example, the third block's "reading gate" is counting how many "1369" there is, and 37 can be done by the second block, so the third block only needs to deal with any value that is over 1369. Thus the maximum value it could read is 50653(third block's maximum: 1369*37) +1369(second block's maximum" 37*37) =52022.

The maximum value rises as the block count increases.
1 Comments
JJ喵 16 Sep, 2019 @ 11:04pm 
这个余数式也是高速运算通道,同之前的叠加式DG是一样的,只是处理大于37的数值所用的方法不一样。