@cyrilverloop/codingame-configuration 1.26.0 → 1.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (180) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/config/easy/CistercianAddition/code/CGCode.cpp +23 -0
  3. package/config/easy/CistercianAddition/code/CGCode.java +21 -0
  4. package/config/easy/CistercianAddition/code/CGCode.js +11 -0
  5. package/config/easy/CistercianAddition/code/CGCode.php +14 -0
  6. package/config/easy/CistercianAddition/code/CGCode.ts +11 -0
  7. package/config/easy/CistercianAddition/config.json +68 -0
  8. package/config/easy/CistercianAddition/input/01 - Units.txt +10 -0
  9. package/config/easy/CistercianAddition/input/02 - Tens.txt +10 -0
  10. package/config/easy/CistercianAddition/input/03 - Hundreds.txt +10 -0
  11. package/config/easy/CistercianAddition/input/04 - Thousands.txt +10 -0
  12. package/config/easy/CistercianAddition/input/05 - Limit.txt +10 -0
  13. package/config/easy/CistercianAddition/input/06 - Missing tens.txt +10 -0
  14. package/config/easy/CistercianAddition/input/07 - Missing numbers.txt +10 -0
  15. package/config/easy/CistercianAddition/input/08 - Change of multiples.txt +10 -0
  16. package/config/easy/CistercianAddition/input/09 - Basic symbols.txt +10 -0
  17. package/config/easy/CistercianAddition/input/10 - Repetitive numbers.txt +10 -0
  18. package/config/easy/CistercianAddition/input/11 - Random number 1.txt +10 -0
  19. package/config/easy/CistercianAddition/input/12 - Random number 2.txt +10 -0
  20. package/config/easy/CistercianAddition/output/01 - Units.txt +5 -0
  21. package/config/easy/CistercianAddition/output/02 - Tens.txt +5 -0
  22. package/config/easy/CistercianAddition/output/03 - Hundreds.txt +5 -0
  23. package/config/easy/CistercianAddition/output/04 - Thousands.txt +5 -0
  24. package/config/easy/CistercianAddition/output/05 - Limit.txt +5 -0
  25. package/config/easy/CistercianAddition/output/06 - Missing tens.txt +5 -0
  26. package/config/easy/CistercianAddition/output/07 - Missing numbers.txt +5 -0
  27. package/config/easy/CistercianAddition/output/08 - Change of multiples.txt +5 -0
  28. package/config/easy/CistercianAddition/output/09 - Basic symbols.txt +5 -0
  29. package/config/easy/CistercianAddition/output/10 - Repetitive numbers.txt +5 -0
  30. package/config/easy/CistercianAddition/output/11 - Random number 1.txt +5 -0
  31. package/config/easy/CistercianAddition/output/12 - Random number 2.txt +5 -0
  32. package/config/easy/JumpTheQueue/code/CGCode.cpp +26 -0
  33. package/config/easy/JumpTheQueue/code/CGCode.java +26 -0
  34. package/config/easy/JumpTheQueue/code/CGCode.js +15 -0
  35. package/config/easy/JumpTheQueue/code/CGCode.php +16 -0
  36. package/config/easy/JumpTheQueue/code/CGCode.ts +15 -0
  37. package/config/easy/JumpTheQueue/config.json +48 -0
  38. package/config/easy/JumpTheQueue/input/01 - Example.txt +4 -0
  39. package/config/easy/JumpTheQueue/input/02 - Incomplete dequeue.txt +6 -0
  40. package/config/easy/JumpTheQueue/input/03 - Interlacing events.txt +6 -0
  41. package/config/easy/JumpTheQueue/input/04 - Rejoining the queue.txt +10 -0
  42. package/config/easy/JumpTheQueue/input/05 - Busy queue.txt +14 -0
  43. package/config/easy/JumpTheQueue/input/06 - Bigger friend groups.txt +5 -0
  44. package/config/easy/JumpTheQueue/input/07 - Large pack of lone wolves.txt +4 -0
  45. package/config/easy/JumpTheQueue/input/08 - Long queue.txt +22 -0
  46. package/config/easy/JumpTheQueue/output/01 - Example.txt +7 -0
  47. package/config/easy/JumpTheQueue/output/02 - Incomplete dequeue.txt +14 -0
  48. package/config/easy/JumpTheQueue/output/03 - Interlacing events.txt +18 -0
  49. package/config/easy/JumpTheQueue/output/04 - Rejoining the queue.txt +29 -0
  50. package/config/easy/JumpTheQueue/output/05 - Busy queue.txt +47 -0
  51. package/config/easy/JumpTheQueue/output/06 - Bigger friend groups.txt +64 -0
  52. package/config/easy/JumpTheQueue/output/07 - Large pack of lone wolves.txt +105 -0
  53. package/config/easy/JumpTheQueue/output/08 - Long queue.txt +160 -0
  54. package/config/easy/LeapOfSheep/code/CGCode.cpp +21 -0
  55. package/config/easy/LeapOfSheep/code/CGCode.java +19 -0
  56. package/config/easy/LeapOfSheep/code/CGCode.js +10 -0
  57. package/config/easy/LeapOfSheep/code/CGCode.php +12 -0
  58. package/config/easy/LeapOfSheep/code/CGCode.ts +10 -0
  59. package/config/easy/LeapOfSheep/config.json +88 -0
  60. package/config/easy/LeapOfSheep/input/01 - Example.txt +2 -0
  61. package/config/easy/LeapOfSheep/input/02 - Highest is not best.txt +2 -0
  62. package/config/easy/LeapOfSheep/input/03 - Only 1 valid.txt +2 -0
  63. package/config/easy/LeapOfSheep/input/04 - Increasing then decreasing.txt +2 -0
  64. package/config/easy/LeapOfSheep/input/05 - Hills.txt +2 -0
  65. package/config/easy/LeapOfSheep/input/06 - Symmetric field.txt +2 -0
  66. package/config/easy/LeapOfSheep/input/07 - Fluctuations.txt +2 -0
  67. package/config/easy/LeapOfSheep/input/08 - Small step.txt +2 -0
  68. package/config/easy/LeapOfSheep/input/09 - Big heights.txt +2 -0
  69. package/config/easy/LeapOfSheep/input/10 - So high!.txt +2 -0
  70. package/config/easy/LeapOfSheep/input/11 - Giant leap.txt +2 -0
  71. package/config/easy/LeapOfSheep/input/12 - Bigger.txt +2 -0
  72. package/config/easy/LeapOfSheep/input/13 - Lots of similar.txt +2 -0
  73. package/config/easy/LeapOfSheep/input/14 - Leap of faith.txt +2 -0
  74. package/config/easy/LeapOfSheep/input/15 - Similar heights.txt +2 -0
  75. package/config/easy/LeapOfSheep/input/16 - So many piles.txt +2 -0
  76. package/config/easy/LeapOfSheep/output/01 - Example.txt +1 -0
  77. package/config/easy/LeapOfSheep/output/02 - Highest is not best.txt +1 -0
  78. package/config/easy/LeapOfSheep/output/03 - Only 1 valid.txt +1 -0
  79. package/config/easy/LeapOfSheep/output/04 - Increasing then decreasing.txt +1 -0
  80. package/config/easy/LeapOfSheep/output/05 - Hills.txt +1 -0
  81. package/config/easy/LeapOfSheep/output/06 - Symmetric field.txt +1 -0
  82. package/config/easy/LeapOfSheep/output/07 - Fluctuations.txt +1 -0
  83. package/config/easy/LeapOfSheep/output/08 - Small step.txt +1 -0
  84. package/config/easy/LeapOfSheep/output/09 - Big heights.txt +1 -0
  85. package/config/easy/LeapOfSheep/output/10 - So high!.txt +1 -0
  86. package/config/easy/LeapOfSheep/output/11 - Giant leap.txt +1 -0
  87. package/config/easy/LeapOfSheep/output/12 - Bigger.txt +1 -0
  88. package/config/easy/LeapOfSheep/output/13 - Lots of similar.txt +1 -0
  89. package/config/easy/LeapOfSheep/output/14 - Leap of faith.txt +1 -0
  90. package/config/easy/LeapOfSheep/output/15 - Similar heights.txt +1 -0
  91. package/config/easy/LeapOfSheep/output/16 - So many piles.txt +1 -0
  92. package/config/hard/BuildADie/code/CGCode.cpp +30 -0
  93. package/config/hard/BuildADie/code/CGCode.java +31 -0
  94. package/config/hard/BuildADie/code/CGCode.js +16 -0
  95. package/config/hard/BuildADie/code/CGCode.php +17 -0
  96. package/config/hard/BuildADie/code/CGCode.ts +16 -0
  97. package/config/hard/BuildADie/config.json +133 -0
  98. package/config/hard/BuildADie/input/01 - Example.txt +12 -0
  99. package/config/hard/BuildADie/input/02 - Corners.txt +11 -0
  100. package/config/hard/BuildADie/input/03 - Side Profile.txt +10 -0
  101. package/config/hard/BuildADie/input/04 - Front Face.txt +11 -0
  102. package/config/hard/BuildADie/input/05 - Mix.txt +12 -0
  103. package/config/hard/BuildADie/input/06 - Repeat.txt +11 -0
  104. package/config/hard/BuildADie/input/07 - Cryptic.txt +12 -0
  105. package/config/hard/BuildADie/input/08 - Missing Images.txt +11 -0
  106. package/config/hard/BuildADie/input/09 - No Solution.txt +12 -0
  107. package/config/hard/BuildADie/input/10 - Multiple.txt +12 -0
  108. package/config/hard/BuildADie/input/11 - More.txt +12 -0
  109. package/config/hard/BuildADie/input/12 - Duplicate.txt +13 -0
  110. package/config/hard/BuildADie/input/13 - Identical.txt +11 -0
  111. package/config/hard/BuildADie/input/14 - Net 1.txt +11 -0
  112. package/config/hard/BuildADie/input/15 - Net 2.txt +11 -0
  113. package/config/hard/BuildADie/input/16 - Net 3.txt +11 -0
  114. package/config/hard/BuildADie/input/17 - Net 4.txt +11 -0
  115. package/config/hard/BuildADie/input/18 - Net 5.txt +12 -0
  116. package/config/hard/BuildADie/input/19 - Net 6.txt +11 -0
  117. package/config/hard/BuildADie/input/20 - Net 7.txt +12 -0
  118. package/config/hard/BuildADie/input/21 - Net 8.txt +12 -0
  119. package/config/hard/BuildADie/input/22 - Net 9.txt +11 -0
  120. package/config/hard/BuildADie/input/23 - Net 10.txt +12 -0
  121. package/config/hard/BuildADie/input/24 - Net 11.txt +13 -0
  122. package/config/hard/BuildADie/input/25 - Nothing.txt +12 -0
  123. package/config/hard/BuildADie/output/01 - Example.txt +5 -0
  124. package/config/hard/BuildADie/output/02 - Corners.txt +4 -0
  125. package/config/hard/BuildADie/output/03 - Side Profile.txt +3 -0
  126. package/config/hard/BuildADie/output/04 - Front Face.txt +4 -0
  127. package/config/hard/BuildADie/output/05 - Mix.txt +17 -0
  128. package/config/hard/BuildADie/output/06 - Repeat.txt +19 -0
  129. package/config/hard/BuildADie/output/07 - Cryptic.txt +97 -0
  130. package/config/hard/BuildADie/output/08 - Missing Images.txt +91 -0
  131. package/config/hard/BuildADie/output/09 - No Solution.txt +1 -0
  132. package/config/hard/BuildADie/output/10 - Multiple.txt +25 -0
  133. package/config/hard/BuildADie/output/11 - More.txt +13 -0
  134. package/config/hard/BuildADie/output/12 - Duplicate.txt +6 -0
  135. package/config/hard/BuildADie/output/13 - Identical.txt +4 -0
  136. package/config/hard/BuildADie/output/14 - Net 1.txt +10 -0
  137. package/config/hard/BuildADie/output/15 - Net 2.txt +10 -0
  138. package/config/hard/BuildADie/output/16 - Net 3.txt +10 -0
  139. package/config/hard/BuildADie/output/17 - Net 4.txt +13 -0
  140. package/config/hard/BuildADie/output/18 - Net 5.txt +61 -0
  141. package/config/hard/BuildADie/output/19 - Net 6.txt +13 -0
  142. package/config/hard/BuildADie/output/20 - Net 7.txt +13 -0
  143. package/config/hard/BuildADie/output/21 - Net 8.txt +9 -0
  144. package/config/hard/BuildADie/output/22 - Net 9.txt +25 -0
  145. package/config/hard/BuildADie/output/23 - Net 10.txt +61 -0
  146. package/config/hard/BuildADie/output/24 - Net 11.txt +11 -0
  147. package/config/hard/BuildADie/output/25 - Nothing.txt +1 -0
  148. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.cpp +23 -0
  149. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.java +21 -0
  150. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.js +13 -0
  151. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.php +11 -0
  152. package/config/medium/OrbitalLogisticsExactLoad/code/CGCode.ts +13 -0
  153. package/config/medium/OrbitalLogisticsExactLoad/config.json +73 -0
  154. package/config/medium/OrbitalLogisticsExactLoad/input/01 - Baby/342/200/231s First Cargo Run.txt" +5 -0
  155. package/config/medium/OrbitalLogisticsExactLoad/input/02 - The Cargo Bay Says No.txt +5 -0
  156. package/config/medium/OrbitalLogisticsExactLoad/input/03 - All Hands on Deck.txt +8 -0
  157. package/config/medium/OrbitalLogisticsExactLoad/input/04 - Nothing Fits Today.txt +11 -0
  158. package/config/medium/OrbitalLogisticsExactLoad/input/05 - Many Roads to the Same Dock.txt +6 -0
  159. package/config/medium/OrbitalLogisticsExactLoad/input/06 - One Perfect Container.txt +14 -0
  160. package/config/medium/OrbitalLogisticsExactLoad/input/07 - Bigger Beats Better.txt +18 -0
  161. package/config/medium/OrbitalLogisticsExactLoad/input/08 - Many Roads to Orbit.txt +25 -0
  162. package/config/medium/OrbitalLogisticsExactLoad/input/09 - Insufficient Payload.txt +31 -0
  163. package/config/medium/OrbitalLogisticsExactLoad/input/10 - Tight Schedule.txt +33 -0
  164. package/config/medium/OrbitalLogisticsExactLoad/input/11 - Full Capacity Pressure.txt +41 -0
  165. package/config/medium/OrbitalLogisticsExactLoad/input/12 - Deep Space Logistics.txt +41 -0
  166. package/config/medium/OrbitalLogisticsExactLoad/input/13 - Mission Constraints.txt +41 -0
  167. package/config/medium/OrbitalLogisticsExactLoad/output/01 - Baby/342/200/231s First Cargo Run.txt" +1 -0
  168. package/config/medium/OrbitalLogisticsExactLoad/output/02 - The Cargo Bay Says No.txt +1 -0
  169. package/config/medium/OrbitalLogisticsExactLoad/output/03 - All Hands on Deck.txt +1 -0
  170. package/config/medium/OrbitalLogisticsExactLoad/output/04 - Nothing Fits Today.txt +1 -0
  171. package/config/medium/OrbitalLogisticsExactLoad/output/05 - Many Roads to the Same Dock.txt +1 -0
  172. package/config/medium/OrbitalLogisticsExactLoad/output/06 - One Perfect Container.txt +1 -0
  173. package/config/medium/OrbitalLogisticsExactLoad/output/07 - Bigger Beats Better.txt +1 -0
  174. package/config/medium/OrbitalLogisticsExactLoad/output/08 - Many Roads to Orbit.txt +1 -0
  175. package/config/medium/OrbitalLogisticsExactLoad/output/09 - Insufficient Payload.txt +1 -0
  176. package/config/medium/OrbitalLogisticsExactLoad/output/10 - Tight Schedule.txt +1 -0
  177. package/config/medium/OrbitalLogisticsExactLoad/output/11 - Full Capacity Pressure.txt +1 -0
  178. package/config/medium/OrbitalLogisticsExactLoad/output/12 - Deep Space Logistics.txt +1 -0
  179. package/config/medium/OrbitalLogisticsExactLoad/output/13 - Mission Constraints.txt +1 -0
  180. package/package.json +1 -1
