@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.
- package/CHANGELOG.md +6 -0
- package/config/easy/HagridSpeaking/code/CGCode.cpp +21 -0
- package/config/easy/HagridSpeaking/code/CGCode.java +22 -0
- package/config/easy/HagridSpeaking/code/CGCode.js +9 -0
- package/config/easy/HagridSpeaking/code/CGCode.php +11 -0
- package/config/easy/HagridSpeaking/code/CGCode.ts +9 -0
- package/config/easy/HagridSpeaking/config.json +48 -0
- package/config/easy/HagridSpeaking/input/01 - Simple sentences.txt +3 -0
- package/config/easy/HagridSpeaking/input/02 - Does Hagrid speak.txt +6 -0
- package/config/easy/HagridSpeaking/input/03 - t,f, d and g replacement.txt +8 -0
- package/config/easy/HagridSpeaking/input/04 - Word replacement.txt +2 -0
- package/config/easy/HagridSpeaking/input/05 - Do yeh forge/342/200/231 the case.txt" +3 -0
- package/config/easy/HagridSpeaking/input/06 - Compound Words.txt +2 -0
- package/config/easy/HagridSpeaking/input/07 - Edge cases.txt +11 -0
- package/config/easy/HagridSpeaking/input/08 - Very long talk.txt +12 -0
- package/config/easy/HagridSpeaking/output/01 - Simple sentences.txt +2 -0
- package/config/easy/HagridSpeaking/output/02 - Does Hagrid speak.txt +5 -0
- package/config/easy/HagridSpeaking/output/03 - t,f, d and g replacement.txt +7 -0
- package/config/easy/HagridSpeaking/output/04 - Word replacement.txt +1 -0
- package/config/easy/HagridSpeaking/output/05 - Do yeh forge/342/200/231 the case.txt" +2 -0
- package/config/easy/HagridSpeaking/output/06 - Compound Words.txt +1 -0
- package/config/easy/HagridSpeaking/output/07 - Edge cases.txt +10 -0
- package/config/easy/HagridSpeaking/output/08 - Very long talk.txt +11 -0
- package/config/medium/SimpleMakefiles/code/CGCode.cpp +34 -0
- package/config/medium/SimpleMakefiles/code/CGCode.java +31 -0
- package/config/medium/SimpleMakefiles/code/CGCode.js +20 -0
- package/config/medium/SimpleMakefiles/code/CGCode.php +22 -0
- package/config/medium/SimpleMakefiles/code/CGCode.ts +20 -0
- package/config/medium/SimpleMakefiles/config.json +83 -0
- package/config/medium/SimpleMakefiles/input/01 - Problem statement example.txt +12 -0
- package/config/medium/SimpleMakefiles/input/02 - Up-to-date check and partial rebuild.txt +13 -0
- package/config/medium/SimpleMakefiles/input/03 - Single rule with no actions.txt +6 -0
- package/config/medium/SimpleMakefiles/input/04 - Up-to-date ages.txt +14 -0
- package/config/medium/SimpleMakefiles/input/05 - Multiple goal targets.txt +16 -0
- package/config/medium/SimpleMakefiles/input/06 - No-action intermediates and unused rules.txt +19 -0
- package/config/medium/SimpleMakefiles/input/07 - Multiple targets with identical prerequisites.txt +18 -0
- package/config/medium/SimpleMakefiles/input/08 - Built-in macros and comments.txt +19 -0
- package/config/medium/SimpleMakefiles/input/09 - Same target in multiple rules.txt +23 -0
- package/config/medium/SimpleMakefiles/input/10 - Large partial rebuild.txt +25 -0
- package/config/medium/SimpleMakefiles/input/11 - Cycle detection.txt +22 -0
- package/config/medium/SimpleMakefiles/input/12 - Unreachable cycle detection.txt +22 -0
- package/config/medium/SimpleMakefiles/input/13 - All rebuild features combined.txt +40 -0
- package/config/medium/SimpleMakefiles/input/14 - Multiple action lines per rule.txt +25 -0
- package/config/medium/SimpleMakefiles/input/15 - Kitchen sink.txt +56 -0
- package/config/medium/SimpleMakefiles/output/01 - Problem statement example.txt +4 -0
- package/config/medium/SimpleMakefiles/output/02 - Up-to-date check and partial rebuild.txt +3 -0
- package/config/medium/SimpleMakefiles/output/03 - Single rule with no actions.txt +1 -0
- package/config/medium/SimpleMakefiles/output/04 - Up-to-date ages.txt +1 -0
- package/config/medium/SimpleMakefiles/output/05 - Multiple goal targets.txt +4 -0
- package/config/medium/SimpleMakefiles/output/06 - No-action intermediates and unused rules.txt +3 -0
- package/config/medium/SimpleMakefiles/output/07 - Multiple targets with identical prerequisites.txt +4 -0
- package/config/medium/SimpleMakefiles/output/08 - Built-in macros and comments.txt +6 -0
- package/config/medium/SimpleMakefiles/output/09 - Same target in multiple rules.txt +5 -0
- package/config/medium/SimpleMakefiles/output/10 - Large partial rebuild.txt +4 -0
- package/config/medium/SimpleMakefiles/output/11 - Cycle detection.txt +1 -0
- package/config/medium/SimpleMakefiles/output/12 - Unreachable cycle detection.txt +1 -0
- package/config/medium/SimpleMakefiles/output/13 - All rebuild features combined.txt +8 -0
- package/config/medium/SimpleMakefiles/output/14 - Multiple action lines per rule.txt +11 -0
- package/config/medium/SimpleMakefiles/output/15 - Kitchen sink.txt +14 -0
- package/config/medium/Squares/code/CGCode.cpp +30 -0
- package/config/medium/Squares/code/CGCode.java +27 -0
- package/config/medium/Squares/code/CGCode.js +20 -0
- package/config/medium/Squares/code/CGCode.php +15 -0
- package/config/medium/Squares/code/CGCode.ts +20 -0
- package/config/medium/Squares/config.json +38 -0
- package/config/medium/Squares/input/01 - Example.txt +10 -0
- package/config/medium/Squares/input/02 - Overlap.txt +17 -0
- package/config/medium/Squares/input/03 - Fat Squares.txt +15 -0
- package/config/medium/Squares/input/04 - Black Hole.txt +20 -0
- package/config/medium/Squares/input/05 - Venn.txt +28 -0
- package/config/medium/Squares/input/06 - Dartboard.txt +51 -0
- package/config/medium/Squares/output/01 - Example.txt +7 -0
- package/config/medium/Squares/output/02 - Overlap.txt +12 -0
- package/config/medium/Squares/output/03 - Fat Squares.txt +10 -0
- package/config/medium/Squares/output/04 - Black Hole.txt +15 -0
- package/config/medium/Squares/output/05 - Venn.txt +23 -0
- package/config/medium/Squares/output/06 - Dartboard.txt +46 -0
- 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:
|
|
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 @@
|
|
|
1
|
+
[Build complete]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[Build complete]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[Circular dependencies detected]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[Circular dependencies detected]
|
|
@@ -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,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
|