Swimming at the 2018 Mediterranean Games – Women's 200 metre butterfly

The women's 200 metre butterfly competition at the 2018 Mediterranean Games was held on 25 June 2018 at the Campclar Aquatic Center.[1]

Women's 200 metre butterfly
at the 2018 Mediterranean Games
VenueCampclar Aquatic Center
LocationTarragona, Spain
Dates25 June
Competitors11 from 7 nations
Winning time2:07.80
Medalists
    Spain
    Portugal
    Italy

Records

Prior to this competition, the existing world and Mediterranean Games records were as follows:

World record  Liu Zige (CHN) 2:01.81 Jinan, China 21 October 2009
Mediterranean Games record  Caterina Giacchetti (ITA) 2:06.89 Pescara, Italy 1 July 2009

Results

Heats

The heats were held at 09:50.

RankHeatLaneNameNationalityTimeNotes
124Mireia Belmonte Spain2:09.73Q
223Ana Monteiro Portugal2:10.27Q
325Anja Klinar Slovenia2:11.54Q
413Nida Eliz Üstündağ Turkey2:12.82Q
515Stefania Pirozzi Italy2:13.31Q
614Alessia Polieri Italy2:13.43Q
726Victoria Kaminskaya Portugal2:13.94Q
816Anna Ntountounaki Greece2:14.10Q
922Jimena Pérez Spain2:14.39
1012Ilektra Lebl Greece2:18.37
1117Beatrice Felici San Marino2:35.41
27Samar Kacha AlgeriaDNS

Final

The final was held at 17:57.[2]

RankLaneNameNationalityTimeNotes
4Mireia Belmonte Spain2:07.80
5Ana Monteiro Portugal2:08.06NR
7Alessia Polieri Italy2:08.46
43Anja Klinar Slovenia2:10.26
52Stefania Pirozzi Italy2:11.50
66Nida Eliz Üstündağ Turkey2:12.07
71Victoria Kaminskaya Portugal2:12.43
88Anna Ntountounaki Greece2:14.54
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
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.

References

  1. "2018 Mediterranean Games – Swimming schedule" (PDF). tarragona2018.cat. Retrieved 23 June 2018.
  2. Final results
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.