@@ -0,0 +1,73 @@
1
+ {
2
+ "path": "medium/OrbitalLogisticsExactLoad",
3
+ "name": "Orbital Logistics: Exact Load",
4
+ "alphanumName": "OrbitalLogisticsExactLoad",
5
+ "link": "https://www.codingame.com/ide/puzzle/orbital-logistics-exact-load",
6
+ "tests": [
7
+ {
8
+ "name": "Baby’s First Cargo Run",
9
+ "alphanumName": "BabysFirstCargoRun",
10
+ "file": "01 - Baby’s First Cargo Run.txt"
11
+ },
12
+ {
13
+ "name": "The Cargo Bay Says No",
14
+ "alphanumName": "TheCargoBaySaysNo",
15
+ "file": "02 - The Cargo Bay Says No.txt"
16
+ },
17
+ {
18
+ "name": "All Hands on Deck",
19
+ "alphanumName": "AllHandsOnDeck",
20
+ "file": "03 - All Hands on Deck.txt"
21
+ },
22
+ {
23
+ "name": "Nothing Fits Today",
24
+ "alphanumName": "NothingFitsToday",
25
+ "file": "04 - Nothing Fits Today.txt"
26
+ },
27
+ {
28
+ "name": "Many Roads to the Same Dock",
29
+ "alphanumName": "ManyRoadsToTheSameDock",
30
+ "file": "05 - Many Roads to the Same Dock.txt"
31
+ },
32
+ {
33
+ "name": "One Perfect Container",
34
+ "alphanumName": "OnePerfectContainer",
35
+ "file": "06 - One Perfect Container.txt"
36
+ },
37
+ {
38
+ "name": "Bigger Beats Better",
39
+ "alphanumName": "BiggerBeatsBetter",
40
+ "file": "07 - Bigger Beats Better.txt"
41
+ },
42
+ {
43
+ "name": "Many Roads to Orbit",
44
+ "alphanumName": "ManyRoadsToOrbit",
45
+ "file": "08 - Many Roads to Orbit.txt"
46
+ },
47
+ {
48
+ "name": "Insufficient Payload",
49
+ "alphanumName": "InsufficientPayload",
50
+ "file": "09 - Insufficient Payload.txt"
51
+ },
52
+ {
53
+ "name": "Tight Schedule",
54
+ "alphanumName": "TightSchedule",
55
+ "file": "10 - Tight Schedule.txt"
56
+ },
57
+ {
58
+ "name": "Full Capacity Pressure",
59
+ "alphanumName": "FullCapacityPressure",
60
+ "file": "11 - Full Capacity Pressure.txt"
61
+ },
62
+ {
63
+ "name": "Deep Space Logistics",
64
+ "alphanumName": "DeepSpaceLogistics",
65
+ "file": "12 - Deep Space Logistics.txt"
66
+ },
67
+ {
68
+ "name": "Mission Constraints",
69
+ "alphanumName": "MissionConstraints",
70
+ "file": "13 - Mission Constraints.txt"
71
+ }
72
+ ]
73
+ }
@@ -0,0 +1,8 @@
1
+ 169 7
2
+ 24 11
3
+ 26 16
4
+ 16 20
5
+ 29 17
6
+ 27 21
7
+ 19 25
8
+ 28 16
@@ -0,0 +1,11 @@
1
+ 4 10
2
+ 27 17
3
+ 25 27
4
+ 29 25
5
+ 19 20
6
+ 14 28
7
+ 23 10
8
+ 25 11
9
+ 18 24
10
+ 12 20
11
+ 25 29
@@ -0,0 +1,14 @@
1
+ 81 13
2
+ 46 42
3
+ 66 70
4
+ 81 100
5
+ 88 60
6
+ 32 39
7
+ 34 52
8
+ 90 58
9
+ 87 66
10
+ 93 99
11
+ 88 32
12
+ 62 45
13
+ 87 69
14
+ 61 96
@@ -0,0 +1,18 @@
1
+ 561 17
2
+ 774 605
3
+ 872 367
4
+ 125 692
5
+ 227 543
6
+ 764 175
7
+ 793 208
8
+ 639 823
9
+ 865 174
10
+ 291 227
11
+ 209 600
12
+ 785 549
13
+ 112 948
14
+ 404 109
15
+ 831 791
16
+ 427 291
17
+ 415 910
18
+ 561 593
@@ -0,0 +1,25 @@
1
+ 10000 24
2
+ 3000 5366
3
+ 3000 7856
4
+ 3000 5047
5
+ 2000 4200
6
+ 2000 3649
7
+ 3000 8771
8
+ 2000 2971
9
+ 2000 2724
10
+ 2000 4887
11
+ 4000 9007
12
+ 3000 9080
13
+ 4000 8236
14
+ 3000 8097
15
+ 4000 6149
16
+ 4000 6446
17
+ 4000 8323
18
+ 2000 3218
19
+ 4000 6789
20
+ 2000 2831
21
+ 3000 7933
22
+ 4000 8807
23
+ 2000 5557
24
+ 3000 9284
25
+ 4000 7911
@@ -0,0 +1,31 @@
1
+ 1000000 30
2
+ 12345 50000
3
+ 23456 60000
4
+ 34567 70000
5
+ 45678 80000
6
+ 56789 90000
7
+ 67890 100000
8
+ 78901 110000
9
+ 89012 120000
10
+ 90123 130000
11
+ 81234 140000
12
+ 72345 150000
13
+ 63456 160000
14
+ 54567 170000
15
+ 45678 180000
16
+ 36789 190000
17
+ 27890 200000
18
+ 18901 210000
19
+ 99012 220000
20
+ 88123 230000
21
+ 77234 240000
22
+ 66345 250000
23
+ 55456 260000
24
+ 44567 270000
25
+ 33678 280000
26
+ 22789 290000
27
+ 11890 300000
28
+ 10987 310000
29
+ 9876 320000
30
+ 8765 330000
31
+ 7654 340000
@@ -0,0 +1,33 @@
1
+ 718175 32
2
+ 46404 107233
3
+ 42881 106369
4
+ 21726 69266
5
+ 41032 72966
6
+ 34144 77696
7
+ 43907 71448
8
+ 47932 107085
9
+ 39172 87650
10
+ 22806 81875
11
+ 35593 67554
12
+ 21722 96283
13
+ 42522 113924
14
+ 39664 107316
15
+ 15166 50580
16
+ 35250 43242
17
+ 47180 92186
18
+ 15752 104262
19
+ 37784 86745
20
+ 49383 73900
21
+ 21425 98937
22
+ 44979 58466
23
+ 29714 56908
24
+ 20943 92268
25
+ 20001 84616
26
+ 47666 55263
27
+ 45216 95340
28
+ 42565 115047
29
+ 22257 77649
30
+ 48946 43326
31
+ 20876 113066
32
+ 47171 116876
33
+ 18203 108579
@@ -0,0 +1,41 @@
1
+ 905810 40
2
+ 41992 68081
3
+ 20042 90243
4
+ 21021 120093
5
+ 39650 123974
6
+ 45841 68989
7
+ 13027 59322
8
+ 27896 96423
9
+ 38415 74811
10
+ 48679 55488
11
+ 44145 110319
12
+ 26702 139394
13
+ 17042 68873
14
+ 12439 60556
15
+ 28095 88896
16
+ 17130 100624
17
+ 20359 65092
18
+ 46712 92762
19
+ 30867 67605
20
+ 46677 79175
21
+ 44754 62885
22
+ 47681 109895
23
+ 15166 110422
24
+ 38042 53997
25
+ 33935 102206
26
+ 34733 129762
27
+ 27611 87632
28
+ 40707 95343
29
+ 10624 112465
30
+ 35679 62040
31
+ 21280 76682
32
+ 33527 109771
33
+ 49449 118264
34
+ 11742 63782
35
+ 26708 52390
36
+ 14603 119158
37
+ 17843 93897
38
+ 41367 120881
39
+ 45789 118864
40
+ 48865 56322
41
+ 11439 70067
@@ -0,0 +1,41 @@
1
+ 1000000 40
2
+ 166466 204025
3
+ 321277 265277
4
+ 239842 531364
5
+ 87236 138236
6
+ 258351 265669
7
+ 370870 461137
8
+ 81426 139194
9
+ 283709 509588
10
+ 46463 76793
11
+ 83563 51703
12
+ 36062 248916
13
+ 432698 280814
14
+ 171313 469428
15
+ 271530 515544
16
+ 300017 582817
17
+ 116093 74312
18
+ 367717 513281
19
+ 469757 217435
20
+ 476692 299484
21
+ 329295 325738
22
+ 219725 460043
23
+ 38893 90758
24
+ 281722 221833
25
+ 68878 106443
26
+ 449360 512911
27
+ 422002 295141
28
+ 324081 366264
29
+ 75447 149595
30
+ 268685 202780
31
+ 269973 547955
32
+ 64987 122842
33
+ 372357 378943
34
+ 180707 368208
35
+ 101924 160785
36
+ 195444 378461
37
+ 252049 232953
38
+ 454282 369600
39
+ 103850 91853
40
+ 310331 496526
41
+ 95181 233013
@@ -0,0 +1,41 @@
1
+ 999999 40
2
+ 20134 102345
3
+ 40218 124567
4
+ 60346 146789
5
+ 80412 168901
6
+ 100278 189012
7
+ 120334 209123
8
+ 140456 229234
9
+ 160512 249345
10
+ 180678 269456
11
+ 200734 289567
12
+ 220890 309678
13
+ 240912 329789
14
+ 260178 349890
15
+ 280234 369901
16
+ 300456 389012
17
+ 320512 409123
18
+ 340678 429234
19
+ 360734 449345
20
+ 380890 469456
21
+ 400912 489567
22
+ 420178 509678
23
+ 440234 529789
24
+ 460456 549890
25
+ 480512 569901
26
+ 500678 589012
27
+ 520734 609123
28
+ 540890 629234
29
+ 560912 649345
30
+ 580178 669456
31
+ 600234 689567
32
+ 620456 709678
33
+ 640512 729789
34
+ 660678 749890
35
+ 680734 769901
36
+ 700890 789012
37
+ 720912 809123
38
+ 740178 829234
39
+ 760234 849345
40
+ 780456 869456
41
+ 800512 889567
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyrilverloop/codingame-configuration",
3
- "version": "1.26.0",
3
+ "version": "1.27.0",
4
4
  "description": "A project that contains CodinGame input, output and default code.",
5
5
  "repository": {
6
6
  "type": "git",