Archery at the 2017 Summer Universiade
Archery was contested at the 2017 Summer Universiade from August 20 to 24 at the National Taiwan Sport University Stadium in Taoyuan, Taiwan.[1]
Archery at the XXIX Summer Universiade | |
---|---|
Venues | National Taiwan Sport University Stadium |
Dates | August 20, 2017 – August 24, 2017 |
Competitors | 237 from 39 nations |
Participant nations
237 archers from 39 nations participated at the 2017 Summer Universiade.
Argentina (4) Belgium (1) Chinese Taipei (12) Croatia (1) Czech Republic (4) Estonia (6) Finland (3) France (6) Germany (6) Great Britain (6) Hong Kong (5) Hungary (1) India (12) Indonesia (6) Iran (6) Iraq (2) Israel (1) Italy (12) Japan (6) Kazakhstan (12) Liechtenstein (2) Malaysia (12) Mexico (12) Moldova (2) Netherlands (2) Norway (3) New Zealand (2) Philippines (6) Poland (4) Russia (12) Singapore (12) Slovakia (2) Slovenia (3) South Korea (12) Sweden (4) Switzerland (2) Turkey (6) Ukraine (11) United States (12)
Medal summary
Medal table
Rank | Nation | Gold | Silver | Bronze | Total |
---|---|---|---|---|---|
1 | 9 | 0 | 3 | 12 | |
2 | 1 | 2 | 2 | 5 | |
3 | 0 | 4 | 1 | 5 | |
4 | 0 | 2 | 1 | 3 | |
5 | 0 | 1 | 0 | 1 | |
0 | 1 | 0 | 1 | ||
7 | 0 | 0 | 2 | 2 | |
8 | 0 | 0 | 1 | 1 | |
Totals (8 nations) | 10 | 10 | 10 | 30 |
Recurve
Event | Gold | Silver | Bronze |
---|---|---|---|
Men's individual |
Lee Seung-yun |
Arsalan Baldanov |
Kim Woo-jin |
Men's team |
Kim Woo-jin Lee Seung-yun Lee Woo-seok |
Deng Yu-cheng Peng Shih-cheng Wei Chun-heng |
Arsalan Baldanov Galsan Bazarzhapov Artem Makhnenko |
Women's individual |
Kang Chae-young |
Tan Ya-ting |
Alejandra Valencia |
Women's team |
Choi Mi-sun Kang Chae-young Lee Eun-gyeong |
Le Chien-ying Peng Chia-mao Tan Ya-ting |
Tuyana Dashidorzhieva Elena Osipova Sayana Tsyrempilova |
Mixed team |
Choi Mi-sun Lee Seung-yun |
Audrey Adiceom Mathieu Jiménez |
Jorge Nevarez Alejandra Valencia |
Compound
Event | Gold | Silver | Bronze |
---|---|---|---|
Men's individual |
Kim Jong-ho |
Demir Elmaağaçlı |
Mario Vavro |
Men's team |
Anton Bulaev Alexander Dambaev Victor Kalashnikov |
Yaser Amouei Milad Rashidi Omid Taheri |
Hong Sung-ho Kim Jong-ho Kim Tae-yoon |
Women's individual |
Song Yun-soo |
Chen Yi-hsuan |
So Chae-won |
Women's team |
Kim Yun-hee So Chae-won Song Yun-soo |
Aleksandra Savenkova Diana Tontoeva Maria Vinogradova |
Yeşim Bostan Cansu Ecem Coşkun Gizem Elmaağaçlı |
Mixed team |
Kim Jong-ho So Chae-won |
Demir Elmaagacli Yeşim Bostan |
Chen Hsiang-hsuan Chen Yi-hsuan |
gollark: https://esolangs.org/wiki/WHY
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
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_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?
References
- "2017 Summer Universiade – Archer – Technical handbook" (PDF). data.2017.gov.taipei. Retrieved 15 August 2017.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.