@cyrilverloop/codingame-configuration 1.26.0 → 1.28.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 (199) hide show
  1. package/CHANGELOG.md +12 -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/config/{easy → medium}/RemoveInsertStatements/config.json +1 -1
  181. package/package.json +1 -1
  182. /package/config/{easy → medium}/RemoveInsertStatements/code/CGCode.js +0 -0
  183. /package/config/{easy → medium}/RemoveInsertStatements/code/CGCode.php +0 -0
  184. /package/config/{easy → medium}/RemoveInsertStatements/input/01 - simple insert statement.txt +0 -0
  185. /package/config/{easy → medium}/RemoveInsertStatements/input/02 - simple commented statement.txt +0 -0
  186. /package/config/{easy → medium}/RemoveInsertStatements/input/03 - insert + comment.txt +0 -0
  187. /package/config/{easy → medium}/RemoveInsertStatements/input/04 - with function.txt +0 -0
  188. /package/config/{easy → medium}/RemoveInsertStatements/input/05 - many insert statements.txt +0 -0
  189. /package/config/{easy → medium}/RemoveInsertStatements/input/06 - functions + inserts.txt +0 -0
  190. /package/config/{easy → medium}/RemoveInsertStatements/input/07 - multi-line INSERT instructions.txt +0 -0
  191. /package/config/{easy → medium}/RemoveInsertStatements/input/08 - many insert on same line.txt +0 -0
  192. /package/config/{easy → medium}/RemoveInsertStatements/output/01 - simple insert statement.txt +0 -0
  193. /package/config/{easy → medium}/RemoveInsertStatements/output/02 - simple commented statement.txt +0 -0
  194. /package/config/{easy → medium}/RemoveInsertStatements/output/03 - insert + comment.txt +0 -0
  195. /package/config/{easy → medium}/RemoveInsertStatements/output/04 - with function.txt +0 -0
  196. /package/config/{easy → medium}/RemoveInsertStatements/output/05 - many insert statements.txt +0 -0
  197. /package/config/{easy → medium}/RemoveInsertStatements/output/06 - functions + inserts.txt +0 -0
  198. /package/config/{easy → medium}/RemoveInsertStatements/output/07 - multi-line INSERT instructions.txt +0 -0
  199. /package/config/{easy → medium}/RemoveInsertStatements/output/08 - many insert on same line.txt +0 -0
