Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
but if you want a quick solution with 7 commands try:
step s
a:
if myitem != datacube:
takefrom s
endif
if myitem < 50:
giveto sw
step e
endif
jump a
it is ~26-34s
step s
a:
takefrom s
if myitem < 50 :
giveto sw
step e
endif
giveto n
jump a
The timing is quite bad at 55s but it's the only solution with less than 7 commands I could come up with.
[code]
-- 7 Billion Humans (2235) --
-- 2: Welcome, New Employees --
step s
step n
pickup c
step ne
step sw
pickup c
step nw
step se
pickup c
step s
pickup c
drop
[/code]
and for Solution Not Robust there are some shorter solutions too.
[code]
-- 7 Billion Humans (2235) --
-- 22: Number Royale by nezhi [ https://steamhost.cn/steamcommunity_com/profiles/76561198013091047 ] --
-- and @abfipes12 --
-- successful => 43.12% --
-- Size: 4 ; speed: 1s --
if s < 89 or
sw > s or
se > s:
a:
step s
jump a
endif
pickup s
[code]
and
[code]
-- 7 Billion Humans (2235) --
-- 56: Local Maximums by @n05ucc4u --
pickup nw
write 99
mem1 = nearest shredder
giveto mem1
[/code]
level 53 is indeed 73s. something went wrong during writing, I will fix that.
I see that not only the fastest solutions that fit within the challenge length are of interest, but also the shortest solutions that fit within the challenge time. Maybe I'll add this category
What about solutions that are not successful all the time?
Years 04 06 16 21 32 37 43 44 46 57 61 can be improved
Year 10 speed is ~155-221s
year 66 speed is 113s
year 53 speed is 67s
year 66 speed is 113s
[code]
-- 7 Billion Humans (2235) --
-- 50: Cubical Communication --
mem1 = nearest datacube
mem2 = set mem1
a:
takefrom s
step e
b:
if mem2 > 1:
mem2 = calc mem2 - 1
jump b
endif
giveto s
step w
mem2 = set 4
jump a
[/code]