1998 European Cross Country Championships
The 5th European Cross Country Championships were held at Ferrara in Italy on 13 December 1998. Serhiy Lebid took the title in the men's competition and Paula Radcliffe won the women's race.
Results
Men individual 9.7 km
Pos. | Runners | Time |
---|---|---|
28:07 | ||
28:08 | ||
28:16 | ||
4. | 28:17 | |
5. | 28:18 | |
6. | 28:25 | |
7. | 28:36 | |
8. | 28:40 |
79 runners finished
Men teams
Pos. | Team | Points |
---|---|---|
Giuliano Battocletti Gabriele De Nard Umberto Pusterla Gennaro Di Napoli | 53 | |
Eduardo Henriques Paulo Guerra João Junqueira José Ramos | 55 | |
Manuel Pancorbo Julio Rey Martín Fiz Fabián Roncero | 68 | |
4. | 91 | |
5. | 92 | |
6. | 108 | |
7. | 122 | |
8. | 126 |
Total 13 teams
Women individual 5.6 km
Pos. | Runners | Time |
---|---|---|
18:07 | ||
18:10 | ||
18:11 | ||
4. | 18:19 | |
5. | 18:26 | |
6. | 18:42 | |
7. | 18:46 | |
8. | 18:49 |
60 runners finished
Women teams
Pos. | Team | Points |
---|---|---|
Fernanda Ribeiro Helena Sampaio Albertina Dias | 16 | |
Yanna Belkacem Zahia Dahmani Fatima Yvelain | 25 | |
Cristina Iloc Constantina Diţă Luminiţa Gogârlea | 41 | |
4. | 54 | |
5. | 55 | |
6. | 71 | |
7. | 77 | |
8. | 89 |
Total 12 teams
Junior men individual 5.6 km
Pos. | Runners | Time |
---|---|---|
16:50 | ||
16:51 | ||
16:55 | ||
4. | 16:57 | |
5. | 17:02 | |
6. | 17:02 | |
7. | 17:07 | |
8. | 17:11 |
Junior men teams
Pos. | Team | Points |
---|---|---|
28 | ||
30 | ||
36 | ||
4. | 45 | |
5. | 52 | |
6. | 54 | |
7. | 73 | |
8. | 73 |
Junior women individual 3.6 km
Pos. | Runners | Time |
---|---|---|
11:51 | ||
11:58 | ||
12:03 | ||
4. | 12:04 | |
5. | 12:09 | |
6. | 12:19 | |
7. | 12:20 | |
8. | 12:22 |
Junior women teams
Pos. | Team | Points |
---|---|---|
20 | ||
46 | ||
49 | ||
4. | 56 | |
5. | 58 | |
6. | 58 | |
7. | 60 | |
8. | 83 |
gollark: Use of `lea` or something.
gollark: Apparently Zig can get some optimizations out of making all integer overflow UB.
gollark: (mod 2^128 or so)
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); }}```
References
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.