@cyrilverloop/codingame-configuration 1.28.0 → 1.29.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 (78) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/config/easy/HagridSpeaking/code/CGCode.cpp +21 -0
  3. package/config/easy/HagridSpeaking/code/CGCode.java +22 -0
  4. package/config/easy/HagridSpeaking/code/CGCode.js +9 -0
  5. package/config/easy/HagridSpeaking/code/CGCode.php +11 -0
  6. package/config/easy/HagridSpeaking/code/CGCode.ts +9 -0
  7. package/config/easy/HagridSpeaking/config.json +48 -0
  8. package/config/easy/HagridSpeaking/input/01 - Simple sentences.txt +3 -0
  9. package/config/easy/HagridSpeaking/input/02 - Does Hagrid speak.txt +6 -0
  10. package/config/easy/HagridSpeaking/input/03 - t,f, d and g replacement.txt +8 -0
  11. package/config/easy/HagridSpeaking/input/04 - Word replacement.txt +2 -0
  12. package/config/easy/HagridSpeaking/input/05 - Do yeh forge/342/200/231 the case.txt" +3 -0
  13. package/config/easy/HagridSpeaking/input/06 - Compound Words.txt +2 -0
  14. package/config/easy/HagridSpeaking/input/07 - Edge cases.txt +11 -0
  15. package/config/easy/HagridSpeaking/input/08 - Very long talk.txt +12 -0
  16. package/config/easy/HagridSpeaking/output/01 - Simple sentences.txt +2 -0
  17. package/config/easy/HagridSpeaking/output/02 - Does Hagrid speak.txt +5 -0
  18. package/config/easy/HagridSpeaking/output/03 - t,f, d and g replacement.txt +7 -0
  19. package/config/easy/HagridSpeaking/output/04 - Word replacement.txt +1 -0
  20. package/config/easy/HagridSpeaking/output/05 - Do yeh forge/342/200/231 the case.txt" +2 -0
  21. package/config/easy/HagridSpeaking/output/06 - Compound Words.txt +1 -0
  22. package/config/easy/HagridSpeaking/output/07 - Edge cases.txt +10 -0
  23. package/config/easy/HagridSpeaking/output/08 - Very long talk.txt +11 -0
  24. package/config/medium/SimpleMakefiles/code/CGCode.cpp +34 -0
  25. package/config/medium/SimpleMakefiles/code/CGCode.java +31 -0
  26. package/config/medium/SimpleMakefiles/code/CGCode.js +20 -0
  27. package/config/medium/SimpleMakefiles/code/CGCode.php +22 -0
  28. package/config/medium/SimpleMakefiles/code/CGCode.ts +20 -0
  29. package/config/medium/SimpleMakefiles/config.json +83 -0
  30. package/config/medium/SimpleMakefiles/input/01 - Problem statement example.txt +12 -0
  31. package/config/medium/SimpleMakefiles/input/02 - Up-to-date check and partial rebuild.txt +13 -0
  32. package/config/medium/SimpleMakefiles/input/03 - Single rule with no actions.txt +6 -0
  33. package/config/medium/SimpleMakefiles/input/04 - Up-to-date ages.txt +14 -0
  34. package/config/medium/SimpleMakefiles/input/05 - Multiple goal targets.txt +16 -0
  35. package/config/medium/SimpleMakefiles/input/06 - No-action intermediates and unused rules.txt +19 -0
  36. package/config/medium/SimpleMakefiles/input/07 - Multiple targets with identical prerequisites.txt +18 -0
  37. package/config/medium/SimpleMakefiles/input/08 - Built-in macros and comments.txt +19 -0
  38. package/config/medium/SimpleMakefiles/input/09 - Same target in multiple rules.txt +23 -0
  39. package/config/medium/SimpleMakefiles/input/10 - Large partial rebuild.txt +25 -0
  40. package/config/medium/SimpleMakefiles/input/11 - Cycle detection.txt +22 -0
  41. package/config/medium/SimpleMakefiles/input/12 - Unreachable cycle detection.txt +22 -0
  42. package/config/medium/SimpleMakefiles/input/13 - All rebuild features combined.txt +40 -0
  43. package/config/medium/SimpleMakefiles/input/14 - Multiple action lines per rule.txt +25 -0
  44. package/config/medium/SimpleMakefiles/input/15 - Kitchen sink.txt +56 -0
  45. package/config/medium/SimpleMakefiles/output/01 - Problem statement example.txt +4 -0
  46. package/config/medium/SimpleMakefiles/output/02 - Up-to-date check and partial rebuild.txt +3 -0
  47. package/config/medium/SimpleMakefiles/output/03 - Single rule with no actions.txt +1 -0
  48. package/config/medium/SimpleMakefiles/output/04 - Up-to-date ages.txt +1 -0
  49. package/config/medium/SimpleMakefiles/output/05 - Multiple goal targets.txt +4 -0
  50. package/config/medium/SimpleMakefiles/output/06 - No-action intermediates and unused rules.txt +3 -0
  51. package/config/medium/SimpleMakefiles/output/07 - Multiple targets with identical prerequisites.txt +4 -0
  52. package/config/medium/SimpleMakefiles/output/08 - Built-in macros and comments.txt +6 -0
  53. package/config/medium/SimpleMakefiles/output/09 - Same target in multiple rules.txt +5 -0
  54. package/config/medium/SimpleMakefiles/output/10 - Large partial rebuild.txt +4 -0
  55. package/config/medium/SimpleMakefiles/output/11 - Cycle detection.txt +1 -0
  56. package/config/medium/SimpleMakefiles/output/12 - Unreachable cycle detection.txt +1 -0
  57. package/config/medium/SimpleMakefiles/output/13 - All rebuild features combined.txt +8 -0
  58. package/config/medium/SimpleMakefiles/output/14 - Multiple action lines per rule.txt +11 -0
  59. package/config/medium/SimpleMakefiles/output/15 - Kitchen sink.txt +14 -0
  60. package/config/medium/Squares/code/CGCode.cpp +30 -0
  61. package/config/medium/Squares/code/CGCode.java +27 -0
  62. package/config/medium/Squares/code/CGCode.js +20 -0
  63. package/config/medium/Squares/code/CGCode.php +15 -0
  64. package/config/medium/Squares/code/CGCode.ts +20 -0
  65. package/config/medium/Squares/config.json +38 -0
  66. package/config/medium/Squares/input/01 - Example.txt +10 -0
  67. package/config/medium/Squares/input/02 - Overlap.txt +17 -0
  68. package/config/medium/Squares/input/03 - Fat Squares.txt +15 -0
  69. package/config/medium/Squares/input/04 - Black Hole.txt +20 -0
  70. package/config/medium/Squares/input/05 - Venn.txt +28 -0
  71. package/config/medium/Squares/input/06 - Dartboard.txt +51 -0
  72. package/config/medium/Squares/output/01 - Example.txt +7 -0
  73. package/config/medium/Squares/output/02 - Overlap.txt +12 -0
  74. package/config/medium/Squares/output/03 - Fat Squares.txt +10 -0
  75. package/config/medium/Squares/output/04 - Black Hole.txt +15 -0
  76. package/config/medium/Squares/output/05 - Venn.txt +23 -0
  77. package/config/medium/Squares/output/06 - Dartboard.txt +46 -0
  78. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ 0
