Tatsuro Yoshino

Tatsuro Yoshino (吉野 達郎, Yoshino Tatsurō, born 11 September 1982) is a Japanese sprinter.

Competition record

Year Competition Venue Position Event Notes
Representing  Japan
2001 Asian Junior Championships Bandar Seri Begawan, Brunei 2nd 200 m 21.11 (w)
2nd 4 × 100 m relay 40.35
2003 Universiade Daegu, South Korea 6th 200 m 21.18
1st 4 × 100 m relay 39.45
Asian Championships Manila, Philippines 5th 200 m 21.14
2005 World Championships Helsinki, Finland 8th 4 × 100 m relay 38.77
Asian Championships Incheon, South Korea 2nd 200 m 20.68
1st 4 × 100 m relay 39.10

Personal bests

  • 100 metres - 10.27 s (2005)
  • 200 metres - 20.67 s (2003)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
gollark: Idea: wrapping_add.
gollark: Unlike LyricLy's bad thing, which timed out.

References


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