@@ -0,0 +1,11 @@
1
+ ))cSS#
2
+ 1
3
+ --+--
4
+ |
5
+ ) | #
6
+ |
7
+ --+--
8
+ 4 3
9
+ ?
10
+ ????
11
+ ?
@@ -0,0 +1,12 @@
1
+ xDPYY3
2
+ 0
3
+
4
+
5
+
6
+
7
+
8
+ 3 4
9
+ ?
10
+ ??
11
+ ??
12
+ ?
@@ -0,0 +1,13 @@
1
+ N-@---
2
+ 0
3
+
4
+
5
+
6
+
7
+
8
+ 2 5
9
+ ?
10
+ ?
11
+ ??
12
+ ?
13
+ ?
@@ -0,0 +1,12 @@
1
+ kg{lug
2
+ 4
3
+ \ l / \ g / \ k / \ g /
4
+ \ / \ / \ / \ /
5
+ v v v v
6
+ u | k g | l l | u g | k
7
+ | | | |
8
+ 3 4
9
+ ?
10
+ ??
11
+ ??
12
+ ?
@@ -0,0 +1,5 @@
1
+ 1
2
+ ABE
3
+ C
4
+ F
5
+ D
@@ -0,0 +1,4 @@
1
+ 1
2
+ I
3
+ JLTU
4
+ Z
@@ -0,0 +1,17 @@
1
+ 4
2
+ I
3
+ V
4
+ ej
5
+ Yw
6
+ I
7
+ V
8
+ jY
9
+ ew
10
+ I
11
+ V
12
+ wY
13
+ je
14
+ I
15
+ V
16
+ wj
17
+ eY
@@ -0,0 +1,19 @@
1
+ 6
2
+ 0
3
+ 03eo
4
+ C
5
+ 0
6
+ 03oC
7
+ e
8
+ 0
9
+ 0C3e
10
+ o
11
+ 0
12
+ 0e3o
13
+ C
14
+ 0
15
+ 3Coe
16
+ 0
17
+ 0
18
+ 3eCo
19
+ 0
@@ -0,0 +1,97 @@
1
+ 24
2
+ 3
3
+ 7;
4
+ I^
5
+ y
6
+ 3
7
+ 7;
8
+ Iy
9
+ ^
10
+ 3
11
+ 7;
12
+ ^I
13
+ y
14
+ 3
15
+ 7;
16
+ ^y
17
+ I
18
+ 3
19
+ 7;
20
+ yI
21
+ ^
22
+ 3
23
+ 7;
24
+ y^
25
+ I
26
+ 3
27
+ 7I
28
+ ;^
29
+ y
30
+ 3
31
+ 7I
32
+ ^;
33
+ y
34
+ 3
35
+ 7I
36
+ ^y
37
+ ;
38
+ 3
39
+ 7I
40
+ y^
41
+ ;
42
+ 3
43
+ 7^
44
+ ;I
45
+ y
46
+ 3
47
+ 7^
48
+ I;
49
+ y
50
+ 3
51
+ 7^
52
+ Iy
53
+ ;
54
+ 3
55
+ 7^
56
+ yI
57
+ ;
58
+ 3
59
+ 7y
60
+ ;I
61
+ ^
62
+ 3
63
+ 7y
64
+ ;^
65
+ I
66
+ 3
67
+ 7y
68
+ I;
69
+ ^
70
+ 3
71
+ 7y
72
+ I^
73
+ ;
74
+ 3
75
+ 7y
76
+ ^;
77
+ I
78
+ 3
79
+ 7y
80
+ ^I
81
+ ;
82
+ 3
83
+ ;I
84
+ 7^
85
+ y
86
+ 3
87
+ ;^
88
+ 7I
89
+ y
90
+ 3
91
+ ;y
92
+ 7I
93
+ ^
94
+ 3
95
+ ;y
96
+ 7^
97
+ I
@@ -0,0 +1,91 @@
1
+ 30
2
+ 2
3
+ `bgp
4
+ ~
5
+ 2
6
+ `bg~
7
+ p
8
+ 2
9
+ `bpg
10
+ ~
11
+ 2
12
+ `bp~
13
+ g
14
+ 2
15
+ `b~g
16
+ p
17
+ 2
18
+ `b~p
19
+ g
20
+ 2
21
+ `gbp
22
+ ~
23
+ 2
24
+ `gb~
25
+ p
26
+ 2
27
+ `gpb
28
+ ~
29
+ 2
30
+ `gp~
31
+ b
32
+ 2
33
+ `g~b
34
+ p
35
+ 2
36
+ `g~p
37
+ b
38
+ 2
39
+ `pbg
40
+ ~
41
+ 2
42
+ `pb~
43
+ g
44
+ 2
45
+ `pgb
46
+ ~
47
+ 2
48
+ `pg~
49
+ b
50
+ 2
51
+ `p~b
52
+ g
53
+ 2
54
+ `p~g
55
+ b
56
+ 2
57
+ `~bg
58
+ p
59
+ 2
60
+ `~bp
61
+ g
62
+ 2
63
+ `~gb
64
+ p
65
+ 2
66
+ `~gp
67
+ b
68
+ 2
69
+ `~pb
70
+ g
71
+ 2
72
+ `~pg
73
+ b
74
+ 2
75
+ bgp~
76
+ `
77
+ 2
78
+ bg~p
79
+ `
80
+ 2
81
+ bpg~
82
+ `
83
+ 2
84
+ bp~g
85
+ `
86
+ 2
87
+ b~gp
88
+ `
89
+ 2
90
+ b~pg
91
+ `
@@ -0,0 +1,25 @@
1
+ 6
2
+ #
3
+ $kk
4
+ }
5
+ }
6
+ #
7
+ $k}
8
+ k
9
+ }
10
+ #
11
+ $k}
12
+ }
13
+ k
14
+ #
15
+ $}k
16
+ }
17
+ k
18
+ #
19
+ $}}
20
+ k
21
+ k
22
+ #
23
+ kk}
24
+ $
25
+ }
@@ -0,0 +1,13 @@
1
+ 3
2
+ /
3
+ T
4
+ TTz
5
+ z
6
+ /
7
+ T
8
+ TzT
9
+ z
10
+ /
11
+ T
12
+ zTz
13
+ T
@@ -0,0 +1,10 @@
1
+ 3
2
+ C
3
+ CCNN
4
+ Q
5
+ C
6
+ CNCN
7
+ Q
8
+ C
9
+ CNCQ
10
+ N
@@ -0,0 +1,10 @@
1
+ 3
2
+ 3
3
+ TTYY
4
+ Y
5
+ 3
6
+ TYTY
7
+ Y
8
+ 3
9
+ TYYY
10
+ T
@@ -0,0 +1,10 @@
1
+ 3
2
+ =
3
+ =Lmm
4
+ m
5
+ =
6
+ =mLm
7
+ m
8
+ =
9
+ Lmmm
10
+ =
@@ -0,0 +1,13 @@
1
+ 4
2
+ (
3
+ (OOg
4
+ g
5
+ (
6
+ (OgO
7
+ g
8
+ (
9
+ (Ogg
10
+ O
11
+ (
12
+ (gOg
13
+ O
@@ -0,0 +1,61 @@
1
+ 15
2
+ 6
3
+ M
4
+ \fr
5
+ r
6
+ 6
7
+ M
8
+ \rf
9
+ r
10
+ 6
11
+ M
12
+ \rr
13
+ f
14
+ 6
15
+ M
16
+ f\r
17
+ r
18
+ 6
19
+ M
20
+ fr\
21
+ r
22
+ 6
23
+ M
24
+ frr
25
+ \
26
+ 6
27
+ M
28
+ r\f
29
+ r
30
+ 6
31
+ M
32
+ r\r
33
+ f
34
+ 6
35
+ M
36
+ rf\
37
+ r
38
+ 6
39
+ M
40
+ rfr
41
+ \
42
+ 6
43
+ M
44
+ rr\
45
+ f
46
+ 6
47
+ M
48
+ rrf
49
+ \
50
+ 6
51
+ \
52
+ fMr
53
+ r
54
+ 6
55
+ \
56
+ rMf
57
+ r
58
+ 6
59
+ \
60
+ rMr
61
+ f
@@ -0,0 +1,13 @@
1
+ 4
2
+ 8k
3
+ vv|
4
+ |
5
+ 8k
6
+ v|v
7
+ |
8
+ 8k
9
+ v||
10
+ v
11
+ 8v
12
+ v||
13
+ k
@@ -0,0 +1,13 @@
1
+ 3
2
+ 4
3
+ 4Q
4
+ oo
5
+ o
6
+ 4
7
+ 4o
8
+ Qo
9
+ o
10
+ 4
11
+ Qo
12
+ 4o
13
+ o
@@ -0,0 +1,9 @@
1
+ 2
2
+ +
3
+ +3
4
+ md
5
+ Z
6
+ +
7
+ +Z
8
+ 3d
9
+ m
@@ -0,0 +1,25 @@
1
+ 8
2
+ #
3
+ ))SS
4
+ c
5
+ #
6
+ ))Sc
7
+ S
8
+ #
9
+ ))cS
10
+ S
11
+ #
12
+ )S)S
13
+ c
14
+ #
15
+ )S)c
16
+ S
17
+ #
18
+ )SSc
19
+ )
20
+ #
21
+ )ScS
22
+ )
23
+ #
24
+ )cSS
25
+ )
@@ -0,0 +1,61 @@
1
+ 15
2
+ 3
3
+ DP
4
+ YY
5
+ x
6
+ 3
7
+ DP
8
+ Yx
9
+ Y
10
+ 3
11
+ DP
12
+ xY
13
+ Y
14
+ 3
15
+ DY
16
+ PY
17
+ x
18
+ 3
19
+ DY
20
+ Px
21
+ Y
22
+ 3
23
+ DY
24
+ YP
25
+ x
26
+ 3
27
+ DY
28
+ Yx
29
+ P
30
+ 3
31
+ DY
32
+ xP
33
+ Y
34
+ 3
35
+ DY
36
+ xY
37
+ P
38
+ 3
39
+ Dx
40
+ PY
41
+ Y
42
+ 3
43
+ Dx
44
+ YP
45
+ Y
46
+ 3
47
+ Dx
48
+ YY
49
+ P
50
+ 3
51
+ PY
52
+ DY
53
+ x
54
+ 3
55
+ PY
56
+ Dx
57
+ Y
58
+ 3
59
+ Px
60
+ DY
61
+ Y
@@ -0,0 +1,11 @@
1
+ 2
2
+ -
3
+ -
4
+ --
5
+ @
6
+ N
7
+ -
8
+ -
9
+ -@
10
+ -
11
+ N
@@ -0,0 +1,23 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int capacity;
11
+ int item_count;
12
+ cin >> capacity >> item_count; cin.ignore();
13
+ for (int i = 0; i < item_count; i++) {
14
+ int weight;
15
+ int value;
16
+ cin >> weight >> value; cin.ignore();
17
+ }
18
+
19
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
20
+ // To debug: cerr << "Debug messages..." << endl;
21
+
22
+ cout << "answer" << endl;
23
+ }
@@ -0,0 +1,21 @@
1
+ import java.util.*;
2
+ import java.io.*;
3
+ import java.math.*;
4
+
5
+ class Solution {
6
+
7
+ public static void main(String args[]) {
8
+ Scanner in = new Scanner(System.in);
9
+ int capacity = in.nextInt();
10
+ int itemCount = in.nextInt();
11
+ for (int i = 0; i < itemCount; i++) {
12
+ int weight = in.nextInt();
13
+ int value = in.nextInt();
14
+ }
15
+
16
+ // Write an answer using System.out.println()
17
+ // To debug: System.err.println("Debug messages...");
18
+
19
+ System.out.println("answer");
20
+ }
21
+ }
@@ -0,0 +1,13 @@
1
+ var inputs = readline().split(' ');
2
+ const capacity = parseInt(inputs[0]);
3
+ const itemCount = parseInt(inputs[1]);
4
+ for (let i = 0; i < itemCount; i++) {
5
+ var inputs = readline().split(' ');
6
+ const weight = parseInt(inputs[0]);
7
+ const value = parseInt(inputs[1]);
8
+ }
9
+
10
+ // Write an answer using console.log()
11
+ // To debug: console.error('Debug messages...');
12
+
13
+ console.log('answer');
@@ -0,0 +1,11 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d", $capacity, $itemCount);
3
+ for ($i = 0; $i < $itemCount; $i++)
4
+ {
5
+ fscanf(STDIN, "%d %d", $weight, $value);
6
+ }
7
+
8
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
9
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
10
+
11
+ echo("answer\n");
@@ -0,0 +1,13 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const capacity: number = parseInt(inputs[0]);
3
+ const itemCount: number = parseInt(inputs[1]);
4
+ for (let i = 0; i < itemCount; i++) {
5
+ var inputs: string[] = readline().split(' ');
6
+ const weight: number = parseInt(inputs[0]);
7
+ const value: number = parseInt(inputs[1]);
8
+ }
9
+
10
+ // Write an answer using console.log()
11
+ // To debug: console.error('Debug messages...');
12
+
13
+ console.log('answer');