2
+ 1
3
+ server
4
+ 18
5
+ # Cycle detection test
6
+ server: A B
7
+ start $<
8
+ A: B C
9
+ build A
10
+ B: D
11
+ build B
12
+ C: D
13
+ build C
14
+ D: A
15
+ build D
16
+ # Unreachable targets
17
+ E:
18
+ setup E
19
+ X: Y
20
+ build X
21
+ Y:
22
+ build Y
@@ -0,0 +1,22 @@
1
+ 0
2
+ 1
3
+ server
4
+ 18
5
+ # Cycle detection test
6
+ server: A B
7
+ start $<
8
+ A: B C
9
+ build A
10
+ B: D
11
+ build B
12
+ C: D
13
+ build C
14
+ D:
15
+ build D
16
+ # Unreachable targets that form a cycle
17
+ E: X
18
+ setup E
19
+ X: Y
20
+ build X
21
+ Y: E
22
+ build Y
@@ -0,0 +1,40 @@
1
+ 12
2
+ sdk.h 100
3
+ algo.c 300
4
+ parser.c 100
5
+ render.c 100
6
+ logger.c 100
7
+ algo.o 200
8
+ parser.o 150
9
+ render.o 80
10
+ logger.o 200
11
+ libcore.a 170
12
+ librender.a 170
13
+ config.h 90
14
+ 1
15
+ app
16
+ 24
17
+ # Top-level application build
18
+ app: librender.a libcore.a
19
+ ld $^ -o $@
20
+ # Core library: algo and parser modules
21
+ libcore.a: algo.o parser.o
22
+ ar rcs $@ $^
23
+ libcore.a: logger.o
24
+ ar rcs $@ $^
25
+ # Render library
26
+ librender.a: render.o
27
+ ar rcs $@ $^
28
+ # Compile each module
29
+ algo.o: algo.c sdk.h generate
30
+ cc -c $< -o $@
31
+ parser.o: parser.c sdk.h
32
+ cc -c $< -o $@
33
+ render.o: render.c sdk.h
34
+ cc -c $< -o $@
35
+ logger.o: logger.c
36
+ cc -c $< -o $@
37
+ config.h:
38
+ configure config.h
39
+ generate:
40
+ gen generate
@@ -0,0 +1,25 @@
1
+ 2
2
+ src.c 100
3
+ config.ini 200
4
+ 1
5
+ release
6
+ 19
7
+ # Multi-step build with validation
8
+ release: app docs
9
+ verify $^
10
+ publish $@
11
+ app: config.ini lib.o src.o
12
+ link $^ -o $@
13
+ validate $@
14
+ lib.o: lib.c config.ini
15
+ cc -c $< -o $@
16
+ test $@
17
+ src.o: src.c
18
+ cc -c $< -o $@
19
+ docs:
20
+ generate docs
21
+ index docs
22
+ lib.c:
23
+ fetch
24
+ config.ini:
25
+ init config.ini
@@ -0,0 +1,56 @@
1
+ 9
2
+ hdr.h 100
3
+ base.c 400
4
+ data.cfg 100
5
+ base.o 300
6
+ shared.h 500
7
+ cache.o 500
8
+ lib.a 200
9
+ util.o 150
10
+ junk.bak 50
11
+ 2
12
+ app tests
13
+ 43
14
+ # KitchenSink: all-features build
15
+ # whitespace comment
16
+
17
+
18
+ tests : lib.a util.o shared.dep # all outputs
19
+ # Link everything together
20
+ link $^ -o $@
21
+ done
22
+ app : lib.a util.o shared.dep
23
+ link $^ -o $@
24
+ done
25
+ app: config.o # extra dep
26
+ setup $<
27
+ # Note here that lib.a appears in multiple rules
28
+ # including a rule with multiple targets
29
+ lib.a: base.o cache.o
30
+ ar rcs $@ $^
31
+ libb.a: base.o cache.o
32
+ ar rcs $@ $^
33
+ lib.a: util.o
34
+ stamp $^
35
+ base.o: base.c hdr.h
36
+ cc -c $< -o $@
37
+ cache.o: shared.h hdr.h # compile
38
+ cc -c $< -o $@ # compile
39
+
40
+ # Case with no space after colon
41
+ util.o:data.cfg hdr.h
42
+ cc -c $< -o $@
43
+ config.o: hdr.h # extra module
44
+ cc -c $< -o $@
45
+ config.o: hdr.h hdr.h
46
+ redo $<
47
+ data.cfg:
48
+ init data.cfg
49
+ init:
50
+ echo $^
51
+ shared.dep: init
52
+ cache.o: hdr.h
53
+ touch $@
54
+ tag: # release tag
55
+ garbage: junk.bak
56
+ delete $<
@@ -0,0 +1,4 @@
1
+ gcc -c main.c -o main.o
2
+ gcc -c util.c -o util.o
3
+ gcc -o all util.o main.o
4
+ [Build complete]
@@ -0,0 +1,3 @@
1
+ cc -c src.c -o main.o
2
+ link main.o util.o -o program
3
+ [Build complete]
@@ -0,0 +1,4 @@
1
+ generate result-d
2
+ process data.raw -o result-a
3
+ process data.raw -o result-b
4
+ [Build complete]
@@ -0,0 +1,3 @@
1
+ cook seed.dat -o cooked.dat
2
+ publish cooked.dat config output stage
3
+ [Build complete]
@@ -0,0 +1,4 @@
1
+ link-left base.o extra.o
2
+ link-right base.o extra.o
3
+ merge left right
4
+ [Build complete]
@@ -0,0 +1,6 @@
1
+ echo building part-a
2
+ convert raw-a part-a
3
+ convert raw-b part-b
4
+ fetch raw-c
5
+ join part-a part-b raw-c > result
6
+ [Build complete]
@@ -0,0 +1,5 @@
1
+ cc -c part1.c -o part1.o
2
+ stage1 part1.o
3
+ stage2 part2.o header.h
4
+ link lib
5
+ [Build complete]
@@ -0,0 +1,4 @@
1
+ cc -c io.c -o io.o
2
+ make-plugin io.o net.o -o plugin
3
+ ld core.o math.o io.o net.o plugin
4
+ [Build complete]
@@ -0,0 +1 @@
1
+ [Circular dependencies detected]
@@ -0,0 +1 @@
1
+ [Circular dependencies detected]
@@ -0,0 +1,8 @@
1
+ gen generate
2
+ cc -c algo.c -o algo.o
3
+ ar rcs libcore.a algo.o parser.o
4
+ ar rcs libcore.a logger.o
5
+ cc -c render.c -o render.o
6
+ ar rcs librender.a render.o
7
+ ld librender.a libcore.a -o app
8
+ [Build complete]
@@ -0,0 +1,11 @@
1
+ fetch
2
+ cc -c lib.c -o lib.o
3
+ test lib.o
4
+ cc -c src.c -o src.o
5
+ link config.ini lib.o src.o -o app
6
+ validate app
7
+ generate docs
8
+ index docs
9
+ verify app docs
10
+ publish release
11
+ [Build complete]
@@ -0,0 +1,14 @@
1
+ cc -c hdr.h -o config.o
2
+ redo hdr.h
3
+ cc -c base.c -o base.o
4
+ cc -c shared.h -o cache.o
5
+ touch cache.o
6
+ ar rcs lib.a base.o cache.o
7
+ stamp util.o
8
+ echo
9
+ link lib.a util.o shared.dep -o app
10
+ done
11
+ setup config.o
12
+ link lib.a util.o shared.dep -o tests
13
+ done
14
+ [Build complete]
@@ -0,0 +1,30 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int side;
11
+ int m;
12
+ int n;
13
+ cin >> side >> m >> n; cin.ignore();
14
+ for (int i = 0; i < m; i++) {
15
+ int x;
16
+ int y;
17
+ int s;
18
+ cin >> x >> y >> s; cin.ignore();
19
+ }
20
+ for (int i = 0; i < n; i++) {
21
+ int tx;
22
+ int ty;
23
+ cin >> tx >> ty; cin.ignore();
24
+ }
25
+
26
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
27
+ // To debug: cerr << "Debug messages..." << endl;
28
+
29
+ cout << "answer" << endl;
30
+ }
@@ -0,0 +1,27 @@
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 side = in.nextInt();
10
+ int M = in.nextInt();
11
+ int N = in.nextInt();
12
+ for (int i = 0; i < M; i++) {
13
+ int x = in.nextInt();
14
+ int y = in.nextInt();
15
+ int s = in.nextInt();
16
+ }
17
+ for (int i = 0; i < N; i++) {
18
+ int tx = in.nextInt();
19
+ int ty = in.nextInt();
20
+ }
21
+
22
+ // Write an answer using System.out.println()
23
+ // To debug: System.err.println("Debug messages...");
24
+
25
+ System.out.println("answer");
26
+ }
27
+ }
@@ -0,0 +1,20 @@
1
+ var inputs = readline().split(' ');
2
+ const side = parseInt(inputs[0]);
3
+ const M = parseInt(inputs[1]);
4
+ const N = parseInt(inputs[2]);
5
+ for (let i = 0; i < M; i++) {
6
+ var inputs = readline().split(' ');
7
+ const x = parseInt(inputs[0]);
8
+ const y = parseInt(inputs[1]);
9
+ const s = parseInt(inputs[2]);
10
+ }
11
+ for (let i = 0; i < N; i++) {
12
+ var inputs = readline().split(' ');
13
+ const tx = parseInt(inputs[0]);
14
+ const ty = parseInt(inputs[1]);
15
+ }
16
+
17
+ // Write an answer using console.log()
18
+ // To debug: console.error('Debug messages...');
19
+
20
+ console.log('answer');
@@ -0,0 +1,15 @@
1
+ <?php
2
+ fscanf(STDIN, "%d %d %d", $side, $M, $N);
3
+ for ($i = 0; $i < $M; $i++)
4
+ {
5
+ fscanf(STDIN, "%d %d %d", $x, $y, $s);
6
+ }
7
+ for ($i = 0; $i < $N; $i++)
8
+ {
9
+ fscanf(STDIN, "%d %d", $tx, $ty);
10
+ }
11
+
12
+ // Write an answer using echo(). DON'T FORGET THE TRAILING \n
13
+ // To debug: error_log(var_export($var, true)); (equivalent to var_dump)
14
+
15
+ echo("answer\n");
@@ -0,0 +1,20 @@
1
+ var inputs: string[] = readline().split(' ');
2
+ const side: number = parseInt(inputs[0]);
3
+ const M: number = parseInt(inputs[1]);
4
+ const N: number = parseInt(inputs[2]);
5
+ for (let i = 0; i < M; i++) {
6
+ var inputs: string[] = readline().split(' ');
7
+ const x: number = parseInt(inputs[0]);
8
+ const y: number = parseInt(inputs[1]);
9
+ const s: number = parseInt(inputs[2]);
10
+ }
11
+ for (let i = 0; i < N; i++) {
12
+ var inputs: string[] = readline().split(' ');
13
+ const tx: number = parseInt(inputs[0]);
14
+ const ty: number = parseInt(inputs[1]);
15
+ }
16
+
17
+ // Write an answer using console.log()
18
+ // To debug: console.error('Debug messages...');
19
+
20
+ console.log('answer');
@@ -0,0 +1,38 @@
1
+ {
2
+ "path": "medium/Squares",
3
+ "name": "Squares",
4
+ "alphanumName": "Squares",
5
+ "link": "https://www.codingame.com/ide/puzzle/squares",
6
+ "tests": [
7
+ {
8
+ "name": "Example",
9
+ "alphanumName": "Example",
10
+ "file": "01 - Example.txt"
11
+ },
12
+ {
13
+ "name": "Overlap",
14
+ "alphanumName": "Overlap",
15
+ "file": "02 - Overlap.txt"
16
+ },
17
+ {
18
+ "name": "Fat Squares",
19
+ "alphanumName": "FatSquares",
20
+ "file": "03 - Fat Squares.txt"
21
+ },
22
+ {
23
+ "name": "Black Hole",
24
+ "alphanumName": "BlackHole",
25
+ "file": "04 - Black Hole.txt"
26
+ },
27
+ {
28
+ "name": "Venn",
29
+ "alphanumName": "Venn",
30
+ "file": "05 - Venn.txt"
31
+ },
32
+ {
33
+ "name": "Dartboard",
34
+ "alphanumName": "Dartboard",
35
+ "file": "06 - Dartboard.txt"
36
+ }
37
+ ]
38
+ }
@@ -0,0 +1,10 @@
1
+ 100 2 7
2
+ 3 2 4
3
+ 2 4 3
4
+ 3 4
5
+ 5 3
6
+ 1 1
7
+ 2 3
8
+ 4 5
9
+ 5 6
10
+ 4 6
@@ -0,0 +1,17 @@
1
+ 500 4 12
2
+ 2 9 3
3
+ 6 9 3
4
+ 6 9 3
5
+ 2 9 7
6
+ 4 10
7
+ 5 10
8
+ 6 10
9
+ 7 10
10
+ 4 12
11
+ 5 12
12
+ 6 12
13
+ 7 12
14
+ 4 8
15
+ 5 8
16
+ 6 8
17
+ 7 8
@@ -0,0 +1,15 @@
1
+ 1000 4 10
2
+ 1 1 700
3
+ 501 501 500
4
+ 499 500 3
5
+ 10 900 2
6
+ 2 3
7
+ 4 5
8
+ 6 7
9
+ 100 200
10
+ 400 753
11
+ 500 500
12
+ 999 1
13
+ 533 599
14
+ 1000 1000
15
+ 501 502
@@ -0,0 +1,20 @@
1
+ 10000 4 15
2
+ 4 5 2
3
+ 2 7 2
4
+ 6 7 2
5
+ 4 9 2
6
+ 1 7
7
+ 2 7
8
+ 3 7
9
+ 4 7
10
+ 5 7
11
+ 6 7
12
+ 7 7
13
+ 8 7
14
+ 5 5
15
+ 5 6
16
+ 5 7
17
+ 5 8
18
+ 5 9
19
+ 1 1
20
+ 10000 10000
@@ -0,0 +1,28 @@
1
+ 15000 4 23
2
+ 9005 8573 6
3
+ 9002 8575 7
4
+ 9004 8577 8
5
+ 9006 8576 8
6
+ 9007 8577
7
+ 9005 8575
8
+ 9004 8581
9
+ 9011 8583
10
+ 9010 8576
11
+ 9007 8576
12
+ 9005 8578
13
+ 9007 8580
14
+ 9010 8578
15
+ 9007 8573
16
+ 9002 8578
17
+ 9008 8584
18
+ 9013 8580
19
+ 9002 8584
20
+ 5260 1080
21
+ 9010 1080
22
+ 12760 1080
23
+ 5260 4830
24
+ 9010 4830
25
+ 12760 4830
26
+ 5260 8580
27
+ 9010 8580
28
+ 12760 8580
@@ -0,0 +1,51 @@
1
+ 20000 4 46
2
+ 9 3 5
3
+ 10 4 3
4
+ 11 5 1
5
+ 13 5 1
6
+ 1 3
7
+ 2 3
8
+ 3 3
9
+ 4 3
10
+ 5 3
11
+ 6 3
12
+ 7 3
13
+ 8 3
14
+ 9 3
15
+ 10 3
16
+ 11 3
17
+ 12 3
18
+ 13 3
19
+ 14 3
20
+ 1 4
21
+ 2 4
22
+ 3 4
23
+ 4 4
24
+ 5 4
25
+ 6 4
26
+ 7 4
27
+ 8 4
28
+ 9 4
29
+ 10 4
30
+ 11 4
31
+ 12 4
32
+ 13 4
33
+ 14 4
34
+ 1 5
35
+ 2 5
36
+ 3 5
37
+ 4 5
38
+ 5 5
39
+ 6 5
40
+ 7 5
41
+ 8 5
42
+ 9 5
43
+ 10 5
44
+ 11 5
45
+ 12 5
46
+ 13 5
47
+ 14 5
48
+ 10000 10000
49
+ 18888 19999
50
+ 1 7000
51
+ 9000 100
@@ -0,0 +1,7 @@
1
+ 4
2
+ 12
3
+ 9979
4
+ 9979
5
+ 4
6
+ 9979
7
+ 5
@@ -0,0 +1,12 @@
1
+ 9
2
+ 31
3
+ 9
4
+ 9
5
+ 31
6
+ 31
7
+ 31
8
+ 31
9
+ 249951
10
+ 249951
11
+ 249951
12
+ 249951
@@ -0,0 +1,10 @@
1
+ 449993
2
+ 449993
3
+ 449993
4
+ 449993
5
+ 149996
6
+ 7
7
+ 150000
8
+ 39998
9
+ 210000
10
+ 2
@@ -0,0 +1,15 @@
1
+ 99999980
2
+ 4
3
+ 4
4
+ 4
5
+ 4
6
+ 4
7
+ 4
8
+ 99999980
9
+ 4
10
+ 4
11
+ 4
12
+ 4
13
+ 4
14
+ 99999980
15
+ 99999980
@@ -0,0 +1,23 @@
1
+ 6
2
+ 5
3
+ 8
4
+ 23
5
+ 2
6
+ 3
7
+ 2
8
+ 9
9
+ 4
10
+ 14
11
+ 16
12
+ 12
13
+ 17
14
+ 224999879
15
+ 224999879
16
+ 224999879
17
+ 224999879
18
+ 224999879
19
+ 224999879
20
+ 224999879
21
+ 224999879
22
+ 23
23
+ 224999879