2019 World Rowing Championships – Men's lightweight coxless pair

The men's lightweight coxless pair competition at the 2019 World Rowing Championships took place at the Linz-Ottensheim regatta venue.[1]

Men's lightweight coxless pair
at the 2019 World Rowing Championships
VenueLinz-Ottensheim
LocationOttensheim, August
Dates26–30 August
Competitors16 from 8 nations
Winning time6:37.75
Medalists
    Italy
    Russia
    Brazil

Schedule

The schedule was as follows:[1]

Date Time Round
Monday 26 August 201911:27Heats
Wednesday 28 August 201915:58Repechage
Friday 30 August 201910:10Final B
15:03Final A

All times are Central European Summer Time (UTC+2)

Results

Heats

Heat winners advanced directly to the A final. The remaining boats were sent to the repechage.[2]

Heat 1

Rank Rowers Country Time Notes
1 Giuseppe Di Mare
Raffaele Serio
 Italy 6:41.54 FA
2 Vangelys Pereira
Emanuel Borges
 Brazil 6:49.05 R
3 Bence Szabó
Kálmán Furkó
 Hungary 7:09.85 R
4 Paylak Mirzoyan
Mher Janikyan
 Armenia 7:40.99 R

Heat 2

Rank Rowers Country Time Notes
1 Jiří Kopáč
Jan Hajek
 Czech Republic 6:52.80 FA
2 Nikita Bolozin
Maksim Telitcyn
 Russia 6:54.25 R
3 James Nelson
Alex Twist
 United States 7:00.69 R
4 Markus Lemp
Anton Sigl
 Austria 7:26.12 R

Repechage

The four fastest boats advanced to the A final. The remaining boats were sent to the B final.[3]

Rank Rowers Country Time Notes
1 Vangelys Pereira
Emanuel Borges
 Brazil 6:48.50 FA
2 Nikita Bolozin
Maksim Telitcyn
 Russia 6:51.37 FA
3 Bence Szabó
Kálmán Furkó
 Hungary 6:52.88 FA
4 Markus Lemp
Anton Sigl
 Austria 6:56.90 FA
5 James Nelson
Alex Twist
 United States 6:58.31 FB
6 Paylak Mirzoyan
Mher Janikyan
 Armenia 7:37.29 FB

Finals

The A final determined the rankings for places 1 to 6. Additional rankings were determined in the B final.[4]

Final B

Rank Rowers Country Time
1 James Nelson
Alex Twist
 United States 7:00.45
2 Paylak Mirzoyan
Mher Janikyan
 Armenia 7:32.97

Final A

Rank Rowers Country Time
Giuseppe Di Mare
Raffaele Serio
 Italy 6:37.75
Nikita Bolozin
Maksim Telitsyn
 Russia 6:42.07
Vangelys Pereira
Emanuel Borges
 Brazil 6:45.28
4 Bence Szabó
Kálmán Furkó
 Hungary 6:49.50
5 Nikita Bolozin
Aleksei Kiiashko
 Russia 6:55.34
6 Markus Lemp
Anton Sigl
 Austria 7:03.70
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
gollark: And how do I get *that* to work.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.