rev/virtual_machine_0

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-06 21:01:14 +02:00
parent 82dcc622d9
commit 29dc2db38e
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
5 changed files with 1315 additions and 0 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1 @@
39722847074734820757600524178581224432297292490103996085769154356559546905

11
rev/virtual_machine_0/solve.py Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
INPUT_WHEEL_TEETH = 40
OUTPUT_WHEEL_TEETH = 8
with open('input.txt') as file:
content = file.read().strip()
rotation_output = int(content) * (INPUT_WHEEL_TEETH // OUTPUT_WHEEL_TEETH)
print(rotation_output.to_bytes((rotation_output.bit_length() + 7) // 8, 'big').decode())