-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
56 lines (56 loc) · 917 Bytes
/
config.json
File metadata and controls
56 lines (56 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"description": "多层多袋球抽取与变化的复杂概率问题 - 难度系数10",
"bags_config": {
"1": {
"R": 80,
"Y": 60,
"B": 100
},
"2": {
"P": 80,
"Pk": 30
},
"3": {
"G": 30,
"K": 80,
"W": 160
}
},
"operations": [
{
"bag_id": 1,
"draw_count": 3,
"operation_type": "draw"
},
{
"bag_id": 2,
"draw_count": 2,
"operation_type": "draw"
},
{
"bag_id": 3,
"draw_count": 1,
"operation_type": "draw"
},
{
"bag_id": 1,
"draw_count": 3,
"operation_type": "discard"
},
{
"bag_id": 2,
"draw_count": 1,
"operation_type": "return"
},
{
"bag_id": 1,
"draw_count": 5,
"operation_type": "draw"
},
{
"bag_id": 1,
"draw_count": 2,
"operation_type": "draw"
}
]
}