Advertisement
Guest User

Truc de ouf (points de rencontre)

a guest
May 1st, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.19 KB | None | 0 0
  1. # Tableau des points de rencontres:
  2. # (spider 1, spider 2, Hero) = (n° de tour, distance entre les 2 araignées, coordonnées du point de rencontre pour pouvoir faire le Wind)
  3. # https://www.codingame.com/share-replay/630295305
  4.  
  5. [((16, 29, 2), (1, 1901, '[3901. 5091.]')),
  6.  ((29, 16, 2), (1, 1901, '[3901. 5091.]')),
  7.  ((12, 29, 1), (3, 5579, '[5345.  -13.]')),
  8.  ((29, 12, 1), (3, 5579, '[5345.  -13.]')),
  9.  ((11, 29, 1), (3, 5837, '[5520. -241.]')),
  10.  ((29, 11, 1), (3, 5837, '[5520. -241.]')),
  11.  ((24, 23, 1), (4, 2362, '[5926. 3576.]')),
  12.  ((23, 24, 1), (4, 2362, '[5926. 3576.]')),
  13.  ((24, 23, 2), (4, 2362, '[5926. 3576.]')),
  14.  ((23, 24, 2), (4, 2362, '[5926. 3576.]')),
  15.  ((7, 19, 2), (4, 4761, '[ 238. 3718.]')),
  16.  ((19, 7, 2), (4, 4761, '[ 238. 3718.]')),
  17.  ((15, 24, 2), (4, 5939, '[-138. 5552.]')),
  18.  ((24, 15, 2), (4, 5939, '[-138. 5552.]')),
  19.  ((18, 27, 0), (5, 1513, '[13244.  6234.]')),
  20.  ((27, 18, 0), (5, 1513, '[13244.  6234.]')),
  21.  ((19, 24, 2), (5, 2002, '[3336. 1370.]')),
  22.  ((24, 19, 2), (5, 2002, '[3336. 1370.]')),
  23.  ((19, 24, 1), (5, 2002, '[4630.  598.]')),
  24.  ((24, 19, 1), (5, 2002, '[4630.  598.]')),
  25.  ((16, 26, 1), (8, 2722, '[3149. 1677.]')),
  26.  ((26, 16, 1), (8, 2722, '[3149. 1677.]')),
  27.  ((16, 26, 2), (8, 2722, '[3149. 1677.]')),
  28.  ((26, 16, 2), (8, 2722, '[3149. 1677.]')),
  29.  ((16, 24, 2), (10, 4244, '[ 301. 2971.]')),
  30.  ((24, 16, 2), (10, 4244, '[ 301. 2971.]')),
  31.  ((16, 24, 1), (10, 4244, '[2697.  -45.]')),
  32.  ((24, 16, 1), (10, 4244, '[2697.  -45.]')),
  33.  ((7, 24, 1), (12, 6244, '[ 6954. -3106.]')),
  34.  ((24, 7, 1), (12, 6244, '[ 6954. -3106.]')),
  35.  ((7, 24, 2), (12, 6244, '[ 6954. -3106.]')),
  36.  ((24, 7, 2), (12, 6244, '[ 6954. -3106.]')),
  37.  ((26, 29, 0), (16, 4591, '[3858. 2486.]')),
  38.  ((29, 26, 0), (16, 4591, '[3858. 2486.]')),
  39.  ((26, 29, 1), (16, 4591, '[3858. 2486.]')),
  40.  ((29, 26, 1), (16, 4591, '[3858. 2486.]')),
  41.  ((26, 29, 2), (16, 4591, '[3858. 2486.]')),
  42.  ((29, 26, 2), (16, 4591, '[3858. 2486.]')),
  43.  ((29, 24, 0), (17, 6011, '[2356.  675.]')),
  44.  ((24, 29, 0), (17, 6011, '[2356.  675.]')),
  45.  ((29, 24, 1), (17, 6011, '[2356.  675.]')),
  46.  ((24, 29, 1), (17, 6011, '[2356.  675.]')),
  47.  ((29, 24, 2), (17, 6011, '[2356.  675.]')),
  48.  ((24, 29, 2), (17, 6011, '[2356.  675.]'))]
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement