Median Sergey Svistunov

Find the median of a stream of binary integers as fast as possible.

Input: 100 000 000 uint32 values in little-endian binary on STDIN (4 bytes each).

Output: The median value, printed as a decimal string. The median is defined as the element at index N/2 (i.e., a[50000000]) in the sorted array.

Back to listJan 5, 2024 14:42Andrey LikhachevAndrey LikhachevError
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 5, 2024 14:4200000Error: Exit with code 101: seek: 1.264µs mmap: 1.133429ms fallocate: 42.906442ms mmap: 10.097µs copy array: 40.404878ms thread 'main' panicked at main.rs:150:17: index out of bounds: the len is 100000000 but the index is 149999998 note: run with `RUS...stderr