0:00:00
-25 days 14:40:37
Contest is over

HVL Førde Samling -3


Time elapsed

3:00:00

Time Remaining

0:00:00

Starts in

-25 days 14:40:37

Ends in

-21 days 16:16:37

Start

2025-11-11 18:36 CET

End

2025-11-15 17:00 CET

Visit Scoreboard
Log in

HVL Førde Samling -3

Rules

There are no practical rules except for the usage of AI. Please do not copy the whole question text and paste it to ChatGPT, and copy-paste the answer. First, it is not ethical, second, you can get flagged.

You are allowed to use Google and AI for simple tasks like "how to sort this", "how to find the minimum", "how to return this element", "how to write a for loop for this" etc.

Note that some questions have terminal "input"s. Well, we have learned input() function and you can use it for single line inputs like this:

line = input() print(f"You entered: {line}")

or you can use this piece of code to get several line of inputs:

import sys

for line in sys.stdin: data = int(line) print(data)

Good luck!