Swimming at the 1975 Pan American Games – Men's 400 metre freestyle

The men's 400 metre freestyle competition of the swimming events at the 1975 Pan American Games took place on 21 October.[1][2] The last Pan American Games champion was Jim McConica of the United States.[3][4][5][6][7][8]

Men's 400 metre freestyle at the VII Pan American Games
Venue-
DatesOctober 21 (preliminaries and finals)
Competitors- from - nations
Medalists
   United States
   United States
   Brazil
«1971
1979»

This race consisted of eight lengths of the pool, with all eight being in the freestyle stroke.[9]

Results

All times are in minutes and seconds.

KEY: qFastest non-qualifiers QQualified GRGames record NRNational record PBPersonal best SBSeasonal best

Heats

Final

The final was held on October 21.[1]

RankNameNationalityTimeNotes
Douglas Northway United States4:00.51
Bobby Hackett United States4:03.38
Djan Madruga Brazil4:06.83
4---
5---
6---
7Paul Jouanneau Brazil4:22.19
8---
gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```

References

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