You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 26, 2025. It is now read-only.
- 3:30 pm - Questions close, Verification of solutions
20
+
- 3:50 pm - Winners announced
21
+
- 4:00 pm - Event Concludes
20
22
21
23
## Solving questions
22
24
23
25
Each question requires processing your generated problem input. Just as an example, here's a simple python program that reads a line from standard input and then prints it out again:
24
26
27
+
```python
25
28
line =input()
26
29
print(line)
30
+
```
27
31
28
32
However, we've created a scaffold for each question that does that for you to make life easier.
29
33
@@ -35,12 +39,14 @@ To upload a file, make sure you're logged in, then you should have a submit butt
35
39
36
40
There are 2 points systems:
37
41
38
-
The team with the most answered questions wins
39
-
If there is a tie, the second system is used:
42
+
The team with the most answered questions wins
43
+
If there is a tie, the second system is used:
40
44
41
-
Each time you answer a question, you get "points" for how many minutes passed between the beginning of the competition and when you solved it
42
-
Out of the tied teams, the team with the lowest total "points" wins
45
+
Each time you answer a question, you get "points" for how many minutes passed between the beginning of the competition and when you solved it
46
+
Out of the tied teams, the team with the lowest total "points" wins
Copy file name to clipboardExpand all lines: competition/lights/prob.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Given the 3D positions and RGB hexcodes of several point light sources, find the
17
17
18
18
## Input Format
19
19
Each line of the input represents a light source. Each line contains a hexcode (with hash) followed by 3 numbers representing the position all separated by spaces. For example:
Copy file name to clipboardExpand all lines: competition/slime-chunk-farm/prob.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ It's up to you to help steve find the **smallest area of land** that contains at
22
22
## Input Format
23
23
The input is a 100x100 grid of characters. Each character represents a chunk, which is a 16x16 area of land. A Slime chunk is denoted by an "**S**" while normal chunks are denoted by "**.**"
0 commit comments