meta_data
dict
task
stringclasses
13 values
answer
stringlengths
1
135
prompt
stringlengths
19
4.04k
image_1
stringlengths
14
44
image_2
stringclasses
40 values
id
int64
1
1.22k
{ "difficulty": null }
ocr
caiognr
what is written in the image?
data/ocr/27.jpg
null
101
{ "difficulty": null }
math
D
When m=15, N_m = ( ) A. 60 B. 63 C. 65 D. 67 E. 70 F. 73 G. 75
data/math/64.png
null
102
{ "difficulty": null }
math
5
How many columns contain a value greater than 44? Answer with a single number, such as 1, 2, 3.
data/math/42.png
null
103
{ "difficulty": null }
color
B
What is the number in the center of this image? Select from the following choices. (A) 18 (B) 19 (C) 21 (D) 24
data/color/27.png
null
104
{ "difficulty": 5 }
jigsaw
[6, 24, 14, 4, 13, 2, 22, 15, 11, 18, 12, 23, 10, 19, 5, 1, 25, 3, 9, 7, 20, 16, 17, 21, 8]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_86.jpg
null
105
{ "difficulty": null }
color
B
What is the number in the center of this image? Select from the following choices. (A) 18 (B) 22 (C) 23 (D) 26
data/color/30.png
null
106
{ "difficulty": null }
word_search
[19, 41]
图中东字在出现在第几行第几列?最后答案输出两个数字,第一个数字代表从上往下多少行,第二个数字代表从左往右列。例如[1, 2]代表第一行第二列
data/word_search/35.jpg
null
107
{ "difficulty": 3 }
jigsaw
[1, 7, 9, 6, 3, 2, 8, 5, 4]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_14.jpg
null
108
{ "difficulty": null }
color
D
How many colors are there in this image? Select from the following choices. (A) 7 (B) 8 (C) 9 (D) 10
data/color/21.png
null
109
{ "difficulty": null }
ocr
6262
what is the number in the image?
data/ocr/85.jpg
null
110
{ "difficulty": null }
word_search
7
图中有多少个卅字?回答一个数字,例如1,2,3。
data/word_search/51.jpg
null
111
{ "difficulty": 4 }
jigsaw
[13, 7, 4, 12, 8, 16, 15, 2, 11, 14, 6, 9, 1, 3, 5, 10]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_43.jpg
null
112
{ "difficulty": null }
ocr
15950
what is the number in the image?
data/ocr/84.jpg
null
113
{ "difficulty": 5 }
jigsaw
[9, 14, 20, 24, 3, 10, 18, 13, 23, 7, 11, 17, 1, 19, 2, 6, 12, 5, 16, 22, 4, 21, 15, 8, 25]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_83.jpg
null
114
{ "difficulty": null }
rotation_game
D
How many degrees should you rotate this image CLOCKWISE to restore it to its original orientation? A. 150° B. 100° C. 135° D. 120° E. 90° F. 105°
data/rotation_game/rotated_65.png
null
115
{ "difficulty": null }
spot_difference
2, 6, 8, 9, 11, 15, 18
**Task Description:** Given two images of identical dimensions, each divided by thin white lines into n rows and m columns, resulting in n×m small patches. The numbering rules are as follows: 1. Patches are numbered from 1 to n×m. 2. Numbering follows row-major order: the first row from left to right is 1, 2, …, m; the first patch of the second row is m+1, and so on. The i-th patch in the left image corresponds to the i-th patch in the right image. Your tasks are: 1. Identify all objects or regions that differ between the two images. 2. Return a list of patch indices occupied by each differing object. * If an object spans multiple adjacent patches, include all those patch indices. 3. Finally, output a deduplicated, ascending-sorted list of indices representing every patch that contains a difference. --- **Output Format:** ```json { "different_patches": [i1, i2, i3, …] } ``` * `different_patches`: an array of integers containing all patch indices where the two images differ, deduplicated and sorted in ascending order. --- **Example:** Suppose n=3 and m=4, giving 12 patches total. If patches 2, 5, 6, and 10 differ between the left and right images, the output should be: ```json { "different_patches": [2, 5, 6, 10] } ``` --- **Problem:** Output the list of patch indices where the two images differ. Note that in this image, n is 5 and m is 5
data/spot_difference/54.png
null
116
{ "difficulty": null }
refcoco
B
Which of the following values is the closest to the proportion of the image occupied by bowl of carrots? A: 76% B: 52% C: 36% D: 68% E: 60% F: 44%
data/refcoco/COCO_train2014_000000071399.jpg
null
117
{ "difficulty": null }
math
E
As shown in the figure, with C as the center and CD as the radius, how many intersection points does the circle have with EF and GH, respectively? A. 1, 1 B. 0, 2 C. 0, 0 D. 1, 0 E. 1, 2 F. 2, 2
data/math/133.png
null
118
{ "difficulty": null }
maze
F
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RRDRDLRRUUDDRRDDDUDDRDDLRDURLDDRDRRDRRDDRRLRRDLRDDRDRDDRRDRDUDDLRRLUDULDRDRUURRDURDDUUDDRRDURRDDRLRRDDDDDRRDUDLDURLR B. DUULDLULUULDUULDLDLLLRLUDRLLDRURUDLDRRDRULULRLDLULRRDRRRDLLRLRRDLDLRLLDDDDLDRLDLLDRDLDDDDLUUULRRRRULRURRDUDLDRUUUULDDRRRULLDULLLDDRDLDLRDDDRLRDLUUDURUUDDRLDURRRLURLUURDDRDLUDDRRDRRDLURURRDRRRUDDRRLRDRDRDRULURLLUUDDLRRURLLDLULRLLLDLRULLDRDUDDDUULUDDRLRDLULUULUUDULLLDLLLLUDRLUURDRURLULRDUDRDDRLRLLLUDDDDDRRLDLLURRUDDDDUULRRDRULULURUURUDDU C. RUURLRRDURDRDDRRURRDDURRDURRDDDLDLRDDLRDDLRRRRRURRLDDLLUDRDDDDLRLRDRDRDDRDRDRLURUDDRRUUDDDRDRUDDLRLRDDUDLDURDDRRRDUDLDRDDRRRULURRDDD D. URDRULLDLUURDDLLURLRRLDRLUULUULDDRDUUDULULDULLRRLLDDDDDDRDLLUUDRLLDDULRDUULUUUDUURURLLUDUURUUUDRRLUDDLLDUULLDLDDLRLDLUDRDDDRUURULDLLRUURLLLDRUDURDULDLRRDUDLUDUDULLUDRLDLRDDRDULUULUUUDLURDLUULDULLURRRULDRUDRRURURRDLRULLUDULURURLLUULLUUDUUDUDRLURUDLDRLURUDRURLDUDLRDULULRDDRDDDURRUUDULRLUDURLUUDLRUDURLDDDRURLDLLDDRLRRRURUDRLRDURRLUDLRULRL E. LDRURDLDLRURDLRUDDDDRRRURUDRURURURLRRLDDRRDUDRLULRURULDRDDDDLDRLDDDURURDRUUUDRLUDRUDDDURDLLLDRDUURDRRURRDRDLRRLRDDDRDDDDDDDRRDDRRRRDURLRDDDUDUDDRDDRLDULRRLRDDDR F. No answer
data/maze/77.png
null
119
{ "difficulty": null }
maze
F
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RLLLULRRLULLRLDRLUUDDDRRRLRLRRUURLURRRRURLULRDRLLUDDRRRLURLUDDRRRRRDLULLUUURUDDUDRDURUURDLDUDDLRRURDRLUUULLUUDRURLLLURURUUULDDURLLRUDLLUDRDULLUUDLRUUDUUDDLRDUDRRDLUDDLULRRRUURDRRUDLUDLDLRUUDLRLRUDUDUURUDRRUURRLDLDRLULDRRULLUDUDRLRDDUDDLRDLULRDLDURUUDRRRUULLULDDLDDDRRUDLURLRUUDUUURRLLDRUDRLLULRLRDRDLURRUULLDDUUURLUURDUULDRUDDRRU B. RRDRRDRLURDUDDRRLRRUDRDURLLRURRRLLDRRRUDDDDRLRRURDLLRDDRDRDRRRDULRURUULDUDRDDDDUDRDDDLDRRRDDUDLDDDDRDUUUDUURRRDRRDRRDDDRRRUDLDDRRRDULURDRDDDLDDDDDDRDLUDDRRDLDRLRDULUDRRDRUD C. LULLRUDDDRRUUDLDUDLDRUDRRRRLUDRDRLUDURUURRURDRDDRDUUULDRLDDDRLDURUURULLRRLUDRRURLUDDLUDRRRURURLLRDDDDDLUUDLRUDURULRULUDDLDULLUUDUUDRLUUUULRRDUDRRULRDDUDLDLURUURLLDLDURUUDLULLULLDURRDLUUULDRUDRRUDDRUUDRDLUDDDRUUDUDDLULLLDDDURDDRLRULULDLRLUUURRRRURDDDDLDULRRULLRRDUUULDDLDLURULURRRULLDLRDUUDDRUDUULDRLDUUDDDULLLURDLRLDRDDLLLURUDLRDL D. DDLLRRRDULDLRRRRDUDDRDRDRRDDDDURDDRRRUDRDRDDDRRRURULDUULLRDRRDDRDRRDDRRDDDUUDUDRRDRRLRRURDDDDRRRDDDLRURRDDDLRRDDDLDRDLDRRLURLRDDRLRRDDUDRRDDLRUR E. URDUDDLDRDRRRDRDDRLDDRUDDDLDDRDLUDLRDRUDDDRDDDDDRUDRDRURRRLRDDLLDRULRRDRRDRRURRURDLRLRRDRRURRLRRLRDLDURDUDRDRRUDRRDDDUURDRRLDDDRDLDRDRDRDDUUDRRRDDDLRR F. No answer
data/maze/94.png
null
120
{ "difficulty": null }
contrast
3
How many computer mice are in the image?
data/contrast/49_low.png
null
121
{ "difficulty": null }
visual_search
9
To what number is the hour hand of the clock pointing closest? Answer 1-12.
data/visual_search/temp_18.jpg
null
122
{ "difficulty": null }
refcoco
A
Which of the following values is the closest to the proportion of the image occupied by short guy white shirt? A: 4% B: 28% C: 44% D: 12% E: 20% F: 36%
data/refcoco/COCO_train2014_000000488127.jpg
null
123
{ "difficulty": null }
rotation_game
C
How many degrees should you rotate this image CLOCKWISE to restore it to its original orientation? A. 195° B. 225° C. 205° D. 190° E. 215° F. 185°
data/rotation_game/rotated_37.png
null
124
{ "difficulty": null }
maze
A
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. DDRRUURRDDDD B. UURRRLLRLDLDUDDUDRULLDDRRDRDRUDUURRRDLLLDDURDRDLRLRDULLURD C. DLDRDRRURURDRRRLLUUUDD D. DURDRRDDDURLURURRLRRRRRDRDRUUURRDDUDDDDDDLRRRRLUDDDURDDULURRRDLRLURRUULUDRRUURRLULDDUULLUUDRRLRDD E. DDRDDDDDLLLLUURRDLDUULRLDRDRLLLRLDRLRRLURRRLLDDDRLUURDUUDULRURLRURUURUDRRLLURDDURLDLRR F. No answer
data/maze/4.png
null
125
{ "difficulty": null }
maze
A
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. DDDDRRDDRRRRUUUURRUURRDDDDLLDDRRDDLLDDLLLLDDLLUUUULLDDDDDDDDRRRRUURRUURRRRDDRRRRUULLUUUURRUULLUUUUUURRDDRRDDDDDDDDDDDDDD B. UURULRLLDDLDDLULRDDDRRRLRDRURRRLRURURDDRDLLLDDRDDUDUULRDLRLDDULRDLRDRURRDUURDRUURRDRDRDRRRDDLDRRLDDD C. LDLLRULRLDRDDDULRLLLRURUDUULDDLULRDRRDDUURLRLULDDDDLLRDLRDUDRDRDULDRRUDURDLDUURDULUDRRUDRUDLRDLLLULLDURLULRRLDLLRRURURLDUDRRURLRLLULRLUDRRRRDLU D. RRUDDDRRRULRDRRLDDRDDDRURURURDRDDRRRUDURRDUDRLULDLDRDLDDRRDRDRDUUUDRUUDLLRLLDDLRDRLUDLDLRDDRLLLUDDLUUDLDDUDUDRDURUUUUDDLRURRRUDL E. UUUDRUURDRDDUDDLURUUDUURLDLLDLRUDLRLRLRULLLUUUDRRLURRULUURLRDDUDLDLRRDDLDDDULRRRLDUUUURDRULRDLRRRDLDDLUDLRDUURLRDDUDDUUULLULLDDRLUDRUURRULDDLRLRULD F. No answer
data/maze/37.png
null
126
{ "difficulty": 5 }
jigsaw
[2, 12, 23, 3, 11, 1, 16, 4, 6, 19, 10, 13, 5, 14, 25, 22, 20, 8, 17, 18, 9, 24, 21, 7, 15]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_84.jpg
null
127
{ "difficulty": 5 }
jigsaw
[21, 23, 6, 16, 19, 18, 25, 17, 2, 10, 5, 11, 14, 7, 13, 3, 24, 1, 12, 9, 4, 20, 15, 8, 22]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_85.jpg
null
128
{ "difficulty": null }
word_search
[18, 27]
In the figure, in which row and column does the number 7 appear? The final answer should output two number list. The first number represents the row count from top to bottom, and the second number represents the column count from left to right. For example, [1, 2] means the first row and the second column.
data/word_search/9.jpg
null
129
{ "difficulty": 3 }
jigsaw
[3, 9, 4, 6, 8, 5, 2, 7, 1]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_22.jpg
null
130
{ "difficulty": null }
spot_difference
1, 2, 3, 8, 11, 12, 14, 16, 17
**Task Description:** Given two images of identical dimensions, each divided by thin white lines into n rows and m columns, resulting in n×m small patches. The numbering rules are as follows: 1. Patches are numbered from 1 to n×m. 2. Numbering follows row-major order: the first row from left to right is 1, 2, …, m; the first patch of the second row is m+1, and so on. The i-th patch in the left image corresponds to the i-th patch in the right image. Your tasks are: 1. Identify all objects or regions that differ between the two images. 2. Return a list of patch indices occupied by each differing object. * If an object spans multiple adjacent patches, include all those patch indices. 3. Finally, output a deduplicated, ascending-sorted list of indices representing every patch that contains a difference. --- **Output Format:** ```json { "different_patches": [i1, i2, i3, …] } ``` * `different_patches`: an array of integers containing all patch indices where the two images differ, deduplicated and sorted in ascending order. --- **Example:** Suppose n=3 and m=4, giving 12 patches total. If patches 2, 5, 6, and 10 differ between the left and right images, the output should be: ```json { "different_patches": [2, 5, 6, 10] } ``` --- **Problem:** Output the list of patch indices where the two images differ. Note that in this image, n is 5 and m is 5
data/spot_difference/78.png
null
131
{ "difficulty": null }
refcoco
D
Which of the following values is the closest to the proportion of the image occupied by girl? A: 67% B: 75% C: 35% D: 51% E: 59% F: 43%
data/refcoco/COCO_train2014_000000052086.jpg
null
132
{ "difficulty": null }
math
D
The area of the white part in the square on the right is how many times the area of the white part in the square on the left? A. 3 B. 3.3 C. 3.6 D. 3.9 E. 4.2 F. 4.5 G. 5
data/math/119.png
null
133
{ "difficulty": null }
ocr
rcaihttnu
what is written in the image?
data/ocr/53.jpg
null
134
{ "difficulty": null }
instrument
7
What integer is the large hand pointing to on the unobstructed green clock at the lower right in the image? Answer as an integer like 1,2,3.
data/instrument/28.jpg
null
135
{ "difficulty": null }
maze
A
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RRDDRRRRUURRDDDDRRUURRDDRRRRUURRDDDDDDDDRRUURRDDRRDDLLLLLLDDRRDDDDDDDDDDDDDDDDDDLLLLUUUUUURRUUUUUULLUULLUULLLLUUUULLLLDDDDRRDDRRDDDDDDLLDDLLUULLUULLUUUUUURRUUUUUUUULLDDDDDDLLDDDDDDDDDDDDRRRRDDDDDDRRRRDDLLDDLLUULLLLDDRRDDLLDDDDDDDDRRDDRRUURRDDRRUUUURRRRDDRRDDRRRRUURRRRRRRRUURRUURRDDRRDDLLLLDDRRRRRRRRRRRRRRUULLLLUULLDDLLUUUURRUUUUUULLUUUUUURRUURRRRUULLUULLLLLLLLUULLLLLLLLUUUURRUULLUURRRRRRDDLLDDRRRRUUUURRDDDDDDRRUURRDDRRDDRRDDRRRRUURRUULLLLUULLUURRUUUURRUULLUUUURRDDRRUUUUUURRDDDDDDDDLLDDDDDDLLDDRRRRDDDDDDLLDDDDRRDDLLDDLLDDDDDDDDDDDDRRUUUUUURRDDDDDDDDLLDDRR B. DLRDDULDUDLRURDLLLLRDLULLDURDULDLDDUUURDURRRDDRRUUURRDURLRDLLDRDLLUUULURDRDDUUUURLLULDURDUURDRURRLLLLUUDUDURLRDLDRRURDRLRRLDLLLURLLLLLDDUULLDRDRDRLLDURUUURDRURRDRULLLRLDRDLLURURUUUDRULUURRRRLUDRDDUDDDDLDLRUDUUDURURUUDDRLDRRURURLLUUUDULDRUDLUURRDURLDLUDRLDLLURDDRLUURLDLDUDDLUURLUDLLRUUDRDRRRDLRDDRDDLDULDDDRUDLRDLUURULUUDRLURRRLDLDDDRDUUUDRDUDRURURRURDLLRLLLURDUDRDRDULDRRDRUUDDRRLURULRDURDRDURRLRLRLUDDURRUUDUURDUDDRRRRLRUDLUDLUUULDUULULDLLULUDRLRDRUDUUDRRRLLURDLRLDDRRLLULDDULRRURDRRRUDULDDLLLDLULDLDDLRDUUDUDDDLULLDLRULLUDRRDURDDUDDRRLULLRDDDULLUDRRDDDDDUDDUDUUDLRLRDRDRLLLRDRU C. DUDRRDURURLDRDDUDDLDDRDDDUUDDDRURRDRDDDRRUDUDDRRUULDRRRURUDDDDDDUDURDRRRDRRDDURRUDDRUDDDUUDDDDDDLRDRRRDDDLLLDULDRDRLRDRDRRRLURDUDUDLRRDRDDRDDURLRRDRRRDRULDDRRLRUUDDRRRDDRRDDRLRRDUDDDRDRU D. DDRDRUDDRUDDRRRRLRLRRURDDRURRRURLDRLLRRUUDRRLRRLRRDDDRDRDLDDDDDLRRDDRRDDLDRDDRURDRDRDDDDRDRLRDLLRLRRURRRRDDDDDDRUULDRRDRDUDRRRRLDDLRRDRRRDUDLDDLLDRDDDURRDRLUDRRDDDRDRURDURD E. LRRDRRULDDDRRRUUDLLLDDRRRRRRRRDUULDLDDLLDRUDDRRDRDLLDRRDURDDRULRRRRRDLDLUDDDRRDDDRRRRRLDRDRRDRRRRDDRRRLDURUDLRRRDDDDDDRUDDDDDLLLDDRDRDRRULRRDDURRDDLRDRRDDDDUURDDRRRLRDRRRDDLRRR F. No answer
data/maze/116.png
null
136
{ "difficulty": null }
rotation_game
C
How many degrees should you rotate this image CLOCKWISE to restore it to its original orientation? A. 120° B. 135° C. 105° D. 75° E. 90° F. 85°
data/rotation_game/rotated_68.png
null
137
{ "difficulty": null }
maze
C
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. UDRRRDRRDLRRULDRRDDRUDDRUDRRRDUULLDUURDLRRRLDDRDRUDDDUUDUDRRDULDRRDDRRDRRRDLDDDRDLDLURDDDRDURLUDDLRLRDDURDRRDLDULUDDRRDDRDRLUUDRLRURDDLRUD B. DDDDUDRDRRDRURRRDDUULURURUUDDUULRLRRULLRDLUDDRLDDRLDDURULUDLRUDURDRRLRDRURULLUDULUDLLDRRURDDULURRLRDURLLLULDRURRDLULDRRULRDRRUUUUDLDLRRLDLUDDDURUDLRDDRUULDRDULLRDURLRRDLUDDURRLRLDUDRUUDDDDDDURLRDRLDRDURRURLRRRRDDURLRURDLLRLUURDUDUDRLULLUDULLRLRUURLUUUUDRDRLRUDRRLDRLDLLRLRRLDLUDLUURLUDDUDURLRLRLDUL C. DDDDRRUUUURRDDRRUURRRRRRRRRRRRDDRRDDDDLLLLDDDDRRUURRRRUURRDDRRDDDDDDLLUULLUULLDDLLLLLLUUUULLUURRUURRUULLLLLLDDLLDDRRDDDDLLLLDDLLUULLUULLDDDDDDDDDDDDDDRRRRDDRRUURRDDRRDDLLDDRRRRUURRUULLUURRRRDDRRUUUULLLLLLLLUURRRRRRUURRDDRRRRDDLLDDDDRRUURRUUUURRRRDDLLDDRRDDLLLLDDDDRRUURRDD D. DLDDRRDDLRDRRUDRDLUDRRRLDRDRRUURRDRDUURRRUULDDDLRUDDRURDRDUDRDLRDDRULDLRDUDRRUURDUDDRRDUDRRRRRDUDLUDDDUURRLUDDLULDDDRDURLRLRDLDDLDUDDRRULRDDDDRDDURL E. DLDDUDRRLUDLDRRRDDUURRRDDRRLDUDRDLRDDLUDRURLDDRURRRUDLUDLRLLDLRDLRRRRDDDRRRRURDDDLULDRURDULDDRDRUDRRDDDURULDLUDRRRDRRDRDDRLDRLRDRRUULRUDRDDUDD F. No answer
data/maze/66.png
null
138
{ "difficulty": null }
color
D
Which color takes the largest proportion of the image? Select from the following choices. (A) Yellow (B) Green (C) Orange (D) Red
data/color/127.png
null
139
{ "difficulty": null }
refcoco
F
Which of the following values is the closest to the proportion of the image occupied by top right guy? A: 35% B: 27% C: 43% D: 19% E: 3% F: 11%
data/refcoco/COCO_train2014_000000376988.jpg
null
140
{ "difficulty": null }
visual_search
A
What is the registration of the Delta Airlines aircraft in this image? A. N620CZ B. N265SY C. N620SY D. N520CZ
data/visual_search/new_3.jpg
null
141
{ "difficulty": null }
instrument
B
What is the reading of the Vernier caliper in the image in centimeters? A 9.2 B 9.3 C 9.31 D 9.32 E 9.33 F 9.34
data/instrument/62.jpg
null
142
{ "difficulty": null }
spot_difference
5
This is a spot-the-difference game. How many places differ between the left and right images?Please provide your answer as an integer, such as 1, 2, 3. Please provide your answer as an integer, such as 1, 2, 3.
data/spot_difference/100.png
null
143
{ "difficulty": null }
symbolic
B
How many nested squares are there in this image? A.6 B.8 C.7 D.9 E.10
data/symbolic/nested_square_8_2.png
null
144
{ "difficulty": null }
rotation_game
D
How many degrees should you rotate this image CLOCKWISE to restore it to its original orientation? A. 295° B. 285° C. 290° D. 305° E. 325° F. 315°
data/rotation_game/rotated_30.png
null
145
{ "difficulty": 3 }
jigsaw
[5, 3, 8, 7, 2, 4, 1, 6, 9]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_23.jpg
null
146
{ "difficulty": 3 }
jigsaw
[8, 4, 6, 5, 2, 3, 7, 9, 1]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_20.jpg
null
147
{ "difficulty": null }
visual_search
3
How many horses are pulling the carriage loaded with red cargo in the picture?
data/visual_search/art_1.png
null
148
{ "difficulty": null }
visual_search
D
What is the price for the skittles candy? A. 12 B. 6.5 C. 6,9 D. 4.5
data/visual_search/new_14.jpg
null
149
{ "difficulty": null }
word_search
[2, 13]
In the figure, in which row and column does the letter t appear? The final answer should output two number list. The first number represents the row count from top to bottom, and the second number represents the column count from left to right. For example, [1, 2] means the first row and the second column.
data/word_search/69.jpg
null
150
{ "difficulty": null }
refcoco
C
Which of the following values is the closest to the proportion of the image occupied by player? A: 46% B: 78% C: 54% D: 38% E: 62% F: 70%
data/refcoco/COCO_train2014_000000322090.jpg
null
151
{ "difficulty": 5 }
jigsaw
[21, 11, 15, 2, 7, 6, 18, 9, 3, 19, 16, 20, 14, 25, 10, 4, 1, 23, 12, 24, 22, 8, 13, 5, 17]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_71.jpg
null
152
{ "difficulty": null }
refcoco
D
Which of the following values is the closest to the proportion of the image occupied by very top brown fruit? A: 37% B: 21% C: 45% D: 5% E: 29% F: 13%
data/refcoco/COCO_train2014_000000226552.jpg
null
153
{ "difficulty": 3 }
jigsaw
[9, 1, 5, 6, 3, 2, 4, 7, 8]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_9.jpg
null
154
{ "difficulty": null }
instrument
E
What is the reading on the total duct airflow meter? Answer as an integer like 1,2,3. A 500 B 530 C 540 D 550 E 560 F 570 G 580
data/instrument/55.jpg
null
155
{ "difficulty": null }
maze
F
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. DLRRLRDRULLUDRDRUUDLRRLDLLDULUURRUURRRLUDRRRDLLRUULDRRRRRLRRRDUDURRUDDUUULUUDURLUUUDDLLURDLDLUDDLUUU B. DRLRLULRRRDDRRRRRLRRDURUUDLRRLLDDDDRRDDRRRUULDRRDDRLDRDLDURULRRLLLDUDRUDRDDDRLDRRRLRLRLURLDUDUUDURRLDRDDRUDDDRLDDUDD C. DURULLDUURRULDURDUUULLLDDULRLRUDRURUDRLUDRLUDRUUDLLDURLDDDRRDLDDDURRLLUDRRRLULULLDRRDLUULUDRDRULRLLUDLDLLDUDRRLUUU D. DRRDDRDLDLRRLDDRLRRLUDLDRDDLUDRRDURURRDDURDRDDUDUURDURDDULDUDRRDUDDRLRRURDDDDLURDDLLUDRRRDDRDRLDUUDRUURR E. RDDDLRDURLLDRDRDDLLDRUDULDRDLDURRDDRULRRRDDRRDRRULRRRDDDDDLLLRRRDLDRURULRRURDDDURUDLDUDDRLRLRUUDDDUDURRRRDRU F. No answer
data/maze/41.png
null
156
{ "difficulty": null }
visual_search
D
What color is the shirt of the person behind the double-decker bus? A.blue B.green C.white D.orange
data/visual_search/art_4.jpg
null
157
{ "difficulty": null }
maze
E
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RDRRRRDRLRRRDRUDRDDLLDDDRUDDDDRDRDRRURLRLDDRUDDDDRDRDRDRRDUURDRLDRRDDURURRDRLRLDLRDDRURRRRDRDRURRURRDRDDUDLDULDRDDDDDLDDRURDRUDLRRDRDDRDRDRDDDRURRRRRLRDRDDRRRRDURULRRDURRLRDDRDRLDLDRLDDDDLULDRDRRDRDDLDRDD B. UDRDLDDRRRRURDRRRDUDLLDDRURDRURDLRDDLRDRDDRDDRLDRDURUDRRDRRRRDUDDULRDURDDDDDDRRRLDLDRRDRRDRLDURRDDRDRRDDRDDDDDDRRLLRDDDDRDRLRRLRDRRDLLRDRRRLURDRDLDULRRUDRDLRRUDRDLLLUDRDRUDDDRRURDRUURRDRDDLLRRDDDRDRRDUURRRDUDRDLRRDRDDDDUDRUU C. DDLDUDDRRRRUDDRLRURDDDDDLRDDRUDRRLDRRDURLDLUDRRDRDRDDDDURDRRUDURRDRRURRDRDRDRLRDRRRDDDRRDRRLDRDRRUDRLRDDRRRRRLRRDRLRDDDRRLDDDUDRLDDDRRRRULDUUDDRDDDDDDRRDDRRDRRRDDRRDURDDDDDDDDRDRRR D. UDDDDLDRLUULRRUDUUULRDULLDULURDLDRUDURLRUUURUURULDRLDLDUDURRLDUDLLUURURLRDDURLRUDLLDDDULRRDDDRULRDLUDLDDRURDLLDRLULLURURRURRRLRDDRLRULDURRULLUDRUDDLDLUULDRULDLLUDRRLRLDLLLLLLRLLRLRULRDLRURRULLRDUDDRRDURLLUDRLUURLRUUDRLLLULRRUDUURLDUDLRURLDRRDLRULURLDULLURLLLLLURDDULLLURDURURURDLDRUDDDRRRRLRRLURLDLDLDUULRRDRRDRLDLUDRULRLLLDLDDDDDUDULULDLDLULRDDURRRLLDDDDRULUUURURDRLDUULRDDRRDRUDDLUDRRLRUUDRUULULLRUDLULDRLRRLLDRUURUULDUURUDDLUDDRULURULLLULUUURUDUDDRDRUULRULRUDLLDULDRDLLDRLRLRURDLLURLLRURRRURLUUUDDRRRRURRLULULRDULUULLRRDRRDLUUU E. RRRRDDRRUURRDDDDRRDDLLLLUULLLLUULLDDDDRRDDRRDDRRUURRDDDDLLDDLLLLUULLDDDDDDRRUURRRRDDDDRRUURRDDRRUUUULLLLUURRUUUURRUUUURRDDDDRRDDLLLLDDRRRRRRDDRRDDDDLLUULLUULLDDDDRRDDLLDDLLLLDDDDRRDDLLDDDDDDDDDDLLDDRRDDDDRRUURRRRRRRRRRRRRRUULLUUUURRRRUUUURRRRDDDDLLDDRRRRRRUULLUUUURRUULLUULLDDLLLLUULLDDLLDDLLDDDDDDLLUULLDDLLUUUULLLLUUUURRUUUURRUUUURRDDDDDDRRUURRDDRRUURRUURRDDRRUURRDDRRUURRDDRRRRDDRRDDLLLLDDRRRRRRDDLLLLDDLLDDDDDDRRRRRRDDRRDDRRRRUUUUUUUURRDDRRDDLLDDDDDDLLDDLLDDLLLLLLDDDDLLDDRRRRRRUUUURRDDRRDDRRUUUURRUURRDDDDDDRRRR F. No answer
data/maze/147.png
null
158
{ "difficulty": 3 }
jigsaw
[4, 9, 5, 2, 6, 8, 1, 3, 7]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_12.jpg
null
159
{ "difficulty": 4 }
jigsaw
[3, 13, 11, 9, 10, 14, 6, 2, 8, 7, 15, 16, 12, 4, 1, 5]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_41.jpg
null
160
{ "difficulty": null }
contrast
2
How many Apple computers are in the image?
data/contrast/46_low.png
null
161
{ "difficulty": null }
visual_search
B
Will I be able to buy a sony camera here based on the information in the image? A. Cannot be determined B. Yes C. No, it is not sold anyhere nearby D. No, it is out of stock
data/visual_search/new_18.jpg
null
162
{ "difficulty": null }
color
D
What color in the pie chart has the proportion closest to 15%? Select from the following choices. (A) light purple (B) dark purple (C) purple (D) dark blue
data/color/141.png
null
163
{ "difficulty": null }
math
13
When x=100, the value of Dark Slate minus Yellow is () (Answer with an integer).
data/math/25.png
null
164
{ "difficulty": null }
ocr
seem
what is written in the image?
data/ocr/70.jpg
null
165
{ "difficulty": null }
math
C
张庄A(图中C点)、李庄B(图中E点)位于河沿L的同侧,现在河沿L上修一泵站C向张庄A、李庄B供水,如果图中AD距离是2km,问所用水管最少大约是多少km? A. 8.5km B. 9.5km C. 10.5km D. 11.5km E. 12.5km F. 13.5km
data/math/143.png
null
166
{ "difficulty": null }
math
D
Part of the voltmeter's needle is broken. Based on the remaining part of the needle, the measured voltage is: A. 4.7 B.4.8 C. 4.9 D. 5.0 E. 5.1
data/math/121.png
null
167
{ "difficulty": null }
color
C
What is closest to the proportion of the color green in the flag? Select from the following choices. (A) 25% (B) 30% (C) 35% (D) 40%
data/color/143.png
null
168
{ "difficulty": null }
maze
E
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RDURDDDRRDDDDRDDRLURRDDLRRDLDRDRRRRDRRDDDRDLDRRRDDDDUDRLRRRUDRRDDRULDRRDRDRDDUDRDDRDRRRDUDDRDRRDDRRDDDRRURDUDLURRLRRDRRLDDRDDDRRUDRRRUUDDURRDDDURDDURLRDRDDDDURRDRDRRDRDRRDDDDLD B. URDDLRRRDRRUDRRRULRLDDRLRUDDLDRRRRDDRUDDDRDRRDRRRDDULRLRURLURDDDDRRRLDDRDDRRLRRDDDLDLRDRLRRDRDRLLDDUDDRDLDDRDURRDDDUDDDDDRRLURDRRDDRURRDRRRDRURDRDDRRRLRRURUDRRRURLRRURDRRDDLRDRDRLDLDLDLDDDDRRRDDRUUDDRDDLDRRURDDRLLRLRRDLD C. DLRLULLUDDDRLRDURULDUUDUURUUDLLUULDRDDRLRRRURRULUURULURLRUDRRDUURLLDRLUDLRDLURDDDLLUURRRUDUURRRRDUUUDLRRURUUDDRLRURLURLDLUUUUDRLDURRRDULULRDLLUDULRLDUUDDLLRRLLDDULURURURLLDDDDUURLDRLDULDLDUUURRRRRLRDLLUUUURDDDRRRULUDUUDRLDDLDLRRDDUDLUURDLRULLDRDLLRDLLUULRDRULDUURURLUUDDDDRDULLUDDLURURDLUDLUURDDDUDLURURDDRLRRLLUURDRRUDURRLDRLULUDLDLLLLDDDRULDUUDULUUDLLDRDLLDRUURURRDUDRRULLDUURRRRLRDRRRUDUDRUUDLRUUDLRDUULLDDURDURRURDLRURURRULLDDRRRLRURRDRULDRUULRULLDRURLDRLLLDLULDLRLDLRRULDDRURLUDUDUDURLLDLRUUDDRUDDULDURRUDDLLRRRURLDLULURURUURUDDLDDDLDLLLLLRLURURDRLRLDDDLUDDLULLDRRULLUDURDUUDRLULULLLRLDLLUURUDLUULDULDDLLDRLLUDDURRLULRURDDDLURURDLDLLRDDRRDUURLRRLDRUDLLRLUDUDLRRLDRDDDDDLLLRRLURURUUUUDRDDLLULDUDRRLLUDLDRUDRLLLUDLDLUDUDLRRRLULDLDRDDDLDRDR D. LRUDRDLDDDDRLRDLDRDDDUUURRLRRDRDDRLDRUDDRDDRDRLRDRDRDUDRURRURRRRRDDDDUDURUDRURUDDDDRDDRDRDDRUDURRDRDDDRLRRRRLDDRRDRDLDRDDDRDDDRDRRLDRRRRDUUDDLLRDUDRRDRDDRLRRDRDRLDDRRDDRDDURDRDRDRRRDRDDRRLRRLR E. DDDDRRUURRRRDDLLDDDDLLDDRRDDRRRRDDLLLLLLDDDDRRUURRRRRRRRRRRRDDRRRRRRRRUURRRRUULLLLLLUUUULLDDLLDDLLUULLUULLLLUULLDDLLUUUURRUUUURRDDRRUUUURRRRRRDDLLLLDDRRRRDDDDRRRRRRUURRRRDDRRRRUURRUULLUUUURRRRRRRRDDRRRRRRUURRDDRRUURRDDDDRRRRRRUUUURRDDDDDDDDLLUULLLLLLDDDDLLDDDDDDLLDDLLUUUUUULLLLLLLLLLLLDDDDLLDDDDLLLLLLDDLLDDDDDDLLLLLLUULLDDDDDDRRRRDDDDLLLLLLLLDDDDRRDDDDRRUURRUULLUURRRRDDRRDDLLDDLLDDRRRRUURRDDRRRRUUUULLUULLUULLUURRRRUURRDDRRDDRRDDDDRRDDDDLLUULLDDDDDDLLLLUULLLLLLDDRRDDLLDDDDLLLLUUUURRUULLUUUULLLLUUUULLLLDDRRDDDDRRRRDDDDLLUULLDDDDLLDDDDLLLLUULLLLDDRRDDRRRRRRRRRRUURRRRDDRRUURRDDRRUUUUUURRDDDDDDRRUURRDDRRRRRRRRUUUULLUUUUUUUURRDDDDRRUUUUUULLUUUURRDDRRDDRRRRRRRRDDDDRRUURRRRRRDDLLDDRRRRUURRDDDDDDDDLLUULLLLLLDDLLDDRRRRUURRDDRRRR F. No answer
data/maze/144.png
null
169
{ "difficulty": null }
visual_search
B
What is the name of the book immediately above the book 'MOUNTAIN' on the center top shelf? A. FULL MOON B. BERT STERN ADVENTURES C. Cannot be determined D. I AM A CAMERA
data/visual_search/new_24.jpg
null
170
{ "difficulty": null }
maze
E
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. UDLURDLULURLRLRDURLUDURURRLRLRRLURDRRDLLRUUDRRLRRDDLLRDDDDLDRRDDRDRDDRRRDLULLRDRUURLDURULDRLDRLRLRDLRDDRLUULRLDDRRRDRRDUUUDLRDLRLDRRDLDDRLDU B. UURRDRRDRLDDLRDDRRDLRUUDUUDRDUDDRDRRURDLLDDRRRDRUDLLDLRDDUDLLDRRRDDLULULDURDUDDDDUURLRURDRRUURLRDRDD C. DUDDURRDRLUDULLURUURDDDDDDDLLULURDLUUUDDUDUDUDLDRDRUURRDRDDRRLLRDUULRUUDRUUDDDDUDRRRRDUDDDUDLRRDRURRURLLRRDDRDDLDDLUUDLLLLUDDRRRRLDLDRRRRUDR D. URRDRRDDLRDRLURURLDLURLDLRUUUDLURDUUDLRLDRRRLDRLLULLLRDRUULLDDLULUURDLULRDLRUUDUUDDRLDDURLUDDRRRDURLDRDLLRDUR E. RRDDDDDDRRRRUUUUUURRRRDDRRDDLLLLDDRRDDLLLLLLDDLLUULLDDDDDDRRDDRRRRUURRUUUURRDDDDRRDDRRRR F. No answer
data/maze/34.png
null
171
{ "difficulty": null }
color
C
Does the color A and color B have the same color? Select from the following choices. (A) Hard to tell (B) Yes (C) No
data/color/91.png
null
172
{ "difficulty": null }
maze
C
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RDDUDDRURLRDRUDRDDDRUUUDRRRULRRLDLDRUDRURDDDLDRDLRLLLDDURDUUDRLLDRDLDDUURULRLDRLLRDURRDURLDULLRULRUDRURLRDDRRDLU B. UULULDLURLUUDRUULRRUURDDLULDDUULUDUDDDDDLUUDDURLRDUDULLLRDUDRDRDR C. RRDDLLDDRRRRRRDDLLDDLLUULLDDDDDDRRRRUURRRRRRDDRR D. LURRRRDUDRRRURRDLRDRUUULURURLDLURDRLDRLDLRDLRLLRDUUUULLDDRDRURRLDR E. RLDDLRDRURRLDRRULLLULDUDRDULDDULDDRLRDDLRRDDRRRRRURLRDUUDLURULRUDRDDLUULRRDDLDRDUUDLDUDRRUDRLRRUDULDULURURLDUDRRDDDDURLD F. No answer
data/maze/21.png
null
173
{ "difficulty": null }
instrument
30
What is the reading on the pressure gauge in the image? Provide one decimal place (e.g., 1.1).
data/instrument/73.jpg
null
174
{ "difficulty": null }
symbolic
A
How many connected single-colored paths go from A to C? A.0 B.1 C.2 D.3 E.4
data/symbolic/subway-2.jpg
null
175
{ "difficulty": null }
math
D
At stage 1, when Env Steps=500k, the score of Dynalang minus the score of IMPALA is approximately ( ) A. 0.75 B. 1 C. 1.35 D. 1.6 E. 0.6 F. 1.9
data/math/43.png
null
176
{ "difficulty": 5 }
jigsaw
[8, 14, 4, 22, 24, 21, 7, 10, 6, 20, 23, 12, 15, 2, 17, 18, 13, 11, 19, 16, 3, 25, 5, 9, 1]
Instructions: Please complete the jigsaw puzzle shown in the image. The original image has been divided into {n}×{n} pieces and scrambled. In the image, each piece is numbered from 1 to {n²}. Your task is to determine the correct arrangement to restore the original image. Question: In what order should the numbered pieces be arranged to reconstruct the original image? Please provide your answer as a sequence indicating where each numbered piece should be placed in the final arrangement (reading from left to right, top to bottom). For example, 1, 16, 15, 2, 14, 8, 13, 5, 6, 7, 3, 9, 10, 11, 4, 12.
data/jigsaw/shuffled_puzzle_68.jpg
null
177
{ "difficulty": null }
word_search
4
图中有多少个鸟字?回答一个数字,例如1,2,3。
data/word_search/91.jpg
null
178
{ "difficulty": null }
instrument
400
According to the image, the voltmeter reading is how many volts? Answer as an integer like 1,2,3.
data/instrument/47.jpg
null
179
{ "difficulty": null }
math
C
As shown in the figure, the point symmetric to point C with respect to line segment AB is: A. point H B. point E C. point D D. point F E. point G F. point I
data/math/124.png
null
180
{ "difficulty": null }
instrument
3.5
What is the reading on the voltmeter in the image in volts? Answer with one decimal place like 1.1.
data/instrument/39.jpg
null
181
{ "difficulty": null }
math
3
The minute hand has been erased in the picture. Based on the hour hand, the minute hand should approxemately point to the number ( ). Answer with a single number, such as 1, 2, 3.
data/math/54.png
null
182
{ "difficulty": null }
math
G
When x=56, Periwinkle - Aqua = () A. 1 B. 1.5 C. 2 D. 2.5 E. 3 F. 3.5 G. 4 H. 4.5
data/math/35.png
null
183
{ "difficulty": null }
color
D
How many colors are there in this image? Select from the following choices. (A) 11 (B) 12 (C) 13 (D) 14
data/color/19.png
null
184
{ "difficulty": null }
visual_search
12
To what number is the hour hand of the clock pointing closest? Answer 1-12.
data/visual_search/temp_11.jpg
null
185
{ "difficulty": null }
visual_search
A
What is the three main therapeutic benefits of lavender essential oil based on the image? A. Antiseptic, Anesthetic, Sedative B. Fragrance, Cleansing, Protecting C. Smooth, Cleansing, Sedative D. Fragrance, Antiseptic, Long-lasting
data/visual_search/new_16.jpg
null
186
{ "difficulty": null }
word_search
[4, 1]
图中见字在出现在第几行第几列?最后答案输出两个数字,第一个数字代表从上往下多少行,第二个数字代表从左往右列。例如[1, 2]代表第一行第二列
data/word_search/80.jpg
null
187
{ "difficulty": null }
maze
A
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. DDRRRRRRUURRDDDDDDDDRRUUUURRRRUULLLLUURRRRRRRRDDLLDDDDLLLLDDRRDDDDLLDDLLLLUURRUULLLLUUUULLUULLLLDDDDDDDDDDRRUUUUUURRDDDDDDDDDDRRRRRRDDLLDDRRRRDDDDDDLLDDLLDDRRRRDDRRRRRRRRUUUUUULLLLUULLUURRUURRRRRRUURRDDDDRRRRUULLUUUURRUULLUULLUUUUUULLLLUURRRRUULLLLUURRUURRRRRRRRRRRRDDRRRRDDDDDDLLLLUURRUULLLLLLDDLLDDLLDDDDRRRRUURRDDDDLLDDDDRRRRUURRRRUULLLLUURRRRRRUURRUULLUUUUUUUURRRRDDRRRRRRRRRRRRDDDDLLUULLLLDDRRDDLLDDLLDDDDDDRRDDLLDDLLLLUURRUULLLLLLDDRRDDLLDDRRRRDDRRRRUURRDDRRDDRRDDRRDDDDLLLLUULLUULLDDLLUUUULLDDLLDDDDDDDDDDRRRRDDLLDDRRDDLLDDDDRRUURRUURRDDRRUUUULLUULLUURRUULLLLLLUURRRRUURRDDRRDDDDDDRRUURRDDDDDDLLDDDDLLLLLLDDRRRRDDRRUURRDDDDDD B. DUDDLRLDLRRLLLLRRRUUUUDLDDRDDDDLLDLLUUDRLUUDRDDLDUDUURRURDRUDRDDDDDLUDLULRLRDDUDRRDULDLDLRDLDLDUUDLUDULLLULLULUULDLLLUURLLLLUUULUUUDDDLUDDDRURUURDULRUDDRRDUDLUULRDRURRURDURDDDUUDULRRLDRRDUUULLUDLLLUUDLLRDLRLLDLLDDRLDRLULUUULLRRRLDLUUDDRDULRDDUDDRDRURDULDDRULDDUURULDDRDRDURDLDLLLLUURRLUDULRRDRDRRRURDLLDURUDDLUDRULDRRDRLRDLLDLRRRLDDUUULDLUDLLLRURDRLDUDLUDLLDLUDURLRRDULRRRUUDRLRLLURLLUDULLUDDRLUUDRULDDDRRRLDURDULDRLLULDDLDULRLULULRURDLLUDLULUUUDRRUULUDULRRUUUUUDURUULDDURULLULUDRLLLRLRDULLDLUURDDRLUULRDRLDLDRDRRULLDULRRRURLRRLRUULLDUUUURRURUURRDURDDDLULULUDULLLLLULLDDLLLRLURLDURUURUDLDRUULDLLDDURLURRURDUDDRDDDRLULLDUUDRDRRDLLDRRDRLRULLRDDLU C. DDDDDDLDLDULRRRLLUDDRDDRDRLRDUDRRRUDDLDDDRRDDRUDDDRRLRRRDRRUURRDURDDRRRRDDDDDRRDDRRRDUDDRLDRURUDDDRRDRRRLDRRRDRRDDRRDLRDDDRRURRDDRRRRDRUDDLRULDRDDDDDDRRUDDRLRRDRDURRUDLLDRDRRDRLRRD D. RRRRDDDRDRDDRRDLURRLUDUURDRDDDDRURRDRDDDDRDRRUDDRDDDUDDUDRDDDURUUDLRDLDRRRRDLRDRDRRDLLRLDDRDRDDRRRDLDRURRRRRRUURDRRDDDDRRRRLDDLDRDRRRUDRDLDRLDRDDLDDDDLURRUDDRDDUDRRRDRLDRDDRRRURRRDRDLD E. DRRDRDRRUDURRDDDDRLDRDUDRURDRLUDDDURDRDDRRRDDDURUDRRDUDDRRRRRDDDRDDDLRRRDRRRDDDDRDDRDRUDRRDRDRDUDDLDRDRDURRDDDDRRRDDUDRRRUDDURDRDLLRLRRDDRDRURDRDUDDRDDRDRDLRRRRULRDDDDL F. No answer
data/maze/135.png
null
188
{ "difficulty": null }
spot_difference
6
This is a spot-the-difference game. How many places differ between the top and bottom images?
data/spot_difference/94.jpg
null
189
{ "difficulty": null }
maze
E
Please complete a maze game shown in the figure. Starting from the red ball in the top-left corner, navigate the maze to reach the green ball in the bottom-right corner. 'R' means move one step to the right, 'L' means move one step to the left, 'U' means move one step up, and 'D' means move one step down. Which of the following options can successfully lead out of the maze? A. RLLRDDLDUUUDDUDRLURRULDRUDUDDURRDDLURDRRRRURLULDUDULRRDDLLDURLRDURLLDLUD B. RDDRRDDLDDDDUDRULUDRLUDURUUDDDRDURRRLD C. LLULRUDLLDDRUUDDRULDRLURDUUUDURUDRLDRDRRDULRDDURDDDULURDDLLRRDDRUUUURLDLRUDD D. UDLUDLUDRRURDDRDDRUDULL E. DDDDRRRR F. No answer
data/maze/5.png
null
190
{ "difficulty": null }
spot_difference
7
This is a spot-the-difference game. How many places differ between the top and bottom images?
data/spot_difference/87.jpg
null
191
{ "difficulty": null }
refcoco
E
Which of the following values is the closest to the proportion of the image occupied by man? A: 25% B: 1% C: 9% D: 33% E: 17% F: 41%
data/refcoco/COCO_train2014_000000418717.jpg
null
192
{ "difficulty": null }
math
C
The buoyant force acting on the iron block is approximately A. 0.8 B. 0.9 C. 1 D. 1.1 E. 1.2 F. 1.3
data/math/120.png
null
193
{ "difficulty": null }
color
C
What is closest to the proportion of the color red in the image? Select from the following choices. (A) 10% (B) 20% (C) 30% (D) 40%
data/color/84.png
null
194
{ "difficulty": null }
ocr
eergdanle
what is written in the image?
data/ocr/52.jpg
null
195
{ "difficulty": null }
symbolic
A
How many edges are there in this polygon? A.12 B.13 C.14 D.15 E.16
data/symbolic/edge-count-7.png
null
196
{ "difficulty": null }
visual_search
10
To what number is the hour hand of the clock pointing closest? Answer 1-12.
data/visual_search/temp_14.jpg
null
197
{ "difficulty": null }
word_search
[13, 4]
图中小字在出现在第几行第几列?最后答案输出两个数字,第一个数字代表从上往下多少行,第二个数字代表从左往右列。例如[1, 2]代表第一行第二列
data/word_search/98.jpg
null
198
{ "difficulty": null }
math
D
Which of the following values is closest to the point where purple and coral intersect? A. 60 B. 64 C. 68 D. 72 E. 76 F. 80
data/math/2.png
null
199
{ "difficulty": null }
refcoco
A
Which of the following values is the closest to the proportion of the image occupied by girl? A: 15% B: 47% C: 39% D: 23% E: 31% F: 7%
data/refcoco/COCO_train2014_000000376988.jpg
null
200