diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..89b467c75fed4742ee32bc38da97a2bd087649c1 --- /dev/null +++ b/app.py @@ -0,0 +1,24 @@ +import gradio as gr + +from components.about import create_about +from components.detail import create_detail +from components.submit import create_submit +from components.top import create_top +from components.data import create_data +from components.result import create_result + +with gr.Blocks(title="Ango Leaderboard") as app: + top_components = create_top() + with gr.Tab("Result"): + create_result(top_components) + with gr.Tab("Details"): + create_detail(top_components) + with gr.Tab("Data"): + create_data(top_components) + with gr.Tab("Submit"): + create_submit() + with gr.Tab("About"): + create_about() + +app.queue() +app.launch(server_name="127.0.0.1", server_port=8080, ssl_verify=False) \ No newline at end of file diff --git a/assets/__pycache__/color.cpython-39.pyc b/assets/__pycache__/color.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..05843e5a0ea7b64b49da21ee24da6d0a80bcffce Binary files /dev/null and b/assets/__pycache__/color.cpython-39.pyc differ diff --git a/assets/__pycache__/constant.cpython-39.pyc b/assets/__pycache__/constant.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a79257b61e360772d657f168b376b576c20753a1 Binary files /dev/null and b/assets/__pycache__/constant.cpython-39.pyc differ diff --git a/assets/__pycache__/content.cpython-39.pyc b/assets/__pycache__/content.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aecbb51d167fd53d5b7b58f8eb15fc49b6d580c7 Binary files /dev/null and b/assets/__pycache__/content.cpython-39.pyc differ diff --git a/assets/__pycache__/path.cpython-39.pyc b/assets/__pycache__/path.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a522436daa6cff25da325de3544eb537abf08ee Binary files /dev/null and b/assets/__pycache__/path.cpython-39.pyc differ diff --git a/assets/color.py b/assets/color.py new file mode 100644 index 0000000000000000000000000000000000000000..3f83b6390bf7ec743891ea2ea077b615bc55ead2 --- /dev/null +++ b/assets/color.py @@ -0,0 +1,8 @@ +color_dict = { + '言语理解与表达': '#B22222', + '数量关系': '#CC6600', + '判断推理': '#CC9900', + '资料分析': '#228B22', + '常识判断': '#0077BE', + '未分类': '#9400D3' +} \ No newline at end of file diff --git a/assets/constant.py b/assets/constant.py new file mode 100644 index 0000000000000000000000000000000000000000..2646d14f1b07c3a9280b60601ccade81f1ece7e4 --- /dev/null +++ b/assets/constant.py @@ -0,0 +1 @@ +DELIMITER = "|" \ No newline at end of file diff --git a/assets/content.py b/assets/content.py new file mode 100644 index 0000000000000000000000000000000000000000..76c29f839118041bc8664ea50e7457e3caafa88e --- /dev/null +++ b/assets/content.py @@ -0,0 +1,131 @@ +TITLE = """

🧊🌊ANGO Leaderboard

""" +INTRODUCTION_TEXT = """ + +ANGO is A Novel Generation-Oriented Chinese LLM evaluation benchmark. + +We introduces the format of single-question multiple-keypoints dataset for the first time, which include 171 keypoints accumulated in 4 hierarchical levels and 9 difficulty categories. + + +The data were exclusively obtained from the Administrative Proficiency Test, + which serves as a significant component of the Chinese civil service examination. + + +We will apply a seasonal system for the leaderboard, updating them every two months. +The corresponding test dataset will be announced at the beginning of each season, +and some questions will be eliminated at the end of the season. + + +Read more details in "About" page! +""" +KEYPOINT_TEXT = """ +Because single question may contains more than one keypoint, so the total number of keypoint count is higher than question count +""" +TEST_SET_TEXT = """ +The test set comprises a total of 1768 records. + +Among these records, there are 988 distinct combinations of Keypoints, which indicates the provision of an additional few-shot examples amounting to 988 * 5. + +The test set encompasses all 171 Keypoint categories. + +For further information, please refer to the "About" page. +""" +TEST_SCRIPT_TEXT = """ +
+The evaluation script requires three mandatory arguments, while the others should remain unchanged. + +--model_path: specifies the location where the model parameters are saved. +--dataset_path: indicates the directory where the ANGO test set data is stored. + +--save_path: denotes the path where the evaluation results will be saved. + +You can modify the specific functions to adapt them to your model. + +
+Upon completion of the evaluation, the script will generate three files: + +acc_result: This file contains the predicted results for each record, along with statistical data at the question level. + +category_result: This file provides statistical data at the Keypoint level. + +difficulty_result: This file includes statistical data categorized by difficulty level. +""" +SUBMIT_TEXT = """ +Need More Resource +""" + +ABOUT_HTML = """ +

What is ANGO

+

We introduce a novel Chinese LLM benchmark dataset called ANGO, aiming to provide more in-depth guidance for model training and evaluation. We introduce the format of a single-question multiple-keypoints dataset for the first time, which will provide the most complete description for each question, enabling the test results to comprehensively showcase the model's performance from multiple perspectives. Based on the single-question multiple-keypoints format, we design a more detailed and refined model capability classification system - the Keypoint Tree, which reflects the relationships between different keypoints. It includes a total of 171 specific model capabilities accumulated in 4 hierarchical levels. With the help of the KeyPoint Tree, the performance of models on multiple levels of capabilities can be quickly measured, and corresponding adjustments can be made. ANGO also involves two new question attributes: human accuracy and human error-prone options. Based on human accuracy, we propose a more detailed difficulty classification compared to previous benchmarks. By combining the human accuracy of the question itself, the human accuracy of the involved key points, and the actual score of the question, all questions are divided into 9 difficulty levels, providing a quantifiable reference for evaluating models of different difficulty.

+ +

In addition to the innovative data, we propose a complete set of verification processes tailored for ANGO, which can provide fairer results compared to the current leaderboards. This includes conducting multiple experiments with option shuffling to mitigate the issue of data leakage, designing test set sampling strategies that fully utilize the characteristics of ANGO, and implementing elimination mechanisms for high-accuracy questions. Based on these, we establish a dynamic updating system for the test set, resembling a seasonal system. Thanks to these methods, ANGO can continually update the test results, ensuring the fairness and effectiveness of the leaderboard. By preserving the test results from multiple seasons, it can provide researchers with an overview of the current trends in optimizing models within the community.

+ +

Data Source

+

The data utilized in our study were exclusively obtained from the Administrative Proficiency Test, which serves as a significant component of the Chinese civil service examination.

+

The Administrative Proficiency Test is entirely composed of multiple-choice questions and aims to evaluate the abilities and skills necessary for practical administrative work. This test covers a wide range of knowledge areas, including Expression& Comprehension , Data Analysis, Quantitative Relations, Judgement&Inference, and Common Knowledge. As a comprehensive assessment tool, it requires candidates to respond to a series of questions related to administrative work within a limited timeframe. These questions may involve policy formulation, problem-solving, personnel and resource management, as well as handling emergency situations. By formulating these questions, it facilitates the evaluation of candidates' analytical thinking, Judgement&Inference, problem-solving abilities, and language proficiency.

+

The nature of the Administrative Proficiency Test necessitates candidates to tackle complex questions within a specified timeframe, making it an ideal testing environment for assessing the language capabilities of language models. Language models typically demonstrate excellent performance in generating and comprehending text, and this test provides concrete and intricate contexts that simulate real-world language communication and decision-making processes. By employing language models to answer these questions, we can evaluate their understanding of complex problems, Judgement&Inference abilities, as well as the accuracy and fluency of their language expressions.

+

Furthermore, the Administrative Proficiency Test encompasses a broad coverage and diversity. It includes questions and scenarios from various administrative domains, such as government administration, social affairs, and economic development. This diversity aids in evaluating the language processing abilities of language models across different fields, thereby providing a more comprehensive understanding of their potential strengths and limitations in practical applications. Moreover, it offers valuable insights for future model improvements and applications.

+

ANGO's data covers all 34 provinces in China and includes three different types of examinations conducted between 2008 and 2023, including formal and mock exams.

+

Data Processing

+

In order to enhance the quality of our data, we employed a simple yet efficient preprocessing approach.

+

Duplicate Removal

+

Given that mock exams often include previous exam questions, our data contained numerous duplicates. To address this issue, we employed a straightforward strategy of removing duplicates based on the record ID obtained from the data source. As a result of this step, the size of our data was reduced to 88,799 instances.

+ +

Image Removal

+

The data consisted of two types of images: formula pictures and other types (such as images containing graphics). However, since our primary focus was on Chinese Natural Language Processing (NLP) evaluation rather than the multi-modal domain, we opted to remove all records containing pure images. This resulted in the removal of 17,650 records.

+ +

Formula Replacement

+

As mentioned earlier, our data still contained formula pictures, and we recognized the importance of including formulae to ensure diversity in our data. To address this, we extracted 8,144 unique formula images from a pool of 34,062 LaTeX formulas derived from 5,574 questions. These images were then processed using a Formula OCR (Optical Character Recognition) model, followed by manual verification to ensure formula accuracy. Ultimately, we obtained a clean data consisting of 71,149 instances.

+

Data Format

+ + + +

Here is an example record:

+ +
+

+ Question: Forward: Backward
+ Material: Please select the option that best resembles the relationship between the given words or phrases in the question stem.
+ Type: Single Choice
+ Options:
+ A. Urge: Advise
+ B. Ocean: Land
+ C. Vibration: Quiet
+ D. Extend: Compress
+ Choice: D
+ Difficulty: 4
+ KeyPoints: Semantic Relationship - Antonym
+ Human Accuracy: 79.564999
+ Human Count: 183494
+ Most Wrong: C
+ Solution: Step 1: Determine the logical relationship between the words in the question stem. The two words in the question stem are antonyms. Step 2: Determine the logical relationship between the options. The option that has the same logical relationship as the question stem is option D. Option A is a synonym relationship, option B is a parallel relationship, and in option C, the antonym of "quiet" should be "noisy" instead of "vibration". Therefore, the correct answer is D.
+ Source: 2011 Jiangsu Province Civil Service Recruitment Examination 'Administrative Aptitude Test' (Category A), Question 41
+ Formulas: 0 +

+
+ +

Evaluation(Not Implement Yet)

+

To mitigate the impact of data leakage during model pretraining on benchmark evaluations, we have employed multiple benchmark evaluation tricks to enhance fairness and real-time performance of the benchmarks.

+ +

Confusion of Options Order

+

Sometimes, a model's correct answer to a specific question may not be due to mastering a certain ability or understanding the question, but rather because it has recognized patterns of token order in the training data. By shuffling the order of options in multiple-choice questions and making multiple predictions with the correct answer placed in different options, we can average the results to reduce the model's reliance on character order.

+ +

Season For Dynamic Evaluation

+

Thanks to sampling strategies optimized for ANGO, we can periodically sample the test set and update the leaderboard. This prevents certain institutions or individuals from maliciously hacking ANGO to inflate the model's performance. However, due to the limited number of questions in some key areas, dynamic iteration may not be feasible for all questions.

+ +

Question Elimination Mechanism

+

In addition to the aforementioned dynamic updating of season, a new question elimination mechanism has been proposed. This mechanism calculates the average accuracy of each question across all models for each iteration. Questions with accuracies exceeding a threshold are temporarily removed by ANGO to ensure reliable discrimination among questions in ANGO.

+""" diff --git a/assets/difficulty_distribution.json b/assets/difficulty_distribution.json new file mode 100644 index 0000000000000000000000000000000000000000..00585755983006eba1abc5eb1abfb99bc24921d2 --- /dev/null +++ b/assets/difficulty_distribution.json @@ -0,0 +1 @@ +{"data":[{"marker":{"color":[24,130,9283,18231,23734,10120,9546,69,12],"colorbar":{"title":{"text":"Total"}},"colorscale":[[0.0,"#440154"],[0.1111111111111111,"#482878"],[0.2222222222222222,"#3e4989"],[0.3333333333333333,"#31688e"],[0.4444444444444444,"#26828e"],[0.5555555555555556,"#1f9e89"],[0.6666666666666666,"#35b779"],[0.7777777777777778,"#6ece58"],[0.8888888888888888,"#b5de2b"],[1.0,"#fde725"]]},"x":[1,2,3,4,5,6,7,8,9],"y":[24,130,9283,18231,23734,10120,9546,69,12],"type":"bar"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"yaxis":{"type":"log"}}} \ No newline at end of file diff --git a/assets/evaluation.py b/assets/evaluation.py new file mode 100644 index 0000000000000000000000000000000000000000..b2c625686ed23aa67c42815d4ddf372344e8daec --- /dev/null +++ b/assets/evaluation.py @@ -0,0 +1,185 @@ +import os +import json +import re +import argparse +import torch +import gc +from tqdm import tqdm + +from transformers import AutoModelForCausalLM, AutoModel, AutoTokenizer + +os.environ['CUDA_VISIBLE_DEVICES'] = '1' + + +def parse_args(): + parser = argparse.ArgumentParser(description='Validation') + parser.add_argument('--model_path', dest="model_path") + parser.add_argument('--dataset_path', dest="dataset_path") + parser.add_argument('--save_path', dest='save_path') + parser.add_argument('--max_length', dest="max_length", default=2000) + parser.add_argument('--max_new_tokens', dest="max_new_tokens", default=48) + parser.add_argument('--input_template', dest="input_template", + default="材料:{material}\n问题:{question}\n{options}\n答案:{response}") + parser.add_argument('--query_template', dest="query_template", default="问题:{question}\n{options}\n答案:{response}") + parser.add_argument('--system_prompt', dest="system_prompt", + default="你是一名考生,请回答问题的正确选项,比如C。如果有多个正确选项,请按顺序回答所有正确选项,比如ABD。") + parser.add_argument('--level_delimiter', dest="level_delimiter", default="|") + args = parser.parse_args() + return args + + +class Validator: + def __init__(self, args): + self.load_model(args.model_path) + self.load_dataset(args.dataset_path) + self.save_dir = os.path.join(args.save_path, os.path.split(model_path)[-1]) + if not os.path.exists(self.save_dir): + os.makedirs(self.save_dir) + + self.max_length = args.max_length + self.max_new_tokens = args.max_new_tokens + self.input_template = args.input_template + self.query_template = args.query_template + self.system_prompt = args.system_prompt + self.level_delimiter = args.level_delimiter + + def load_model(self, model_path): + self.tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True) + + self.model = AutoModelForCausalLM.from_pretrained(model_path, device_map={"": 0}, trust_remote_code=True) + self.model.eval() + + def load_dataset(self, dataset_path): + self.dataset = json.load(open(dataset_path, encoding="utf-8")) + + def format_prompt(self, material, question, options, response): + if material: + return self.input_template.format(material=material, question=question, options=options, + response=response).strip() + return self.query_template.format(question=question, options=options, response=response).strip() + + def build_prompt(self, item): + query_prompt = self.format_prompt(item['material'], item['question'], item['options'], "") + history_prompts = [] + for sub in item['history']: + history_prompts.append(self.format_prompt(sub['material'], sub['question'], sub['options'], sub['choice'])) + + final_prompt = self.system_prompt + "\n" + "\n".join(history_prompts) + "\n" + query_prompt + + if len(self.tokenizer.tokenize(final_prompt)) > self.max_length: + history_prompts.pop() + break + return self.system_prompt + "\n" + "\n".join(history_prompts) + "\n" + query_prompt + + def get_predict(self, prompt): + gen_kwargs = {"do_sample": False, "max_new_tokens": self.max_new_tokens} + inputs = self.tokenizer([prompt], return_tensors="pt") + inputs = inputs.to(self.model.device) + with torch.no_grad(): + outputs = self.model.generate(**inputs, return_dict_in_generate=True, **gen_kwargs) + predict = self.tokenizer.decode(outputs.sequences[0], skip_special_tokens=True)[len(prompt):] + return predict + + def extract_answer(self, results): + predict_result = {"acc": 0, "wrong_value": 0, "human_acc": 0, "hit": 0, "total": 0, "wrong_hit": 0, + "wrong_total": 0, 'detail': []} + for result in results: + answer = result['item']['choice'] + most_wrong = result['item']['most_wrong'] + human_acc = result['item']['human_acc'] * 0.01 + + predict = "" + for e in re.split(r'[、,.,和\s]\s*', result['predict']): + if not e.isascii(): + break + predict += e + result['predict'] = predict + predict_result['detail'].append( + {"answer": answer, "most_wrong": most_wrong, "predict": predict, "human_acc": human_acc}) + predict_result['hit'] += 1 if answer == predict else 0 + predict_result['wrong_hit'] += 1 if most_wrong == predict else 0 + predict_result['wrong_value'] += 1 - human_acc if most_wrong == predict else 0 + predict_result['human_acc'] += human_acc + predict_result['total'] += 1 + predict_result['acc'] = predict_result['hit'] / predict_result['total'] + predict_result['wrong_total'] = predict_result['total'] - predict_result['hit'] + predict_result['wrong_value'] = predict_result['wrong_value'] / predict_result['wrong_total'] + predict_result['human_acc'] = predict_result['human_acc'] / len(results) + + json.dump(predict_result, open(os.path.join(self.save_dir, "acc_result.json"), "w", encoding="utf-8"), + ensure_ascii=False) + + def category_summary(self, results): + category_result = {"总计": {"hit": 0, "all": 0, "difficulty": {}, "human_acc": 0}} + for result in results: + hit = 1 if result['item']['choice'] == result['predict'] else 0 + categories_list = result['item']['categories'] + difficulty = result['item']['difficulty'] + human_acc = result['item']['human_acc'] + for categories in categories_list: + if difficulty not in category_result["总计"]["difficulty"]: + category_result["总计"]["difficulty"][difficulty] = {"hit": 0, "all": 0} + category_result["总计"]["difficulty"][difficulty]['hit'] += hit + category_result["总计"]["difficulty"][difficulty]['all'] += 1 + category_result["总计"]['hit'] += hit + category_result["总计"]['all'] += 1 + category_result["总计"]['human_acc'] += human_acc + category_subset = [] + for category in categories: + category_subset.append(category) + category_name = self.level_delimiter.join(category_subset) + if not category_name: + category_name = "未分类" + if category_name not in category_result: + category_result[category_name] = {"hit": 0, "all": 0, "difficulty": {}, "human_acc": 0} + if difficulty not in category_result[category_name]["difficulty"]: + category_result[category_name]["difficulty"][difficulty] = {"hit": 0, "all": 0} + category_result[category_name]["difficulty"][difficulty]['hit'] += hit + category_result[category_name]["difficulty"][difficulty]['all'] += 1 + category_result[category_name]['hit'] += hit + category_result[category_name]['all'] += 1 + category_result[category_name]['human_acc'] += human_acc + + for k, v in category_result.items(): + v['acc'] = v['hit'] / v['all'] + v['human_acc'] = v['human_acc'] / v['all'] + for d, sub_v in v['difficulty'].items(): + sub_v['acc'] = sub_v['hit'] / sub_v['all'] + json.dump(category_result, open(os.path.join(self.save_dir, "category_result.json"), "w", encoding="utf-8"), + ensure_ascii=False) + + def difficulty_summary(self, results): + difficulty_result = {"总计": {"hit": 0, "all": 0}} + for result in results: + hit = 1 if result['item']['choice'] == result['predict'] else 0 + difficulty = result['item']['difficulty'] + if difficulty not in difficulty_result: + difficulty_result[difficulty] = {"hit": 0, "all": 0} + difficulty_result[difficulty]['hit'] += hit + difficulty_result[difficulty]['all'] += 1 + difficulty_result["总计"]['hit'] += hit + difficulty_result["总计"]['all'] += 1 + + for k in difficulty_result: + difficulty_result[k]['acc'] = difficulty_result[k]['hit'] / difficulty_result[k]['all'] + + json.dump(difficulty_result, open(os.path.join(self.save_dir, "difficulty_result.json"), "w", encoding="utf-8"), + ensure_ascii=False) + + def __call__(self): + results = [] + for item in tqdm(self.dataset): + prompt = self.build_prompt(item) + predict = self.get_predict(prompt) + results.append({"item": item, "predict": predict}) + gc.collect() + + json.dump(results, open(os.path.join(self.save_dir, "raw.json"), "w", encoding="utf-8"), ensure_ascii=False) + self.extract_answer(results) + self.category_summary(results) + self.difficulty_summary(results) + + +if __name__ == "__main__": + args = parse_args() + Validator(args)() diff --git a/assets/keypoint_distribution.json b/assets/keypoint_distribution.json new file mode 100644 index 0000000000000000000000000000000000000000..da3d02756a15e4c2c448f6da2f5dbd45d39ea452 --- /dev/null +++ b/assets/keypoint_distribution.json @@ -0,0 +1 @@ +{"data":[{"branchvalues":"total","insidetextorientation":"radial","labels":["关联词-转折","关联词-因果","关联词-对策","关联词-并列","主题词","程度词","行文脉络-总分","行文脉络-分总","行文脉络-分总分","特殊问法","实词","代词","首句特征","非首句特征","确定捆绑","确定顺序","尾句特征","开头","中间","结尾","词的辨析-词义侧重","词的辨析-固定搭配","词的辨析-感情色彩","词的辨析-程度轻重","关联关系-转折关系","关联关系-因果关系","关联关系-并列关系","对应关系-解释类对应","对应关系-重点词句对应","给完工时间型","给效率比例型","给具体单位型","工程问题-其他","非典型最值问题","构造数列","最不利构造","多集合反向构造","周期相遇问题","周期余数问题","周期问题-其他","火车过桥","平均速度","普通行程","相遇追及","流水行船","行程问题-其他","平面几何","立体几何","两集合","三集合","基础排列组合","相邻问题","不相邻问题","同素分堆问题","环形排列问题","错位排列","排列组合问题-其他","给情况求概率","给概率求概率","概率问题-其他","普通不定方程","不定方程组","主客体","大前提","方式目的","原因结果","单定义-其他句式","故事类","拆词","常规问法","搭桥","必要条件","补充论据","加强选非题","加强-其他","削弱论点","拆桥","他因削弱","削弱选非题","削弱论据","因果倒置","削弱-其他","常规翻译","集合推理","推理形式","翻译推理-其他","语义关系-近义关系","语义关系-反义关系","语义-其他","逻辑关系-全同关系","逻辑关系-并列关系","逻辑关系-交叉关系","逻辑关系-包容关系","逻辑关系-对应关系","中心理解题","细节判断题","词句理解题","标题填入题","语句排序题","语句填空题","接语选择题","实词填空","成语填空","混搭填空","词的辨析","语境分析","工程问题","最值问题","年龄问题","和差倍比问题","周期问题","数列问题","行程问题","几何问题","容斥原理问题","排列组合问题","概率问题","经济利润问题","不定方程问题","统筹规划问题","数学运算-其他","公倍数与公约数问题","单定义","多定义","加强题型","削弱题型","翻译推理","组合排列-材料","原因解释","语义关系","逻辑关系","拆分思维","直接找数","简单加减计算","排序类","基期计算","现期计算","基期比较","间隔基期","基期和差","现期追赶","一般增长率","混合增长率","间隔增长率","年均增长率","增长量计算","增长量比较","间隔增长量","年均增长量","现期比重","基期比重","两期比重","混合比重","基期平均数","现期平均数","平均数的增长率","平均数的增长量","两期平均数比较","基期倍数","现期倍数","比值计算","比值比较","时政","中国特色社会主义建设","宏观经济与调控政策","物理常识","化学常识","生物常识","科技理论与成就","生活常识","中国历史","世界历史","文学常识","文化常识","自然常识","国情社情","宪法","行政法","民法","刑法","劳动法","其他法律法规","民事诉讼法","经济法","阅读理解","语句表达","逻辑填空","数学运算","定义判断","逻辑判断","类比推理","文字资料","综合资料","简单计算","基期与现期","增长率","增长量","比重问题","平均数问题","倍数与比值相关","综合分析","政治常识","经济常识","科技常识","人文常识","地理国情","法律常识","未分类","言语理解与表达","数量关系","判断推理","资料分析","常识判断"],"marker":{"colors":["#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#B22222","#B22222","#B22222","#CC6600","#CC9900","#CC9900","#CC9900","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#9400D3","#B22222","#CC6600","#CC9900","#228B22","#0077BE"]},"parents":["中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","词句理解题","词句理解题","语句排序题","语句排序题","语句排序题","语句排序题","语句排序题","语句填空题","语句填空题","语句填空题","词的辨析","词的辨析","词的辨析","词的辨析","语境分析","语境分析","语境分析","语境分析","语境分析","工程问题","工程问题","工程问题","工程问题","最值问题","最值问题","最值问题","最值问题","周期问题","周期问题","周期问题","行程问题","行程问题","行程问题","行程问题","行程问题","行程问题","几何问题","几何问题","容斥原理问题","容斥原理问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","概率问题","概率问题","概率问题","不定方程问题","不定方程问题","单定义","单定义","单定义","单定义","单定义","单定义","单定义","多定义","加强题型","加强题型","加强题型","加强题型","加强题型","削弱题型","削弱题型","削弱题型","削弱题型","削弱题型","削弱题型","削弱题型","翻译推理","翻译推理","翻译推理","翻译推理","语义关系","语义关系","语义关系","逻辑关系","逻辑关系","逻辑关系","逻辑关系","逻辑关系","阅读理解","阅读理解","阅读理解","阅读理解","语句表达","语句表达","语句表达","逻辑填空","逻辑填空","逻辑填空","逻辑填空","逻辑填空","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","定义判断","定义判断","逻辑判断","逻辑判断","逻辑判断","逻辑判断","逻辑判断","类比推理","类比推理","类比推理","简单计算","简单计算","简单计算","基期与现期","基期与现期","基期与现期","基期与现期","基期与现期","基期与现期","增长率","增长率","增长率","增长率","增长量","增长量","增长量","增长量","比重问题","比重问题","比重问题","比重问题","平均数问题","平均数问题","平均数问题","平均数问题","平均数问题","倍数与比值相关","倍数与比值相关","倍数与比值相关","倍数与比值相关","政治常识","政治常识","经济常识","科技常识","科技常识","科技常识","科技常识","科技常识","人文常识","人文常识","人文常识","人文常识","地理国情","地理国情","法律常识","法律常识","法律常识","法律常识","法律常识","法律常识","法律常识","法律常识","言语理解与表达","言语理解与表达","言语理解与表达","数量关系","判断推理","判断推理","判断推理","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","常识判断","常识判断","常识判断","常识判断","常识判断","常识判断","","","","","",""],"values":[892,340,1028,634,1029,211,649,1130,409,629,193,153,110,139,659,560,38,234,417,295,1116,3837,801,808,662,378,1371,2173,4832,162,203,149,51,339,154,111,20,80,103,32,22,38,211,322,75,14,230,183,124,157,373,51,41,29,16,18,23,304,108,36,125,126,266,433,1148,521,1300,118,209,525,582,308,598,220,8,708,226,110,155,90,81,5,708,133,325,36,210,178,117,113,761,278,873,2087,6957,2221,346,465,1506,946,750,3340,2396,2474,6562,9416,565,624,169,1063,215,216,682,413,281,551,448,565,251,163,19,63,3995,525,1716,1375,1202,708,525,505,4112,240,105,118,52,152,24,18,22,61,7,147,50,41,2,113,34,4,2,244,120,91,2,35,94,53,7,3,50,64,32,1,3751,247,433,614,362,687,627,631,737,124,916,1087,568,629,347,669,513,309,75,641,69,105,9989,3202,24188,6288,4520,5526,4857,2168,1,275,284,240,153,457,192,147,441,3999,435,2921,2866,1198,2728,15907,37379,6288,14903,4358,14147],"type":"sunburst"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}}}} \ No newline at end of file diff --git a/assets/path.py b/assets/path.py new file mode 100644 index 0000000000000000000000000000000000000000..fb3acc6d017e053bce0db379410e73fb8e86a663 --- /dev/null +++ b/assets/path.py @@ -0,0 +1,4 @@ +SEASON = { + "latest": "202309", + "2023-09": "202309" +} \ No newline at end of file diff --git a/components/__pycache__/__init__.cpython-39.pyc b/components/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65750448219acc8dca30834bbf98e0a12aba8c31 Binary files /dev/null and b/components/__pycache__/__init__.cpython-39.pyc differ diff --git a/components/__pycache__/about.cpython-39.pyc b/components/__pycache__/about.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2aac51d158e4de13fd6564713c626d21b2d0ccfa Binary files /dev/null and b/components/__pycache__/about.cpython-39.pyc differ diff --git a/components/__pycache__/data.cpython-39.pyc b/components/__pycache__/data.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3cd34e6c5105e4d88d0244c65ac67acf99b46a31 Binary files /dev/null and b/components/__pycache__/data.cpython-39.pyc differ diff --git a/components/__pycache__/detail.cpython-39.pyc b/components/__pycache__/detail.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9ce70fa95da83b4c9c394f007409f13c511aacb Binary files /dev/null and b/components/__pycache__/detail.cpython-39.pyc differ diff --git a/components/__pycache__/result.cpython-39.pyc b/components/__pycache__/result.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3b804411827dfda37dabc6052fa8276f8525738 Binary files /dev/null and b/components/__pycache__/result.cpython-39.pyc differ diff --git a/components/__pycache__/submit.cpython-39.pyc b/components/__pycache__/submit.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..152cc33fa6b2371bca35a00ec9eddb195a55bc84 Binary files /dev/null and b/components/__pycache__/submit.cpython-39.pyc differ diff --git a/components/__pycache__/top.cpython-39.pyc b/components/__pycache__/top.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aeed58d0a72fd1a52b64b059c64a0845cc73ad70 Binary files /dev/null and b/components/__pycache__/top.cpython-39.pyc differ diff --git a/components/about.py b/components/about.py new file mode 100644 index 0000000000000000000000000000000000000000..3d3cfeab5e810af2350b16add9b42e2963ee1e04 --- /dev/null +++ b/components/about.py @@ -0,0 +1,7 @@ +import gradio as gr + +from assets.content import ABOUT_HTML + + +def create_about(): + gr.HTML(ABOUT_HTML) \ No newline at end of file diff --git a/components/data.py b/components/data.py new file mode 100644 index 0000000000000000000000000000000000000000..ed6364ed62c131e61f711582a48c3eddbbabe595 --- /dev/null +++ b/components/data.py @@ -0,0 +1,80 @@ +import os + +import gradio as gr +import pandas as pd +import plotly +import plotly.graph_objects as go + +from assets.color import color_dict +from assets.path import SEASON + + +def read_testset(season): + return pd.read_json(os.path.join("results", SEASON[season], "test_dataset.json")) + + +def build_keypoint_plot(dataset): + keypoint_set = {} + for i, categories in enumerate(dataset['categories']): + for category in categories: + parent = "" + for keypoint in category: + if not keypoint: + keypoint = "未分类" + if keypoint not in keypoint_set: + keypoint_set[keypoint] = {"value": 0} + keypoint_set[keypoint]['value'] += 1 + keypoint_set[keypoint]['parent'] = parent + keypoint_set[keypoint]['color'] = category[0] if category[0] else "未分类" + parent = keypoint + + labels, parents, values, colors = [], [], [], [] + for k, v in keypoint_set.items(): + labels.append(k) + parents.append(v['parent']) + values.append(v['value']) + colors.append(color_dict[v['color']]) + + fig = go.Figure(go.Sunburst( + labels=labels, + parents=parents, + values=values, + branchvalues="total", + insidetextorientation='radial', + marker={"colors": colors} + )) + return fig + + +def build_difficulty_plot(dataset): + xs = sorted(dataset['difficulty'].unique()) + ys = [len(dataset[dataset['difficulty'] == x]) for x in xs] + + fig = go.Figure([go.Bar(x=xs, y=ys, marker={"color": ys, "colorscale": "Viridis", + "colorbar": {"title": "Total"}})]) + fig.update_layout(yaxis=dict(type='log')) + return fig + + +def build_plot(season): + dataset = pd.read_json(os.path.join("results", SEASON[season], "test_dataset.json")) + return build_keypoint_plot(dataset), build_difficulty_plot(dataset) + + +def create_data(top_components): + with gr.Tab("All data"): + with gr.Row(): + all_keypoint_plot = gr.Plot( + plotly.io.from_json(open("assets/keypoint_distribution.json", encoding="utf-8").read()), + label="Keypoint Distribution") + all_difficulty_plot = gr.Plot( + plotly.io.from_json(open("assets/difficulty_distribution.json", encoding="utf-8").read()), + label="Difficulty Distribution") + with gr.Tab("Test Data"): + with gr.Row(): + k_fig, d_fig = build_plot("latest") + test_keypoint_plot = gr.Plot(k_fig, label="Keypoint Distribution") + test_difficulty_plot = gr.Plot(d_fig, label="Difficulty Distribution") + + return {"all_keypoint": all_keypoint_plot, "all_difficulty": all_difficulty_plot, + "test_keypoint": test_keypoint_plot, "test_difficulty": test_difficulty_plot} diff --git a/components/detail.py b/components/detail.py new file mode 100644 index 0000000000000000000000000000000000000000..abbe01fc61e375df2f7c4e15b57254c54e1dff76 --- /dev/null +++ b/components/detail.py @@ -0,0 +1,85 @@ +import json +import os + +import gradio as gr +import plotly.graph_objects as go + +from assets.constant import DELIMITER +from assets.path import SEASON + +DEEPEST = 4 + + +def build_plot(category_result, columns): + k_x, k_y, k_text, k_color = [], [], [], [] + d_xy = {} + for c in columns: + k_x.append(c.split(DELIMITER)[-1]) + result = category_result.get(c) + k_y.append(round(result.get("acc"), 4)) + sub_count = sum([1 for k in category_result if k.startswith(c)]) - 1 + k_text.append( + f'hit:{result.get("hit")} sub_count:{sub_count}') + for d, v in result['difficulty'].items(): + if d not in d_xy: + d_xy[d] = {"hit": 0, "all": 0} + d_xy[d]['hit'] += v['hit'] + d_xy[d]['all'] += v['all'] + k_color.append(result.get("all")) + d_x = sorted(d_xy, reverse=True) + d_y, d_text, d_color = [], [], [] + for d in d_x: + v = d_xy[d] + d_y.append(v['hit'] / v['all']) + d_text.append(f'hit/total:{v["hit"]}/{v["all"]}') + d_color.append(v['all']) + + k_fig = go.Figure([go.Bar(x=k_x, y=k_y, hovertext=k_text, marker={"color": k_color, "colorscale": "Viridis", + "colorbar": {"title": "Total"}})]) + k_fig.update_layout(yaxis=dict(range=[0, 1])) + d_fig = go.Figure([go.Bar(x=d_x, y=d_y, hovertext=d_text, + marker={"color": d_color, "colorscale": "Cividis", "colorbar": {"title": "Total"}})]) + d_fig.update_layout(yaxis=dict(range=[0, 1])) + return k_fig, d_fig, k_x + + +def create_detail(top_components): + models = os.listdir(os.path.join("results", SEASON["latest"], "details")) + model_dropdown = gr.Dropdown(choices=models, label="Select Model") + + category_result = gr.State() + with gr.Row(): + keypoint_dropdowns = [gr.Dropdown([], visible=False, label=f"Level{i + 1}") for i in range(DEEPEST)] + keypoint_plot = gr.Plot(label="Keypoint Acc") + difficulty_plot = gr.Plot(label="Difficulty Acc") + + for i in range(DEEPEST): + keypoint_dropdown = keypoint_dropdowns[i] + + def keypoint_dropdown_func(x, *args): + keypoints = DELIMITER.join(args) + columns = [k for k in x if k.startswith(keypoints) and k.count(DELIMITER) == len(args)] + sub = True + if not columns: + columns = [keypoints] + sub = False + k_fig, d_fig, choices = build_plot(x, columns) + updates = list(args) + [gr.update(choices=choices, visible=sub)] + [ + gr.update(choices=[], visible=False)] * (DEEPEST - len(args) - 1) + return gr.update(value=k_fig), gr.update(value=d_fig), *updates + + keypoint_dropdown.input(keypoint_dropdown_func, [category_result, *keypoint_dropdowns[:i + 1]], + [keypoint_plot, difficulty_plot, *keypoint_dropdowns]) + + def model_dropdown_func(x): + dir = os.path.join("results", SEASON["latest"], "details", x) + new_category_result = json.load(open(os.path.join(dir, "category_result-all.json"), encoding="utf-8")) + columns = sorted([k for k in new_category_result if k.count(DELIMITER) == 0], + key=lambda c: new_category_result[c]['all'], reverse=True) + k_fig, d_fig, choices = build_plot(new_category_result, columns) + return new_category_result, gr.update(value=k_fig), gr.update(value=d_fig), gr.update(choices=choices, + visible=True), *[ + gr.update(value=None, visible=False) for _ in range(DEEPEST - 1)] + + model_dropdown.change(model_dropdown_func, model_dropdown, [category_result, keypoint_plot, difficulty_plot, + *keypoint_dropdowns]) diff --git a/components/result.py b/components/result.py new file mode 100644 index 0000000000000000000000000000000000000000..e8c9e00d5e8f837f23330d856f11b787f1a0ea21 --- /dev/null +++ b/components/result.py @@ -0,0 +1,57 @@ +import json +import os + +import gradio as gr +import pandas as pd + +from assets.constant import DELIMITER +from assets.content import KEYPOINT_TEXT +from assets.path import SEASON + + +def build_question(season): + dir = os.path.join("results", SEASON[season], "details") + rows = [] + for model in os.listdir(dir): + acc_result = json.load(open(os.path.join(dir, model, "acc_result.json"), encoding="utf-8")) + rows.append( + [model, round(acc_result['acc'], 4), round(acc_result['human_acc'], 4), round(acc_result['wrong_value'], 4), + acc_result['hit'],acc_result['wrong_hit'], acc_result['wrong_total'], acc_result['total']]) + return pd.DataFrame(rows, columns=["Model", "Acc", "Human Acc", "Wrong Value", "Hit", "Wrong Hit", "Wrong Total", + "Total"]).sort_values("Acc", ascending=False) + + +def build_keypoint(season): + dir = os.path.join("results", SEASON[season], "details") + rows, columns, final_columns = [], [], [] + for model in os.listdir(dir): + category_result = json.load(open(os.path.join(dir, model, "category_result-all.json"), encoding="utf-8")) + if not columns: + columns = sorted([k for k in category_result if not k.count(DELIMITER)], + key=lambda x: category_result[x]['all'], reverse=True) + final_columns = [f"{c}:{category_result.get(c).get('all')}" for c in columns] + rows.append([model] + [round(category_result.get(c).get("acc"), 4) for c in columns]) + return pd.DataFrame(rows, columns=["Model"] + final_columns).sort_values(final_columns[0], ascending=False) + + +def build_difficulty(season): + dir = os.path.join("results", SEASON[season], "details") + rows, columns, final_columns = [], [], [] + for model in os.listdir(dir): + difficulty_result = json.load(open(os.path.join(dir, model, "difficulty_result.json"), encoding="utf-8")) + if not columns: + columns = sorted(difficulty_result, reverse=True) + final_columns = [f"{c}:{difficulty_result.get(c).get('all')}" for c in columns] + rows.append([model] + [round(difficulty_result.get(c).get("acc"), 4) for c in columns]) + + return pd.DataFrame(rows, columns=["Model"] + final_columns).sort_values(final_columns[0], ascending=False) + + +def create_result(top_components): + with gr.Tab("Question Level"): + question_df = gr.DataFrame(build_question("latest"), label="Acc Result") + with gr.Tab("Keypoint Level"): + gr.Markdown(KEYPOINT_TEXT) + keypoint_df = gr.DataFrame(build_keypoint("latest"), label="Keypoint Level1 Result") + with gr.Tab("Difficulty Level"): + difficulty_df = gr.DataFrame(build_difficulty("latest"), label="Difficulty Result") diff --git a/components/submit.py b/components/submit.py new file mode 100644 index 0000000000000000000000000000000000000000..8e50fceabf0a41dc779c860193cd3f122bd1c784 --- /dev/null +++ b/components/submit.py @@ -0,0 +1,15 @@ +import os + +import gradio as gr + +from assets.content import SUBMIT_TEXT, TEST_SCRIPT_TEXT, TEST_SET_TEXT +from assets.path import SEASON + + +def create_submit(): + test_box = gr.Markdown(value=TEST_SET_TEXT, scale=4) + test_file = gr.File(value=os.path.join("results", SEASON["latest"], "test_dataset.json"), + label="Test Set", scale=1) + script_box = gr.Markdown(value=TEST_SCRIPT_TEXT, scale=4) + script_button = gr.File(value=os.path.join("assets/evaluation.py"), label="Test Set", scale=1) + gr.Markdown(SUBMIT_TEXT) \ No newline at end of file diff --git a/components/top.py b/components/top.py new file mode 100644 index 0000000000000000000000000000000000000000..941ed3874abc2f05b433dbf35411c75422b842f1 --- /dev/null +++ b/components/top.py @@ -0,0 +1,13 @@ +import gradio as gr + +from assets.content import TITLE, INTRODUCTION_TEXT +from assets.path import SEASON + + +def create_top(): + gr.HTML(TITLE) + gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text") + with gr.Row(): + season_dropdown = gr.Dropdown(choices=list(SEASON), value="latest", label="Season Select") + language_dropdown = gr.Dropdown(choices=['en', 'zh'], value='en', label='Language Select') + return {"season": season_dropdown, "language": language_dropdown} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..7485729a7cb18f424bcc8ddbe8e9d6e89c16fa3e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +plotly +pandas \ No newline at end of file diff --git a/results/202309/details/Atom-7B/acc_result.json b/results/202309/details/Atom-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..818985c3bec91794d8b4ab62d87cd318bf46171d --- /dev/null +++ b/results/202309/details/Atom-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.334841628959276, "wrong_value": 0.1821690595199089, "human_acc": 0.6055938546977998, "hit": 592, "total": 1768, "wrong_hit": 495, "wrong_total": 1176, "detail": [{"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "A", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "A", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "BC", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "AB", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "B", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "ABD", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "A", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "A", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "AB", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "BCD", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "D", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "A", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "BCD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "A", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Atom-7B/category_result-all.json b/results/202309/details/Atom-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..0b078f4bc19b231aa893b01bc5c8453539e8ccfb --- /dev/null +++ b/results/202309/details/Atom-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1329, "all": 3862, "difficulty": {"3": {"hit": 227, "all": 546, "acc": 0.4157509157509158}, "4": {"hit": 439, "all": 1078, "acc": 0.4072356215213358}, "5": {"hit": 351, "all": 1102, "acc": 0.31851179673321234}, "6": {"hit": 195, "all": 647, "acc": 0.30139103554868624}, "7": {"hit": 115, "all": 485, "acc": 0.23711340206185566}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.3441222164681512}, "判断推理": {"hit": 115, "all": 350, "difficulty": {"3": {"hit": 20, "all": 41, "acc": 0.4878048780487805}, "4": {"hit": 31, "all": 77, "acc": 0.4025974025974026}, "5": {"hit": 52, "all": 155, "acc": 0.33548387096774196}, "6": {"hit": 10, "all": 55, "acc": 0.18181818181818182}, "7": {"hit": 2, "all": 22, "acc": 0.09090909090909091}}, "human_acc": 67.0821947146088, "acc": 0.32857142857142857}, "判断推理|类比推理": {"hit": 29, "all": 96, "difficulty": {"3": {"hit": 9, "all": 12, "acc": 0.75}, "4": {"hit": 5, "all": 20, "acc": 0.25}, "5": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.3020833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 18, "all": 52, "difficulty": {"3": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.34615384615384615}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.45454545454545453}, "判断推理|类比推理|语义关系": {"hit": 7, "all": 30, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.23333333333333334}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 69, "all": 226, "difficulty": {"5": {"hit": 29, "all": 87, "acc": 0.3333333333333333}, "7": {"hit": 10, "all": 48, "acc": 0.20833333333333334}, "6": {"hit": 16, "all": 50, "acc": 0.32}, "4": {"hit": 14, "all": 38, "acc": 0.3684210526315789}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 46.34274676514825, "acc": 0.3053097345132743}, "常识判断|人文常识": {"hit": 14, "all": 42, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.3333333333333333}, "常识判断|人文常识|文化常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.2}, "常识判断|人文常识|文学常识": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.5}, "常识判断|人文常识|中国历史": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.2}, "常识判断|科技常识": {"hit": 15, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.3}, "常识判断|科技常识|科技理论与成就": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.2}, "常识判断|地理国情": {"hit": 3, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.14285714285714285}, "常识判断|地理国情|自然常识": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.0}, "常识判断|科技常识|化学常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.2}, "常识判断|科技常识|生物常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.6}, "常识判断|地理国情|国情社情": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.3}, "常识判断|法律常识": {"hit": 29, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 42.31029945337126, "acc": 0.3625}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.35864705227, "acc": 0.3}, "常识判断|人文常识|世界历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.4}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.16666666666666666}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 131, "all": 485, "difficulty": {"5": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 25, "all": 68, "acc": 0.36764705882352944}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.27010309278350514}, "数量关系|数学运算": {"hit": 131, "all": 485, "difficulty": {"5": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 25, "all": 68, "acc": 0.36764705882352944}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.27010309278350514}, "数量关系|数学运算|几何问题": {"hit": 8, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.3333333333333333}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 11, "all": 65, "difficulty": {"5": {"hit": 1, "all": 16, "acc": 0.0625}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.16923076923076924}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 7, "all": 34, "difficulty": {"5": {"hit": 1, "all": 10, "acc": 0.1}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.20588235294117646}, "常识判断|法律常识|行政法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.4}, "常识判断|法律常识|其他法律法规": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.4}, "常识判断|政治常识": {"hit": 6, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.2857142857142857}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.2}, "数量关系|数学运算|周期问题": {"hit": 9, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 38.245969273603045, "acc": 0.2727272727272727}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 19, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 7, "all": 14, "acc": 0.5}, "7": {"hit": 5, "all": 36, "acc": 0.1388888888888889}}, "human_acc": 33.405759431517595, "acc": 0.25675675675675674}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 7, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.5}, "言语理解与表达": {"hit": 877, "all": 2295, "difficulty": {"5": {"hit": 195, "all": 587, "acc": 0.3321976149914821}, "4": {"hit": 314, "all": 707, "acc": 0.44413012729844414}, "3": {"hit": 187, "all": 455, "acc": 0.41098901098901097}, "6": {"hit": 111, "all": 327, "acc": 0.3394495412844037}, "7": {"hit": 70, "all": 219, "acc": 0.319634703196347}}, "human_acc": 66.81637952144999, "acc": 0.3821350762527233}, "言语理解与表达|逻辑填空": {"hit": 658, "all": 1841, "difficulty": {"5": {"hit": 156, "all": 498, "acc": 0.3132530120481928}, "4": {"hit": 210, "all": 513, "acc": 0.4093567251461988}, "3": {"hit": 150, "all": 384, "acc": 0.390625}, "6": {"hit": 88, "all": 277, "acc": 0.3176895306859206}, "7": {"hit": 54, "all": 169, "acc": 0.31952662721893493}}, "human_acc": 66.44656371118516, "acc": 0.3574144486692015}, "言语理解与表达|逻辑填空|实词填空": {"hit": 50, "all": 151, "difficulty": {"5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "4": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 10, "all": 26, "acc": 0.38461538461538464}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.33112582781456956}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 225, "all": 622, "difficulty": {"5": {"hit": 50, "all": 163, "acc": 0.3067484662576687}, "4": {"hit": 73, "all": 172, "acc": 0.42441860465116277}, "3": {"hit": 54, "all": 131, "acc": 0.4122137404580153}, "7": {"hit": 22, "all": 60, "acc": 0.36666666666666664}, "6": {"hit": 26, "all": 96, "acc": 0.2708333333333333}}, "human_acc": 66.76874610652267, "acc": 0.3617363344051447}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 56, "all": 143, "difficulty": {"5": {"hit": 16, "all": 43, "acc": 0.37209302325581395}, "4": {"hit": 20, "all": 42, "acc": 0.47619047619047616}, "3": {"hit": 10, "all": 25, "acc": 0.4}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 66.64745600073147, "acc": 0.3916083916083916}, "数量关系|数学运算|几何问题|立体几何": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.4166666666666667}, "数量关系|数学运算|和差倍比问题": {"hit": 4, "all": 20, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.2}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 273, "all": 771, "difficulty": {"5": {"hit": 65, "all": 201, "acc": 0.32338308457711445}, "4": {"hit": 87, "all": 217, "acc": 0.4009216589861751}, "3": {"hit": 61, "all": 167, "acc": 0.3652694610778443}, "6": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "7": {"hit": 19, "all": 70, "acc": 0.2714285714285714}}, "human_acc": 66.4145264015949, "acc": 0.3540856031128405}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 54, "all": 165, "difficulty": {"5": {"hit": 13, "all": 45, "acc": 0.28888888888888886}, "4": {"hit": 15, "all": 44, "acc": 0.3409090909090909}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 13, "all": 32, "acc": 0.40625}}, "human_acc": 65.38103981607519, "acc": 0.32727272727272727}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 56, "all": 145, "difficulty": {"4": {"hit": 17, "all": 43, "acc": 0.3953488372093023}, "5": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 14, "all": 31, "acc": 0.45161290322580644}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 69.23037595903519, "acc": 0.38620689655172413}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 44, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 13, "all": 36, "acc": 0.3611111111111111}, "5": {"hit": 9, "all": 32, "acc": 0.28125}, "6": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.32592592592592595}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 74, "all": 203, "difficulty": {"4": {"hit": 23, "all": 56, "acc": 0.4107142857142857}, "5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "3": {"hit": 21, "all": 51, "acc": 0.4117647058823529}, "7": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "6": {"hit": 6, "all": 25, "acc": 0.24}}, "human_acc": 67.67567808645465, "acc": 0.3645320197044335}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 79, "all": 212, "difficulty": {"4": {"hit": 26, "all": 63, "acc": 0.4126984126984127}, "5": {"hit": 16, "all": 43, "acc": 0.37209302325581395}, "3": {"hit": 18, "all": 51, "acc": 0.35294117647058826}, "6": {"hit": 12, "all": 32, "acc": 0.375}, "7": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 67.16383399377828, "acc": 0.37264150943396224}, "常识判断|法律常识|民事诉讼法": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.3}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 44, "all": 137, "difficulty": {"5": {"hit": 9, "all": 36, "acc": 0.25}, "3": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "4": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.32116788321167883}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.4}, "数量关系|数学运算|容斥原理问题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 16, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3902439024390244}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 59, "all": 174, "difficulty": {"5": {"hit": 31, "all": 78, "acc": 0.3974358974358974}, "4": {"hit": 17, "all": 40, "acc": 0.425}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.3390804597701149}, "判断推理|逻辑判断|翻译推理": {"hit": 7, "all": 40, "difficulty": {"5": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.175}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.0}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 51, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 13, "all": 41, "acc": 0.3170731707317073}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "3": {"hit": 8, "all": 29, "acc": 0.27586206896551724}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.33774834437086093}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 22, "all": 65, "difficulty": {"4": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 10, "all": 21, "acc": 0.47619047619047616}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "7": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.3384615384615385}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 51, "all": 139, "difficulty": {"5": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "4": {"hit": 15, "all": 39, "acc": 0.38461538461538464}, "7": {"hit": 5, "all": 10, "acc": 0.5}, "6": {"hit": 7, "all": 28, "acc": 0.25}, "3": {"hit": 15, "all": 27, "acc": 0.5555555555555556}}, "human_acc": 66.39573058612521, "acc": 0.3669064748201439}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.67128810771, "acc": 0.2}, "判断推理|定义判断": {"hit": 27, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 11, "all": 38, "acc": 0.2894736842105263}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 6, "all": 16, "acc": 0.375}}, "human_acc": 74.80628203606001, "acc": 0.3375}, "判断推理|定义判断|单定义": {"hit": 21, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 8, "all": 33, "acc": 0.24242424242424243}, "3": {"hit": 6, "all": 16, "acc": 0.375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.3}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.2}, "数量关系|数学运算|概率问题": {"hit": 9, "all": 41, "difficulty": {"7": {"hit": 0, "all": 17, "acc": 0.0}, "5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.21951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 4, "all": 21, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.19047619047619047}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.5}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.2}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 40.27857733925454, "acc": 0.5454545454545454}, "判断推理|定义判断|单定义|主客体": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 45, "all": 108, "difficulty": {"5": {"hit": 14, "all": 40, "acc": 0.35}, "4": {"hit": 14, "all": 30, "acc": 0.4666666666666667}, "6": {"hit": 7, "all": 16, "acc": 0.4375}, "3": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.4166666666666667}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 54, "all": 152, "difficulty": {"5": {"hit": 12, "all": 46, "acc": 0.2608695652173913}, "4": {"hit": 20, "all": 42, "acc": 0.47619047619047616}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 65.94677786230925, "acc": 0.35526315789473684}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解": {"hit": 183, "all": 359, "difficulty": {"4": {"hit": 92, "all": 154, "acc": 0.5974025974025974}, "5": {"hit": 30, "all": 69, "acc": 0.43478260869565216}, "6": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 33, "all": 54, "acc": 0.6111111111111112}, "7": {"hit": 14, "all": 43, "acc": 0.32558139534883723}}, "human_acc": 68.55487799855013, "acc": 0.5097493036211699}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.0}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.49700996277002, "acc": 0.3}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 22, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 13, "all": 28, "acc": 0.4642857142857143}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.3333333333333333}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题": {"hit": 164, "all": 319, "difficulty": {"5": {"hit": 22, "all": 58, "acc": 0.3793103448275862}, "6": {"hit": 12, "all": 33, "acc": 0.36363636363636365}, "3": {"hit": 30, "all": 49, "acc": 0.6122448979591837}, "4": {"hit": 87, "all": 140, "acc": 0.6214285714285714}, "7": {"hit": 13, "all": 39, "acc": 0.3333333333333333}}, "human_acc": 68.63568244351346, "acc": 0.5141065830721003}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 26, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 13, "all": 23, "acc": 0.5652173913043478}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.5416666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 10, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.4}, "判断推理|逻辑判断|加强题型": {"hit": 20, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 13, "all": 26, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.4166666666666667}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.5}, "言语理解与表达|语句表达": {"hit": 36, "all": 95, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 9, "all": 11, "acc": 0.8181818181818182}}, "human_acc": 67.41332639953578, "acc": 0.37894736842105264}, "言语理解与表达|语句表达|语句填空题": {"hit": 9, "all": 30, "difficulty": {"5": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.3}, "判断推理|定义判断|单定义|大前提": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.2}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 18, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.47368421052631576}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 22, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.55}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 9, "all": 9, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 17, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}}, "human_acc": 63.04056480034193, "acc": 0.5483870967741935}, "判断推理|逻辑判断|原因解释": {"hit": 9, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.9}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 10, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.35714285714285715}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.3}, "判断推理|逻辑判断|组合排列-材料": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 16, "all": 29, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 10, "all": 15, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.5517241379310345}, "言语理解与表达|语句表达|语句排序题": {"hit": 19, "all": 55, "difficulty": {"4": {"hit": 8, "all": 29, "acc": 0.27586206896551724}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 74.78757039704001, "acc": 0.34545454545454546}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 3, "all": 12, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.25}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 13, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 9, "all": 12, "acc": 0.75}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5909090909090909}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.6}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 134, "all": 496, "difficulty": {"6": {"hit": 13, "all": 82, "acc": 0.15853658536585366}, "3": {"hit": 18, "all": 37, "acc": 0.4864864864864865}, "5": {"hit": 44, "all": 155, "acc": 0.2838709677419355}, "4": {"hit": 53, "all": 184, "acc": 0.28804347826086957}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.2701612903225806}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.1}, "资料分析|文字资料": {"hit": 64, "all": 237, "difficulty": {"6": {"hit": 6, "all": 39, "acc": 0.15384615384615385}, "3": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 21, "all": 75, "acc": 0.28}, "4": {"hit": 26, "all": 88, "acc": 0.29545454545454547}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.270042194092827}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.6}, "资料分析|简单计算": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3}, "资料分析|简单计算|直接找数": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.3}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 12, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.375}, "资料分析|比重问题|现期比重": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.5}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.3}, "资料分析|平均数问题": {"hit": 13, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.325}, "资料分析|平均数问题|现期平均数": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.6}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 6, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.1935483870967742}, "资料分析|倍数与比值相关|比值计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.1}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.4}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 2, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.2857142857142857}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Atom-7B/difficulty_result.json b/results/202309/details/Atom-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..684cb0bb5034ed8e486de6f2dc13308ed137ca63 --- /dev/null +++ b/results/202309/details/Atom-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.334841628959276, "hit": 592, "all": 1768}, "3": {"hit": 81, "all": 193, "acc": 0.41968911917098445}, "4": {"hit": 184, "all": 470, "acc": 0.39148936170212767}, "5": {"hit": 185, "all": 561, "acc": 0.32976827094474154}, "6": {"hit": 92, "all": 306, "acc": 0.3006535947712418}, "7": {"hit": 49, "all": 236, "acc": 0.2076271186440678}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/Baichuan-13B/acc_result.json b/results/202309/details/Baichuan-13B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9001a4a1c34b378faeb90e3f04b0a4e6b878f51d --- /dev/null +++ b/results/202309/details/Baichuan-13B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.41968325791855204, "wrong_value": 0.22082103159699412, "human_acc": 0.6055938546977998, "hit": 742, "total": 1768, "wrong_hit": 502, "wrong_total": 1026, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "B", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "IIIII", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "A", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "D", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "II", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "ABC", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "VDIIIII", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "B", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "IIII", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "B", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Baichuan-13B/category_result-all.json b/results/202309/details/Baichuan-13B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..55fa5a55e42ebb36297ab1966e703f2f4a633151 --- /dev/null +++ b/results/202309/details/Baichuan-13B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1737, "all": 3862, "difficulty": {"3": {"hit": 300, "all": 546, "acc": 0.5494505494505495}, "4": {"hit": 559, "all": 1078, "acc": 0.5185528756957328}, "5": {"hit": 474, "all": 1102, "acc": 0.4301270417422868}, "6": {"hit": 268, "all": 647, "acc": 0.4142194744976816}, "7": {"hit": 132, "all": 485, "acc": 0.2721649484536082}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.4497669601242879}, "判断推理": {"hit": 122, "all": 350, "difficulty": {"3": {"hit": 11, "all": 41, "acc": 0.2682926829268293}, "4": {"hit": 39, "all": 77, "acc": 0.5064935064935064}, "5": {"hit": 51, "all": 155, "acc": 0.32903225806451614}, "6": {"hit": 18, "all": 55, "acc": 0.32727272727272727}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.3485714285714286}, "判断推理|类比推理": {"hit": 27, "all": 96, "difficulty": {"3": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 8, "all": 20, "acc": 0.4}, "5": {"hit": 6, "all": 39, "acc": 0.15384615384615385}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.82436428905626, "acc": 0.28125}, "判断推理|类比推理|逻辑关系": {"hit": 17, "all": 52, "difficulty": {"3": {"hit": 2, "all": 10, "acc": 0.2}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 15, "acc": 0.13333333333333333}, "6": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.80522117180384, "acc": 0.3269230769230769}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 8, "all": 30, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.26666666666666666}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 2, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.14285714285714285}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 57.19460108329999, "acc": 0.4}, "未分类": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 6, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.5454545454545454}, "常识判断": {"hit": 106, "all": 226, "difficulty": {"5": {"hit": 38, "all": 87, "acc": 0.4367816091954023}, "7": {"hit": 17, "all": 48, "acc": 0.3541666666666667}, "6": {"hit": 24, "all": 50, "acc": 0.48}, "4": {"hit": 25, "all": 38, "acc": 0.6578947368421053}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.4690265486725664}, "常识判断|人文常识": {"hit": 21, "all": 42, "difficulty": {"5": {"hit": 11, "all": 20, "acc": 0.55}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 6, "all": 12, "acc": 0.5}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.5}, "常识判断|人文常识|文化常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.5}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.5}, "常识判断|科技常识": {"hit": 25, "all": 50, "difficulty": {"7": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}}, "human_acc": 51.632498263487996, "acc": 0.5}, "常识判断|科技常识|科技理论与成就": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.7}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.1}, "常识判断|科技常识|生物常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.7}, "常识判断|地理国情|国情社情": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.5}, "常识判断|法律常识": {"hit": 39, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 13, "all": 18, "acc": 0.7222222222222222}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.4875}, "常识判断|法律常识|刑法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.3}, "常识判断|科技常识|物理常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.6}, "常识判断|科技常识|生活常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.4}, "常识判断|法律常识|民法": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.6}, "常识判断|人文常识|世界历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.6}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.5}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.1}, "数量关系": {"hit": 149, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 52, "all": 132, "acc": 0.3939393939393939}, "4": {"hit": 34, "all": 68, "acc": 0.5}, "7": {"hit": 25, "all": 160, "acc": 0.15625}}, "human_acc": 40.061365720053836, "acc": 0.30721649484536084}, "数量关系|数学运算": {"hit": 149, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 52, "all": 132, "acc": 0.3939393939393939}, "4": {"hit": 34, "all": 68, "acc": 0.5}, "7": {"hit": 25, "all": 160, "acc": 0.15625}}, "human_acc": 40.061365720053836, "acc": 0.30721649484536084}, "数量关系|数学运算|几何问题": {"hit": 9, "all": 24, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.375}, "数量关系|数学运算|几何问题|平面几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.3333333333333333}, "数量关系|数学运算|最值问题": {"hit": 19, "all": 65, "difficulty": {"5": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.2923076923076923}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 14, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.4117647058823529}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.7}, "常识判断|政治常识": {"hit": 7, "all": 21, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.3333333333333333}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 13, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.3939393939393939}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 5, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.38461538461538464}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 14, "all": 74, "difficulty": {"6": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "4": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.1891891891891892}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1206, "all": 2295, "difficulty": {"5": {"hit": 291, "all": 587, "acc": 0.4957410562180579}, "4": {"hit": 410, "all": 707, "acc": 0.57991513437058}, "3": {"hit": 271, "all": 455, "acc": 0.5956043956043956}, "6": {"hit": 151, "all": 327, "acc": 0.4617737003058104}, "7": {"hit": 83, "all": 219, "acc": 0.3789954337899543}}, "human_acc": 66.81637952144999, "acc": 0.5254901960784314}, "言语理解与表达|逻辑填空": {"hit": 967, "all": 1841, "difficulty": {"5": {"hit": 246, "all": 498, "acc": 0.4939759036144578}, "4": {"hit": 302, "all": 513, "acc": 0.5886939571150097}, "3": {"hit": 220, "all": 384, "acc": 0.5729166666666666}, "6": {"hit": 125, "all": 277, "acc": 0.45126353790613716}, "7": {"hit": 74, "all": 169, "acc": 0.4378698224852071}}, "human_acc": 66.44656371118516, "acc": 0.5252580119500272}, "言语理解与表达|逻辑填空|实词填空": {"hit": 78, "all": 151, "difficulty": {"5": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 20, "all": 26, "acc": 0.7692307692307693}, "6": {"hit": 13, "all": 24, "acc": 0.5416666666666666}, "7": {"hit": 5, "all": 13, "acc": 0.38461538461538464}}, "human_acc": 63.11290800843907, "acc": 0.5165562913907285}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 331, "all": 622, "difficulty": {"5": {"hit": 76, "all": 163, "acc": 0.4662576687116564}, "4": {"hit": 108, "all": 172, "acc": 0.627906976744186}, "3": {"hit": 76, "all": 131, "acc": 0.5801526717557252}, "7": {"hit": 28, "all": 60, "acc": 0.4666666666666667}, "6": {"hit": 43, "all": 96, "acc": 0.4479166666666667}}, "human_acc": 66.76874610652267, "acc": 0.5321543408360129}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 79, "all": 143, "difficulty": {"5": {"hit": 23, "all": 43, "acc": 0.5348837209302325}, "4": {"hit": 25, "all": 42, "acc": 0.5952380952380952}, "3": {"hit": 15, "all": 25, "acc": 0.6}, "6": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 66.64745600073147, "acc": 0.5524475524475524}, "数量关系|数学运算|几何问题|立体几何": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.4166666666666667}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 398, "all": 771, "difficulty": {"5": {"hit": 103, "all": 201, "acc": 0.5124378109452736}, "4": {"hit": 120, "all": 217, "acc": 0.5529953917050692}, "3": {"hit": 94, "all": 167, "acc": 0.562874251497006}, "6": {"hit": 52, "all": 116, "acc": 0.4482758620689655}, "7": {"hit": 29, "all": 70, "acc": 0.4142857142857143}}, "human_acc": 66.4145264015949, "acc": 0.51621271076524}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 93, "all": 165, "difficulty": {"5": {"hit": 28, "all": 45, "acc": 0.6222222222222222}, "4": {"hit": 26, "all": 44, "acc": 0.5909090909090909}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 13, "all": 27, "acc": 0.48148148148148145}, "3": {"hit": 19, "all": 32, "acc": 0.59375}}, "human_acc": 65.38103981607519, "acc": 0.5636363636363636}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 83, "all": 145, "difficulty": {"4": {"hit": 30, "all": 43, "acc": 0.6976744186046512}, "5": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 17, "all": 31, "acc": 0.5483870967741935}, "6": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 69.23037595903519, "acc": 0.5724137931034483}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 6, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 65, "all": 135, "difficulty": {"4": {"hit": 21, "all": 38, "acc": 0.5526315789473685}, "3": {"hit": 20, "all": 36, "acc": 0.5555555555555556}, "5": {"hit": 11, "all": 32, "acc": 0.34375}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 67.2510308321489, "acc": 0.48148148148148145}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 105, "all": 203, "difficulty": {"4": {"hit": 32, "all": 56, "acc": 0.5714285714285714}, "5": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "3": {"hit": 30, "all": 51, "acc": 0.5882352941176471}, "7": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "6": {"hit": 10, "all": 25, "acc": 0.4}}, "human_acc": 67.67567808645465, "acc": 0.5172413793103449}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 116, "all": 212, "difficulty": {"4": {"hit": 39, "all": 63, "acc": 0.6190476190476191}, "5": {"hit": 24, "all": 43, "acc": 0.5581395348837209}, "3": {"hit": 29, "all": 51, "acc": 0.5686274509803921}, "6": {"hit": 16, "all": 32, "acc": 0.5}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.5471698113207547}, "常识判断|法律常识|民事诉讼法": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.6}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.2}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 73, "all": 137, "difficulty": {"5": {"hit": 13, "all": 36, "acc": 0.3611111111111111}, "3": {"hit": 17, "all": 28, "acc": 0.6071428571428571}, "4": {"hit": 23, "all": 35, "acc": 0.6571428571428571}, "6": {"hit": 12, "all": 24, "acc": 0.5}, "7": {"hit": 8, "all": 14, "acc": 0.5714285714285714}}, "human_acc": 65.9299610739475, "acc": 0.5328467153284672}, "常识判断|法律常识|劳动法": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.7}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 12, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.2926829268292683}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 58, "all": 174, "difficulty": {"5": {"hit": 26, "all": 78, "acc": 0.3333333333333333}, "4": {"hit": 21, "all": 40, "acc": 0.525}, "3": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "6": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.3333333333333333}, "判断推理|逻辑判断|翻译推理": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 67, "all": 151, "difficulty": {"4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "5": {"hit": 16, "all": 41, "acc": 0.3902439024390244}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "3": {"hit": 15, "all": 29, "acc": 0.5172413793103449}, "7": {"hit": 9, "all": 17, "acc": 0.5294117647058824}}, "human_acc": 64.30090962542516, "acc": 0.44370860927152317}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 31, "all": 65, "difficulty": {"4": {"hit": 9, "all": 12, "acc": 0.75}, "6": {"hit": 12, "all": 21, "acc": 0.5714285714285714}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.47692307692307695}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.76722241438, "acc": 0.7}, "数量关系|数学运算|统筹规划问题": {"hit": 6, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.60918943125882, "acc": 0.35294117647058826}, "数量关系|数学运算|年龄问题": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 74, "all": 139, "difficulty": {"5": {"hit": 16, "all": 35, "acc": 0.45714285714285713}, "4": {"hit": 28, "all": 39, "acc": 0.717948717948718}, "7": {"hit": 5, "all": 10, "acc": 0.5}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "3": {"hit": 14, "all": 27, "acc": 0.5185185185185185}}, "human_acc": 66.39573058612521, "acc": 0.5323741007194245}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 37, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 19, "all": 38, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.4625}, "判断推理|定义判断|单定义": {"hit": 32, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "5": {"hit": 16, "all": 33, "acc": 0.48484848484848486}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.45714285714285713}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.5}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 5, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.23809523809523808}, "数量关系|数学运算|行程问题|普通行程": {"hit": 7, "all": 13, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.5384615384615384}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.4}, "判断推理|定义判断|单定义|原因结果": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.2}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.5454545454545454}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 57, "all": 108, "difficulty": {"5": {"hit": 24, "all": 40, "acc": 0.6}, "4": {"hit": 16, "all": 30, "acc": 0.5333333333333333}, "6": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5277777777777778}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 1, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.6}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 77, "all": 152, "difficulty": {"5": {"hit": 21, "all": 46, "acc": 0.45652173913043476}, "4": {"hit": 28, "all": 42, "acc": 0.6666666666666666}, "3": {"hit": 13, "all": 29, "acc": 0.4482758620689655}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.506578947368421}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 48.761151281054545, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解": {"hit": 209, "all": 359, "difficulty": {"4": {"hit": 98, "all": 154, "acc": 0.6363636363636364}, "5": {"hit": 36, "all": 69, "acc": 0.5217391304347826}, "6": {"hit": 23, "all": 39, "acc": 0.5897435897435898}, "3": {"hit": 46, "all": 54, "acc": 0.8518518518518519}, "7": {"hit": 6, "all": 43, "acc": 0.13953488372093023}}, "human_acc": 68.55487799855013, "acc": 0.5821727019498607}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.4}, "判断推理|逻辑判断|削弱题型": {"hit": 21, "all": 66, "difficulty": {"4": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "6": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.3181818181818182}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 6, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 43.2203149, "acc": 0.5454545454545454}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.8}, "言语理解与表达|阅读理解|中心理解题": {"hit": 187, "all": 319, "difficulty": {"5": {"hit": 29, "all": 58, "acc": 0.5}, "6": {"hit": 21, "all": 33, "acc": 0.6363636363636364}, "3": {"hit": 42, "all": 49, "acc": 0.8571428571428571}, "4": {"hit": 89, "all": 140, "acc": 0.6357142857142857}, "7": {"hit": 6, "all": 39, "acc": 0.15384615384615385}}, "human_acc": 68.63568244351346, "acc": 0.5862068965517241}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 29, "all": 48, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 16, "all": 23, "acc": 0.6956521739130435}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 70.08123149284167, "acc": 0.6041666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 12, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 63.99639746408, "acc": 0.48}, "判断推理|逻辑判断|加强题型": {"hit": 20, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 11, "all": 26, "acc": 0.4230769230769231}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.4166666666666667}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.6}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 30, "all": 95, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 10, "all": 40, "acc": 0.25}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}}, "human_acc": 67.41332639953578, "acc": 0.3157894736842105}, "言语理解与表达|语句表达|语句填空题": {"hit": 14, "all": 30, "difficulty": {"5": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.4666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.1}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 21, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 25, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 15, "all": 19, "acc": 0.7894736842105263}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 66.77662401733, "acc": 0.625}, "言语理解与表达|语句表达|接语选择题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.6}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 11, "all": 22, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 17, "all": 31, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}}, "human_acc": 63.04056480034193, "acc": 0.5483870967741935}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 16, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.5714285714285714}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.4}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 15, "all": 29, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5172413793103449}, "言语理解与表达|语句表达|语句排序题": {"hit": 10, "all": 55, "difficulty": {"4": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.18181818181818182}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 2, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.16666666666666666}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 14, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6363636363636364}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.9467117178, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.3}, "资料分析": {"hit": 152, "all": 496, "difficulty": {"6": {"hit": 23, "all": 82, "acc": 0.2804878048780488}, "3": {"hit": 10, "all": 37, "acc": 0.2702702702702703}, "5": {"hit": 62, "all": 155, "acc": 0.4}, "4": {"hit": 49, "all": 184, "acc": 0.266304347826087}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3064516129032258}, "资料分析|基期与现期": {"hit": 15, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.2631578947368421}, "资料分析|基期与现期|基期计算": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.3}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 30, "all": 75, "acc": 0.4}, "4": {"hit": 24, "all": 88, "acc": 0.2727272727272727}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 3, "all": 5, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.6}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.3}, "资料分析|简单计算": {"hit": 12, "all": 30, "difficulty": {"3": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.4}, "资料分析|简单计算|直接找数": {"hit": 8, "all": 10, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.8}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 8, "all": 32, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.25}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 9, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.28125}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 8, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 5, "all": 10, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.3076923076923077}, "资料分析|增长量|增长量计算": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.2}, "资料分析|平均数问题": {"hit": 15, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "5": {"hit": 5, "all": 8, "acc": 0.625}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.02933098769998, "acc": 0.375}, "资料分析|平均数问题|现期平均数": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.2}, "资料分析|增长率|间隔增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.2}, "资料分析|倍数与比值相关": {"hit": 9, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 70.8255537505613, "acc": 0.2903225806451613}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.3}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.4}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.4}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.2}, "资料分析|平均数问题|平均数的增长量": {"hit": 5, "all": 7, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 57.80231180570001, "acc": 0.7142857142857143}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Baichuan-13B/difficulty_result.json b/results/202309/details/Baichuan-13B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bc3a2231701a093b52365c8fbb4c0364d3fa7928 --- /dev/null +++ b/results/202309/details/Baichuan-13B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.41968325791855204, "hit": 742, "all": 1768}, "3": {"hit": 99, "all": 193, "acc": 0.5129533678756477}, "4": {"hit": 234, "all": 470, "acc": 0.4978723404255319}, "5": {"hit": 232, "all": 561, "acc": 0.41354723707664887}, "6": {"hit": 118, "all": 306, "acc": 0.38562091503267976}, "7": {"hit": 57, "all": 236, "acc": 0.24152542372881355}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Baichuan-7B/acc_result.json b/results/202309/details/Baichuan-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ca61ef85eb39d0e9f6e86d254d45af357ef48583 --- /dev/null +++ b/results/202309/details/Baichuan-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.35350678733031676, "wrong_value": 0.20409655218975342, "human_acc": 0.6055938546977998, "hit": 625, "total": 1768, "wrong_hit": 531, "wrong_total": 1143, "detail": [{"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ACD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "A", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "IIIII", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "C", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "A", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ACD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "C", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "II", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "ABD", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "VDIIIII", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "D", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "IIII", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABC", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "A", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABC", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "ABD", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Baichuan-7B/category_result-all.json b/results/202309/details/Baichuan-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..93b58dced652b9f82bce277dd0612eef5835d104 --- /dev/null +++ b/results/202309/details/Baichuan-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1468, "all": 3862, "difficulty": {"3": {"hit": 262, "all": 546, "acc": 0.47985347985347987}, "4": {"hit": 447, "all": 1078, "acc": 0.41465677179962895}, "5": {"hit": 406, "all": 1102, "acc": 0.3684210526315789}, "6": {"hit": 245, "all": 647, "acc": 0.3786707882534776}, "7": {"hit": 104, "all": 485, "acc": 0.21443298969072164}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.38011393060590365}, "判断推理": {"hit": 106, "all": 350, "difficulty": {"3": {"hit": 18, "all": 41, "acc": 0.43902439024390244}, "4": {"hit": 33, "all": 77, "acc": 0.42857142857142855}, "5": {"hit": 38, "all": 155, "acc": 0.24516129032258063}, "6": {"hit": 12, "all": 55, "acc": 0.21818181818181817}, "7": {"hit": 5, "all": 22, "acc": 0.22727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.3028571428571429}, "判断推理|类比推理": {"hit": 35, "all": 96, "difficulty": {"3": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 10, "all": 20, "acc": 0.5}, "5": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.82436428905626, "acc": 0.3645833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 20, "all": 52, "difficulty": {"3": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.80522117180384, "acc": 0.38461538461538464}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 11, "all": 30, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 67.00170566224, "acc": 0.36666666666666664}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.32486766705999, "acc": 0.4}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 57.19460108329999, "acc": 0.5}, "未分类": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 68, "all": 226, "difficulty": {"5": {"hit": 25, "all": 87, "acc": 0.28735632183908044}, "7": {"hit": 9, "all": 48, "acc": 0.1875}, "6": {"hit": 15, "all": 50, "acc": 0.3}, "4": {"hit": 17, "all": 38, "acc": 0.4473684210526316}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.3008849557522124}, "常识判断|人文常识": {"hit": 14, "all": 42, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.3333333333333333}, "常识判断|人文常识|文化常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.3}, "常识判断|人文常识|文学常识": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.3}, "常识判断|人文常识|中国历史": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.3}, "常识判断|科技常识": {"hit": 13, "all": 50, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.26}, "常识判断|科技常识|科技理论与成就": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.2}, "常识判断|地理国情": {"hit": 7, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.3333333333333333}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.3}, "常识判断|科技常识|生物常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.4}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 24, "all": 80, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.3}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.5}, "常识判断|法律常识|民法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.5}, "常识判断|人文常识|世界历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.4}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.5}, "数量关系": {"hit": 129, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 61, "all": 132, "acc": 0.4621212121212121}, "4": {"hit": 26, "all": 68, "acc": 0.38235294117647056}, "7": {"hit": 16, "all": 160, "acc": 0.1}}, "human_acc": 40.061365720053836, "acc": 0.26597938144329897}, "数量关系|数学运算": {"hit": 129, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 61, "all": 132, "acc": 0.4621212121212121}, "4": {"hit": 26, "all": 68, "acc": 0.38235294117647056}, "7": {"hit": 16, "all": 160, "acc": 0.1}}, "human_acc": 40.061365720053836, "acc": 0.26597938144329897}, "数量关系|数学运算|几何问题": {"hit": 4, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.16666666666666666}, "数量关系|数学运算|几何问题|平面几何": {"hit": 0, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.0}, "数量关系|数学运算|最值问题": {"hit": 20, "all": 65, "difficulty": {"5": {"hit": 2, "all": 16, "acc": 0.125}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 13, "all": 22, "acc": 0.5909090909090909}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.3076923076923077}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 12, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.35294117647058826}, "常识判断|法律常识|行政法": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.0}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 7, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.3333333333333333}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 11, "all": 33, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 7, "all": 10, "acc": 0.7}}, "human_acc": 38.245969273603045, "acc": 0.3333333333333333}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 18, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.24324324324324326}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1008, "all": 2295, "difficulty": {"5": {"hit": 265, "all": 587, "acc": 0.4514480408858603}, "4": {"hit": 313, "all": 707, "acc": 0.44271570014144274}, "3": {"hit": 223, "all": 455, "acc": 0.4901098901098901}, "6": {"hit": 135, "all": 327, "acc": 0.41284403669724773}, "7": {"hit": 72, "all": 219, "acc": 0.3287671232876712}}, "human_acc": 66.81637952144999, "acc": 0.4392156862745098}, "言语理解与表达|逻辑填空": {"hit": 787, "all": 1841, "difficulty": {"5": {"hit": 228, "all": 498, "acc": 0.4578313253012048}, "4": {"hit": 213, "all": 513, "acc": 0.4152046783625731}, "3": {"hit": 170, "all": 384, "acc": 0.4427083333333333}, "6": {"hit": 111, "all": 277, "acc": 0.4007220216606498}, "7": {"hit": 65, "all": 169, "acc": 0.38461538461538464}}, "human_acc": 66.44656371118516, "acc": 0.42748506246605106}, "言语理解与表达|逻辑填空|实词填空": {"hit": 62, "all": 151, "difficulty": {"5": {"hit": 18, "all": 49, "acc": 0.3673469387755102}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 11, "all": 26, "acc": 0.4230769230769231}, "6": {"hit": 12, "all": 24, "acc": 0.5}, "7": {"hit": 5, "all": 13, "acc": 0.38461538461538464}}, "human_acc": 63.11290800843907, "acc": 0.4105960264900662}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 278, "all": 622, "difficulty": {"5": {"hit": 78, "all": 163, "acc": 0.4785276073619632}, "4": {"hit": 75, "all": 172, "acc": 0.436046511627907}, "3": {"hit": 56, "all": 131, "acc": 0.42748091603053434}, "7": {"hit": 25, "all": 60, "acc": 0.4166666666666667}, "6": {"hit": 44, "all": 96, "acc": 0.4583333333333333}}, "human_acc": 66.76874610652267, "acc": 0.44694533762057875}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 61, "all": 143, "difficulty": {"5": {"hit": 19, "all": 43, "acc": 0.4418604651162791}, "4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "3": {"hit": 8, "all": 25, "acc": 0.32}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 66.64745600073147, "acc": 0.42657342657342656}, "数量关系|数学运算|几何问题|立体几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.3333333333333333}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析": {"hit": 314, "all": 771, "difficulty": {"5": {"hit": 87, "all": 201, "acc": 0.43283582089552236}, "4": {"hit": 87, "all": 217, "acc": 0.4009216589861751}, "3": {"hit": 74, "all": 167, "acc": 0.4431137724550898}, "6": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "7": {"hit": 25, "all": 70, "acc": 0.35714285714285715}}, "human_acc": 66.4145264015949, "acc": 0.4072632944228275}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 71, "all": 165, "difficulty": {"5": {"hit": 22, "all": 45, "acc": 0.4888888888888889}, "4": {"hit": 19, "all": 44, "acc": 0.4318181818181818}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 16, "all": 32, "acc": 0.5}}, "human_acc": 65.38103981607519, "acc": 0.4303030303030303}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 73, "all": 145, "difficulty": {"4": {"hit": 19, "all": 43, "acc": 0.4418604651162791}, "5": {"hit": 25, "all": 39, "acc": 0.6410256410256411}, "3": {"hit": 16, "all": 31, "acc": 0.5161290322580645}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.503448275862069}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 5, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题": {"hit": 9, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.34615384615384615}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 7, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.4666666666666667}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 50, "all": 135, "difficulty": {"4": {"hit": 18, "all": 38, "acc": 0.47368421052631576}, "3": {"hit": 14, "all": 36, "acc": 0.3888888888888889}, "5": {"hit": 11, "all": 32, "acc": 0.34375}, "6": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.37037037037037035}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 98, "all": 203, "difficulty": {"4": {"hit": 28, "all": 56, "acc": 0.5}, "5": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "3": {"hit": 24, "all": 51, "acc": 0.47058823529411764}, "7": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "6": {"hit": 13, "all": 25, "acc": 0.52}}, "human_acc": 67.67567808645465, "acc": 0.4827586206896552}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 85, "all": 212, "difficulty": {"4": {"hit": 21, "all": 63, "acc": 0.3333333333333333}, "5": {"hit": 20, "all": 43, "acc": 0.46511627906976744}, "3": {"hit": 25, "all": 51, "acc": 0.49019607843137253}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 9, "all": 23, "acc": 0.391304347826087}}, "human_acc": 67.16383399377828, "acc": 0.4009433962264151}, "常识判断|法律常识|民事诉讼法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 37.81514019971, "acc": 0.2}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 58, "all": 137, "difficulty": {"5": {"hit": 17, "all": 36, "acc": 0.4722222222222222}, "3": {"hit": 12, "all": 28, "acc": 0.42857142857142855}, "4": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 11, "all": 24, "acc": 0.4583333333333333}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 65.9299610739475, "acc": 0.4233576642335766}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.2}, "数量关系|数学运算|工程问题": {"hit": 13, "all": 41, "difficulty": {"6": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3170731707317073}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.2}, "判断推理|逻辑判断": {"hit": 43, "all": 174, "difficulty": {"5": {"hit": 19, "all": 78, "acc": 0.24358974358974358}, "4": {"hit": 14, "all": 40, "acc": 0.35}, "3": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.2471264367816092}, "判断推理|逻辑判断|翻译推理": {"hit": 10, "all": 40, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.25}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.1}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 60, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 17, "all": 41, "acc": 0.4146341463414634}, "6": {"hit": 11, "all": 22, "acc": 0.5}, "3": {"hit": 9, "all": 29, "acc": 0.3103448275862069}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}}, "human_acc": 64.30090962542516, "acc": 0.3973509933774834}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 19, "all": 65, "difficulty": {"4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 8, "all": 21, "acc": 0.38095238095238093}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.2923076923076923}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.5}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 61, "all": 139, "difficulty": {"5": {"hit": 18, "all": 35, "acc": 0.5142857142857142}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "7": {"hit": 4, "all": 10, "acc": 0.4}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "3": {"hit": 12, "all": 27, "acc": 0.4444444444444444}}, "human_acc": 66.39573058612521, "acc": 0.43884892086330934}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 28, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 11, "all": 38, "acc": 0.2894736842105263}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.35}, "判断推理|定义判断|单定义": {"hit": 22, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 8, "all": 33, "acc": 0.24242424242424243}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.3142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.3}, "数量关系|数学运算|概率问题": {"hit": 8, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.1951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.45454545454545453}, "判断推理|定义判断|单定义|主客体": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 48, "all": 108, "difficulty": {"5": {"hit": 17, "all": 40, "acc": 0.425}, "4": {"hit": 13, "all": 30, "acc": 0.43333333333333335}, "6": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.43212003256482, "acc": 0.4444444444444444}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 60, "all": 152, "difficulty": {"5": {"hit": 20, "all": 46, "acc": 0.43478260869565216}, "4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "3": {"hit": 13, "all": 29, "acc": 0.4482758620689655}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 6, "all": 23, "acc": 0.2608695652173913}}, "human_acc": 65.94677786230925, "acc": 0.39473684210526316}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.45454545454545453}, "言语理解与表达|阅读理解": {"hit": 174, "all": 359, "difficulty": {"4": {"hit": 88, "all": 154, "acc": 0.5714285714285714}, "5": {"hit": 25, "all": 69, "acc": 0.36231884057971014}, "6": {"hit": 17, "all": 39, "acc": 0.4358974358974359}, "3": {"hit": 38, "all": 54, "acc": 0.7037037037037037}, "7": {"hit": 6, "all": 43, "acc": 0.13953488372093023}}, "human_acc": 68.55487799855013, "acc": 0.48467966573816157}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.4}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 13, "all": 66, "difficulty": {"4": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.19696969696969696}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题": {"hit": 154, "all": 319, "difficulty": {"5": {"hit": 18, "all": 58, "acc": 0.3103448275862069}, "6": {"hit": 15, "all": 33, "acc": 0.45454545454545453}, "3": {"hit": 34, "all": 49, "acc": 0.6938775510204082}, "4": {"hit": 82, "all": 140, "acc": 0.5857142857142857}, "7": {"hit": 5, "all": 39, "acc": 0.1282051282051282}}, "human_acc": 68.63568244351346, "acc": 0.4827586206896552}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 23, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 12, "all": 23, "acc": 0.5217391304347826}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.4791666666666667}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 8, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.32}, "判断推理|逻辑判断|加强题型": {"hit": 12, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 7, "all": 26, "acc": 0.2692307692307692}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.25}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.2}, "言语理解与表达|语句表达": {"hit": 47, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 15, "all": 17, "acc": 0.8823529411764706}, "6": {"hit": 7, "all": 11, "acc": 0.6363636363636364}}, "human_acc": 67.41332639953578, "acc": 0.49473684210526314}, "言语理解与表达|语句表达|语句填空题": {"hit": 15, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.4}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.0}, "判断推理|定义判断|单定义|大前提": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.2}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 18, "all": 30, "difficulty": {"3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 18, "all": 38, "difficulty": {"3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 72.18852298403947, "acc": 0.47368421052631576}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 25, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 66.77662401733, "acc": 0.625}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 9, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.4090909090909091}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 17, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 10, "all": 13, "acc": 0.7692307692307693}}, "human_acc": 63.04056480034193, "acc": 0.5483870967741935}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 10, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.35714285714285715}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.58474381049999, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 63.51476866928999, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 13, "all": 29, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.4482758620689655}, "言语理解与表达|语句表达|语句排序题": {"hit": 27, "all": 55, "difficulty": {"4": {"hit": 8, "all": 29, "acc": 0.27586206896551724}, "3": {"hit": 12, "all": 14, "acc": 0.8571428571428571}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 74.78757039704001, "acc": 0.4909090909090909}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 83.03719898832999, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 6, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 77.69154875399232, "acc": 0.46153846153846156}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 12, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5454545454545454}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.9467117178, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 153, "all": 496, "difficulty": {"6": {"hit": 21, "all": 82, "acc": 0.25609756097560976}, "3": {"hit": 18, "all": 37, "acc": 0.4864864864864865}, "5": {"hit": 53, "all": 155, "acc": 0.3419354838709677}, "4": {"hit": 55, "all": 184, "acc": 0.29891304347826086}, "7": {"hit": 2, "all": 34, "acc": 0.058823529411764705}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3084677419354839}, "资料分析|基期与现期": {"hit": 15, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.2631578947368421}, "资料分析|基期与现期|基期计算": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.3}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 25, "all": 75, "acc": 0.3333333333333333}, "4": {"hit": 27, "all": 88, "acc": 0.3068181818181818}, "7": {"hit": 1, "all": 16, "acc": 0.0625}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 68.77892047476, "acc": 0.5}, "资料分析|简单计算": {"hit": 8, "all": 30, "difficulty": {"3": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.26666666666666666}, "资料分析|简单计算|直接找数": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.4}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 10, "all": 32, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.3125}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 7, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.21875}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 13, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 7, "all": 10, "acc": 0.7}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.5}, "资料分析|增长量|增长量计算": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.5}, "资料分析|平均数问题": {"hit": 15, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.375}, "资料分析|平均数问题|现期平均数": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.6}, "资料分析|增长率|间隔增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.2}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.2}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.2}, "资料分析|增长率|混合增长率": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.5}, "资料分析|增长量|增长量比较": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.6}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.3}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.2}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.1}, "资料分析|平均数问题|平均数的增长量": {"hit": 4, "all": 7, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.5714285714285714}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Baichuan-7B/difficulty_result.json b/results/202309/details/Baichuan-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d22e3471a72aa5aa8ffe08287fdb66d222820d33 --- /dev/null +++ b/results/202309/details/Baichuan-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.35350678733031676, "hit": 625, "all": 1768}, "3": {"hit": 93, "all": 193, "acc": 0.48186528497409326}, "4": {"hit": 190, "all": 470, "acc": 0.40425531914893614}, "5": {"hit": 194, "all": 561, "acc": 0.34581105169340465}, "6": {"hit": 104, "all": 306, "acc": 0.33986928104575165}, "7": {"hit": 42, "all": 236, "acc": 0.17796610169491525}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Baichuan2-13B/acc_result.json b/results/202309/details/Baichuan2-13B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..32b8ea78e16372f89be3f31825488684dfebb7c3 --- /dev/null +++ b/results/202309/details/Baichuan2-13B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.4751131221719457, "wrong_value": 0.23584376453116904, "human_acc": 0.6055938546977998, "hit": 840, "total": 1768, "wrong_hit": 472, "wrong_total": 928, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "BCD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "B", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "B", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D###", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "D", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "C", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ACD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "B", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "AB", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Baichuan2-13B/category_result-all.json b/results/202309/details/Baichuan2-13B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..c874133113ece8d42068ea88883cce83f06b4856 --- /dev/null +++ b/results/202309/details/Baichuan2-13B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1951, "all": 3862, "difficulty": {"3": {"hit": 370, "all": 546, "acc": 0.6776556776556777}, "4": {"hit": 669, "all": 1078, "acc": 0.6205936920222634}, "5": {"hit": 542, "all": 1102, "acc": 0.49183303085299457}, "6": {"hit": 250, "all": 647, "acc": 0.38639876352395675}, "7": {"hit": 118, "all": 485, "acc": 0.24329896907216494}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.5051786639047126}, "判断推理": {"hit": 146, "all": 350, "difficulty": {"3": {"hit": 17, "all": 41, "acc": 0.4146341463414634}, "4": {"hit": 44, "all": 77, "acc": 0.5714285714285714}, "5": {"hit": 69, "all": 155, "acc": 0.44516129032258067}, "6": {"hit": 13, "all": 55, "acc": 0.23636363636363636}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.41714285714285715}, "判断推理|类比推理": {"hit": 39, "all": 96, "difficulty": {"3": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 13, "all": 20, "acc": 0.65}, "5": {"hit": 15, "all": 39, "acc": 0.38461538461538464}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.40625}, "判断推理|类比推理|逻辑关系": {"hit": 21, "all": 52, "difficulty": {"3": {"hit": 2, "all": 10, "acc": 0.2}, "4": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "5": {"hit": 6, "all": 15, "acc": 0.4}, "6": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.40384615384615385}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 13, "all": 30, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 67.00170566224, "acc": 0.43333333333333335}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.32486766705999, "acc": 0.6}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 74.48564823635999, "acc": 0.5}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 4, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.36363636363636365}, "常识判断": {"hit": 126, "all": 226, "difficulty": {"5": {"hit": 53, "all": 87, "acc": 0.6091954022988506}, "7": {"hit": 12, "all": 48, "acc": 0.25}, "6": {"hit": 27, "all": 50, "acc": 0.54}, "4": {"hit": 31, "all": 38, "acc": 0.8157894736842105}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 46.34274676514825, "acc": 0.5575221238938053}, "常识判断|人文常识": {"hit": 31, "all": 42, "difficulty": {"5": {"hit": 16, "all": 20, "acc": 0.8}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 9, "all": 12, "acc": 0.75}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.7380952380952381}, "常识判断|人文常识|文化常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.7}, "常识判断|人文常识|文学常识": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 58.752282007969995, "acc": 0.7}, "常识判断|人文常识|中国历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.6}, "常识判断|科技常识": {"hit": 29, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}}, "human_acc": 51.632498263487996, "acc": 0.58}, "常识判断|科技常识|科技理论与成就": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.5}, "常识判断|地理国情": {"hit": 9, "all": 21, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 43.98006307271429, "acc": 0.42857142857142855}, "常识判断|地理国情|自然常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 34.48786343879, "acc": 0.3}, "常识判断|科技常识|化学常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.5}, "常识判断|科技常识|生物常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.8}, "常识判断|地理国情|国情社情": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 54.87697121455001, "acc": 0.6}, "常识判断|法律常识": {"hit": 40, "all": 80, "difficulty": {"5": {"hit": 17, "all": 35, "acc": 0.4857142857142857}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 8, "all": 8, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 42.31029945337126, "acc": 0.5}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 51.029714180179994, "acc": 0.5}, "常识判断|科技常识|生活常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.6}, "常识判断|法律常识|民法": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.8}, "常识判断|人文常识|世界历史": {"hit": 10, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 53.975357187650005, "acc": 1.0}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.5}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 142, "all": 485, "difficulty": {"5": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 30, "all": 68, "acc": 0.4411764705882353}, "7": {"hit": 20, "all": 160, "acc": 0.125}}, "human_acc": 40.061365720053836, "acc": 0.2927835051546392}, "数量关系|数学运算": {"hit": 142, "all": 485, "difficulty": {"5": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 30, "all": 68, "acc": 0.4411764705882353}, "7": {"hit": 20, "all": 160, "acc": 0.125}}, "human_acc": 40.061365720053836, "acc": 0.2927835051546392}, "数量关系|数学运算|几何问题": {"hit": 6, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.25}, "数量关系|数学运算|几何问题|平面几何": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.08333333333333333}, "数量关系|数学运算|最值问题": {"hit": 22, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 10, "all": 22, "acc": 0.45454545454545453}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.3384615384615385}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 13, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 40.35697170282646, "acc": 0.38235294117647056}, "常识判断|法律常识|行政法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.639119115729994, "acc": 0.4}, "常识判断|法律常识|其他法律法规": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.7}, "常识判断|政治常识": {"hit": 11, "all": 21, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.5238095238095238}, "常识判断|政治常识|时政": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.5}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.6}, "数量关系|数学运算|周期问题": {"hit": 12, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.36363636363636365}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 4, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.3076923076923077}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 21, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "7": {"hit": 6, "all": 36, "acc": 0.16666666666666666}}, "human_acc": 33.405759431517595, "acc": 0.28378378378378377}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1384, "all": 2295, "difficulty": {"5": {"hit": 339, "all": 587, "acc": 0.5775127768313458}, "4": {"hit": 504, "all": 707, "acc": 0.7128712871287128}, "3": {"hit": 317, "all": 455, "acc": 0.6967032967032967}, "6": {"hit": 147, "all": 327, "acc": 0.44954128440366975}, "7": {"hit": 77, "all": 219, "acc": 0.3515981735159817}}, "human_acc": 66.81637952144999, "acc": 0.6030501089324619}, "言语理解与表达|逻辑填空": {"hit": 1111, "all": 1841, "difficulty": {"5": {"hit": 287, "all": 498, "acc": 0.5763052208835341}, "4": {"hit": 381, "all": 513, "acc": 0.7426900584795322}, "3": {"hit": 267, "all": 384, "acc": 0.6953125}, "6": {"hit": 124, "all": 277, "acc": 0.44765342960288806}, "7": {"hit": 52, "all": 169, "acc": 0.3076923076923077}}, "human_acc": 66.44656371118516, "acc": 0.603476371537208}, "言语理解与表达|逻辑填空|实词填空": {"hit": 86, "all": 151, "difficulty": {"5": {"hit": 25, "all": 49, "acc": 0.5102040816326531}, "4": {"hit": 27, "all": 39, "acc": 0.6923076923076923}, "3": {"hit": 20, "all": 26, "acc": 0.7692307692307693}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.5695364238410596}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 402, "all": 622, "difficulty": {"5": {"hit": 98, "all": 163, "acc": 0.6012269938650306}, "4": {"hit": 137, "all": 172, "acc": 0.7965116279069767}, "3": {"hit": 100, "all": 131, "acc": 0.7633587786259542}, "7": {"hit": 18, "all": 60, "acc": 0.3}, "6": {"hit": 49, "all": 96, "acc": 0.5104166666666666}}, "human_acc": 66.76874610652267, "acc": 0.6463022508038585}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 92, "all": 143, "difficulty": {"5": {"hit": 27, "all": 43, "acc": 0.627906976744186}, "4": {"hit": 31, "all": 42, "acc": 0.7380952380952381}, "3": {"hit": 17, "all": 25, "acc": 0.68}, "6": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 66.64745600073147, "acc": 0.6433566433566433}, "数量关系|数学运算|几何问题|立体几何": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.4166666666666667}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 433, "all": 771, "difficulty": {"5": {"hit": 109, "all": 201, "acc": 0.5422885572139303}, "4": {"hit": 151, "all": 217, "acc": 0.695852534562212}, "3": {"hit": 106, "all": 167, "acc": 0.6347305389221557}, "6": {"hit": 46, "all": 116, "acc": 0.39655172413793105}, "7": {"hit": 21, "all": 70, "acc": 0.3}}, "human_acc": 66.4145264015949, "acc": 0.5616083009079118}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 90, "all": 165, "difficulty": {"5": {"hit": 24, "all": 45, "acc": 0.5333333333333333}, "4": {"hit": 30, "all": 44, "acc": 0.6818181818181818}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 20, "all": 32, "acc": 0.625}}, "human_acc": 65.38103981607519, "acc": 0.5454545454545454}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.3}, "言语理解与表达|逻辑填空|成语填空": {"hit": 94, "all": 145, "difficulty": {"4": {"hit": 33, "all": 43, "acc": 0.7674418604651163}, "5": {"hit": 27, "all": 39, "acc": 0.6923076923076923}, "3": {"hit": 20, "all": 31, "acc": 0.6451612903225806}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.6482758620689655}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 5, "all": 18, "difficulty": {"7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 68, "all": 135, "difficulty": {"4": {"hit": 23, "all": 38, "acc": 0.6052631578947368}, "3": {"hit": 20, "all": 36, "acc": 0.5555555555555556}, "5": {"hit": 17, "all": 32, "acc": 0.53125}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.5037037037037037}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 132, "all": 203, "difficulty": {"4": {"hit": 47, "all": 56, "acc": 0.8392857142857143}, "5": {"hit": 26, "all": 49, "acc": 0.5306122448979592}, "3": {"hit": 40, "all": 51, "acc": 0.7843137254901961}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 13, "all": 25, "acc": 0.52}}, "human_acc": 67.67567808645465, "acc": 0.6502463054187192}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 128, "all": 212, "difficulty": {"4": {"hit": 46, "all": 63, "acc": 0.7301587301587301}, "5": {"hit": 24, "all": 43, "acc": 0.5581395348837209}, "3": {"hit": 33, "all": 51, "acc": 0.6470588235294118}, "6": {"hit": 17, "all": 32, "acc": 0.53125}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.6037735849056604}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 93, "all": 137, "difficulty": {"5": {"hit": 20, "all": 36, "acc": 0.5555555555555556}, "3": {"hit": 24, "all": 28, "acc": 0.8571428571428571}, "4": {"hit": 30, "all": 35, "acc": 0.8571428571428571}, "6": {"hit": 14, "all": 24, "acc": 0.5833333333333334}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 65.9299610739475, "acc": 0.6788321167883211}, "常识判断|法律常识|劳动法": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.8}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.52370384819999, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 13, "acc": 0.07692307692307693}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 10, "all": 41, "difficulty": {"6": {"hit": 3, "all": 10, "acc": 0.3}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.24390243902439024}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 66, "all": 174, "difficulty": {"5": {"hit": 34, "all": 78, "acc": 0.4358974358974359}, "4": {"hit": 22, "all": 40, "acc": 0.55}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 3, "all": 28, "acc": 0.10714285714285714}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.3793103448275862}, "判断推理|逻辑判断|翻译推理": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 83, "all": 151, "difficulty": {"4": {"hit": 30, "all": 42, "acc": 0.7142857142857143}, "5": {"hit": 21, "all": 41, "acc": 0.5121951219512195}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "3": {"hit": 19, "all": 29, "acc": 0.6551724137931034}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}}, "human_acc": 64.30090962542516, "acc": 0.5496688741721855}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题": {"hit": 21, "all": 65, "difficulty": {"4": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 6, "all": 12, "acc": 0.5}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.3230769230769231}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.6}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 85, "all": 139, "difficulty": {"5": {"hit": 25, "all": 35, "acc": 0.7142857142857143}, "4": {"hit": 29, "all": 39, "acc": 0.7435897435897436}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "3": {"hit": 19, "all": 27, "acc": 0.7037037037037037}}, "human_acc": 66.39573058612521, "acc": 0.6115107913669064}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.2}, "判断推理|定义判断": {"hit": 41, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 20, "all": 38, "acc": 0.5263157894736842}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 10, "all": 16, "acc": 0.625}}, "human_acc": 74.80628203606001, "acc": 0.5125}, "判断推理|定义判断|单定义": {"hit": 36, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 18, "all": 33, "acc": 0.5454545454545454}, "3": {"hit": 10, "all": 16, "acc": 0.625}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.5142857142857142}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.7}, "数量关系|数学运算|概率问题": {"hit": 12, "all": 41, "difficulty": {"7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.2926829268292683}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 7, "all": 21, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.3333333333333333}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.4}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.36363636363636365}, "判断推理|定义判断|单定义|主客体": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 64, "all": 108, "difficulty": {"5": {"hit": 23, "all": 40, "acc": 0.575}, "4": {"hit": 22, "all": 30, "acc": 0.7333333333333333}, "6": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5925925925925926}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 1, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.88811485691, "acc": 0.4}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 96, "all": 152, "difficulty": {"5": {"hit": 28, "all": 46, "acc": 0.6086956521739131}, "4": {"hit": 33, "all": 42, "acc": 0.7857142857142857}, "3": {"hit": 21, "all": 29, "acc": 0.7241379310344828}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.631578947368421}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 228, "all": 359, "difficulty": {"4": {"hit": 106, "all": 154, "acc": 0.6883116883116883}, "5": {"hit": 40, "all": 69, "acc": 0.5797101449275363}, "6": {"hit": 17, "all": 39, "acc": 0.4358974358974359}, "3": {"hit": 45, "all": 54, "acc": 0.8333333333333334}, "7": {"hit": 20, "all": 43, "acc": 0.46511627906976744}}, "human_acc": 68.55487799855013, "acc": 0.6350974930362117}, "言语理解与表达|阅读理解|词句理解题": {"hit": 13, "all": 20, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.65}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.7}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.5}, "判断推理|定义判断|单定义|拆词": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.8}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 31.51805716275, "acc": 0.5}, "判断推理|逻辑判断|削弱题型": {"hit": 15, "all": 66, "difficulty": {"4": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 10, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.22727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题|流水行船": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.45454545454545453}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 201, "all": 319, "difficulty": {"5": {"hit": 31, "all": 58, "acc": 0.5344827586206896}, "6": {"hit": 15, "all": 33, "acc": 0.45454545454545453}, "3": {"hit": 41, "all": 49, "acc": 0.8367346938775511}, "4": {"hit": 95, "all": 140, "acc": 0.6785714285714286}, "7": {"hit": 19, "all": 39, "acc": 0.48717948717948717}}, "human_acc": 68.63568244351346, "acc": 0.6300940438871473}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 35, "all": 48, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 18, "all": 23, "acc": 0.782608695652174}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.7291666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 15, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 63.99639746408, "acc": 0.6}, "判断推理|逻辑判断|加强题型": {"hit": 30, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "5": {"hit": 19, "all": 26, "acc": 0.7307692307692307}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.625}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.6}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.8}, "言语理解与表达|语句表达": {"hit": 45, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 17, "all": 40, "acc": 0.425}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}}, "human_acc": 67.41332639953578, "acc": 0.47368421052631576}, "言语理解与表达|语句表达|语句填空题": {"hit": 17, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 5, "all": 5, "acc": 1.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 55.56949742254332, "acc": 0.5666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.4}, "判断推理|定义判断|单定义|大前提": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.3}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 20, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 74.24320108609, "acc": 0.6666666666666666}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 24, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.631578947368421}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 24, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.6}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 7, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 18, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}}, "human_acc": 63.04056480034193, "acc": 0.5806451612903226}, "判断推理|逻辑判断|原因解释": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.7}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 18, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.32961605834642, "acc": 0.6428571428571429}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.58474381049999, "acc": 0.0}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.7}, "判断推理|逻辑判断|组合排列-材料": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 17, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 11, "all": 15, "acc": 0.7333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5862068965517241}, "言语理解与表达|语句表达|语句排序题": {"hit": 20, "all": 55, "difficulty": {"4": {"hit": 12, "all": 29, "acc": 0.41379310344827586}, "3": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.36363636363636365}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 4, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.3333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.38461538461538464}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 15, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 9, "all": 12, "acc": 0.75}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6818181818181818}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.6}, "资料分析": {"hit": 147, "all": 496, "difficulty": {"6": {"hit": 18, "all": 82, "acc": 0.21951219512195122}, "3": {"hit": 26, "all": 37, "acc": 0.7027027027027027}, "5": {"hit": 38, "all": 155, "acc": 0.24516129032258063}, "4": {"hit": 57, "all": 184, "acc": 0.30978260869565216}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.2963709677419355}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 72, "all": 237, "difficulty": {"6": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "3": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "5": {"hit": 19, "all": 75, "acc": 0.25333333333333335}, "4": {"hit": 28, "all": 88, "acc": 0.3181818181818182}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.3037974683544304}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.4}, "资料分析|简单计算": {"hit": 13, "all": 30, "difficulty": {"3": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.43333333333333335}, "资料分析|简单计算|直接找数": {"hit": 9, "all": 10, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.9}, "资料分析|简单计算|简单加减计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.2}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 11, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.38629613428436, "acc": 0.34375}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 7, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.2692307692307692}, "资料分析|增长量|增长量计算": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.3}, "资料分析|平均数问题": {"hit": 14, "all": 40, "difficulty": {"4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.35}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.2}, "资料分析|基期与现期|现期计算": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.2}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.5}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.1}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.2}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.3}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.7282913837, "acc": 1.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Baichuan2-13B/difficulty_result.json b/results/202309/details/Baichuan2-13B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..006fbe8c91e5ccb9fafe3eafd42a9d8d17d2dc22 --- /dev/null +++ b/results/202309/details/Baichuan2-13B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.4751131221719457, "hit": 840, "all": 1768}, "3": {"hit": 129, "all": 193, "acc": 0.6683937823834197}, "4": {"hit": 271, "all": 470, "acc": 0.5765957446808511}, "5": {"hit": 274, "all": 561, "acc": 0.48841354723707664}, "6": {"hit": 112, "all": 306, "acc": 0.3660130718954248}, "7": {"hit": 53, "all": 236, "acc": 0.2245762711864407}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/Baichuan2-7B/acc_result.json b/results/202309/details/Baichuan2-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5249e67cb4cd01d59ed46fd13bc8e1bd6a409fd2 --- /dev/null +++ b/results/202309/details/Baichuan2-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.4326923076923077, "wrong_value": 0.2176967372540968, "human_acc": 0.6055938546977998, "hit": 765, "total": 1768, "wrong_hit": 484, "wrong_total": 1003, "detail": [{"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "A", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "D", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "D", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "D", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "B", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABC", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "B", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "D", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Baichuan2-7B/category_result-all.json b/results/202309/details/Baichuan2-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..cb5ef3ddd04a8b4d3011d1bfeced31b0d04b3346 --- /dev/null +++ b/results/202309/details/Baichuan2-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1785, "all": 3862, "difficulty": {"3": {"hit": 324, "all": 546, "acc": 0.5934065934065934}, "4": {"hit": 600, "all": 1078, "acc": 0.5565862708719852}, "5": {"hit": 476, "all": 1102, "acc": 0.4319419237749546}, "6": {"hit": 249, "all": 647, "acc": 0.3848531684698609}, "7": {"hit": 132, "all": 485, "acc": 0.2721649484536082}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.46219575349559816}, "判断推理": {"hit": 134, "all": 350, "difficulty": {"3": {"hit": 20, "all": 41, "acc": 0.4878048780487805}, "4": {"hit": 35, "all": 77, "acc": 0.45454545454545453}, "5": {"hit": 64, "all": 155, "acc": 0.4129032258064516}, "6": {"hit": 9, "all": 55, "acc": 0.16363636363636364}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.38285714285714284}, "判断推理|类比推理": {"hit": 29, "all": 96, "difficulty": {"3": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 7, "all": 20, "acc": 0.35}, "5": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "6": {"hit": 2, "all": 22, "acc": 0.09090909090909091}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.82436428905626, "acc": 0.3020833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 19, "all": 52, "difficulty": {"3": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.80522117180384, "acc": 0.36538461538461536}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.18181818181818182}, "判断推理|类比推理|语义关系": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 5, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.45454545454545453}, "常识判断": {"hit": 113, "all": 226, "difficulty": {"5": {"hit": 47, "all": 87, "acc": 0.5402298850574713}, "7": {"hit": 16, "all": 48, "acc": 0.3333333333333333}, "6": {"hit": 21, "all": 50, "acc": 0.42}, "4": {"hit": 27, "all": 38, "acc": 0.7105263157894737}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.5}, "常识判断|人文常识": {"hit": 25, "all": 42, "difficulty": {"5": {"hit": 14, "all": 20, "acc": 0.7}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 6, "all": 12, "acc": 0.5}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.5952380952380952}, "常识判断|人文常识|文化常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.7}, "常识判断|人文常识|文学常识": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.5}, "常识判断|人文常识|中国历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.5}, "常识判断|科技常识": {"hit": 29, "all": 50, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 14, "all": 17, "acc": 0.8235294117647058}, "6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}}, "human_acc": 51.632498263487996, "acc": 0.58}, "常识判断|科技常识|科技理论与成就": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.7}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.4}, "常识判断|科技常识|生物常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.7}, "常识判断|地理国情|国情社情": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 54.87697121455001, "acc": 0.6}, "常识判断|法律常识": {"hit": 35, "all": 80, "difficulty": {"5": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.4375}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.8}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.8}, "常识判断|法律常识|民法": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.6}, "常识判断|人文常识|世界历史": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.7}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.4166666666666667}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 137, "all": 485, "difficulty": {"5": {"hit": 33, "all": 116, "acc": 0.28448275862068967}, "3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 47, "all": 132, "acc": 0.3560606060606061}, "4": {"hit": 29, "all": 68, "acc": 0.4264705882352941}, "7": {"hit": 23, "all": 160, "acc": 0.14375}}, "human_acc": 40.061365720053836, "acc": 0.2824742268041237}, "数量关系|数学运算": {"hit": 137, "all": 485, "difficulty": {"5": {"hit": 33, "all": 116, "acc": 0.28448275862068967}, "3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 47, "all": 132, "acc": 0.3560606060606061}, "4": {"hit": 29, "all": 68, "acc": 0.4264705882352941}, "7": {"hit": 23, "all": 160, "acc": 0.14375}}, "human_acc": 40.061365720053836, "acc": 0.2824742268041237}, "数量关系|数学运算|几何问题": {"hit": 4, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.16666666666666666}, "数量关系|数学运算|几何问题|平面几何": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.08333333333333333}, "数量关系|数学运算|最值问题": {"hit": 23, "all": 65, "difficulty": {"5": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 4, "all": 16, "acc": 0.25}}, "human_acc": 41.27603456994616, "acc": 0.35384615384615387}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 13, "all": 34, "difficulty": {"5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.38235294117647056}, "常识判断|法律常识|行政法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.4}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 11, "all": 21, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 9, "acc": 0.4444444444444444}}, "human_acc": 37.802677258790474, "acc": 0.5238095238095238}, "常识判断|政治常识|时政": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 34.89429799924999, "acc": 0.6}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.5}, "数量关系|数学运算|周期问题": {"hit": 14, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.42424242424242425}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 6, "all": 13, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.46153846153846156}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 24, "all": 74, "difficulty": {"6": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "4": {"hit": 7, "all": 10, "acc": 0.7}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 5, "all": 36, "acc": 0.1388888888888889}}, "human_acc": 33.405759431517595, "acc": 0.32432432432432434}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 4, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.2857142857142857}, "言语理解与表达": {"hit": 1248, "all": 2295, "difficulty": {"5": {"hit": 288, "all": 587, "acc": 0.4906303236797274}, "4": {"hit": 447, "all": 707, "acc": 0.6322489391796322}, "3": {"hit": 284, "all": 455, "acc": 0.6241758241758242}, "6": {"hit": 149, "all": 327, "acc": 0.45565749235474007}, "7": {"hit": 80, "all": 219, "acc": 0.365296803652968}}, "human_acc": 66.81637952144999, "acc": 0.5437908496732026}, "言语理解与表达|逻辑填空": {"hit": 991, "all": 1841, "difficulty": {"5": {"hit": 242, "all": 498, "acc": 0.4859437751004016}, "4": {"hit": 322, "all": 513, "acc": 0.6276803118908382}, "3": {"hit": 233, "all": 384, "acc": 0.6067708333333334}, "6": {"hit": 126, "all": 277, "acc": 0.4548736462093863}, "7": {"hit": 68, "all": 169, "acc": 0.40236686390532544}}, "human_acc": 66.44656371118516, "acc": 0.5382944052145573}, "言语理解与表达|逻辑填空|实词填空": {"hit": 81, "all": 151, "difficulty": {"5": {"hit": 22, "all": 49, "acc": 0.4489795918367347}, "4": {"hit": 27, "all": 39, "acc": 0.6923076923076923}, "3": {"hit": 18, "all": 26, "acc": 0.6923076923076923}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.5364238410596026}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 345, "all": 622, "difficulty": {"5": {"hit": 82, "all": 163, "acc": 0.5030674846625767}, "4": {"hit": 108, "all": 172, "acc": 0.627906976744186}, "3": {"hit": 85, "all": 131, "acc": 0.648854961832061}, "7": {"hit": 22, "all": 60, "acc": 0.36666666666666664}, "6": {"hit": 48, "all": 96, "acc": 0.5}}, "human_acc": 66.76874610652267, "acc": 0.5546623794212219}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 80, "all": 143, "difficulty": {"5": {"hit": 23, "all": 43, "acc": 0.5348837209302325}, "4": {"hit": 24, "all": 42, "acc": 0.5714285714285714}, "3": {"hit": 15, "all": 25, "acc": 0.6}, "6": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 66.64745600073147, "acc": 0.5594405594405595}, "数量关系|数学运算|几何问题|立体几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.25}, "数量关系|数学运算|和差倍比问题": {"hit": 3, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.15}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析": {"hit": 405, "all": 771, "difficulty": {"5": {"hit": 96, "all": 201, "acc": 0.47761194029850745}, "4": {"hit": 136, "all": 217, "acc": 0.6267281105990783}, "3": {"hit": 94, "all": 167, "acc": 0.562874251497006}, "6": {"hit": 49, "all": 116, "acc": 0.4224137931034483}, "7": {"hit": 30, "all": 70, "acc": 0.42857142857142855}}, "human_acc": 66.4145264015949, "acc": 0.5252918287937743}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 83, "all": 165, "difficulty": {"5": {"hit": 19, "all": 45, "acc": 0.4222222222222222}, "4": {"hit": 25, "all": 44, "acc": 0.5681818181818182}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 11, "all": 27, "acc": 0.4074074074074074}, "3": {"hit": 21, "all": 32, "acc": 0.65625}}, "human_acc": 65.38103981607519, "acc": 0.503030303030303}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 85, "all": 145, "difficulty": {"4": {"hit": 29, "all": 43, "acc": 0.6744186046511628}, "5": {"hit": 24, "all": 39, "acc": 0.6153846153846154}, "3": {"hit": 15, "all": 31, "acc": 0.4838709677419355}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 8, "all": 14, "acc": 0.5714285714285714}}, "human_acc": 69.23037595903519, "acc": 0.5862068965517241}, "数量关系|数学运算|数学运算-其他": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.1}, "数量关系|数学运算|数列问题": {"hit": 6, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.3333333333333333}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 66, "all": 135, "difficulty": {"4": {"hit": 26, "all": 38, "acc": 0.6842105263157895}, "3": {"hit": 18, "all": 36, "acc": 0.5}, "5": {"hit": 13, "all": 32, "acc": 0.40625}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.4888888888888889}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 116, "all": 203, "difficulty": {"4": {"hit": 36, "all": 56, "acc": 0.6428571428571429}, "5": {"hit": 23, "all": 49, "acc": 0.46938775510204084}, "3": {"hit": 35, "all": 51, "acc": 0.6862745098039216}, "7": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "6": {"hit": 14, "all": 25, "acc": 0.56}}, "human_acc": 67.67567808645465, "acc": 0.5714285714285714}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 112, "all": 212, "difficulty": {"4": {"hit": 37, "all": 63, "acc": 0.5873015873015873}, "5": {"hit": 24, "all": 43, "acc": 0.5581395348837209}, "3": {"hit": 26, "all": 51, "acc": 0.5098039215686274}, "6": {"hit": 14, "all": 32, "acc": 0.4375}, "7": {"hit": 11, "all": 23, "acc": 0.4782608695652174}}, "human_acc": 67.16383399377828, "acc": 0.5283018867924528}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.5}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 76, "all": 137, "difficulty": {"5": {"hit": 19, "all": 36, "acc": 0.5277777777777778}, "3": {"hit": 18, "all": 28, "acc": 0.6428571428571429}, "4": {"hit": 23, "all": 35, "acc": 0.6571428571428571}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.5547445255474452}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.52370384819999, "acc": 0.5454545454545454}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 32.85243511338, "acc": 0.5}, "数量关系|数学运算|工程问题": {"hit": 13, "all": 41, "difficulty": {"6": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3170731707317073}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 56, "all": 174, "difficulty": {"5": {"hit": 30, "all": 78, "acc": 0.38461538461538464}, "4": {"hit": 16, "all": 40, "acc": 0.4}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 4, "all": 28, "acc": 0.14285714285714285}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.3218390804597701}, "判断推理|逻辑判断|翻译推理": {"hit": 15, "all": 40, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.375}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.2}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 85, "all": 151, "difficulty": {"4": {"hit": 30, "all": 42, "acc": 0.7142857142857143}, "5": {"hit": 18, "all": 41, "acc": 0.43902439024390244}, "6": {"hit": 11, "all": 22, "acc": 0.5}, "3": {"hit": 17, "all": 29, "acc": 0.5862068965517241}, "7": {"hit": 9, "all": 17, "acc": 0.5294117647058824}}, "human_acc": 64.30090962542516, "acc": 0.5629139072847682}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 16, "all": 65, "difficulty": {"4": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.24615384615384617}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.2}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.094132731760006, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 73, "all": 139, "difficulty": {"5": {"hit": 17, "all": 35, "acc": 0.4857142857142857}, "4": {"hit": 25, "all": 39, "acc": 0.6410256410256411}, "7": {"hit": 1, "all": 10, "acc": 0.1}, "6": {"hit": 13, "all": 28, "acc": 0.4642857142857143}, "3": {"hit": 17, "all": 27, "acc": 0.6296296296296297}}, "human_acc": 66.39573058612521, "acc": 0.5251798561151079}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.4}, "判断推理|定义判断": {"hit": 49, "all": 80, "difficulty": {"6": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "5": {"hit": 22, "all": 38, "acc": 0.5789473684210527}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 10, "all": 16, "acc": 0.625}}, "human_acc": 74.80628203606001, "acc": 0.6125}, "判断推理|定义判断|单定义": {"hit": 43, "all": 70, "difficulty": {"6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 10, "all": 15, "acc": 0.6666666666666666}, "5": {"hit": 18, "all": 33, "acc": 0.5454545454545454}, "3": {"hit": 10, "all": 16, "acc": 0.625}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.6142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.5}, "数量关系|数学运算|概率问题": {"hit": 9, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 0, "all": 11, "acc": 0.0}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.21951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.3}, "数量关系|数学运算|行程问题|平均速度": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.1}, "判断推理|定义判断|单定义|原因结果": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 81.04459294875, "acc": 0.6}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 59, "all": 108, "difficulty": {"5": {"hit": 22, "all": 40, "acc": 0.55}, "4": {"hit": 18, "all": 30, "acc": 0.6}, "6": {"hit": 6, "all": 16, "acc": 0.375}, "3": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5462962962962963}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 1, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.5}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 75, "all": 152, "difficulty": {"5": {"hit": 18, "all": 46, "acc": 0.391304347826087}, "4": {"hit": 22, "all": 42, "acc": 0.5238095238095238}, "3": {"hit": 21, "all": 29, "acc": 0.7241379310344828}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.4934210526315789}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 225, "all": 359, "difficulty": {"4": {"hit": 115, "all": 154, "acc": 0.7467532467532467}, "5": {"hit": 36, "all": 69, "acc": 0.5217391304347826}, "6": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 45, "all": 54, "acc": 0.8333333333333334}, "7": {"hit": 10, "all": 43, "acc": 0.23255813953488372}}, "human_acc": 68.55487799855013, "acc": 0.6267409470752089}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.5}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.5}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 17, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 1, "all": 10, "acc": 0.1}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.25757575757575757}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.2727272727272727}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 9, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.9}, "言语理解与表达|阅读理解|中心理解题": {"hit": 203, "all": 319, "difficulty": {"5": {"hit": 29, "all": 58, "acc": 0.5}, "6": {"hit": 17, "all": 33, "acc": 0.5151515151515151}, "3": {"hit": 42, "all": 49, "acc": 0.8571428571428571}, "4": {"hit": 105, "all": 140, "acc": 0.75}, "7": {"hit": 10, "all": 39, "acc": 0.2564102564102564}}, "human_acc": 68.63568244351346, "acc": 0.6363636363636364}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 33, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 19, "all": 23, "acc": 0.8260869565217391}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 70.08123149284167, "acc": 0.6875}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 13, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.52}, "判断推理|逻辑判断|加强题型": {"hit": 21, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 14, "all": 26, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.4375}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 7, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.7}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 32, "all": 95, "difficulty": {"5": {"hit": 10, "all": 20, "acc": 0.5}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 10, "all": 40, "acc": 0.25}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}}, "human_acc": 67.41332639953578, "acc": 0.3368421052631579}, "言语理解与表达|语句表达|语句填空题": {"hit": 14, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.4666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.5}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 23, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 10, "all": 13, "acc": 0.7692307692307693}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.7666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 28, "all": 38, "difficulty": {"3": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 16, "all": 17, "acc": 0.9411764705882353}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.7368421052631579}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 28, "all": 40, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 15, "all": 19, "acc": 0.7894736842105263}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.7}, "言语理解与表达|语句表达|接语选择题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 62.38647134424, "acc": 0.3}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 20, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 11, "all": 13, "acc": 0.8461538461538461}}, "human_acc": 63.04056480034193, "acc": 0.6451612903225806}, "判断推理|逻辑判断|原因解释": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.2}, "判断推理|定义判断|单定义|故事类": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.8}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 13, "all": 28, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.32961605834642, "acc": 0.4642857142857143}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.58474381049999, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 16, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5517241379310345}, "言语理解与表达|语句表达|语句排序题": {"hit": 15, "all": 55, "difficulty": {"4": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "3": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.2727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 3, "all": 12, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.25}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 14, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6363636363636364}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 150, "all": 496, "difficulty": {"6": {"hit": 23, "all": 82, "acc": 0.2804878048780488}, "3": {"hit": 12, "all": 37, "acc": 0.32432432432432434}, "5": {"hit": 44, "all": 155, "acc": 0.2838709677419355}, "4": {"hit": 60, "all": 184, "acc": 0.32608695652173914}, "7": {"hit": 7, "all": 34, "acc": 0.20588235294117646}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3024193548387097}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 6, "all": 30, "acc": 0.2}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 71, "all": 237, "difficulty": {"6": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 21, "all": 75, "acc": 0.28}, "4": {"hit": 29, "all": 88, "acc": 0.32954545454545453}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.29957805907172996}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 10, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3333333333333333}, "资料分析|简单计算|直接找数": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.5}, "资料分析|简单计算|简单加减计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.2}, "资料分析|增长率": {"hit": 8, "all": 32, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.25}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 13, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.38629613428436, "acc": 0.40625}, "资料分析|比重问题|现期比重": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.35875248133, "acc": 0.5}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.3}, "资料分析|平均数问题": {"hit": 14, "all": 40, "difficulty": {"4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.35}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 10, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.3225806451612903}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.5}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.3}, "资料分析|比重问题|基期比重": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.3}, "资料分析|比重问题|两期比重": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.78078638926, "acc": 0.5}, "资料分析|增长率|混合增长率": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.69437779192001, "acc": 0.5}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.0}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.4}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.1}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 2, "all": 7, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.2857142857142857}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Baichuan2-7B/difficulty_result.json b/results/202309/details/Baichuan2-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..946f86d47450866801750ac9b3a78a81177d24f9 --- /dev/null +++ b/results/202309/details/Baichuan2-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.4326923076923077, "hit": 765, "all": 1768}, "3": {"hit": 111, "all": 193, "acc": 0.5751295336787565}, "4": {"hit": 243, "all": 470, "acc": 0.5170212765957447}, "5": {"hit": 243, "all": 561, "acc": 0.43315508021390375}, "6": {"hit": 109, "all": 306, "acc": 0.3562091503267974}, "7": {"hit": 57, "all": 236, "acc": 0.24152542372881355}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/ChatGLM-6B/acc_result.json b/results/202309/details/ChatGLM-6B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..20e66f212aeb362d7d83a784fd7396af324f1615 --- /dev/null +++ b/results/202309/details/ChatGLM-6B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.29411764705882354, "wrong_value": 0.1520916396154022, "human_acc": 0.6055938546977998, "hit": 520, "total": 1768, "wrong_hit": 439, "wrong_total": 1248, "detail": [{"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "ABD", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "AB", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "BC", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "(1)", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "C", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "A123", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "24", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "0928", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "(1)D(2)C(3)D", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "BC", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B346215", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "(1)D", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "(1)D", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "1C", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "BD", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "A1", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "A", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "A", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "53", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "AC", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C$65\\%$", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C063", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B2026", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B237", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C116%", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B2478", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "3", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "B136", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ACD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "A", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "BCD", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "AD", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B80073", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "2", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B$\\sqrt[5]{16}-1$", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "12", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "BIIIIII", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B$92\\%$", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "B0", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "A34152", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "A", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "ACD", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "A50%", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "ABD", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "AC", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B$25\\colon1$", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B2", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "A1324", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ACD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "BC", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "ABD", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "D", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "AC", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B4:7", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C$63\\%$", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "AC", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "AB", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B468%", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "2", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "A", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "ABD", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "D15", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "ABD", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "E", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "C", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "AD", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C$210\\%$", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B351%", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/ChatGLM-6B/category_result-all.json b/results/202309/details/ChatGLM-6B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..b40ea63dc64fb72330c2247b97f02164ffabdc2a --- /dev/null +++ b/results/202309/details/ChatGLM-6B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1226, "all": 3862, "difficulty": {"3": {"hit": 224, "all": 546, "acc": 0.41025641025641024}, "4": {"hit": 423, "all": 1078, "acc": 0.39239332096474955}, "5": {"hit": 342, "all": 1102, "acc": 0.3103448275862069}, "6": {"hit": 153, "all": 647, "acc": 0.23647604327666152}, "7": {"hit": 82, "all": 485, "acc": 0.16907216494845362}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.3174520973588814}, "判断推理": {"hit": 105, "all": 350, "difficulty": {"3": {"hit": 12, "all": 41, "acc": 0.2926829268292683}, "4": {"hit": 29, "all": 77, "acc": 0.37662337662337664}, "5": {"hit": 42, "all": 155, "acc": 0.2709677419354839}, "6": {"hit": 17, "all": 55, "acc": 0.3090909090909091}, "7": {"hit": 5, "all": 22, "acc": 0.22727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.3}, "判断推理|类比推理": {"hit": 23, "all": 96, "difficulty": {"3": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 9, "all": 20, "acc": 0.45}, "5": {"hit": 3, "all": 39, "acc": 0.07692307692307693}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.23958333333333334}, "判断推理|类比推理|逻辑关系": {"hit": 17, "all": 52, "difficulty": {"3": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.3269230769230769}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.45454545454545453}, "判断推理|类比推理|语义关系": {"hit": 3, "all": 30, "difficulty": {"5": {"hit": 0, "all": 18, "acc": 0.0}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.1}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.1}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.0}, "判断推理|类比推理|拆分思维": {"hit": 3, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.21428571428571427}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 4, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.36363636363636365}, "常识判断": {"hit": 66, "all": 226, "difficulty": {"5": {"hit": 22, "all": 87, "acc": 0.25287356321839083}, "7": {"hit": 14, "all": 48, "acc": 0.2916666666666667}, "6": {"hit": 13, "all": 50, "acc": 0.26}, "4": {"hit": 15, "all": 38, "acc": 0.39473684210526316}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.2920353982300885}, "常识判断|人文常识": {"hit": 18, "all": 42, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.42857142857142855}, "常识判断|人文常识|文化常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.96110414555001, "acc": 0.1}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.3}, "常识判断|科技常识": {"hit": 12, "all": 50, "difficulty": {"7": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 0, "all": 14, "acc": 0.0}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.24}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 4, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.19047619047619047}, "常识判断|地理国情|自然常识": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.0}, "常识判断|科技常识|化学常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.2}, "常识判断|科技常识|生物常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.2}, "常识判断|地理国情|国情社情": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.3}, "常识判断|法律常识": {"hit": 26, "all": 80, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 5, "all": 16, "acc": 0.3125}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.325}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.2}, "常识判断|人文常识|世界历史": {"hit": 8, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.8}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 0, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.0}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.0}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 62, "all": 485, "difficulty": {"5": {"hit": 21, "all": 116, "acc": 0.1810344827586207}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 24, "all": 132, "acc": 0.18181818181818182}, "4": {"hit": 10, "all": 68, "acc": 0.14705882352941177}, "7": {"hit": 6, "all": 160, "acc": 0.0375}}, "human_acc": 40.061365720053836, "acc": 0.12783505154639174}, "数量关系|数学运算": {"hit": 62, "all": 485, "difficulty": {"5": {"hit": 21, "all": 116, "acc": 0.1810344827586207}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 24, "all": 132, "acc": 0.18181818181818182}, "4": {"hit": 10, "all": 68, "acc": 0.14705882352941177}, "7": {"hit": 6, "all": 160, "acc": 0.0375}}, "human_acc": 40.061365720053836, "acc": 0.12783505154639174}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.16666666666666666}, "数量关系|数学运算|最值问题": {"hit": 10, "all": 65, "difficulty": {"5": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 22, "acc": 0.13636363636363635}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 16, "acc": 0.0}}, "human_acc": 41.27603456994616, "acc": 0.15384615384615385}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 7, "all": 34, "difficulty": {"5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 9, "acc": 0.0}}, "human_acc": 40.35697170282646, "acc": 0.20588235294117646}, "常识判断|法律常识|行政法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.639119115729994, "acc": 0.3}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 6, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.2857142857142857}, "常识判断|政治常识|时政": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.3}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 5, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 38.245969273603045, "acc": 0.15151515151515152}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 1, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 35.81940208507692, "acc": 0.07692307692307693}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 11, "all": 74, "difficulty": {"6": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "4": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 1, "all": 36, "acc": 0.027777777777777776}}, "human_acc": 33.405759431517595, "acc": 0.14864864864864866}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 906, "all": 2295, "difficulty": {"5": {"hit": 235, "all": 587, "acc": 0.40034071550255534}, "4": {"hit": 336, "all": 707, "acc": 0.4752475247524752}, "3": {"hit": 201, "all": 455, "acc": 0.44175824175824174}, "6": {"hit": 83, "all": 327, "acc": 0.25382262996941896}, "7": {"hit": 51, "all": 219, "acc": 0.2328767123287671}}, "human_acc": 66.81637952144999, "acc": 0.39477124183006534}, "言语理解与表达|逻辑填空": {"hit": 685, "all": 1841, "difficulty": {"5": {"hit": 191, "all": 498, "acc": 0.38353413654618473}, "4": {"hit": 231, "all": 513, "acc": 0.4502923976608187}, "3": {"hit": 156, "all": 384, "acc": 0.40625}, "6": {"hit": 66, "all": 277, "acc": 0.23826714801444043}, "7": {"hit": 41, "all": 169, "acc": 0.24260355029585798}}, "human_acc": 66.44656371118516, "acc": 0.3720803910917979}, "言语理解与表达|逻辑填空|实词填空": {"hit": 58, "all": 151, "difficulty": {"5": {"hit": 20, "all": 49, "acc": 0.40816326530612246}, "4": {"hit": 18, "all": 39, "acc": 0.46153846153846156}, "3": {"hit": 12, "all": 26, "acc": 0.46153846153846156}, "6": {"hit": 4, "all": 24, "acc": 0.16666666666666666}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.3841059602649007}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 241, "all": 622, "difficulty": {"5": {"hit": 61, "all": 163, "acc": 0.37423312883435583}, "4": {"hit": 85, "all": 172, "acc": 0.4941860465116279}, "3": {"hit": 59, "all": 131, "acc": 0.45038167938931295}, "7": {"hit": 14, "all": 60, "acc": 0.23333333333333334}, "6": {"hit": 22, "all": 96, "acc": 0.22916666666666666}}, "human_acc": 66.76874610652267, "acc": 0.387459807073955}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 48, "all": 143, "difficulty": {"5": {"hit": 13, "all": 43, "acc": 0.3023255813953488}, "4": {"hit": 17, "all": 42, "acc": 0.40476190476190477}, "3": {"hit": 10, "all": 25, "acc": 0.4}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 14, "acc": 0.14285714285714285}}, "human_acc": 66.64745600073147, "acc": 0.3356643356643357}, "数量关系|数学运算|几何问题|立体几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.25}, "数量关系|数学运算|和差倍比问题": {"hit": 0, "all": 20, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 51.365180902629994, "acc": 0.0}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.0}, "言语理解与表达|逻辑填空|语境分析": {"hit": 276, "all": 771, "difficulty": {"5": {"hit": 78, "all": 201, "acc": 0.3880597014925373}, "4": {"hit": 93, "all": 217, "acc": 0.42857142857142855}, "3": {"hit": 60, "all": 167, "acc": 0.3592814371257485}, "6": {"hit": 28, "all": 116, "acc": 0.2413793103448276}, "7": {"hit": 17, "all": 70, "acc": 0.24285714285714285}}, "human_acc": 66.4145264015949, "acc": 0.35797665369649806}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 53, "all": 165, "difficulty": {"5": {"hit": 18, "all": 45, "acc": 0.4}, "4": {"hit": 15, "all": 44, "acc": 0.3409090909090909}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 7, "all": 27, "acc": 0.25925925925925924}, "3": {"hit": 10, "all": 32, "acc": 0.3125}}, "human_acc": 65.38103981607519, "acc": 0.3212121212121212}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 52, "all": 145, "difficulty": {"4": {"hit": 18, "all": 43, "acc": 0.4186046511627907}, "5": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 11, "all": 31, "acc": 0.3548387096774194}, "6": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 69.23037595903519, "acc": 0.3586206896551724}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 0, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.0}, "数量关系|数学运算|不定方程问题": {"hit": 3, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.48429408539231, "acc": 0.11538461538461539}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 1, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.70558675868666, "acc": 0.06666666666666667}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 55, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 15, "all": 36, "acc": 0.4166666666666667}, "5": {"hit": 15, "all": 32, "acc": 0.46875}, "6": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 67.2510308321489, "acc": 0.4074074074074074}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 84, "all": 203, "difficulty": {"4": {"hit": 27, "all": 56, "acc": 0.48214285714285715}, "5": {"hit": 23, "all": 49, "acc": 0.46938775510204084}, "3": {"hit": 23, "all": 51, "acc": 0.45098039215686275}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 5, "all": 25, "acc": 0.2}}, "human_acc": 67.67567808645465, "acc": 0.41379310344827586}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 77, "all": 212, "difficulty": {"4": {"hit": 30, "all": 63, "acc": 0.47619047619047616}, "5": {"hit": 13, "all": 43, "acc": 0.3023255813953488}, "3": {"hit": 16, "all": 51, "acc": 0.3137254901960784}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.3632075471698113}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.2}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 46, "all": 137, "difficulty": {"5": {"hit": 12, "all": 36, "acc": 0.3333333333333333}, "3": {"hit": 12, "all": 28, "acc": 0.42857142857142855}, "4": {"hit": 18, "all": 35, "acc": 0.5142857142857142}, "6": {"hit": 2, "all": 24, "acc": 0.08333333333333333}, "7": {"hit": 2, "all": 14, "acc": 0.14285714285714285}}, "human_acc": 65.9299610739475, "acc": 0.3357664233576642}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.0}, "数量关系|数学运算|最值问题|构造数列": {"hit": 1, "all": 11, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 13, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 4, "all": 41, "difficulty": {"6": {"hit": 1, "all": 10, "acc": 0.1}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.0975609756097561}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.1}, "判断推理|逻辑判断": {"hit": 58, "all": 174, "difficulty": {"5": {"hit": 27, "all": 78, "acc": 0.34615384615384615}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.3333333333333333}, "判断推理|逻辑判断|翻译推理": {"hit": 8, "all": 40, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.1}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 52, "all": 151, "difficulty": {"4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "5": {"hit": 16, "all": 41, "acc": 0.3902439024390244}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 2, "all": 17, "acc": 0.11764705882352941}}, "human_acc": 64.30090962542516, "acc": 0.3443708609271523}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.09090909090909091}, "数量关系|数学运算|行程问题": {"hit": 10, "all": 65, "difficulty": {"4": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 5, "all": 21, "acc": 0.23809523809523808}, "5": {"hit": 0, "all": 12, "acc": 0.0}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.15384615384615385}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 2, "all": 17, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.11764705882352941}, "数量关系|数学运算|年龄问题": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.0}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 63, "all": 139, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "4": {"hit": 23, "all": 39, "acc": 0.5897435897435898}, "7": {"hit": 4, "all": 10, "acc": 0.4}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 14, "all": 27, "acc": 0.5185185185185185}}, "human_acc": 66.39573058612521, "acc": 0.45323741007194246}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 24, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 74.80628203606001, "acc": 0.3}, "判断推理|定义判断|单定义": {"hit": 17, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 6, "all": 15, "acc": 0.4}, "5": {"hit": 9, "all": 33, "acc": 0.2727272727272727}, "3": {"hit": 1, "all": 16, "acc": 0.0625}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.24285714285714285}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.40619386915, "acc": 0.2}, "数量关系|数学运算|概率问题": {"hit": 6, "all": 41, "difficulty": {"7": {"hit": 1, "all": 17, "acc": 0.058823529411764705}, "5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.14634146341463414}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 4, "all": 21, "difficulty": {"7": {"hit": 1, "all": 10, "acc": 0.1}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.19047619047619047}, "数量关系|数学运算|行程问题|普通行程": {"hit": 1, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.07692307692307693}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.1}, "数量关系|数学运算|行程问题|平均速度": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.1}, "判断推理|定义判断|单定义|原因结果": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 81.04459294875, "acc": 0.1}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 39, "all": 108, "difficulty": {"5": {"hit": 16, "all": 40, "acc": 0.4}, "4": {"hit": 14, "all": 30, "acc": 0.4666666666666667}, "6": {"hit": 1, "all": 16, "acc": 0.0625}, "3": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.43212003256482, "acc": 0.3611111111111111}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.2}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.2}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 58, "all": 152, "difficulty": {"5": {"hit": 16, "all": 46, "acc": 0.34782608695652173}, "4": {"hit": 17, "all": 42, "acc": 0.40476190476190477}, "3": {"hit": 14, "all": 29, "acc": 0.4827586206896552}, "7": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 65.94677786230925, "acc": 0.3815789473684211}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.09090909090909091}, "言语理解与表达|阅读理解": {"hit": 196, "all": 359, "difficulty": {"4": {"hit": 92, "all": 154, "acc": 0.5974025974025974}, "5": {"hit": 38, "all": 69, "acc": 0.5507246376811594}, "6": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 41, "all": 54, "acc": 0.7592592592592593}, "7": {"hit": 9, "all": 43, "acc": 0.20930232558139536}}, "human_acc": 68.55487799855013, "acc": 0.5459610027855153}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.49700996277002, "acc": 0.2}, "判断推理|定义判断|单定义|拆词": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.4}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 20, "all": 66, "difficulty": {"4": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "6": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.30303030303030304}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.18181818181818182}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题": {"hit": 175, "all": 319, "difficulty": {"5": {"hit": 30, "all": 58, "acc": 0.5172413793103449}, "6": {"hit": 14, "all": 33, "acc": 0.42424242424242425}, "3": {"hit": 38, "all": 49, "acc": 0.7755102040816326}, "4": {"hit": 84, "all": 140, "acc": 0.6}, "7": {"hit": 9, "all": 39, "acc": 0.23076923076923078}}, "human_acc": 68.63568244351346, "acc": 0.54858934169279}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 28, "all": 48, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 14, "all": 23, "acc": 0.6086956521739131}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.5833333333333334}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.0}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 11, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 63.99639746408, "acc": 0.44}, "判断推理|逻辑判断|加强题型": {"hit": 21, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 14, "all": 26, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}}, "human_acc": 62.50620258335624, "acc": 0.4375}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.5}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.6}, "言语理解与表达|语句表达": {"hit": 25, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 13, "all": 40, "acc": 0.325}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}}, "human_acc": 67.41332639953578, "acc": 0.2631578947368421}, "言语理解与表达|语句表达|语句填空题": {"hit": 8, "all": 30, "difficulty": {"5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.26666666666666666}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.1}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 21, "all": 30, "difficulty": {"3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 11, "all": 13, "acc": 0.8461538461538461}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 20, "all": 38, "difficulty": {"3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.5263157894736842}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 23, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 13, "all": 19, "acc": 0.6842105263157895}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.575}, "言语理解与表达|语句表达|接语选择题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.4}, "判断推理|定义判断|多定义": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.7}, "判断推理|定义判断|多定义|常规问法": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.7}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 8, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.36363636363636365}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 21, "all": 31, "difficulty": {"5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}}, "human_acc": 63.04056480034193, "acc": 0.6774193548387096}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 11, "all": 28, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.39285714285714285}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.58474381049999, "acc": 0.6}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.3}, "判断推理|逻辑判断|组合排列-材料": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.78145644953, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 20, "all": 29, "difficulty": {"5": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 11, "all": 15, "acc": 0.7333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.6896551724137931}, "言语理解与表达|语句表达|语句排序题": {"hit": 13, "all": 55, "difficulty": {"4": {"hit": 10, "all": 29, "acc": 0.3448275862068966}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.23636363636363636}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 3, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.25}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 4, "all": 13, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.3076923076923077}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 10, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.45454545454545453}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.4}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 86, "all": 496, "difficulty": {"6": {"hit": 16, "all": 82, "acc": 0.1951219512195122}, "3": {"hit": 8, "all": 37, "acc": 0.21621621621621623}, "5": {"hit": 22, "all": 155, "acc": 0.14193548387096774}, "4": {"hit": 32, "all": 184, "acc": 0.17391304347826086}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.17338709677419356}, "资料分析|基期与现期": {"hit": 9, "all": 57, "difficulty": {"6": {"hit": 0, "all": 7, "acc": 0.0}, "5": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.15789473684210525}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 42, "all": 237, "difficulty": {"6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 11, "all": 75, "acc": 0.14666666666666667}, "4": {"hit": 15, "all": 88, "acc": 0.17045454545454544}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.17721518987341772}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 1, "all": 5, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.4}, "资料分析|简单计算": {"hit": 7, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.23333333333333334}, "资料分析|简单计算|直接找数": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.4}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 2, "all": 32, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 0, "all": 9, "acc": 0.0}, "6": {"hit": 0, "all": 8, "acc": 0.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.0625}, "资料分析|增长率|一般增长率": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.0}, "资料分析|比重问题": {"hit": 5, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.15625}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 6, "all": 26, "difficulty": {"4": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.23076923076923078}, "资料分析|增长量|增长量计算": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.0}, "资料分析|平均数问题": {"hit": 9, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.02933098769998, "acc": 0.225}, "资料分析|平均数问题|现期平均数": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.5}, "资料分析|增长率|间隔增长率": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.0}, "资料分析|倍数与比值相关": {"hit": 2, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 0, "all": 10, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.06451612903225806}, "资料分析|倍数与比值相关|比值计算": {"hit": 0, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.0}, "资料分析|倍数与比值相关|现期倍数": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.0}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.0}, "资料分析|比重问题|两期比重": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.1}, "资料分析|增长率|混合增长率": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.2}, "资料分析|增长量|增长量比较": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 71.35157502931, "acc": 0.5}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.1}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.1}, "资料分析|基期与现期|间隔基期": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.1}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.3}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 1, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.14285714285714285}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 0, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.0}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/ChatGLM-6B/difficulty_result.json b/results/202309/details/ChatGLM-6B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..13a526a71cff11991543401ddedad6e16363699e --- /dev/null +++ b/results/202309/details/ChatGLM-6B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.3031674208144796, "hit": 536, "all": 1768}, "3": {"hit": 79, "all": 193, "acc": 0.40932642487046633}, "4": {"hit": 169, "all": 470, "acc": 0.3595744680851064}, "5": {"hit": 172, "all": 561, "acc": 0.3065953654188948}, "6": {"hit": 76, "all": 306, "acc": 0.24836601307189543}, "7": {"hit": 39, "all": 236, "acc": 0.1652542372881356}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/ChatGLM2-6B/acc_result.json b/results/202309/details/ChatGLM2-6B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bb3df051bf3f94b2f3dbbd7a12fe31f66c154d71 --- /dev/null +++ b/results/202309/details/ChatGLM2-6B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.38009049773755654, "wrong_value": 0.19020606066422363, "human_acc": 0.6055938546977998, "hit": 672, "total": 1768, "wrong_hit": 484, "wrong_total": 1096, "detail": [{"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "A", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "A", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "ABD", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "AC", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "A", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ACD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "E", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/ChatGLM2-6B/category_result-all.json b/results/202309/details/ChatGLM2-6B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..e8481529bff33db0255e0c14ec39342f031671eb --- /dev/null +++ b/results/202309/details/ChatGLM2-6B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1506, "all": 3862, "difficulty": {"3": {"hit": 254, "all": 546, "acc": 0.4652014652014652}, "4": {"hit": 468, "all": 1078, "acc": 0.43413729128014844}, "5": {"hit": 444, "all": 1102, "acc": 0.4029038112522686}, "6": {"hit": 224, "all": 647, "acc": 0.3462132921174652}, "7": {"hit": 114, "all": 485, "acc": 0.23505154639175257}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.38995339202485757}, "判断推理": {"hit": 122, "all": 350, "difficulty": {"3": {"hit": 14, "all": 41, "acc": 0.34146341463414637}, "4": {"hit": 31, "all": 77, "acc": 0.4025974025974026}, "5": {"hit": 61, "all": 155, "acc": 0.3935483870967742}, "6": {"hit": 12, "all": 55, "acc": 0.21818181818181817}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.3485714285714286}, "判断推理|类比推理": {"hit": 18, "all": 96, "difficulty": {"3": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "4": {"hit": 6, "all": 20, "acc": 0.3}, "5": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "6": {"hit": 0, "all": 22, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.1875}, "判断推理|类比推理|逻辑关系": {"hit": 8, "all": 52, "difficulty": {"3": {"hit": 1, "all": 10, "acc": 0.1}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 0, "all": 13, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.15384615384615385}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 0, "all": 11, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.0}, "判断推理|类比推理|语义关系": {"hit": 9, "all": 30, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.4}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 1, "all": 14, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.07142857142857142}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 2, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.18181818181818182}, "常识判断": {"hit": 91, "all": 226, "difficulty": {"5": {"hit": 40, "all": 87, "acc": 0.45977011494252873}, "7": {"hit": 10, "all": 48, "acc": 0.20833333333333334}, "6": {"hit": 21, "all": 50, "acc": 0.42}, "4": {"hit": 18, "all": 38, "acc": 0.47368421052631576}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.4026548672566372}, "常识判断|人文常识": {"hit": 21, "all": 42, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.5}, "常识判断|人文常识|文化常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.7}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.4}, "常识判断|科技常识": {"hit": 23, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "6": {"hit": 7, "all": 14, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}}, "human_acc": 51.632498263487996, "acc": 0.46}, "常识判断|科技常识|科技理论与成就": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.4}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.3}, "常识判断|科技常识|化学常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.3}, "常识判断|科技常识|生物常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.6}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 31, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.3875}, "常识判断|法律常识|刑法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.4}, "常识判断|科技常识|物理常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 51.029714180179994, "acc": 0.4}, "常识判断|科技常识|生活常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.4}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.6}, "常识判断|法律常识|宪法": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.6}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.0}, "数量关系": {"hit": 136, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 50, "all": 132, "acc": 0.3787878787878788}, "4": {"hit": 20, "all": 68, "acc": 0.29411764705882354}, "7": {"hit": 30, "all": 160, "acc": 0.1875}}, "human_acc": 40.061365720053836, "acc": 0.2804123711340206}, "数量关系|数学运算": {"hit": 136, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 50, "all": 132, "acc": 0.3787878787878788}, "4": {"hit": 20, "all": 68, "acc": 0.29411764705882354}, "7": {"hit": 30, "all": 160, "acc": 0.1875}}, "human_acc": 40.061365720053836, "acc": 0.2804123711340206}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 15, "all": 65, "difficulty": {"5": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.23076923076923078}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 10, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.29411764705882354}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 5, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 9, "acc": 0.0}}, "human_acc": 37.802677258790474, "acc": 0.23809523809523808}, "常识判断|政治常识|时政": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 34.89429799924999, "acc": 0.2}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 10, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "6": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 38.245969273603045, "acc": 0.30303030303030304}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 2, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 35.81940208507692, "acc": 0.15384615384615385}, "常识判断|法律常识|经济法": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.2}, "数量关系|数学运算|排列组合问题": {"hit": 17, "all": 74, "difficulty": {"6": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 10, "acc": 0.1}, "5": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "7": {"hit": 8, "all": 36, "acc": 0.2222222222222222}}, "human_acc": 33.405759431517595, "acc": 0.22972972972972974}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 3, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 28.644400674264286, "acc": 0.21428571428571427}, "言语理解与表达": {"hit": 1000, "all": 2295, "difficulty": {"5": {"hit": 268, "all": 587, "acc": 0.4565587734241908}, "4": {"hit": 332, "all": 707, "acc": 0.4695898161244696}, "3": {"hit": 220, "all": 455, "acc": 0.4835164835164835}, "6": {"hit": 116, "all": 327, "acc": 0.3547400611620795}, "7": {"hit": 64, "all": 219, "acc": 0.2922374429223744}}, "human_acc": 66.81637952144999, "acc": 0.4357298474945534}, "言语理解与表达|逻辑填空": {"hit": 769, "all": 1841, "difficulty": {"5": {"hit": 220, "all": 498, "acc": 0.44176706827309237}, "4": {"hit": 233, "all": 513, "acc": 0.45419103313840153}, "3": {"hit": 179, "all": 384, "acc": 0.4661458333333333}, "6": {"hit": 89, "all": 277, "acc": 0.3212996389891697}, "7": {"hit": 48, "all": 169, "acc": 0.28402366863905326}}, "human_acc": 66.44656371118516, "acc": 0.4177077675176534}, "言语理解与表达|逻辑填空|实词填空": {"hit": 60, "all": 151, "difficulty": {"5": {"hit": 19, "all": 49, "acc": 0.3877551020408163}, "4": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 11, "all": 26, "acc": 0.4230769230769231}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.3973509933774834}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 269, "all": 622, "difficulty": {"5": {"hit": 68, "all": 163, "acc": 0.4171779141104294}, "4": {"hit": 86, "all": 172, "acc": 0.5}, "3": {"hit": 64, "all": 131, "acc": 0.48854961832061067}, "7": {"hit": 17, "all": 60, "acc": 0.2833333333333333}, "6": {"hit": 34, "all": 96, "acc": 0.3541666666666667}}, "human_acc": 66.76874610652267, "acc": 0.432475884244373}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 64, "all": 143, "difficulty": {"5": {"hit": 20, "all": 43, "acc": 0.46511627906976744}, "4": {"hit": 17, "all": 42, "acc": 0.40476190476190477}, "3": {"hit": 14, "all": 25, "acc": 0.56}, "6": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 2, "all": 14, "acc": 0.14285714285714285}}, "human_acc": 66.64745600073147, "acc": 0.44755244755244755}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 7, "all": 20, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.35}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 303, "all": 771, "difficulty": {"5": {"hit": 88, "all": 201, "acc": 0.43781094527363185}, "4": {"hit": 89, "all": 217, "acc": 0.41013824884792627}, "3": {"hit": 74, "all": 167, "acc": 0.4431137724550898}, "6": {"hit": 33, "all": 116, "acc": 0.28448275862068967}, "7": {"hit": 19, "all": 70, "acc": 0.2714285714285714}}, "human_acc": 66.4145264015949, "acc": 0.39299610894941633}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 61, "all": 165, "difficulty": {"5": {"hit": 20, "all": 45, "acc": 0.4444444444444444}, "4": {"hit": 18, "all": 44, "acc": 0.4090909090909091}, "7": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "6": {"hit": 8, "all": 27, "acc": 0.2962962962962963}, "3": {"hit": 13, "all": 32, "acc": 0.40625}}, "human_acc": 65.38103981607519, "acc": 0.3696969696969697}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 70, "all": 145, "difficulty": {"4": {"hit": 25, "all": 43, "acc": 0.5813953488372093}, "5": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 12, "all": 31, "acc": 0.3870967741935484}, "6": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 69.23037595903519, "acc": 0.4827586206896552}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 10, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.38461538461538464}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 55, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 18, "all": 36, "acc": 0.5}, "5": {"hit": 12, "all": 32, "acc": 0.375}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 67.2510308321489, "acc": 0.4074074074074074}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 86, "all": 203, "difficulty": {"4": {"hit": 28, "all": 56, "acc": 0.5}, "5": {"hit": 18, "all": 49, "acc": 0.3673469387755102}, "3": {"hit": 25, "all": 51, "acc": 0.49019607843137253}, "7": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "6": {"hit": 8, "all": 25, "acc": 0.32}}, "human_acc": 67.67567808645465, "acc": 0.4236453201970443}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 85, "all": 212, "difficulty": {"4": {"hit": 27, "all": 63, "acc": 0.42857142857142855}, "5": {"hit": 16, "all": 43, "acc": 0.37209302325581395}, "3": {"hit": 24, "all": 51, "acc": 0.47058823529411764}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.4009433962264151}, "常识判断|法律常识|民事诉讼法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.5}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 56, "all": 137, "difficulty": {"5": {"hit": 15, "all": 36, "acc": 0.4166666666666667}, "3": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "4": {"hit": 20, "all": 35, "acc": 0.5714285714285714}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 65.9299610739475, "acc": 0.40875912408759124}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 7, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.35}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.4}, "数量关系|数学运算|工程问题": {"hit": 9, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.21951219512195122}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.1}, "判断推理|逻辑判断": {"hit": 70, "all": 174, "difficulty": {"5": {"hit": 33, "all": 78, "acc": 0.4230769230769231}, "4": {"hit": 18, "all": 40, "acc": 0.45}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.40229885057471265}, "判断推理|逻辑判断|翻译推理": {"hit": 14, "all": 40, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.35}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 57, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 18, "all": 41, "acc": 0.43902439024390244}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.37748344370860926}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.2}, "数量关系|数学运算|经济利润问题": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题": {"hit": 26, "all": 65, "difficulty": {"4": {"hit": 6, "all": 12, "acc": 0.5}, "6": {"hit": 10, "all": 21, "acc": 0.47619047619047616}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.4}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.2}, "数量关系|数学运算|统筹规划问题": {"hit": 4, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.23529411764705882}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 63, "all": 139, "difficulty": {"5": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "4": {"hit": 21, "all": 39, "acc": 0.5384615384615384}, "7": {"hit": 4, "all": 10, "acc": 0.4}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 14, "all": 27, "acc": 0.5185185185185185}}, "human_acc": 66.39573058612521, "acc": 0.45323741007194246}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.3}, "判断推理|定义判断": {"hit": 34, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "5": {"hit": 18, "all": 38, "acc": 0.47368421052631576}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.425}, "判断推理|定义判断|单定义": {"hit": 29, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "5": {"hit": 16, "all": 33, "acc": 0.48484848484848486}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.4142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.40619386915, "acc": 0.0}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 8, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.38095238095238093}, "数量关系|数学运算|行程问题|普通行程": {"hit": 9, "all": 13, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.6923076923076923}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.6}, "判断推理|定义判断|单定义|原因结果": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.4}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.36363636363636365}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 45, "all": 108, "difficulty": {"5": {"hit": 22, "all": 40, "acc": 0.55}, "4": {"hit": 12, "all": 30, "acc": 0.4}, "6": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.43212003256482, "acc": 0.4166666666666667}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 5, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 42.54616771271819, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 67, "all": 152, "difficulty": {"5": {"hit": 23, "all": 46, "acc": 0.5}, "4": {"hit": 14, "all": 42, "acc": 0.3333333333333333}, "3": {"hit": 18, "all": 29, "acc": 0.6206896551724138}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 65.94677786230925, "acc": 0.4407894736842105}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.36363636363636365}, "言语理解与表达|阅读理解": {"hit": 201, "all": 359, "difficulty": {"4": {"hit": 84, "all": 154, "acc": 0.5454545454545454}, "5": {"hit": 42, "all": 69, "acc": 0.6086956521739131}, "6": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 39, "all": 54, "acc": 0.7222222222222222}, "7": {"hit": 14, "all": 43, "acc": 0.32558139534883723}}, "human_acc": 68.55487799855013, "acc": 0.5598885793871866}, "言语理解与表达|阅读理解|词句理解题": {"hit": 9, "all": 20, "difficulty": {"4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.47019993558001, "acc": 0.45}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.2}, "判断推理|逻辑判断|削弱题型": {"hit": 24, "all": 66, "difficulty": {"4": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "6": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.36363636363636365}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 6, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.5454545454545454}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 182, "all": 319, "difficulty": {"5": {"hit": 36, "all": 58, "acc": 0.6206896551724138}, "6": {"hit": 19, "all": 33, "acc": 0.5757575757575758}, "3": {"hit": 36, "all": 49, "acc": 0.7346938775510204}, "4": {"hit": 79, "all": 140, "acc": 0.5642857142857143}, "7": {"hit": 12, "all": 39, "acc": 0.3076923076923077}}, "human_acc": 68.63568244351346, "acc": 0.5705329153605015}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 34, "all": 48, "difficulty": {"5": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "4": {"hit": 16, "all": 23, "acc": 0.6956521739130435}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.7083333333333334}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 10, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.4}, "判断推理|逻辑判断|加强题型": {"hit": 28, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 16, "all": 26, "acc": 0.6153846153846154}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}}, "human_acc": 62.50620258335624, "acc": 0.5833333333333334}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.5}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 9, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 7, "all": 7, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.9}, "言语理解与表达|语句表达": {"hit": 30, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 15, "all": 40, "acc": 0.375}, "3": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}}, "human_acc": 67.41332639953578, "acc": 0.3157894736842105}, "言语理解与表达|语句表达|语句填空题": {"hit": 15, "all": 30, "difficulty": {"5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.02576181201, "acc": 0.5}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 5, "all": 5, "acc": 1.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 22, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 66.77662401733, "acc": 0.55}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.30809915712001, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 12, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 64.28934778878182, "acc": 0.5454545454545454}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 18, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}}, "human_acc": 63.04056480034193, "acc": 0.5806451612903226}, "判断推理|逻辑判断|原因解释": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.4}, "判断推理|定义判断|单定义|故事类": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 15, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.5357142857142857}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 14, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.4827586206896552}, "言语理解与表达|语句表达|语句排序题": {"hit": 10, "all": 55, "difficulty": {"4": {"hit": 9, "all": 29, "acc": 0.3103448275862069}, "3": {"hit": 1, "all": 14, "acc": 0.07142857142857142}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.18181818181818182}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 1, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.08333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 83.03719898832999, "acc": 0.0}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 4, "all": 13, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.3076923076923077}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 12, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5454545454545454}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 156, "all": 496, "difficulty": {"6": {"hit": 25, "all": 82, "acc": 0.3048780487804878}, "3": {"hit": 14, "all": 37, "acc": 0.3783783783783784}, "5": {"hit": 43, "all": 155, "acc": 0.27741935483870966}, "4": {"hit": 66, "all": 184, "acc": 0.358695652173913}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.31451612903225806}, "资料分析|基期与现期": {"hit": 18, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "4": {"hit": 12, "all": 30, "acc": 0.4}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.3157894736842105}, "资料分析|基期与现期|基期计算": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.5}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "5": {"hit": 21, "all": 75, "acc": 0.28}, "4": {"hit": 31, "all": 88, "acc": 0.3522727272727273}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.4}, "资料分析|简单计算": {"hit": 11, "all": 30, "difficulty": {"3": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.36666666666666664}, "资料分析|简单计算|直接找数": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.5}, "资料分析|简单计算|简单加减计算": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.5}, "资料分析|增长率": {"hit": 9, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.28125}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 8, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "5": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.25}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 12, "all": 26, "difficulty": {"4": {"hit": 5, "all": 8, "acc": 0.625}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.46153846153846156}, "资料分析|增长量|增长量计算": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.6}, "资料分析|平均数问题": {"hit": 12, "all": 40, "difficulty": {"4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.02933098769998, "acc": 0.3}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.5}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.3}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.2}, "资料分析|增长量|增长量比较": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.4}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.2}, "资料分析|平均数问题|平均数的增长量": {"hit": 4, "all": 7, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 57.80231180570001, "acc": 0.5714285714285714}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/ChatGLM2-6B/difficulty_result.json b/results/202309/details/ChatGLM2-6B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fbd76d4ed6b3f98dc8143bdad694bfd4875374e6 --- /dev/null +++ b/results/202309/details/ChatGLM2-6B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.38009049773755654, "hit": 672, "all": 1768}, "3": {"hit": 88, "all": 193, "acc": 0.45595854922279794}, "4": {"hit": 197, "all": 470, "acc": 0.41914893617021276}, "5": {"hit": 226, "all": 561, "acc": 0.4028520499108734}, "6": {"hit": 108, "all": 306, "acc": 0.35294117647058826}, "7": {"hit": 52, "all": 236, "acc": 0.22033898305084745}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama-13B/acc_result.json b/results/202309/details/ChineseLlama-13B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d321bcdab30725adb3cd9bf007356a8150b15339 --- /dev/null +++ b/results/202309/details/ChineseLlama-13B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.27714932126696834, "wrong_value": 0.1711466070205446, "human_acc": 0.6055938546977998, "hit": 490, "total": 1768, "wrong_hit": 520, "wrong_total": 1278, "detail": [{"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "E", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "BCD", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "D", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "C", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "A", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "A", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "A", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "E", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "E", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "A", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama-13B/category_result-all.json b/results/202309/details/ChineseLlama-13B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..3d0b53e879eca1d96ab7f8afe058c6e9bb408ab1 --- /dev/null +++ b/results/202309/details/ChineseLlama-13B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1076, "all": 3862, "difficulty": {"3": {"hit": 180, "all": 546, "acc": 0.32967032967032966}, "4": {"hit": 344, "all": 1078, "acc": 0.31910946196660483}, "5": {"hit": 258, "all": 1102, "acc": 0.23411978221415608}, "6": {"hit": 187, "all": 647, "acc": 0.2890262751159196}, "7": {"hit": 105, "all": 485, "acc": 0.21649484536082475}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.27861211807353703}, "判断推理": {"hit": 94, "all": 350, "difficulty": {"3": {"hit": 12, "all": 41, "acc": 0.2926829268292683}, "4": {"hit": 24, "all": 77, "acc": 0.3116883116883117}, "5": {"hit": 46, "all": 155, "acc": 0.2967741935483871}, "6": {"hit": 9, "all": 55, "acc": 0.16363636363636364}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.26857142857142857}, "判断推理|类比推理": {"hit": 22, "all": 96, "difficulty": {"3": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 5, "all": 20, "acc": 0.25}, "5": {"hit": 4, "all": 39, "acc": 0.10256410256410256}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.22916666666666666}, "判断推理|类比推理|逻辑关系": {"hit": 14, "all": 52, "difficulty": {"3": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 15, "acc": 0.13333333333333333}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.2692307692307692}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 4, "all": 30, "difficulty": {"5": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.13333333333333333}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.1}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 48, "all": 226, "difficulty": {"5": {"hit": 15, "all": 87, "acc": 0.1724137931034483}, "7": {"hit": 8, "all": 48, "acc": 0.16666666666666666}, "6": {"hit": 8, "all": 50, "acc": 0.16}, "4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 46.34274676514825, "acc": 0.21238938053097345}, "常识判断|人文常识": {"hit": 13, "all": 42, "difficulty": {"5": {"hit": 5, "all": 20, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 12, "acc": 0.25}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.30952380952380953}, "常识判断|人文常识|文化常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.2}, "常识判断|人文常识|文学常识": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 58.752282007969995, "acc": 0.1}, "常识判断|人文常识|中国历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.4}, "常识判断|科技常识": {"hit": 15, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}}, "human_acc": 51.632498263487996, "acc": 0.3}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 4, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.19047619047619047}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 49.661417476859995, "acc": 0.5}, "常识判断|科技常识|生物常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.3}, "常识判断|地理国情|国情社情": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.3}, "常识判断|法律常识": {"hit": 12, "all": 80, "difficulty": {"5": {"hit": 5, "all": 35, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 42.31029945337126, "acc": 0.15}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.5}, "常识判断|法律常识|宪法": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.1}, "常识判断|经济常识": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.08333333333333333}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 121, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 43, "all": 132, "acc": 0.32575757575757575}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 24, "all": 160, "acc": 0.15}}, "human_acc": 40.061365720053836, "acc": 0.24948453608247423}, "数量关系|数学运算": {"hit": 121, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 43, "all": 132, "acc": 0.32575757575757575}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 24, "all": 160, "acc": 0.15}}, "human_acc": 40.061365720053836, "acc": 0.24948453608247423}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 16, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 2, "all": 16, "acc": 0.125}}, "human_acc": 41.27603456994616, "acc": 0.24615384615384617}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 8, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.23529411764705882}, "常识判断|法律常识|行政法": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.0}, "常识判断|法律常识|其他法律法规": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 41.25920562352999, "acc": 0.2}, "常识判断|政治常识": {"hit": 3, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.14285714285714285}, "常识判断|政治常识|时政": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.1}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.347386177160004, "acc": 0.2}, "数量关系|数学运算|周期问题": {"hit": 7, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 38.245969273603045, "acc": 0.21212121212121213}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 0, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 35.81940208507692, "acc": 0.0}, "常识判断|法律常识|经济法": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.0}, "数量关系|数学运算|排列组合问题": {"hit": 20, "all": 74, "difficulty": {"6": {"hit": 7, "all": 14, "acc": 0.5}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.2702702702702703}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 686, "all": 2295, "difficulty": {"5": {"hit": 136, "all": 587, "acc": 0.23168654173764908}, "4": {"hit": 226, "all": 707, "acc": 0.31966053748231965}, "3": {"hit": 156, "all": 455, "acc": 0.34285714285714286}, "6": {"hit": 109, "all": 327, "acc": 0.3333333333333333}, "7": {"hit": 59, "all": 219, "acc": 0.2694063926940639}}, "human_acc": 66.81637952144999, "acc": 0.2989106753812636}, "言语理解与表达|逻辑填空": {"hit": 546, "all": 1841, "difficulty": {"5": {"hit": 110, "all": 498, "acc": 0.22088353413654618}, "4": {"hit": 175, "all": 513, "acc": 0.341130604288499}, "3": {"hit": 112, "all": 384, "acc": 0.2916666666666667}, "6": {"hit": 96, "all": 277, "acc": 0.34657039711191334}, "7": {"hit": 53, "all": 169, "acc": 0.3136094674556213}}, "human_acc": 66.44656371118516, "acc": 0.2965779467680608}, "言语理解与表达|逻辑填空|实词填空": {"hit": 36, "all": 151, "difficulty": {"5": {"hit": 6, "all": 49, "acc": 0.12244897959183673}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 5, "all": 26, "acc": 0.19230769230769232}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.23841059602649006}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 205, "all": 622, "difficulty": {"5": {"hit": 41, "all": 163, "acc": 0.25153374233128833}, "4": {"hit": 65, "all": 172, "acc": 0.37790697674418605}, "3": {"hit": 40, "all": 131, "acc": 0.3053435114503817}, "7": {"hit": 23, "all": 60, "acc": 0.38333333333333336}, "6": {"hit": 36, "all": 96, "acc": 0.375}}, "human_acc": 66.76874610652267, "acc": 0.3295819935691318}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 51, "all": 143, "difficulty": {"5": {"hit": 12, "all": 43, "acc": 0.27906976744186046}, "4": {"hit": 22, "all": 42, "acc": 0.5238095238095238}, "3": {"hit": 3, "all": 25, "acc": 0.12}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 66.64745600073147, "acc": 0.35664335664335667}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析": {"hit": 212, "all": 771, "difficulty": {"5": {"hit": 41, "all": 201, "acc": 0.20398009950248755}, "4": {"hit": 68, "all": 217, "acc": 0.31336405529953915}, "3": {"hit": 46, "all": 167, "acc": 0.2754491017964072}, "6": {"hit": 39, "all": 116, "acc": 0.33620689655172414}, "7": {"hit": 18, "all": 70, "acc": 0.2571428571428571}}, "human_acc": 66.4145264015949, "acc": 0.27496757457846954}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 48, "all": 165, "difficulty": {"5": {"hit": 11, "all": 45, "acc": 0.24444444444444444}, "4": {"hit": 12, "all": 44, "acc": 0.2727272727272727}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 8, "all": 27, "acc": 0.2962962962962963}, "3": {"hit": 12, "all": 32, "acc": 0.375}}, "human_acc": 65.38103981607519, "acc": 0.2909090909090909}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 26.693831188929995, "acc": 0.3}, "言语理解与表达|逻辑填空|成语填空": {"hit": 43, "all": 145, "difficulty": {"4": {"hit": 8, "all": 43, "acc": 0.18604651162790697}, "5": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "3": {"hit": 10, "all": 31, "acc": 0.3225806451612903}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 69.23037595903519, "acc": 0.296551724137931}, "数量关系|数学运算|数学运算-其他": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.3}, "数量关系|数学运算|数列问题": {"hit": 5, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 34, "all": 135, "difficulty": {"4": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "3": {"hit": 6, "all": 36, "acc": 0.16666666666666666}, "5": {"hit": 7, "all": 32, "acc": 0.21875}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.2518518518518518}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 71, "all": 203, "difficulty": {"4": {"hit": 19, "all": 56, "acc": 0.3392857142857143}, "5": {"hit": 13, "all": 49, "acc": 0.2653061224489796}, "3": {"hit": 20, "all": 51, "acc": 0.39215686274509803}, "7": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "6": {"hit": 10, "all": 25, "acc": 0.4}}, "human_acc": 67.67567808645465, "acc": 0.3497536945812808}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 56, "all": 212, "difficulty": {"4": {"hit": 19, "all": 63, "acc": 0.30158730158730157}, "5": {"hit": 8, "all": 43, "acc": 0.18604651162790697}, "3": {"hit": 14, "all": 51, "acc": 0.27450980392156865}, "6": {"hit": 11, "all": 32, "acc": 0.34375}, "7": {"hit": 4, "all": 23, "acc": 0.17391304347826086}}, "human_acc": 67.16383399377828, "acc": 0.2641509433962264}, "常识判断|法律常识|民事诉讼法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.2}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 39, "all": 137, "difficulty": {"5": {"hit": 7, "all": 36, "acc": 0.19444444444444445}, "3": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "4": {"hit": 10, "all": 35, "acc": 0.2857142857142857}, "6": {"hit": 7, "all": 24, "acc": 0.2916666666666667}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.2846715328467153}, "常识判断|法律常识|劳动法": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.2}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 32.85243511338, "acc": 0.5}, "数量关系|数学运算|工程问题": {"hit": 11, "all": 41, "difficulty": {"6": {"hit": 3, "all": 10, "acc": 0.3}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.2682926829268293}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 49, "all": 174, "difficulty": {"5": {"hit": 29, "all": 78, "acc": 0.3717948717948718}, "4": {"hit": 15, "all": 40, "acc": 0.375}, "3": {"hit": 0, "all": 13, "acc": 0.0}, "6": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.28160919540229884}, "判断推理|逻辑判断|翻译推理": {"hit": 9, "all": 40, "difficulty": {"5": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.225}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 36, "all": 151, "difficulty": {"4": {"hit": 12, "all": 42, "acc": 0.2857142857142857}, "5": {"hit": 7, "all": 41, "acc": 0.17073170731707318}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "3": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}}, "human_acc": 64.30090962542516, "acc": 0.23841059602649006}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.09090909090909091}, "数量关系|数学运算|行程问题": {"hit": 19, "all": 65, "difficulty": {"4": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "7": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.22168221813383, "acc": 0.2923076923076923}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 4, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.23529411764705882}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 44, "all": 139, "difficulty": {"5": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "4": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "7": {"hit": 3, "all": 10, "acc": 0.3}, "6": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "3": {"hit": 8, "all": 27, "acc": 0.2962962962962963}}, "human_acc": 66.39573058612521, "acc": 0.31654676258992803}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.3}, "判断推理|定义判断": {"hit": 23, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 13, "all": 38, "acc": 0.34210526315789475}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 4, "all": 16, "acc": 0.25}}, "human_acc": 74.80628203606001, "acc": 0.2875}, "判断推理|定义判断|单定义": {"hit": 20, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "5": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 4, "all": 16, "acc": 0.25}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.2857142857142857}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.2}, "数量关系|数学运算|概率问题": {"hit": 11, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.2682926829268293}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.0}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.45454545454545453}, "判断推理|定义判断|单定义|主客体": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 38, "all": 108, "difficulty": {"5": {"hit": 8, "all": 40, "acc": 0.2}, "4": {"hit": 13, "all": 30, "acc": 0.43333333333333335}, "6": {"hit": 7, "all": 16, "acc": 0.4375}, "3": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.35185185185185186}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 50, "all": 152, "difficulty": {"5": {"hit": 13, "all": 46, "acc": 0.2826086956521739}, "4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 6, "all": 23, "acc": 0.2608695652173913}}, "human_acc": 65.94677786230925, "acc": 0.32894736842105265}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 111, "all": 359, "difficulty": {"4": {"hit": 42, "all": 154, "acc": 0.2727272727272727}, "5": {"hit": 20, "all": 69, "acc": 0.2898550724637681}, "6": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "3": {"hit": 34, "all": 54, "acc": 0.6296296296296297}, "7": {"hit": 3, "all": 43, "acc": 0.06976744186046512}}, "human_acc": 68.55487799855013, "acc": 0.30919220055710306}, "言语理解与表达|阅读理解|词句理解题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.3}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.2}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 18, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.2727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题": {"hit": 97, "all": 319, "difficulty": {"5": {"hit": 15, "all": 58, "acc": 0.25862068965517243}, "6": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 30, "all": 49, "acc": 0.6122448979591837}, "4": {"hit": 39, "all": 140, "acc": 0.2785714285714286}, "7": {"hit": 3, "all": 39, "acc": 0.07692307692307693}}, "human_acc": 68.63568244351346, "acc": 0.30407523510971785}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 17, "all": 48, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 6, "all": 23, "acc": 0.2608695652173913}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.3541666666666667}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 7, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.28}, "判断推理|逻辑判断|加强题型": {"hit": 15, "all": 48, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 10, "all": 26, "acc": 0.38461538461538464}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.3125}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 29, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 9, "all": 40, "acc": 0.225}, "3": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}}, "human_acc": 67.41332639953578, "acc": 0.30526315789473685}, "言语理解与表达|语句表达|语句填空题": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.2}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.0}, "判断推理|定义判断|单定义|大前提": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.1}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 11, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 72.18852298403947, "acc": 0.2894736842105263}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 66.77662401733, "acc": 0.3}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|定义判断|多定义|常规问法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 6, "all": 22, "difficulty": {"4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 64.28934778878182, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 11, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.04056480034193, "acc": 0.3548387096774194}, "判断推理|逻辑判断|原因解释": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.3}, "判断推理|定义判断|单定义|故事类": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 8, "all": 28, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.2857142857142857}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.2}, "判断推理|逻辑判断|组合排列-材料": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.78145644953, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 6, "all": 29, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 3, "all": 15, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.20689655172413793}, "言语理解与表达|语句表达|语句排序题": {"hit": 18, "all": 55, "difficulty": {"4": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "3": {"hit": 9, "all": 14, "acc": 0.6428571428571429}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.32727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 83.03719898832999, "acc": 0.6}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.15384615384615385}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 7, "all": 22, "difficulty": {"3": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.3181818181818182}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.0}, "言语理解与表达|阅读理解|标题填入题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 53.00512973501001, "acc": 0.1}, "资料分析": {"hit": 124, "all": 496, "difficulty": {"6": {"hit": 18, "all": 82, "acc": 0.21951219512195122}, "3": {"hit": 9, "all": 37, "acc": 0.24324324324324326}, "5": {"hit": 34, "all": 155, "acc": 0.21935483870967742}, "4": {"hit": 50, "all": 184, "acc": 0.2717391304347826}, "7": {"hit": 11, "all": 34, "acc": 0.3235294117647059}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.25}, "资料分析|基期与现期": {"hit": 12, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "4": {"hit": 9, "all": 30, "acc": 0.3}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.21052631578947367}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 58, "all": 237, "difficulty": {"6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 15, "all": 75, "acc": 0.2}, "4": {"hit": 25, "all": 88, "acc": 0.2840909090909091}, "7": {"hit": 5, "all": 16, "acc": 0.3125}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.24472573839662448}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 4, "all": 5, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.34466161420001, "acc": 0.8}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3}, "资料分析|简单计算|直接找数": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.3}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 5, "all": 32, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 0, "all": 9, "acc": 0.0}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.15625}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 12, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.38629613428436, "acc": 0.375}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 9, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.225}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 7, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.22580645161290322}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.1}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.78078638926, "acc": 0.6}, "资料分析|增长率|混合增长率": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.3}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.1}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.1}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 0, "all": 7, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.0}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.6901408451, "acc": 0.0}} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama-13B/difficulty_result.json b/results/202309/details/ChineseLlama-13B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1a20c57710a628ecc758d69dec49ddd08ee75fe6 --- /dev/null +++ b/results/202309/details/ChineseLlama-13B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"hit": 490, "all": 1768, "acc": 0.27714932126696834}, "3": {"hit": 64, "all": 193, "acc": 0.3316062176165803}, "4": {"hit": 151, "all": 470, "acc": 0.32127659574468087}, "5": {"hit": 144, "all": 561, "acc": 0.25668449197860965}, "6": {"hit": 84, "all": 306, "acc": 0.27450980392156865}, "7": {"hit": 46, "all": 236, "acc": 0.19491525423728814}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama2-13B/acc_result.json b/results/202309/details/ChineseLlama2-13B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f763aec661f5188cd759a6abc1f753b1818f3fed --- /dev/null +++ b/results/202309/details/ChineseLlama2-13B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.3506787330316742, "wrong_value": 0.20082329706352356, "human_acc": 0.6055938546977998, "hit": 620, "total": 1768, "wrong_hit": 534, "wrong_total": 1148, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "E", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "F", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "D", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "D", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "B", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "G", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "G", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "BC", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "B", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "G", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama2-13B/category_result-all.json b/results/202309/details/ChineseLlama2-13B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..107597702c8fdafadbea1fe4126c60bf9647b5ab --- /dev/null +++ b/results/202309/details/ChineseLlama2-13B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1359, "all": 3862, "difficulty": {"3": {"hit": 198, "all": 546, "acc": 0.3626373626373626}, "4": {"hit": 428, "all": 1078, "acc": 0.3970315398886827}, "5": {"hit": 370, "all": 1102, "acc": 0.33575317604355714}, "6": {"hit": 244, "all": 647, "acc": 0.37712519319938176}, "7": {"hit": 115, "all": 485, "acc": 0.23711340206185566}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.3518902123252201}, "判断推理": {"hit": 116, "all": 350, "difficulty": {"3": {"hit": 12, "all": 41, "acc": 0.2926829268292683}, "4": {"hit": 39, "all": 77, "acc": 0.5064935064935064}, "5": {"hit": 47, "all": 155, "acc": 0.3032258064516129}, "6": {"hit": 16, "all": 55, "acc": 0.2909090909090909}, "7": {"hit": 2, "all": 22, "acc": 0.09090909090909091}}, "human_acc": 67.0821947146088, "acc": 0.3314285714285714}, "判断推理|类比推理": {"hit": 21, "all": 96, "difficulty": {"3": {"hit": 0, "all": 12, "acc": 0.0}, "4": {"hit": 8, "all": 20, "acc": 0.4}, "5": {"hit": 3, "all": 39, "acc": 0.07692307692307693}, "6": {"hit": 10, "all": 22, "acc": 0.45454545454545453}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.21875}, "判断推理|类比推理|逻辑关系": {"hit": 11, "all": 52, "difficulty": {"3": {"hit": 0, "all": 10, "acc": 0.0}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 1, "all": 15, "acc": 0.06666666666666667}, "6": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.21153846153846154}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 7, "all": 30, "difficulty": {"5": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 67.00170566224, "acc": 0.23333333333333334}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.1}, "判断推理|类比推理|拆分思维": {"hit": 3, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.21428571428571427}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 57.19460108329999, "acc": 0.3}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 86, "all": 226, "difficulty": {"5": {"hit": 31, "all": 87, "acc": 0.3563218390804598}, "7": {"hit": 15, "all": 48, "acc": 0.3125}, "6": {"hit": 19, "all": 50, "acc": 0.38}, "4": {"hit": 20, "all": 38, "acc": 0.5263157894736842}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 46.34274676514825, "acc": 0.3805309734513274}, "常识判断|人文常识": {"hit": 19, "all": 42, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 6, "all": 12, "acc": 0.5}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.4523809523809524}, "常识判断|人文常识|文化常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.5}, "常识判断|人文常识|文学常识": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.3}, "常识判断|人文常识|中国历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.4}, "常识判断|科技常识": {"hit": 21, "all": 50, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}}, "human_acc": 51.632498263487996, "acc": 0.42}, "常识判断|科技常识|科技理论与成就": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.6}, "常识判断|地理国情": {"hit": 6, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 43.98006307271429, "acc": 0.2857142857142857}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.4}, "常识判断|科技常识|生物常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.6}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 32, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "7": {"hit": 6, "all": 16, "acc": 0.375}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 42.31029945337126, "acc": 0.4}, "常识判断|法律常识|刑法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.5}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.2}, "常识判断|法律常识|民法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.5}, "常识判断|人文常识|世界历史": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.7}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.3333333333333333}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.0}, "数量关系": {"hit": 145, "all": 485, "difficulty": {"5": {"hit": 35, "all": 116, "acc": 0.3017241379310345}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 58, "all": 132, "acc": 0.4393939393939394}, "4": {"hit": 29, "all": 68, "acc": 0.4264705882352941}, "7": {"hit": 20, "all": 160, "acc": 0.125}}, "human_acc": 40.061365720053836, "acc": 0.29896907216494845}, "数量关系|数学运算": {"hit": 145, "all": 485, "difficulty": {"5": {"hit": 35, "all": 116, "acc": 0.3017241379310345}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 58, "all": 132, "acc": 0.4393939393939394}, "4": {"hit": 29, "all": 68, "acc": 0.4264705882352941}, "7": {"hit": 20, "all": 160, "acc": 0.125}}, "human_acc": 40.061365720053836, "acc": 0.29896907216494845}, "数量关系|数学运算|几何问题": {"hit": 10, "all": 24, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.4166666666666667}, "数量关系|数学运算|几何问题|平面几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.3333333333333333}, "数量关系|数学运算|最值问题": {"hit": 21, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 2, "all": 16, "acc": 0.125}}, "human_acc": 41.27603456994616, "acc": 0.3230769230769231}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 15, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 40.35697170282646, "acc": 0.4411764705882353}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 4, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 37.802677258790474, "acc": 0.19047619047619047}, "常识判断|政治常识|时政": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.2}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.2}, "数量关系|数学运算|周期问题": {"hit": 12, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "6": {"hit": 5, "all": 10, "acc": 0.5}}, "human_acc": 38.245969273603045, "acc": 0.36363636363636365}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 2, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.15384615384615385}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 13, "all": 74, "difficulty": {"6": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "4": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 4, "all": 36, "acc": 0.1111111111111111}}, "human_acc": 33.405759431517595, "acc": 0.17567567567567569}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 0, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 28.644400674264286, "acc": 0.0}, "言语理解与表达": {"hit": 877, "all": 2295, "difficulty": {"5": {"hit": 215, "all": 587, "acc": 0.36626916524701875}, "4": {"hit": 291, "all": 707, "acc": 0.4115983026874116}, "3": {"hit": 169, "all": 455, "acc": 0.37142857142857144}, "6": {"hit": 128, "all": 327, "acc": 0.39143730886850153}, "7": {"hit": 74, "all": 219, "acc": 0.3378995433789954}}, "human_acc": 66.81637952144999, "acc": 0.3821350762527233}, "言语理解与表达|逻辑填空": {"hit": 655, "all": 1841, "difficulty": {"5": {"hit": 171, "all": 498, "acc": 0.3433734939759036}, "4": {"hit": 188, "all": 513, "acc": 0.3664717348927875}, "3": {"hit": 124, "all": 384, "acc": 0.3229166666666667}, "6": {"hit": 119, "all": 277, "acc": 0.4296028880866426}, "7": {"hit": 53, "all": 169, "acc": 0.3136094674556213}}, "human_acc": 66.44656371118516, "acc": 0.35578489951113523}, "言语理解与表达|逻辑填空|实词填空": {"hit": 50, "all": 151, "difficulty": {"5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "4": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 8, "all": 26, "acc": 0.3076923076923077}, "6": {"hit": 9, "all": 24, "acc": 0.375}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.33112582781456956}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 220, "all": 622, "difficulty": {"5": {"hit": 50, "all": 163, "acc": 0.3067484662576687}, "4": {"hit": 65, "all": 172, "acc": 0.37790697674418605}, "3": {"hit": 44, "all": 131, "acc": 0.33587786259541985}, "7": {"hit": 18, "all": 60, "acc": 0.3}, "6": {"hit": 43, "all": 96, "acc": 0.4479166666666667}}, "human_acc": 66.76874610652267, "acc": 0.3536977491961415}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 57, "all": 143, "difficulty": {"5": {"hit": 14, "all": 43, "acc": 0.32558139534883723}, "4": {"hit": 21, "all": 42, "acc": 0.5}, "3": {"hit": 6, "all": 25, "acc": 0.24}, "6": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 66.64745600073147, "acc": 0.3986013986013986}, "数量关系|数学运算|几何问题|立体几何": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.5}, "数量关系|数学运算|和差倍比问题": {"hit": 10, "all": 20, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.5}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 275, "all": 771, "difficulty": {"5": {"hit": 74, "all": 201, "acc": 0.3681592039800995}, "4": {"hit": 78, "all": 217, "acc": 0.35944700460829493}, "3": {"hit": 51, "all": 167, "acc": 0.30538922155688625}, "6": {"hit": 49, "all": 116, "acc": 0.4224137931034483}, "7": {"hit": 23, "all": 70, "acc": 0.32857142857142857}}, "human_acc": 66.4145264015949, "acc": 0.35667963683527887}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 61, "all": 165, "difficulty": {"5": {"hit": 17, "all": 45, "acc": 0.37777777777777777}, "4": {"hit": 15, "all": 44, "acc": 0.3409090909090909}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 13, "all": 27, "acc": 0.48148148148148145}, "3": {"hit": 11, "all": 32, "acc": 0.34375}}, "human_acc": 65.38103981607519, "acc": 0.3696969696969697}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 58, "all": 145, "difficulty": {"4": {"hit": 15, "all": 43, "acc": 0.3488372093023256}, "5": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 14, "all": 31, "acc": 0.45161290322580644}, "6": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 69.23037595903519, "acc": 0.4}, "数量关系|数学运算|数学运算-其他": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.0}, "数量关系|数学运算|数列问题": {"hit": 3, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.16666666666666666}, "数量关系|数学运算|不定方程问题": {"hit": 10, "all": 26, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.38461538461538464}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 6, "all": 15, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 43, "all": 135, "difficulty": {"4": {"hit": 15, "all": 38, "acc": 0.39473684210526316}, "3": {"hit": 9, "all": 36, "acc": 0.25}, "5": {"hit": 9, "all": 32, "acc": 0.28125}, "6": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.31851851851851853}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 74, "all": 203, "difficulty": {"4": {"hit": 20, "all": 56, "acc": 0.35714285714285715}, "5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "3": {"hit": 18, "all": 51, "acc": 0.35294117647058826}, "7": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "6": {"hit": 13, "all": 25, "acc": 0.52}}, "human_acc": 67.67567808645465, "acc": 0.3645320197044335}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 72, "all": 212, "difficulty": {"4": {"hit": 19, "all": 63, "acc": 0.30158730158730157}, "5": {"hit": 19, "all": 43, "acc": 0.4418604651162791}, "3": {"hit": 15, "all": 51, "acc": 0.29411764705882354}, "6": {"hit": 12, "all": 32, "acc": 0.375}, "7": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 67.16383399377828, "acc": 0.33962264150943394}, "常识判断|法律常识|民事诉讼法": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.3}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 43, "all": 137, "difficulty": {"5": {"hit": 11, "all": 36, "acc": 0.3055555555555556}, "3": {"hit": 7, "all": 28, "acc": 0.25}, "4": {"hit": 11, "all": 35, "acc": 0.3142857142857143}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 65.9299610739475, "acc": 0.31386861313868614}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 32.060594923945004, "acc": 0.4}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 14, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.34146341463414637}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 61, "all": 174, "difficulty": {"5": {"hit": 29, "all": 78, "acc": 0.3717948717948718}, "4": {"hit": 23, "all": 40, "acc": 0.575}, "3": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.3505747126436782}, "判断推理|逻辑判断|翻译推理": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 62.71737773545999, "acc": 0.4}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 81.05276778267998, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 45, "all": 151, "difficulty": {"4": {"hit": 13, "all": 42, "acc": 0.30952380952380953}, "5": {"hit": 13, "all": 41, "acc": 0.3170731707317073}, "6": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "3": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.2980132450331126}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题": {"hit": 26, "all": 65, "difficulty": {"4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 12, "all": 21, "acc": 0.5714285714285714}, "5": {"hit": 6, "all": 12, "acc": 0.5}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.4}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.5}, "数量关系|数学运算|统筹规划问题": {"hit": 3, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.17647058823529413}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 46, "all": 139, "difficulty": {"5": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "4": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 13, "all": 27, "acc": 0.48148148148148145}}, "human_acc": 66.39573058612521, "acc": 0.33093525179856115}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 34, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 15, "all": 38, "acc": 0.39473684210526316}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 9, "all": 16, "acc": 0.5625}}, "human_acc": 74.80628203606001, "acc": 0.425}, "判断推理|定义判断|单定义": {"hit": 29, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 11, "all": 33, "acc": 0.3333333333333333}, "3": {"hit": 9, "all": 16, "acc": 0.5625}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.4142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.5}, "数量关系|数学运算|概率问题": {"hit": 7, "all": 41, "difficulty": {"7": {"hit": 1, "all": 17, "acc": 0.058823529411764705}, "5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.17073170731707318}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 4, "all": 21, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.19047619047619047}, "数量关系|数学运算|行程问题|普通行程": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.38461538461538464}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.3}, "数量关系|数学运算|行程问题|平均速度": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.5}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.5454545454545454}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 54, "all": 108, "difficulty": {"5": {"hit": 16, "all": 40, "acc": 0.4}, "4": {"hit": 16, "all": 30, "acc": 0.5333333333333333}, "6": {"hit": 9, "all": 16, "acc": 0.5625}, "3": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.43212003256482, "acc": 0.5}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 4, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 42.54616771271819, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.88811485691, "acc": 0.6}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 52, "all": 152, "difficulty": {"5": {"hit": 15, "all": 46, "acc": 0.32608695652173914}, "4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "3": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "7": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 11, "all": 23, "acc": 0.4782608695652174}}, "human_acc": 65.94677786230925, "acc": 0.34210526315789475}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 48.761151281054545, "acc": 0.45454545454545453}, "言语理解与表达|阅读理解": {"hit": 194, "all": 359, "difficulty": {"4": {"hit": 95, "all": 154, "acc": 0.6168831168831169}, "5": {"hit": 34, "all": 69, "acc": 0.4927536231884058}, "6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 39, "all": 54, "acc": 0.7222222222222222}, "7": {"hit": 18, "all": 43, "acc": 0.4186046511627907}}, "human_acc": 68.55487799855013, "acc": 0.5403899721448467}, "言语理解与表达|阅读理解|词句理解题": {"hit": 10, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.5}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.1}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 31.268754734510004, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.3}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 20, "all": 66, "difficulty": {"4": {"hit": 7, "all": 14, "acc": 0.5}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.30303030303030304}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 172, "all": 319, "difficulty": {"5": {"hit": 27, "all": 58, "acc": 0.46551724137931033}, "6": {"hit": 6, "all": 33, "acc": 0.18181818181818182}, "3": {"hit": 35, "all": 49, "acc": 0.7142857142857143}, "4": {"hit": 86, "all": 140, "acc": 0.6142857142857143}, "7": {"hit": 18, "all": 39, "acc": 0.46153846153846156}}, "human_acc": 68.63568244351346, "acc": 0.5391849529780565}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 33, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 18, "all": 23, "acc": 0.782608695652174}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.6875}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 12, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 63.99639746408, "acc": 0.48}, "判断推理|逻辑判断|加强题型": {"hit": 20, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 13, "all": 26, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.4166666666666667}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.5}, "言语理解与表达|语句表达": {"hit": 28, "all": 95, "difficulty": {"5": {"hit": 10, "all": 20, "acc": 0.5}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 8, "all": 40, "acc": 0.2}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}}, "human_acc": 67.41332639953578, "acc": 0.29473684210526313}, "言语理解与表达|语句表达|语句填空题": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.3}, "判断推理|定义判断|单定义|大前提": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.3}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 18, "all": 30, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 23, "all": 38, "difficulty": {"3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 11, "all": 17, "acc": 0.6470588235294118}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.6052631578947368}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 23, "all": 40, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 13, "all": 19, "acc": 0.6842105263157895}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 66.77662401733, "acc": 0.575}, "言语理解与表达|语句表达|接语选择题": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.7}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 16, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}}, "human_acc": 63.04056480034193, "acc": 0.5161290322580645}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 11, "all": 28, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.39285714285714285}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.58474381049999, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.2}, "判断推理|逻辑判断|组合排列-材料": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 13, "all": 29, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.4482758620689655}, "言语理解与表达|语句表达|语句排序题": {"hit": 15, "all": 55, "difficulty": {"4": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "3": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.2727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 5, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.4166666666666667}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 0, "all": 13, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.0}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 9, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.4090909090909091}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 132, "all": 496, "difficulty": {"6": {"hit": 22, "all": 82, "acc": 0.2682926829268293}, "3": {"hit": 13, "all": 37, "acc": 0.35135135135135137}, "5": {"hit": 42, "all": 155, "acc": 0.2709677419354839}, "4": {"hit": 47, "all": 184, "acc": 0.2554347826086957}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.2661290322580645}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.5}, "资料分析|文字资料": {"hit": 63, "all": 237, "difficulty": {"6": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "5": {"hit": 20, "all": 75, "acc": 0.26666666666666666}, "4": {"hit": 23, "all": 88, "acc": 0.26136363636363635}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.26582278481012656}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.3}, "资料分析|简单计算": {"hit": 8, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.26666666666666666}, "资料分析|简单计算|直接找数": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.6}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 0, "all": 9, "acc": 0.0}, "6": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 8, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.25}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 8, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.3076923076923077}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 15, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.375}, "资料分析|平均数问题|现期平均数": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.6}, "资料分析|增长率|间隔增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.2}, "资料分析|倍数与比值相关": {"hit": 7, "all": 31, "difficulty": {"3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 1, "all": 10, "acc": 0.1}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.22580645161290322}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.3}, "资料分析|增长量|增长量比较": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.2}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.0}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.82193192074, "acc": 0.3}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama2-13B/difficulty_result.json b/results/202309/details/ChineseLlama2-13B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..752db445b00c9dcf6b65612ee5dcc688910ef1be --- /dev/null +++ b/results/202309/details/ChineseLlama2-13B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.3506787330316742, "hit": 620, "all": 1768}, "3": {"hit": 74, "all": 193, "acc": 0.38341968911917096}, "4": {"hit": 191, "all": 470, "acc": 0.40638297872340423}, "5": {"hit": 195, "all": 561, "acc": 0.34759358288770054}, "6": {"hit": 107, "all": 306, "acc": 0.34967320261437906}, "7": {"hit": 51, "all": 236, "acc": 0.21610169491525424}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama2-7B/acc_result.json b/results/202309/details/ChineseLlama2-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0eae6b79b922be27e6367105f3755d012a977d8d --- /dev/null +++ b/results/202309/details/ChineseLlama2-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.3020361990950226, "wrong_value": 0.18134309582324395, "human_acc": 0.6055938546977998, "hit": 534, "total": 1768, "wrong_hit": 532, "wrong_total": 1234, "detail": [{"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "D", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "A", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "C", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "C", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "F", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "F", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "A", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "H", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "D", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama2-7B/category_result-all.json b/results/202309/details/ChineseLlama2-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..4a105e0e0514a1779aaa3f594b02fe9868458cd7 --- /dev/null +++ b/results/202309/details/ChineseLlama2-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1158, "all": 3862, "difficulty": {"3": {"hit": 180, "all": 546, "acc": 0.32967032967032966}, "4": {"hit": 379, "all": 1078, "acc": 0.3515769944341373}, "5": {"hit": 320, "all": 1102, "acc": 0.29038112522686027}, "6": {"hit": 172, "all": 647, "acc": 0.26584234930448225}, "7": {"hit": 105, "all": 485, "acc": 0.21649484536082475}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.2998446400828586}, "判断推理": {"hit": 108, "all": 350, "difficulty": {"3": {"hit": 19, "all": 41, "acc": 0.4634146341463415}, "4": {"hit": 24, "all": 77, "acc": 0.3116883116883117}, "5": {"hit": 41, "all": 155, "acc": 0.2645161290322581}, "6": {"hit": 18, "all": 55, "acc": 0.32727272727272727}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.30857142857142855}, "判断推理|类比推理": {"hit": 28, "all": 96, "difficulty": {"3": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "4": {"hit": 6, "all": 20, "acc": 0.3}, "5": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.82436428905626, "acc": 0.2916666666666667}, "判断推理|类比推理|逻辑关系": {"hit": 18, "all": 52, "difficulty": {"3": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.80522117180384, "acc": 0.34615384615384615}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.45454545454545453}, "判断推理|类比推理|语义关系": {"hit": 7, "all": 30, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.23333333333333334}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 3, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.21428571428571427}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 6, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.5454545454545454}, "常识判断": {"hit": 59, "all": 226, "difficulty": {"5": {"hit": 28, "all": 87, "acc": 0.3218390804597701}, "7": {"hit": 5, "all": 48, "acc": 0.10416666666666667}, "6": {"hit": 10, "all": 50, "acc": 0.2}, "4": {"hit": 15, "all": 38, "acc": 0.39473684210526316}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 46.34274676514825, "acc": 0.2610619469026549}, "常识判断|人文常识": {"hit": 17, "all": 42, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.40476190476190477}, "常识判断|人文常识|文化常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.3}, "常识判断|人文常识|文学常识": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.5}, "常识判断|人文常识|中国历史": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.2}, "常识判断|科技常识": {"hit": 7, "all": 50, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 0, "all": 14, "acc": 0.0}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 51.632498263487996, "acc": 0.14}, "常识判断|科技常识|科技理论与成就": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.1}, "常识判断|地理国情": {"hit": 7, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.3333333333333333}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.1}, "常识判断|科技常识|生物常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.3}, "常识判断|地理国情|国情社情": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 54.87697121455001, "acc": 0.6}, "常识判断|法律常识": {"hit": 23, "all": 80, "difficulty": {"5": {"hit": 10, "all": 35, "acc": 0.2857142857142857}, "6": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 42.31029945337126, "acc": 0.2875}, "常识判断|法律常识|刑法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.4}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.2}, "常识判断|法律常识|民法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.5}, "常识判断|人文常识|世界历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.6}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.16666666666666666}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 144, "all": 485, "difficulty": {"5": {"hit": 31, "all": 116, "acc": 0.2672413793103448}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 66, "all": 132, "acc": 0.5}, "4": {"hit": 31, "all": 68, "acc": 0.45588235294117646}, "7": {"hit": 14, "all": 160, "acc": 0.0875}}, "human_acc": 40.061365720053836, "acc": 0.29690721649484536}, "数量关系|数学运算": {"hit": 144, "all": 485, "difficulty": {"5": {"hit": 31, "all": 116, "acc": 0.2672413793103448}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 66, "all": 132, "acc": 0.5}, "4": {"hit": 31, "all": 68, "acc": 0.45588235294117646}, "7": {"hit": 14, "all": 160, "acc": 0.0875}}, "human_acc": 40.061365720053836, "acc": 0.29690721649484536}, "数量关系|数学运算|几何问题": {"hit": 8, "all": 24, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.3333333333333333}, "数量关系|数学运算|几何问题|平面几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.16666666666666666}, "数量关系|数学运算|最值问题": {"hit": 20, "all": 65, "difficulty": {"5": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 11, "all": 22, "acc": 0.5}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.3076923076923077}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 12, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.35294117647058826}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 41.25920562352999, "acc": 0.2}, "常识判断|政治常识": {"hit": 3, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 37.802677258790474, "acc": 0.14285714285714285}, "常识判断|政治常识|时政": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.2}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.347386177160004, "acc": 0.1}, "数量关系|数学运算|周期问题": {"hit": 12, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.36363636363636365}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 4, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.3076923076923077}, "常识判断|法律常识|经济法": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.1}, "数量关系|数学运算|排列组合问题": {"hit": 17, "all": 74, "difficulty": {"6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.22972972972972974}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 3, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.21428571428571427}, "言语理解与表达": {"hit": 689, "all": 2295, "difficulty": {"5": {"hit": 167, "all": 587, "acc": 0.28449744463373083}, "4": {"hit": 250, "all": 707, "acc": 0.3536067892503536}, "3": {"hit": 144, "all": 455, "acc": 0.31648351648351647}, "6": {"hit": 56, "all": 327, "acc": 0.1712538226299694}, "7": {"hit": 72, "all": 219, "acc": 0.3287671232876712}}, "human_acc": 66.81637952144999, "acc": 0.3002178649237473}, "言语理解与表达|逻辑填空": {"hit": 536, "all": 1841, "difficulty": {"5": {"hit": 143, "all": 498, "acc": 0.28714859437751006}, "4": {"hit": 181, "all": 513, "acc": 0.35282651072124754}, "3": {"hit": 118, "all": 384, "acc": 0.3072916666666667}, "6": {"hit": 41, "all": 277, "acc": 0.148014440433213}, "7": {"hit": 53, "all": 169, "acc": 0.3136094674556213}}, "human_acc": 66.44656371118516, "acc": 0.29114611624117326}, "言语理解与表达|逻辑填空|实词填空": {"hit": 43, "all": 151, "difficulty": {"5": {"hit": 11, "all": 49, "acc": 0.22448979591836735}, "4": {"hit": 17, "all": 39, "acc": 0.4358974358974359}, "3": {"hit": 8, "all": 26, "acc": 0.3076923076923077}, "6": {"hit": 5, "all": 24, "acc": 0.20833333333333334}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}}, "human_acc": 63.11290800843907, "acc": 0.2847682119205298}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 172, "all": 622, "difficulty": {"5": {"hit": 42, "all": 163, "acc": 0.25766871165644173}, "4": {"hit": 63, "all": 172, "acc": 0.36627906976744184}, "3": {"hit": 38, "all": 131, "acc": 0.2900763358778626}, "7": {"hit": 15, "all": 60, "acc": 0.25}, "6": {"hit": 14, "all": 96, "acc": 0.14583333333333334}}, "human_acc": 66.76874610652267, "acc": 0.2765273311897106}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 31, "all": 143, "difficulty": {"5": {"hit": 10, "all": 43, "acc": 0.23255813953488372}, "4": {"hit": 8, "all": 42, "acc": 0.19047619047619047}, "3": {"hit": 9, "all": 25, "acc": 0.36}, "6": {"hit": 1, "all": 19, "acc": 0.05263157894736842}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 66.64745600073147, "acc": 0.21678321678321677}, "数量关系|数学运算|几何问题|立体几何": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.5}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析": {"hit": 234, "all": 771, "difficulty": {"5": {"hit": 65, "all": 201, "acc": 0.32338308457711445}, "4": {"hit": 74, "all": 217, "acc": 0.34101382488479265}, "3": {"hit": 54, "all": 167, "acc": 0.32335329341317365}, "6": {"hit": 16, "all": 116, "acc": 0.13793103448275862}, "7": {"hit": 25, "all": 70, "acc": 0.35714285714285715}}, "human_acc": 66.4145264015949, "acc": 0.3035019455252918}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 45, "all": 165, "difficulty": {"5": {"hit": 16, "all": 45, "acc": 0.35555555555555557}, "4": {"hit": 14, "all": 44, "acc": 0.3181818181818182}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 3, "all": 27, "acc": 0.1111111111111111}, "3": {"hit": 7, "all": 32, "acc": 0.21875}}, "human_acc": 65.38103981607519, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 40, "all": 145, "difficulty": {"4": {"hit": 13, "all": 43, "acc": 0.3023255813953488}, "5": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 9, "all": 31, "acc": 0.2903225806451613}, "6": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.27586206896551724}, "数量关系|数学运算|数学运算-其他": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.1}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 2, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.70558675868666, "acc": 0.13333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 42, "all": 135, "difficulty": {"4": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "3": {"hit": 11, "all": 36, "acc": 0.3055555555555556}, "5": {"hit": 16, "all": 32, "acc": 0.5}, "6": {"hit": 1, "all": 19, "acc": 0.05263157894736842}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.3111111111111111}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 62, "all": 203, "difficulty": {"4": {"hit": 22, "all": 56, "acc": 0.39285714285714285}, "5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "3": {"hit": 15, "all": 51, "acc": 0.29411764705882354}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 3, "all": 25, "acc": 0.12}}, "human_acc": 67.67567808645465, "acc": 0.3054187192118227}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 70, "all": 212, "difficulty": {"4": {"hit": 24, "all": 63, "acc": 0.38095238095238093}, "5": {"hit": 11, "all": 43, "acc": 0.2558139534883721}, "3": {"hit": 18, "all": 51, "acc": 0.35294117647058826}, "6": {"hit": 7, "all": 32, "acc": 0.21875}, "7": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 67.16383399377828, "acc": 0.330188679245283}, "常识判断|法律常识|民事诉讼法": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.1}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.2}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 37, "all": 137, "difficulty": {"5": {"hit": 8, "all": 36, "acc": 0.2222222222222222}, "3": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "4": {"hit": 14, "all": 35, "acc": 0.4}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 1, "all": 14, "acc": 0.07142857142857142}}, "human_acc": 65.9299610739475, "acc": 0.27007299270072993}, "常识判断|法律常识|劳动法": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 51.41524415364002, "acc": 0.4}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 18, "all": 41, "difficulty": {"6": {"hit": 8, "all": 10, "acc": 0.8}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.43902439024390244}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 52, "all": 174, "difficulty": {"5": {"hit": 18, "all": 78, "acc": 0.23076923076923078}, "4": {"hit": 13, "all": 40, "acc": 0.325}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 13, "all": 28, "acc": 0.4642857142857143}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.2988505747126437}, "判断推理|逻辑判断|翻译推理": {"hit": 14, "all": 40, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.35}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 47, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 11, "all": 41, "acc": 0.2682926829268293}, "6": {"hit": 3, "all": 22, "acc": 0.13636363636363635}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.31125827814569534}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题": {"hit": 25, "all": 65, "difficulty": {"4": {"hit": 6, "all": 12, "acc": 0.5}, "6": {"hit": 11, "all": 21, "acc": 0.5238095238095238}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.38461538461538464}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.4}, "数量关系|数学运算|统筹规划问题": {"hit": 6, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.35294117647058826}, "数量关系|数学运算|年龄问题": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 42, "all": 139, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "4": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "7": {"hit": 5, "all": 10, "acc": 0.5}, "6": {"hit": 4, "all": 28, "acc": 0.14285714285714285}, "3": {"hit": 6, "all": 27, "acc": 0.2222222222222222}}, "human_acc": 66.39573058612521, "acc": 0.302158273381295}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 28, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 14, "all": 38, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 6, "all": 16, "acc": 0.375}}, "human_acc": 74.80628203606001, "acc": 0.35}, "判断推理|定义判断|单定义": {"hit": 21, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 3, "all": 15, "acc": 0.2}, "5": {"hit": 11, "all": 33, "acc": 0.3333333333333333}, "3": {"hit": 6, "all": 16, "acc": 0.375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.3}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.4}, "数量关系|数学运算|概率问题": {"hit": 8, "all": 41, "difficulty": {"7": {"hit": 0, "all": 17, "acc": 0.0}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.1951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 5, "all": 21, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.23809523809523808}, "数量关系|数学运算|行程问题|普通行程": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.38461538461538464}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.6}, "数量关系|数学运算|行程问题|平均速度": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.6}, "判断推理|定义判断|单定义|原因结果": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 81.04459294875, "acc": 0.1}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.5454545454545454}, "判断推理|定义判断|单定义|主客体": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 30, "all": 108, "difficulty": {"5": {"hit": 11, "all": 40, "acc": 0.275}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "6": {"hit": 2, "all": 16, "acc": 0.125}, "3": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 4, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 42.54616771271819, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.88811485691, "acc": 0.6}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 47, "all": 152, "difficulty": {"5": {"hit": 14, "all": 46, "acc": 0.30434782608695654}, "4": {"hit": 14, "all": 42, "acc": 0.3333333333333333}, "3": {"hit": 9, "all": 29, "acc": 0.3103448275862069}, "7": {"hit": 6, "all": 12, "acc": 0.5}, "6": {"hit": 4, "all": 23, "acc": 0.17391304347826086}}, "human_acc": 65.94677786230925, "acc": 0.3092105263157895}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.45454545454545453}, "言语理解与表达|阅读理解": {"hit": 135, "all": 359, "difficulty": {"4": {"hit": 66, "all": 154, "acc": 0.42857142857142855}, "5": {"hit": 18, "all": 69, "acc": 0.2608695652173913}, "6": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 21, "all": 54, "acc": 0.3888888888888889}, "7": {"hit": 17, "all": 43, "acc": 0.3953488372093023}}, "human_acc": 68.55487799855013, "acc": 0.37604456824512533}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.5}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.4}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 17, "all": 66, "difficulty": {"4": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.25757575757575757}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.2727272727272727}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题": {"hit": 119, "all": 319, "difficulty": {"5": {"hit": 15, "all": 58, "acc": 0.25862068965517243}, "6": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 19, "all": 49, "acc": 0.3877551020408163}, "4": {"hit": 59, "all": 140, "acc": 0.42142857142857143}, "7": {"hit": 16, "all": 39, "acc": 0.41025641025641024}}, "human_acc": 68.63568244351346, "acc": 0.3730407523510972}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 22, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 10, "all": 23, "acc": 0.43478260869565216}, "3": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.4583333333333333}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 10, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 63.99639746408, "acc": 0.4}, "判断推理|逻辑判断|加强题型": {"hit": 12, "all": 48, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 6, "all": 26, "acc": 0.23076923076923078}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}}, "human_acc": 62.50620258335624, "acc": 0.25}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 62.78980569171999, "acc": 0.0}, "言语理解与表达|语句表达": {"hit": 18, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 3, "all": 40, "acc": 0.075}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}}, "human_acc": 67.41332639953578, "acc": 0.18947368421052632}, "言语理解与表达|语句表达|语句填空题": {"hit": 8, "all": 30, "difficulty": {"5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 55.56949742254332, "acc": 0.26666666666666666}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 56.2001919259, "acc": 0.4}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.1}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 11, "all": 30, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 74.24320108609, "acc": 0.36666666666666664}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 12, "all": 38, "difficulty": {"3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 72.18852298403947, "acc": 0.3157894736842105}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 15, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 66.77662401733, "acc": 0.375}, "言语理解与表达|语句表达|接语选择题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.4}, "判断推理|定义判断|多定义": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.7}, "判断推理|定义判断|多定义|常规问法": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.7}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 9, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 64.28934778878182, "acc": 0.4090909090909091}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 11, "all": 31, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.04056480034193, "acc": 0.3548387096774194}, "判断推理|逻辑判断|原因解释": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.6}, "判断推理|定义判断|单定义|故事类": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 8, "all": 28, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.2857142857142857}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.2}, "判断推理|逻辑判断|组合排列-材料": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.78145644953, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 11, "all": 29, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.3793103448275862}, "言语理解与表达|语句表达|语句排序题": {"hit": 6, "all": 55, "difficulty": {"4": {"hit": 1, "all": 29, "acc": 0.034482758620689655}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.10909090909090909}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 1, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.08333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 1, "all": 13, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.07692307692307693}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 9, "all": 22, "difficulty": {"3": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 6, "all": 12, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.4090909090909091}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.2}, "言语理解与表达|阅读理解|标题填入题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.3}, "资料分析": {"hit": 156, "all": 496, "difficulty": {"6": {"hit": 21, "all": 82, "acc": 0.25609756097560976}, "3": {"hit": 14, "all": 37, "acc": 0.3783783783783784}, "5": {"hit": 53, "all": 155, "acc": 0.3419354838709677}, "4": {"hit": 58, "all": 184, "acc": 0.31521739130434784}, "7": {"hit": 8, "all": 34, "acc": 0.23529411764705882}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.31451612903225806}, "资料分析|基期与现期": {"hit": 21, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 12, "all": 30, "acc": 0.4}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 71.02920549983685, "acc": 0.3684210526315789}, "资料分析|基期与现期|基期计算": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.4}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "5": {"hit": 26, "all": 75, "acc": 0.3466666666666667}, "4": {"hit": 27, "all": 88, "acc": 0.3068181818181818}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 0, "all": 5, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.0}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 8, "all": 30, "difficulty": {"3": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.26666666666666666}, "资料分析|简单计算|直接找数": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.2}, "资料分析|简单计算|简单加减计算": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.5}, "资料分析|增长率": {"hit": 11, "all": 32, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.34375}, "资料分析|增长率|一般增长率": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.3}, "资料分析|比重问题": {"hit": 5, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "5": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.15625}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 5, "all": 10, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.5}, "资料分析|平均数问题": {"hit": 16, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 7, "all": 8, "acc": 0.875}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.02933098769998, "acc": 0.4}, "资料分析|平均数问题|现期平均数": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.5}, "资料分析|增长率|间隔增长率": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.5}, "资料分析|倍数与比值相关": {"hit": 9, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.2903225806451613}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.5}, "资料分析|比重问题|基期比重": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.0}, "资料分析|比重问题|两期比重": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.1}, "资料分析|增长率|混合增长率": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.2}, "资料分析|增长量|增长量比较": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.2}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.4}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.4}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.82193192074, "acc": 0.2}, "资料分析|平均数问题|平均数的增长量": {"hit": 4, "all": 7, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.5714285714285714}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.7282913837, "acc": 1.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.6901408451, "acc": 0.0}} \ No newline at end of file diff --git a/results/202309/details/ChineseLlama2-7B/difficulty_result.json b/results/202309/details/ChineseLlama2-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..46c8451c51f0333443fef26b7d4669942eb2aa74 --- /dev/null +++ b/results/202309/details/ChineseLlama2-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.3020361990950226, "hit": 534, "all": 1768}, "3": {"hit": 65, "all": 193, "acc": 0.33678756476683935}, "4": {"hit": 163, "all": 470, "acc": 0.3468085106382979}, "5": {"hit": 168, "all": 561, "acc": 0.2994652406417112}, "6": {"hit": 94, "all": 306, "acc": 0.30718954248366015}, "7": {"hit": 43, "all": 236, "acc": 0.18220338983050846}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/GPT-3.5/acc_result.json b/results/202309/details/GPT-3.5/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0ebb224a8aa1e7fff2082bef7a921aa728b93942 --- /dev/null +++ b/results/202309/details/GPT-3.5/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.43608597285067874, "wrong_value": 0.21186280736029395, "human_acc": 0.6055938546977998, "hit": 771, "total": 1768, "wrong_hit": 480, "wrong_total": 997, "detail": [{"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "BAC", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "G", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "AC", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "AB", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "ABC", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "AB", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "BC", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "AB", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "AB", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "AB", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "BC", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "BC", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "BB", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "BC", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "AC", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "AD", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "ABD", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "AB", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "B", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "AD", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "AC", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "DBC", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "BC", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "AD", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "B", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "BD", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "BD", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "CD", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "A", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "D", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "ACD", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "ACD", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "BCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "A", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "H", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "BCD", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "ABD", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "F", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "H", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "ACD", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/GPT-3.5/category_result-all.json b/results/202309/details/GPT-3.5/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..6bb7d77fbce2f6d8db5cc48f1fb7ea75e0c3f7f6 --- /dev/null +++ b/results/202309/details/GPT-3.5/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1700, "all": 3862, "difficulty": {"3": {"hit": 359, "all": 546, "acc": 0.6575091575091575}, "4": {"hit": 537, "all": 1078, "acc": 0.49814471243042674}, "5": {"hit": 470, "all": 1102, "acc": 0.426497277676951}, "6": {"hit": 219, "all": 647, "acc": 0.3384853168469861}, "7": {"hit": 111, "all": 485, "acc": 0.2288659793814433}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.44018643190056966}, "判断推理": {"hit": 144, "all": 350, "difficulty": {"3": {"hit": 23, "all": 41, "acc": 0.5609756097560976}, "4": {"hit": 41, "all": 77, "acc": 0.5324675324675324}, "5": {"hit": 65, "all": 155, "acc": 0.41935483870967744}, "6": {"hit": 11, "all": 55, "acc": 0.2}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.4114285714285714}, "判断推理|类比推理": {"hit": 34, "all": 96, "difficulty": {"3": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 9, "all": 20, "acc": 0.45}, "5": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.3541666666666667}, "判断推理|类比推理|逻辑关系": {"hit": 19, "all": 52, "difficulty": {"3": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.36538461538461536}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 6, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.5454545454545454}, "判断推理|类比推理|语义关系": {"hit": 10, "all": 30, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.3333333333333333}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.5}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 4, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.36363636363636365}, "常识判断": {"hit": 108, "all": 226, "difficulty": {"5": {"hit": 50, "all": 87, "acc": 0.5747126436781609}, "7": {"hit": 13, "all": 48, "acc": 0.2708333333333333}, "6": {"hit": 21, "all": 50, "acc": 0.42}, "4": {"hit": 22, "all": 38, "acc": 0.5789473684210527}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.4778761061946903}, "常识判断|人文常识": {"hit": 21, "all": 42, "difficulty": {"5": {"hit": 13, "all": 20, "acc": 0.65}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.5}, "常识判断|人文常识|文化常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.5}, "常识判断|人文常识|文学常识": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 58.752282007969995, "acc": 0.3}, "常识判断|人文常识|中国历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.6}, "常识判断|科技常识": {"hit": 30, "all": 50, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 13, "all": 17, "acc": 0.7647058823529411}, "6": {"hit": 7, "all": 14, "acc": 0.5}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}}, "human_acc": 51.632498263487996, "acc": 0.6}, "常识判断|科技常识|科技理论与成就": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.6}, "常识判断|地理国情": {"hit": 11, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.5238095238095238}, "常识判断|地理国情|自然常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.4}, "常识判断|科技常识|化学常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.7}, "常识判断|科技常识|生物常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.5}, "常识判断|地理国情|国情社情": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 54.87697121455001, "acc": 0.7}, "常识判断|法律常识": {"hit": 37, "all": 80, "difficulty": {"5": {"hit": 19, "all": 35, "acc": 0.5428571428571428}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.4625}, "常识判断|法律常识|刑法": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.6}, "常识判断|科技常识|物理常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 51.029714180179994, "acc": 0.5}, "常识判断|科技常识|生活常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.7}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.2}, "常识判断|法律常识|民法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.5}, "常识判断|人文常识|世界历史": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.7}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 153, "all": 485, "difficulty": {"5": {"hit": 42, "all": 116, "acc": 0.3620689655172414}, "3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 44, "all": 132, "acc": 0.3333333333333333}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 36, "all": 160, "acc": 0.225}}, "human_acc": 40.061365720053836, "acc": 0.3154639175257732}, "数量关系|数学运算": {"hit": 153, "all": 485, "difficulty": {"5": {"hit": 42, "all": 116, "acc": 0.3620689655172414}, "3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 44, "all": 132, "acc": 0.3333333333333333}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 36, "all": 160, "acc": 0.225}}, "human_acc": 40.061365720053836, "acc": 0.3154639175257732}, "数量关系|数学运算|几何问题": {"hit": 8, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.3333333333333333}, "数量关系|数学运算|几何问题|平面几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.3333333333333333}, "数量关系|数学运算|最值问题": {"hit": 19, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.2923076923076923}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 13, "all": 34, "difficulty": {"5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.38235294117647056}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 6, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.2857142857142857}, "常识判断|政治常识|时政": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.3}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 13, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "6": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 38.245969273603045, "acc": 0.3939393939393939}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 5, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.38461538461538464}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 25, "all": 74, "difficulty": {"6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "7": {"hit": 11, "all": 36, "acc": 0.3055555555555556}}, "human_acc": 33.405759431517595, "acc": 0.33783783783783783}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1103, "all": 2295, "difficulty": {"5": {"hit": 239, "all": 587, "acc": 0.4071550255536627}, "4": {"hit": 386, "all": 707, "acc": 0.545968882602546}, "3": {"hit": 311, "all": 455, "acc": 0.6835164835164835}, "6": {"hit": 113, "all": 327, "acc": 0.345565749235474}, "7": {"hit": 54, "all": 219, "acc": 0.2465753424657534}}, "human_acc": 66.81637952144999, "acc": 0.48061002178649237}, "言语理解与表达|逻辑填空": {"hit": 848, "all": 1841, "difficulty": {"5": {"hit": 178, "all": 498, "acc": 0.357429718875502}, "4": {"hit": 280, "all": 513, "acc": 0.5458089668615984}, "3": {"hit": 258, "all": 384, "acc": 0.671875}, "6": {"hit": 92, "all": 277, "acc": 0.33212996389891697}, "7": {"hit": 40, "all": 169, "acc": 0.23668639053254437}}, "human_acc": 66.44656371118516, "acc": 0.46061922868006516}, "言语理解与表达|逻辑填空|实词填空": {"hit": 71, "all": 151, "difficulty": {"5": {"hit": 19, "all": 49, "acc": 0.3877551020408163}, "4": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 22, "all": 26, "acc": 0.8461538461538461}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}}, "human_acc": 63.11290800843907, "acc": 0.47019867549668876}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 297, "all": 622, "difficulty": {"5": {"hit": 56, "all": 163, "acc": 0.34355828220858897}, "4": {"hit": 100, "all": 172, "acc": 0.5813953488372093}, "3": {"hit": 93, "all": 131, "acc": 0.7099236641221374}, "7": {"hit": 13, "all": 60, "acc": 0.21666666666666667}, "6": {"hit": 35, "all": 96, "acc": 0.3645833333333333}}, "human_acc": 66.76874610652267, "acc": 0.477491961414791}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 66, "all": 143, "difficulty": {"5": {"hit": 11, "all": 43, "acc": 0.2558139534883721}, "4": {"hit": 24, "all": 42, "acc": 0.5714285714285714}, "3": {"hit": 18, "all": 25, "acc": 0.72}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 66.64745600073147, "acc": 0.46153846153846156}, "数量关系|数学运算|几何问题|立体几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.3333333333333333}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析": {"hit": 343, "all": 771, "difficulty": {"5": {"hit": 73, "all": 201, "acc": 0.36318407960199006}, "4": {"hit": 113, "all": 217, "acc": 0.5207373271889401}, "3": {"hit": 104, "all": 167, "acc": 0.6227544910179641}, "6": {"hit": 36, "all": 116, "acc": 0.3103448275862069}, "7": {"hit": 17, "all": 70, "acc": 0.24285714285714285}}, "human_acc": 66.4145264015949, "acc": 0.44487678339818415}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 71, "all": 165, "difficulty": {"5": {"hit": 15, "all": 45, "acc": 0.3333333333333333}, "4": {"hit": 24, "all": 44, "acc": 0.5454545454545454}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 8, "all": 27, "acc": 0.2962962962962963}, "3": {"hit": 20, "all": 32, "acc": 0.625}}, "human_acc": 65.38103981607519, "acc": 0.4303030303030303}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.3}, "言语理解与表达|逻辑填空|成语填空": {"hit": 62, "all": 145, "difficulty": {"4": {"hit": 20, "all": 43, "acc": 0.46511627906976744}, "5": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 19, "all": 31, "acc": 0.6129032258064516}, "6": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.42758620689655175}, "数量关系|数学运算|数学运算-其他": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.4}, "数量关系|数学运算|数列问题": {"hit": 3, "all": 18, "difficulty": {"7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.16666666666666666}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 56, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 21, "all": 36, "acc": 0.5833333333333334}, "5": {"hit": 10, "all": 32, "acc": 0.3125}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.4148148148148148}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 100, "all": 203, "difficulty": {"4": {"hit": 29, "all": 56, "acc": 0.5178571428571429}, "5": {"hit": 22, "all": 49, "acc": 0.4489795918367347}, "3": {"hit": 36, "all": 51, "acc": 0.7058823529411765}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}, "6": {"hit": 10, "all": 25, "acc": 0.4}}, "human_acc": 67.67567808645465, "acc": 0.49261083743842365}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 98, "all": 212, "difficulty": {"4": {"hit": 34, "all": 63, "acc": 0.5396825396825397}, "5": {"hit": 14, "all": 43, "acc": 0.32558139534883723}, "3": {"hit": 33, "all": 51, "acc": 0.6470588235294118}, "6": {"hit": 12, "all": 32, "acc": 0.375}, "7": {"hit": 5, "all": 23, "acc": 0.21739130434782608}}, "human_acc": 67.16383399377828, "acc": 0.46226415094339623}, "常识判断|法律常识|民事诉讼法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.5}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 43.75836103538, "acc": 0.5}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.74816897944, "acc": 0.5}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 67, "all": 137, "difficulty": {"5": {"hit": 14, "all": 36, "acc": 0.3888888888888889}, "3": {"hit": 20, "all": 28, "acc": 0.7142857142857143}, "4": {"hit": 22, "all": 35, "acc": 0.6285714285714286}, "6": {"hit": 7, "all": 24, "acc": 0.2916666666666667}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 65.9299610739475, "acc": 0.48905109489051096}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.52370384819999, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 48.174738159739995, "acc": 0.4}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 13, "acc": 0.07692307692307693}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 32.85243511338, "acc": 0.1}, "数量关系|数学运算|工程问题": {"hit": 21, "all": 41, "difficulty": {"6": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 5, "all": 10, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.5121951219512195}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 67, "all": 174, "difficulty": {"5": {"hit": 31, "all": 78, "acc": 0.3974358974358974}, "4": {"hit": 22, "all": 40, "acc": 0.55}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.3850574712643678}, "判断推理|逻辑判断|翻译推理": {"hit": 14, "all": 40, "difficulty": {"5": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.35}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 62.71737773545999, "acc": 0.5}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 64, "all": 151, "difficulty": {"4": {"hit": 22, "all": 42, "acc": 0.5238095238095238}, "5": {"hit": 13, "all": 41, "acc": 0.3170731707317073}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "3": {"hit": 20, "all": 29, "acc": 0.6896551724137931}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}}, "human_acc": 64.30090962542516, "acc": 0.423841059602649}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.4}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 19, "all": 65, "difficulty": {"4": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 5, "all": 21, "acc": 0.23809523809523808}, "5": {"hit": 6, "all": 12, "acc": 0.5}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.2923076923076923}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 3, "all": 17, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.17647058823529413}, "数量关系|数学运算|年龄问题": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 64, "all": 139, "difficulty": {"5": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "4": {"hit": 25, "all": 39, "acc": 0.6410256410256411}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 19, "all": 27, "acc": 0.7037037037037037}}, "human_acc": 66.39573058612521, "acc": 0.460431654676259}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.5}, "判断推理|定义判断": {"hit": 43, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 21, "all": 38, "acc": 0.5526315789473685}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 9, "all": 16, "acc": 0.5625}}, "human_acc": 74.80628203606001, "acc": 0.5375}, "判断推理|定义判断|单定义": {"hit": 37, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "5": {"hit": 17, "all": 33, "acc": 0.5151515151515151}, "3": {"hit": 9, "all": 16, "acc": 0.5625}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.5285714285714286}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.6}, "数量关系|数学运算|概率问题": {"hit": 14, "all": 41, "difficulty": {"7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 33.07907322403902, "acc": 0.34146341463414637}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 11, "all": 21, "difficulty": {"7": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.5238095238095238}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.4}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 54, "all": 108, "difficulty": {"5": {"hit": 21, "all": 40, "acc": 0.525}, "4": {"hit": 17, "all": 30, "acc": 0.5666666666666667}, "6": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.2}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 75, "all": 152, "difficulty": {"5": {"hit": 17, "all": 46, "acc": 0.3695652173913043}, "4": {"hit": 25, "all": 42, "acc": 0.5952380952380952}, "3": {"hit": 20, "all": 29, "acc": 0.6896551724137931}, "7": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.4934210526315789}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 7, "all": 11, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 48.761151281054545, "acc": 0.6363636363636364}, "言语理解与表达|阅读理解": {"hit": 224, "all": 359, "difficulty": {"4": {"hit": 98, "all": 154, "acc": 0.6363636363636364}, "5": {"hit": 53, "all": 69, "acc": 0.7681159420289855}, "6": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 48, "all": 54, "acc": 0.8888888888888888}, "7": {"hit": 11, "all": 43, "acc": 0.2558139534883721}}, "human_acc": 68.55487799855013, "acc": 0.6239554317548747}, "言语理解与表达|阅读理解|词句理解题": {"hit": 15, "all": 20, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.47019993558001, "acc": 0.75}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.87169104351999, "acc": 0.8}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 68.49700996277002, "acc": 0.5}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 19, "all": 66, "difficulty": {"4": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.2878787878787879}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 43.2203149, "acc": 0.45454545454545453}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 195, "all": 319, "difficulty": {"5": {"hit": 45, "all": 58, "acc": 0.7758620689655172}, "6": {"hit": 11, "all": 33, "acc": 0.3333333333333333}, "3": {"hit": 43, "all": 49, "acc": 0.8775510204081632}, "4": {"hit": 87, "all": 140, "acc": 0.6214285714285714}, "7": {"hit": 9, "all": 39, "acc": 0.23076923076923078}}, "human_acc": 68.63568244351346, "acc": 0.6112852664576802}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 30, "all": 48, "difficulty": {"5": {"hit": 7, "all": 7, "acc": 1.0}, "4": {"hit": 14, "all": 23, "acc": 0.6086956521739131}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 70.08123149284167, "acc": 0.625}, "言语理解与表达|阅读理解|细节判断题": {"hit": 9, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.9}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 15, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 63.99639746408, "acc": 0.6}, "判断推理|逻辑判断|加强题型": {"hit": 25, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "5": {"hit": 13, "all": 26, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.5208333333333334}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.4}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.5}, "言语理解与表达|语句表达": {"hit": 31, "all": 95, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 8, "all": 40, "acc": 0.2}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 7, "all": 11, "acc": 0.6363636363636364}}, "human_acc": 67.41332639953578, "acc": 0.3263157894736842}, "言语理解与表达|语句表达|语句填空题": {"hit": 14, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.4666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.5}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 26, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 11, "all": 17, "acc": 0.6470588235294118}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.6842105263157895}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 25, "all": 40, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 13, "all": 19, "acc": 0.6842105263157895}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.625}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 8, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.30809915712001, "acc": 0.8}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 12, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5454545454545454}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 18, "all": 31, "difficulty": {"5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}}, "human_acc": 63.04056480034193, "acc": 0.5806451612903226}, "判断推理|逻辑判断|原因解释": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 5, "all": 5, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.6}, "判断推理|定义判断|单定义|故事类": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 18, "all": 28, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.6428571428571429}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 15, "all": 29, "difficulty": {"5": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 6, "all": 15, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5172413793103449}, "言语理解与表达|语句表达|语句排序题": {"hit": 9, "all": 55, "difficulty": {"4": {"hit": 2, "all": 29, "acc": 0.06896551724137931}, "3": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 74.78757039704001, "acc": 0.16363636363636364}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 2, "all": 12, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.16666666666666666}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 1, "all": 13, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.07692307692307693}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 16, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 9, "all": 12, "acc": 0.75}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.7272727272727273}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.5}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 189, "all": 496, "difficulty": {"6": {"hit": 30, "all": 82, "acc": 0.36585365853658536}, "3": {"hit": 18, "all": 37, "acc": 0.4864864864864865}, "5": {"hit": 74, "all": 155, "acc": 0.4774193548387097}, "4": {"hit": 59, "all": 184, "acc": 0.32065217391304346}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3810483870967742}, "资料分析|基期与现期": {"hit": 21, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "4": {"hit": 11, "all": 30, "acc": 0.36666666666666664}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.3684210526315789}, "资料分析|基期与现期|基期计算": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.5}, "资料分析|文字资料": {"hit": 92, "all": 237, "difficulty": {"6": {"hit": 15, "all": 39, "acc": 0.38461538461538464}, "3": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 36, "all": 75, "acc": 0.48}, "4": {"hit": 28, "all": 88, "acc": 0.3181818181818182}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.3881856540084388}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 3, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.34466161420001, "acc": 0.6}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 16, "all": 30, "difficulty": {"3": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 5, "all": 8, "acc": 0.625}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.5333333333333333}, "资料分析|简单计算|直接找数": {"hit": 9, "all": 10, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.9}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 13, "all": 32, "difficulty": {"5": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.40625}, "资料分析|增长率|一般增长率": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.3}, "资料分析|比重问题": {"hit": 8, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.25}, "资料分析|比重问题|现期比重": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.1}, "资料分析|增长量": {"hit": 10, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.38461538461538464}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 15, "all": 40, "difficulty": {"4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 5, "all": 8, "acc": 0.625}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.02933098769998, "acc": 0.375}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.4}, "资料分析|倍数与比值相关": {"hit": 9, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.2903225806451613}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.4}, "资料分析|综合分析": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.4}, "资料分析|基期与现期|现期计算": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.3}, "资料分析|比重问题|基期比重": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.4}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.5}, "资料分析|增长量|增长量比较": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.4}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 70.43817867076999, "acc": 0.4}, "资料分析|倍数与比值相关|基期倍数": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.1}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.2}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 5, "all": 7, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 57.80231180570001, "acc": 0.7142857142857143}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/GPT-3.5/difficulty_result.json b/results/202309/details/GPT-3.5/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..38fc0138f54f040271f5fdf92abb73868ee8792d --- /dev/null +++ b/results/202309/details/GPT-3.5/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.4321266968325792, "hit": 764, "all": 1768}, "3": {"hit": 119, "all": 193, "acc": 0.616580310880829}, "4": {"hit": 232, "all": 470, "acc": 0.49361702127659574}, "5": {"hit": 252, "all": 561, "acc": 0.44919786096256686}, "6": {"hit": 103, "all": 306, "acc": 0.3366013071895425}, "7": {"hit": 56, "all": 236, "acc": 0.23728813559322035}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/GPT-4/acc_result.json b/results/202309/details/GPT-4/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..eccc9c3634e45a3871358d52aa3a7243a28b617b --- /dev/null +++ b/results/202309/details/GPT-4/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.5769230769230769, "wrong_value": 0.22295733053718705, "human_acc": 0.6055938546977998, "hit": 1020, "total": 1768, "wrong_hit": 351, "wrong_total": 748, "detail": [{"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "AC", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "ACD", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "BD", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "AD", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "CD", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "BCD", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "B", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "AC", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "AB", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "BC", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "ABD", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "BC", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "BCD", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "BCD", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "AC", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "AD", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "B", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "AD", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "AD", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "ACD", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "BC", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "BCD", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "AC", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "BC", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "AC", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "AC", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "ACD", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "ABD", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "AB", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "BCD", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "BCD", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "BD", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "BCD", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "BCD", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "BCD", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "AC", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "AC", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "BC", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "AD", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "AC", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "AC", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "CD", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "BD", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "CD", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "CD", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "ACD", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "AB", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "BCD", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "ACD", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "BD", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "AD", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "BCD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "AD", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "ABC", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "AB", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "AD", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "ACD", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "BCD", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "AC", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "CD", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "ABD", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "H", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "ACD", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "AC", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "BD", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "BCD", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "ACD", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "BC", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ACD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "ABD", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "AC", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "CD", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "BD", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "AD", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "BC", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "CD", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "ABD", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "E", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "BD", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "ACD", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/GPT-4/category_result-all.json b/results/202309/details/GPT-4/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..363780c5b2db325d4b4c76cee0975d38448a94e3 --- /dev/null +++ b/results/202309/details/GPT-4/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 2343, "all": 3862, "difficulty": {"3": {"hit": 456, "all": 546, "acc": 0.8351648351648352}, "4": {"hit": 768, "all": 1078, "acc": 0.712430426716141}, "5": {"hit": 630, "all": 1102, "acc": 0.5716878402903811}, "6": {"hit": 312, "all": 647, "acc": 0.482225656877898}, "7": {"hit": 173, "all": 485, "acc": 0.35670103092783506}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.6066804764370792}, "判断推理": {"hit": 208, "all": 350, "difficulty": {"3": {"hit": 23, "all": 41, "acc": 0.5609756097560976}, "4": {"hit": 55, "all": 77, "acc": 0.7142857142857143}, "5": {"hit": 102, "all": 155, "acc": 0.6580645161290323}, "6": {"hit": 21, "all": 55, "acc": 0.38181818181818183}, "7": {"hit": 7, "all": 22, "acc": 0.3181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.5942857142857143}, "判断推理|类比推理": {"hit": 47, "all": 96, "difficulty": {"3": {"hit": 3, "all": 12, "acc": 0.25}, "4": {"hit": 13, "all": 20, "acc": 0.65}, "5": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.82436428905626, "acc": 0.4895833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 28, "all": 52, "difficulty": {"3": {"hit": 3, "all": 10, "acc": 0.3}, "4": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "5": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "6": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.80522117180384, "acc": 0.5384615384615384}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 8, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.8}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.45454545454545453}, "判断推理|类比推理|语义关系": {"hit": 14, "all": 30, "difficulty": {"5": {"hit": 11, "all": 18, "acc": 0.6111111111111112}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.4666666666666667}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.6}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 6, "all": 8, "acc": 0.75}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.6}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 6, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.5454545454545454}, "常识判断": {"hit": 133, "all": 226, "difficulty": {"5": {"hit": 55, "all": 87, "acc": 0.632183908045977}, "7": {"hit": 15, "all": 48, "acc": 0.3125}, "6": {"hit": 34, "all": 50, "acc": 0.68}, "4": {"hit": 26, "all": 38, "acc": 0.6842105263157895}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 46.34274676514825, "acc": 0.588495575221239}, "常识判断|人文常识": {"hit": 30, "all": 42, "difficulty": {"5": {"hit": 16, "all": 20, "acc": 0.8}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.7142857142857143}, "常识判断|人文常识|文化常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.6}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 8, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 48.81674459668, "acc": 0.8}, "常识判断|科技常识": {"hit": 37, "all": 50, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 14, "all": 17, "acc": 0.8235294117647058}, "6": {"hit": 11, "all": 14, "acc": 0.7857142857142857}, "4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}}, "human_acc": 51.632498263487996, "acc": 0.74}, "常识判断|科技常识|科技理论与成就": {"hit": 9, "all": 10, "difficulty": {"7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 51.63379060368, "acc": 0.9}, "常识判断|地理国情": {"hit": 13, "all": 21, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 43.98006307271429, "acc": 0.6190476190476191}, "常识判断|地理国情|自然常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 34.48786343879, "acc": 0.7}, "常识判断|科技常识|化学常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 49.661417476859995, "acc": 0.8}, "常识判断|科技常识|生物常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.8}, "常识判断|地理国情|国情社情": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.5}, "常识判断|法律常识": {"hit": 40, "all": 80, "difficulty": {"5": {"hit": 19, "all": 35, "acc": 0.5428571428571428}, "6": {"hit": 11, "all": 18, "acc": 0.6111111111111112}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 42.31029945337126, "acc": 0.5}, "常识判断|法律常识|刑法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.4}, "常识判断|科技常识|物理常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 51.029714180179994, "acc": 0.6}, "常识判断|科技常识|生活常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.6}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 10, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 53.975357187650005, "acc": 1.0}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 176, "all": 485, "difficulty": {"5": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 46, "all": 132, "acc": 0.3484848484848485}, "4": {"hit": 40, "all": 68, "acc": 0.5882352941176471}, "7": {"hit": 57, "all": 160, "acc": 0.35625}}, "human_acc": 40.061365720053836, "acc": 0.3628865979381443}, "数量关系|数学运算": {"hit": 176, "all": 485, "difficulty": {"5": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 46, "all": 132, "acc": 0.3484848484848485}, "4": {"hit": 40, "all": 68, "acc": 0.5882352941176471}, "7": {"hit": 57, "all": 160, "acc": 0.35625}}, "human_acc": 40.061365720053836, "acc": 0.3628865979381443}, "数量关系|数学运算|几何问题": {"hit": 10, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}}, "human_acc": 39.76032017807084, "acc": 0.4166666666666667}, "数量关系|数学运算|几何问题|平面几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.3333333333333333}, "数量关系|数学运算|最值问题": {"hit": 23, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "7": {"hit": 6, "all": 16, "acc": 0.375}}, "human_acc": 41.27603456994616, "acc": 0.35384615384615387}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 10, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 40.35697170282646, "acc": 0.29411764705882354}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.7}, "常识判断|政治常识": {"hit": 10, "all": 21, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.47619047619047616}, "常识判断|政治常识|时政": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 34.89429799924999, "acc": 0.5}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.4}, "数量关系|数学运算|周期问题": {"hit": 15, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "6": {"hit": 5, "all": 10, "acc": 0.5}}, "human_acc": 38.245969273603045, "acc": 0.45454545454545453}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 5, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.38461538461538464}, "常识判断|法律常识|经济法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.5}, "数量关系|数学运算|排列组合问题": {"hit": 26, "all": 74, "difficulty": {"6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 12, "all": 36, "acc": 0.3333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.35135135135135137}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 5, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.35714285714285715}, "言语理解与表达": {"hit": 1595, "all": 2295, "difficulty": {"5": {"hit": 375, "all": 587, "acc": 0.6388415672913118}, "4": {"hit": 558, "all": 707, "acc": 0.7892503536067893}, "3": {"hit": 395, "all": 455, "acc": 0.8681318681318682}, "6": {"hit": 182, "all": 327, "acc": 0.5565749235474006}, "7": {"hit": 85, "all": 219, "acc": 0.3881278538812785}}, "human_acc": 66.81637952144999, "acc": 0.6949891067538126}, "言语理解与表达|逻辑填空": {"hit": 1329, "all": 1841, "difficulty": {"5": {"hit": 323, "all": 498, "acc": 0.6485943775100401}, "4": {"hit": 429, "all": 513, "acc": 0.8362573099415205}, "3": {"hit": 344, "all": 384, "acc": 0.8958333333333334}, "6": {"hit": 172, "all": 277, "acc": 0.6209386281588448}, "7": {"hit": 61, "all": 169, "acc": 0.3609467455621302}}, "human_acc": 66.44656371118516, "acc": 0.7218902770233568}, "言语理解与表达|逻辑填空|实词填空": {"hit": 106, "all": 151, "difficulty": {"5": {"hit": 33, "all": 49, "acc": 0.673469387755102}, "4": {"hit": 31, "all": 39, "acc": 0.7948717948717948}, "3": {"hit": 25, "all": 26, "acc": 0.9615384615384616}, "6": {"hit": 13, "all": 24, "acc": 0.5416666666666666}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.7019867549668874}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 447, "all": 622, "difficulty": {"5": {"hit": 103, "all": 163, "acc": 0.6319018404907976}, "4": {"hit": 147, "all": 172, "acc": 0.8546511627906976}, "3": {"hit": 118, "all": 131, "acc": 0.9007633587786259}, "7": {"hit": 21, "all": 60, "acc": 0.35}, "6": {"hit": 58, "all": 96, "acc": 0.6041666666666666}}, "human_acc": 66.76874610652267, "acc": 0.7186495176848875}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 108, "all": 143, "difficulty": {"5": {"hit": 28, "all": 43, "acc": 0.6511627906976745}, "4": {"hit": 37, "all": 42, "acc": 0.8809523809523809}, "3": {"hit": 23, "all": 25, "acc": 0.92}, "6": {"hit": 13, "all": 19, "acc": 0.6842105263157895}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 66.64745600073147, "acc": 0.7552447552447552}, "数量关系|数学运算|几何问题|立体几何": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.5}, "数量关系|数学运算|和差倍比问题": {"hit": 6, "all": 20, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 51.365180902629994, "acc": 0.3}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析": {"hit": 558, "all": 771, "difficulty": {"5": {"hit": 132, "all": 201, "acc": 0.6567164179104478}, "4": {"hit": 179, "all": 217, "acc": 0.8248847926267281}, "3": {"hit": 149, "all": 167, "acc": 0.8922155688622755}, "6": {"hit": 73, "all": 116, "acc": 0.6293103448275862}, "7": {"hit": 25, "all": 70, "acc": 0.35714285714285715}}, "human_acc": 66.4145264015949, "acc": 0.7237354085603113}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 116, "all": 165, "difficulty": {"5": {"hit": 26, "all": 45, "acc": 0.5777777777777777}, "4": {"hit": 39, "all": 44, "acc": 0.8863636363636364}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 17, "all": 27, "acc": 0.6296296296296297}, "3": {"hit": 27, "all": 32, "acc": 0.84375}}, "human_acc": 65.38103981607519, "acc": 0.703030303030303}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.4}, "言语理解与表达|逻辑填空|成语填空": {"hit": 107, "all": 145, "difficulty": {"4": {"hit": 36, "all": 43, "acc": 0.8372093023255814}, "5": {"hit": 24, "all": 39, "acc": 0.6153846153846154}, "3": {"hit": 29, "all": 31, "acc": 0.9354838709677419}, "6": {"hit": 12, "all": 18, "acc": 0.6666666666666666}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 69.23037595903519, "acc": 0.7379310344827587}, "数量关系|数学运算|数学运算-其他": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.94974842076, "acc": 0.6}, "数量关系|数学运算|数列问题": {"hit": 3, "all": 18, "difficulty": {"7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.16666666666666666}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 98, "all": 135, "difficulty": {"4": {"hit": 30, "all": 38, "acc": 0.7894736842105263}, "3": {"hit": 34, "all": 36, "acc": 0.9444444444444444}, "5": {"hit": 20, "all": 32, "acc": 0.625}, "6": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 67.2510308321489, "acc": 0.725925925925926}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 141, "all": 203, "difficulty": {"4": {"hit": 45, "all": 56, "acc": 0.8035714285714286}, "5": {"hit": 29, "all": 49, "acc": 0.5918367346938775}, "3": {"hit": 47, "all": 51, "acc": 0.9215686274509803}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 14, "all": 25, "acc": 0.56}}, "human_acc": 67.67567808645465, "acc": 0.6945812807881774}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 159, "all": 212, "difficulty": {"4": {"hit": 52, "all": 63, "acc": 0.8253968253968254}, "5": {"hit": 31, "all": 43, "acc": 0.7209302325581395}, "3": {"hit": 44, "all": 51, "acc": 0.8627450980392157}, "6": {"hit": 23, "all": 32, "acc": 0.71875}, "7": {"hit": 9, "all": 23, "acc": 0.391304347826087}}, "human_acc": 67.16383399377828, "acc": 0.75}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 43.75836103538, "acc": 0.5}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 97, "all": 137, "difficulty": {"5": {"hit": 23, "all": 36, "acc": 0.6388888888888888}, "3": {"hit": 25, "all": 28, "acc": 0.8928571428571429}, "4": {"hit": 30, "all": 35, "acc": 0.8571428571428571}, "6": {"hit": 13, "all": 24, "acc": 0.5416666666666666}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.708029197080292}, "常识判断|法律常识|劳动法": {"hit": 9, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 5, "all": 5, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.9}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.4}, "数量关系|数学运算|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.2}, "数量关系|数学运算|容斥原理问题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.4}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 12, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.58662222520977, "acc": 0.2926829268292683}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 107, "all": 174, "difficulty": {"5": {"hit": 51, "all": 78, "acc": 0.6538461538461539}, "4": {"hit": 31, "all": 40, "acc": 0.775}, "3": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 13, "all": 28, "acc": 0.4642857142857143}, "7": {"hit": 4, "all": 15, "acc": 0.26666666666666666}}, "human_acc": 63.67314146826951, "acc": 0.6149425287356322}, "判断推理|逻辑判断|翻译推理": {"hit": 15, "all": 40, "difficulty": {"5": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.375}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.2}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 104, "all": 151, "difficulty": {"4": {"hit": 35, "all": 42, "acc": 0.8333333333333334}, "5": {"hit": 25, "all": 41, "acc": 0.6097560975609756}, "6": {"hit": 13, "all": 22, "acc": 0.5909090909090909}, "3": {"hit": 26, "all": 29, "acc": 0.896551724137931}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}}, "human_acc": 64.30090962542516, "acc": 0.6887417218543046}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.2}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 28, "all": 65, "difficulty": {"4": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "6": {"hit": 8, "all": 21, "acc": 0.38095238095238093}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "7": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.4307692307692308}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.4}, "数量关系|数学运算|统筹规划问题": {"hit": 7, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.4117647058823529}, "数量关系|数学运算|年龄问题": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 101, "all": 139, "difficulty": {"5": {"hit": 23, "all": 35, "acc": 0.6571428571428571}, "4": {"hit": 35, "all": 39, "acc": 0.8974358974358975}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 18, "all": 28, "acc": 0.6428571428571429}, "3": {"hit": 23, "all": 27, "acc": 0.8518518518518519}}, "human_acc": 66.39573058612521, "acc": 0.7266187050359713}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.6}, "判断推理|定义判断": {"hit": 54, "all": 80, "difficulty": {"6": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 11, "all": 17, "acc": 0.6470588235294118}, "5": {"hit": 29, "all": 38, "acc": 0.7631578947368421}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 12, "all": 16, "acc": 0.75}}, "human_acc": 74.80628203606001, "acc": 0.675}, "判断推理|定义判断|单定义": {"hit": 48, "all": 70, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 9, "all": 15, "acc": 0.6}, "5": {"hit": 25, "all": 33, "acc": 0.7575757575757576}, "3": {"hit": 12, "all": 16, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.6857142857142857}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.7}, "数量关系|数学运算|概率问题": {"hit": 16, "all": 41, "difficulty": {"7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.3902439024390244}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 10, "all": 21, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.47619047619047616}, "数量关系|数学运算|行程问题|普通行程": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.38461538461538464}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.3}, "数量关系|数学运算|行程问题|平均速度": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 53.32624301306, "acc": 0.7}, "判断推理|定义判断|单定义|原因结果": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 81.04459294875, "acc": 0.6}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 52.80798031047, "acc": 0.5}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 6, "all": 6, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.8}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 81, "all": 108, "difficulty": {"5": {"hit": 30, "all": 40, "acc": 0.75}, "4": {"hit": 23, "all": 30, "acc": 0.7666666666666667}, "6": {"hit": 9, "all": 16, "acc": 0.5625}, "3": {"hit": 18, "all": 19, "acc": 0.9473684210526315}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.75}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 3, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.34234964509, "acc": 0.5}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 111, "all": 152, "difficulty": {"5": {"hit": 31, "all": 46, "acc": 0.6739130434782609}, "4": {"hit": 36, "all": 42, "acc": 0.8571428571428571}, "3": {"hit": 23, "all": 29, "acc": 0.7931034482758621}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 16, "all": 23, "acc": 0.6956521739130435}}, "human_acc": 65.94677786230925, "acc": 0.7302631578947368}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 205, "all": 359, "difficulty": {"4": {"hit": 98, "all": 154, "acc": 0.6363636363636364}, "5": {"hit": 40, "all": 69, "acc": 0.5797101449275363}, "6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 39, "all": 54, "acc": 0.7222222222222222}, "7": {"hit": 20, "all": 43, "acc": 0.46511627906976744}}, "human_acc": 68.55487799855013, "acc": 0.5710306406685237}, "言语理解与表达|阅读理解|词句理解题": {"hit": 15, "all": 20, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.47019993558001, "acc": 0.75}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.87169104351999, "acc": 0.8}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 5, "all": 8, "acc": 0.625}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 9, "all": 10, "difficulty": {"5": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.9}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 42, "all": 66, "difficulty": {"4": {"hit": 13, "all": 14, "acc": 0.9285714285714286}, "6": {"hit": 7, "all": 10, "acc": 0.7}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 17, "all": 28, "acc": 0.6071428571428571}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 59.45006052624239, "acc": 0.6363636363636364}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.45454545454545453}, "数量关系|数学运算|行程问题|流水行船": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.45454545454545453}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.3}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 177, "all": 319, "difficulty": {"5": {"hit": 32, "all": 58, "acc": 0.5517241379310345}, "6": {"hit": 5, "all": 33, "acc": 0.15151515151515152}, "3": {"hit": 35, "all": 49, "acc": 0.7142857142857143}, "4": {"hit": 86, "all": 140, "acc": 0.6142857142857143}, "7": {"hit": 19, "all": 39, "acc": 0.48717948717948717}}, "human_acc": 68.63568244351346, "acc": 0.554858934169279}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 29, "all": 48, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 16, "all": 23, "acc": 0.6956521739130435}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 70.08123149284167, "acc": 0.6041666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 15, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 63.99639746408, "acc": 0.6}, "判断推理|逻辑判断|加强题型": {"hit": 34, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 8, "all": 8, "acc": 1.0}, "5": {"hit": 20, "all": 26, "acc": 0.7692307692307693}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}}, "human_acc": 62.50620258335624, "acc": 0.7083333333333334}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.4}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.7}, "言语理解与表达|语句表达": {"hit": 61, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 31, "all": 40, "acc": 0.775}, "3": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}}, "human_acc": 67.41332639953578, "acc": 0.6421052631578947}, "言语理解与表达|语句表达|语句填空题": {"hit": 18, "all": 30, "difficulty": {"5": {"hit": 7, "all": 11, "acc": 0.6363636363636364}, "4": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 55.56949742254332, "acc": 0.6}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.7}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.6}, "判断推理|定义判断|单定义|大前提": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.6}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 21, "all": 40, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "3": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.525}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 10, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 5, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.30809915712001, "acc": 1.0}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 9, "all": 31, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.04056480034193, "acc": 0.2903225806451613}, "判断推理|逻辑判断|原因解释": {"hit": 10, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 5, "all": 5, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 1.0}, "判断推理|定义判断|单定义|故事类": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 18, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.32961605834642, "acc": 0.6428571428571429}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 8, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.58474381049999, "acc": 0.8}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.78145644953, "acc": 0.6}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 63.51476866928999, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 14, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.4827586206896552}, "言语理解与表达|语句表达|语句排序题": {"hit": 35, "all": 55, "difficulty": {"4": {"hit": 23, "all": 29, "acc": 0.7931034482758621}, "3": {"hit": 9, "all": 14, "acc": 0.6428571428571429}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.6363636363636364}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 83.03719898832999, "acc": 0.7}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 9, "all": 13, "difficulty": {"4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.6923076923076923}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 12, "all": 22, "difficulty": {"3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5454545454545454}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.47360422099001, "acc": 0.6}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.6}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 6, "all": 6, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.6}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.7}, "言语理解与表达|阅读理解|标题填入题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 53.00512973501001, "acc": 0.6}, "资料分析": {"hit": 225, "all": 496, "difficulty": {"6": {"hit": 28, "all": 82, "acc": 0.34146341463414637}, "3": {"hit": 31, "all": 37, "acc": 0.8378378378378378}, "5": {"hit": 68, "all": 155, "acc": 0.43870967741935485}, "4": {"hit": 85, "all": 184, "acc": 0.46195652173913043}, "7": {"hit": 9, "all": 34, "acc": 0.2647058823529412}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.4536290322580645}, "资料分析|基期与现期": {"hit": 29, "all": 57, "difficulty": {"6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "5": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "4": {"hit": 15, "all": 30, "acc": 0.5}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.5087719298245614}, "资料分析|基期与现期|基期计算": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.6}, "资料分析|文字资料": {"hit": 108, "all": 237, "difficulty": {"6": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 14, "all": 17, "acc": 0.8235294117647058}, "5": {"hit": 33, "all": 75, "acc": 0.44}, "4": {"hit": 41, "all": 88, "acc": 0.4659090909090909}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.45569620253164556}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 7, "all": 8, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.875}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 5, "all": 5, "difficulty": {"5": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.34466161420001, "acc": 1.0}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.7}, "资料分析|简单计算": {"hit": 22, "all": 30, "difficulty": {"3": {"hit": 9, "all": 11, "acc": 0.8181818181818182}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "5": {"hit": 6, "all": 8, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.7333333333333333}, "资料分析|简单计算|直接找数": {"hit": 9, "all": 10, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.9}, "资料分析|简单计算|简单加减计算": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 85.66512725525001, "acc": 0.6}, "资料分析|增长率": {"hit": 13, "all": 32, "difficulty": {"5": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.71806505801563, "acc": 0.40625}, "资料分析|增长率|一般增长率": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.06221757717, "acc": 0.4}, "资料分析|比重问题": {"hit": 9, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.38629613428436, "acc": 0.28125}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 13, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 6, "all": 10, "acc": 0.6}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.02933960017693, "acc": 0.5}, "资料分析|增长量|增长量计算": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.01181165196002, "acc": 0.7}, "资料分析|平均数问题": {"hit": 16, "all": 40, "difficulty": {"4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.4}, "资料分析|平均数问题|现期平均数": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.7}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 13, "all": 31, "difficulty": {"3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.41935483870967744}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.4}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 74.29458274163999, "acc": 0.8}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.78078638926, "acc": 0.4}, "资料分析|增长率|混合增长率": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.7}, "资料分析|增长量|增长量比较": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.5}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.3}, "资料分析|倍数与比值相关|基期倍数": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.4}, "资料分析|平均数问题|基期平均数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.1}, "资料分析|简单计算|排序类": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.7}, "资料分析|平均数问题|平均数的增长率": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.4}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.6}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.7282913837, "acc": 1.0}, "资料分析|增长量|间隔增长量": {"hit": 0, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.0}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/GPT-4/difficulty_result.json b/results/202309/details/GPT-4/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..63fe14a95317a42caa826a819a41a2610016fd46 --- /dev/null +++ b/results/202309/details/GPT-4/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"hit": 1020, "all": 1768, "acc": 0.5769230769230769}, "3": {"hit": 156, "all": 193, "acc": 0.8082901554404145}, "4": {"hit": 319, "all": 470, "acc": 0.6787234042553192}, "5": {"hit": 318, "all": 561, "acc": 0.5668449197860963}, "6": {"hit": 144, "all": 306, "acc": 0.47058823529411764}, "7": {"hit": 81, "all": 236, "acc": 0.3432203389830508}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/InternLM-7B/acc_result.json b/results/202309/details/InternLM-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d31f438e042a556d5ff6752a6d5cbeb0865bf848 --- /dev/null +++ b/results/202309/details/InternLM-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.4236425339366516, "wrong_value": 0.20906208232060644, "human_acc": 0.6055938546977998, "hit": 749, "total": 1768, "wrong_hit": 482, "wrong_total": 1019, "detail": [{"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "ACD", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "B", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "B", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "ABD", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "BD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "A", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "D", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "B", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/InternLM-7B/category_result-all.json b/results/202309/details/InternLM-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..87e80f9aaa168d6ca03269eadf7af16f5628590a --- /dev/null +++ b/results/202309/details/InternLM-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1765, "all": 3862, "difficulty": {"3": {"hit": 345, "all": 546, "acc": 0.6318681318681318}, "4": {"hit": 608, "all": 1078, "acc": 0.5640074211502782}, "5": {"hit": 434, "all": 1102, "acc": 0.3938294010889292}, "6": {"hit": 267, "all": 647, "acc": 0.4126738794435858}, "7": {"hit": 109, "all": 485, "acc": 0.22474226804123712}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.45701708959088555}, "判断推理": {"hit": 123, "all": 350, "difficulty": {"3": {"hit": 23, "all": 41, "acc": 0.5609756097560976}, "4": {"hit": 34, "all": 77, "acc": 0.44155844155844154}, "5": {"hit": 51, "all": 155, "acc": 0.32903225806451614}, "6": {"hit": 11, "all": 55, "acc": 0.2}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.3514285714285714}, "判断推理|类比推理": {"hit": 25, "all": 96, "difficulty": {"3": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "4": {"hit": 7, "all": 20, "acc": 0.35}, "5": {"hit": 4, "all": 39, "acc": 0.10256410256410256}, "6": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.2604166666666667}, "判断推理|类比推理|逻辑关系": {"hit": 16, "all": 52, "difficulty": {"3": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.3076923076923077}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.18181818181818182}, "判断推理|类比推理|语义关系": {"hit": 8, "all": 30, "difficulty": {"5": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 67.00170566224, "acc": 0.26666666666666666}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.32486766705999, "acc": 0.4}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 74.48564823635999, "acc": 0.1}, "判断推理|类比推理|拆分思维": {"hit": 1, "all": 14, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.07142857142857142}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 57.19460108329999, "acc": 0.3}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 4, "all": 11, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.36363636363636365}, "常识判断": {"hit": 90, "all": 226, "difficulty": {"5": {"hit": 36, "all": 87, "acc": 0.41379310344827586}, "7": {"hit": 10, "all": 48, "acc": 0.20833333333333334}, "6": {"hit": 19, "all": 50, "acc": 0.38}, "4": {"hit": 23, "all": 38, "acc": 0.6052631578947368}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.39823008849557523}, "常识判断|人文常识": {"hit": 20, "all": 42, "difficulty": {"5": {"hit": 11, "all": 20, "acc": 0.55}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 6, "all": 12, "acc": 0.5}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.47619047619047616}, "常识判断|人文常识|文化常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.5}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.5}, "常识判断|科技常识": {"hit": 19, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}}, "human_acc": 51.632498263487996, "acc": 0.38}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 7, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.3333333333333333}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.3}, "常识判断|科技常识|生物常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.5}, "常识判断|地理国情|国情社情": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 54.87697121455001, "acc": 0.5}, "常识判断|法律常识": {"hit": 32, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.4}, "常识判断|法律常识|刑法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.3}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.6}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.5}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.3333333333333333}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 136, "all": 485, "difficulty": {"5": {"hit": 39, "all": 116, "acc": 0.33620689655172414}, "3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 52, "all": 132, "acc": 0.3939393939393939}, "4": {"hit": 16, "all": 68, "acc": 0.23529411764705882}, "7": {"hit": 22, "all": 160, "acc": 0.1375}}, "human_acc": 40.061365720053836, "acc": 0.2804123711340206}, "数量关系|数学运算": {"hit": 136, "all": 485, "difficulty": {"5": {"hit": 39, "all": 116, "acc": 0.33620689655172414}, "3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 52, "all": 132, "acc": 0.3939393939393939}, "4": {"hit": 16, "all": 68, "acc": 0.23529411764705882}, "7": {"hit": 22, "all": 160, "acc": 0.1375}}, "human_acc": 40.061365720053836, "acc": 0.2804123711340206}, "数量关系|数学运算|几何问题": {"hit": 8, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 39.76032017807084, "acc": 0.3333333333333333}, "数量关系|数学运算|几何问题|平面几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.16666666666666666}, "数量关系|数学运算|最值问题": {"hit": 18, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 0, "all": 16, "acc": 0.0}}, "human_acc": 41.27603456994616, "acc": 0.27692307692307694}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 8, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 9, "acc": 0.0}}, "human_acc": 40.35697170282646, "acc": 0.23529411764705882}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 8, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.38095238095238093}, "常识判断|政治常识|时政": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.5}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 12, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 7, "all": 10, "acc": 0.7}}, "human_acc": 38.245969273603045, "acc": 0.36363636363636365}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 17, "all": 74, "difficulty": {"6": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "7": {"hit": 8, "all": 36, "acc": 0.2222222222222222}}, "human_acc": 33.405759431517595, "acc": 0.22972972972972974}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 3, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.21428571428571427}, "言语理解与表达": {"hit": 1266, "all": 2295, "difficulty": {"5": {"hit": 262, "all": 587, "acc": 0.4463373083475298}, "4": {"hit": 477, "all": 707, "acc": 0.6746817538896747}, "3": {"hit": 299, "all": 455, "acc": 0.6571428571428571}, "6": {"hit": 159, "all": 327, "acc": 0.48623853211009177}, "7": {"hit": 69, "all": 219, "acc": 0.3150684931506849}}, "human_acc": 66.81637952144999, "acc": 0.5516339869281046}, "言语理解与表达|逻辑填空": {"hit": 1005, "all": 1841, "difficulty": {"5": {"hit": 220, "all": 498, "acc": 0.44176706827309237}, "4": {"hit": 346, "all": 513, "acc": 0.6744639376218323}, "3": {"hit": 250, "all": 384, "acc": 0.6510416666666666}, "6": {"hit": 133, "all": 277, "acc": 0.48014440433212996}, "7": {"hit": 56, "all": 169, "acc": 0.33136094674556216}}, "human_acc": 66.44656371118516, "acc": 0.5458989679521999}, "言语理解与表达|逻辑填空|实词填空": {"hit": 83, "all": 151, "difficulty": {"5": {"hit": 25, "all": 49, "acc": 0.5102040816326531}, "4": {"hit": 25, "all": 39, "acc": 0.6410256410256411}, "3": {"hit": 17, "all": 26, "acc": 0.6538461538461539}, "6": {"hit": 9, "all": 24, "acc": 0.375}, "7": {"hit": 7, "all": 13, "acc": 0.5384615384615384}}, "human_acc": 63.11290800843907, "acc": 0.5496688741721855}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 354, "all": 622, "difficulty": {"5": {"hit": 75, "all": 163, "acc": 0.4601226993865031}, "4": {"hit": 118, "all": 172, "acc": 0.686046511627907}, "3": {"hit": 84, "all": 131, "acc": 0.6412213740458015}, "7": {"hit": 23, "all": 60, "acc": 0.38333333333333336}, "6": {"hit": 54, "all": 96, "acc": 0.5625}}, "human_acc": 66.76874610652267, "acc": 0.5691318327974276}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 75, "all": 143, "difficulty": {"5": {"hit": 22, "all": 43, "acc": 0.5116279069767442}, "4": {"hit": 28, "all": 42, "acc": 0.6666666666666666}, "3": {"hit": 14, "all": 25, "acc": 0.56}, "6": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 66.64745600073147, "acc": 0.5244755244755245}, "数量关系|数学运算|几何问题|立体几何": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.5}, "数量关系|数学运算|和差倍比问题": {"hit": 7, "all": 20, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 51.365180902629994, "acc": 0.35}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析": {"hit": 401, "all": 771, "difficulty": {"5": {"hit": 82, "all": 201, "acc": 0.4079601990049751}, "4": {"hit": 143, "all": 217, "acc": 0.6589861751152074}, "3": {"hit": 108, "all": 167, "acc": 0.6467065868263473}, "6": {"hit": 48, "all": 116, "acc": 0.41379310344827586}, "7": {"hit": 20, "all": 70, "acc": 0.2857142857142857}}, "human_acc": 66.4145264015949, "acc": 0.5201037613488976}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 80, "all": 165, "difficulty": {"5": {"hit": 15, "all": 45, "acc": 0.3333333333333333}, "4": {"hit": 25, "all": 44, "acc": 0.5681818181818182}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 14, "all": 27, "acc": 0.5185185185185185}, "3": {"hit": 22, "all": 32, "acc": 0.6875}}, "human_acc": 65.38103981607519, "acc": 0.48484848484848486}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 83, "all": 145, "difficulty": {"4": {"hit": 30, "all": 43, "acc": 0.6976744186046512}, "5": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 20, "all": 31, "acc": 0.6451612903225806}, "6": {"hit": 10, "all": 18, "acc": 0.5555555555555556}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 69.23037595903519, "acc": 0.5724137931034483}, "数量关系|数学运算|数学运算-其他": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.4}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 74, "all": 135, "difficulty": {"4": {"hit": 25, "all": 38, "acc": 0.6578947368421053}, "3": {"hit": 26, "all": 36, "acc": 0.7222222222222222}, "5": {"hit": 11, "all": 32, "acc": 0.34375}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 5, "all": 10, "acc": 0.5}}, "human_acc": 67.2510308321489, "acc": 0.5481481481481482}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 120, "all": 203, "difficulty": {"4": {"hit": 39, "all": 56, "acc": 0.6964285714285714}, "5": {"hit": 21, "all": 49, "acc": 0.42857142857142855}, "3": {"hit": 35, "all": 51, "acc": 0.6862745098039216}, "7": {"hit": 10, "all": 22, "acc": 0.45454545454545453}, "6": {"hit": 15, "all": 25, "acc": 0.6}}, "human_acc": 67.67567808645465, "acc": 0.5911330049261084}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 109, "all": 212, "difficulty": {"4": {"hit": 43, "all": 63, "acc": 0.6825396825396826}, "5": {"hit": 15, "all": 43, "acc": 0.3488372093023256}, "3": {"hit": 32, "all": 51, "acc": 0.6274509803921569}, "6": {"hit": 12, "all": 32, "acc": 0.375}, "7": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 67.16383399377828, "acc": 0.5141509433962265}, "常识判断|法律常识|民事诉讼法": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 37.81514019971, "acc": 0.3}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 77, "all": 137, "difficulty": {"5": {"hit": 14, "all": 36, "acc": 0.3888888888888889}, "3": {"hit": 18, "all": 28, "acc": 0.6428571428571429}, "4": {"hit": 25, "all": 35, "acc": 0.7142857142857143}, "6": {"hit": 13, "all": 24, "acc": 0.5416666666666666}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 65.9299610739475, "acc": 0.5620437956204379}, "常识判断|法律常识|劳动法": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.6}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.4}, "数量关系|数学运算|工程问题": {"hit": 11, "all": 41, "difficulty": {"6": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.58662222520977, "acc": 0.2682926829268293}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.0}, "判断推理|逻辑判断": {"hit": 52, "all": 174, "difficulty": {"5": {"hit": 25, "all": 78, "acc": 0.32051282051282054}, "4": {"hit": 17, "all": 40, "acc": 0.425}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 3, "all": 28, "acc": 0.10714285714285714}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.2988505747126437}, "判断推理|逻辑判断|翻译推理": {"hit": 10, "all": 40, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.6425370730575, "acc": 0.25}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 74, "all": 151, "difficulty": {"4": {"hit": 29, "all": 42, "acc": 0.6904761904761905}, "5": {"hit": 17, "all": 41, "acc": 0.4146341463414634}, "6": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "3": {"hit": 18, "all": 29, "acc": 0.6206896551724138}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}}, "human_acc": 64.30090962542516, "acc": 0.4900662251655629}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 21, "all": 65, "difficulty": {"4": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 10, "all": 21, "acc": 0.47619047619047616}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.3230769230769231}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.76722241438, "acc": 0.5}, "数量关系|数学运算|统筹规划问题": {"hit": 3, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.17647058823529413}, "数量关系|数学运算|年龄问题": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 82, "all": 139, "difficulty": {"5": {"hit": 18, "all": 35, "acc": 0.5142857142857142}, "4": {"hit": 26, "all": 39, "acc": 0.6666666666666666}, "7": {"hit": 3, "all": 10, "acc": 0.3}, "6": {"hit": 18, "all": 28, "acc": 0.6428571428571429}, "3": {"hit": 17, "all": 27, "acc": 0.6296296296296297}}, "human_acc": 66.39573058612521, "acc": 0.5899280575539568}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 46, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 22, "all": 38, "acc": 0.5789473684210527}, "7": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 10, "all": 16, "acc": 0.625}}, "human_acc": 74.80628203606001, "acc": 0.575}, "判断推理|定义判断|单定义": {"hit": 41, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 9, "all": 15, "acc": 0.6}, "5": {"hit": 19, "all": 33, "acc": 0.5757575757575758}, "3": {"hit": 10, "all": 16, "acc": 0.625}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.5857142857142857}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.4}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 5, "all": 21, "difficulty": {"7": {"hit": 1, "all": 10, "acc": 0.1}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.23809523809523808}, "数量关系|数学运算|行程问题|普通行程": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.23392225894615, "acc": 0.38461538461538464}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.6}, "数量关系|数学运算|行程问题|平均速度": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 53.32624301306, "acc": 0.4}, "判断推理|定义判断|单定义|原因结果": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 81.04459294875, "acc": 0.5}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.18181818181818182}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 64, "all": 108, "difficulty": {"5": {"hit": 24, "all": 40, "acc": 0.6}, "4": {"hit": 21, "all": 30, "acc": 0.7}, "6": {"hit": 8, "all": 16, "acc": 0.5}, "3": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5925925925925926}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 3, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 84, "all": 152, "difficulty": {"5": {"hit": 19, "all": 46, "acc": 0.41304347826086957}, "4": {"hit": 30, "all": 42, "acc": 0.7142857142857143}, "3": {"hit": 21, "all": 29, "acc": 0.7241379310344828}, "7": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 12, "all": 23, "acc": 0.5217391304347826}}, "human_acc": 65.94677786230925, "acc": 0.5526315789473685}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 226, "all": 359, "difficulty": {"4": {"hit": 119, "all": 154, "acc": 0.7727272727272727}, "5": {"hit": 30, "all": 69, "acc": 0.43478260869565216}, "6": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 48, "all": 54, "acc": 0.8888888888888888}, "7": {"hit": 10, "all": 43, "acc": 0.23255813953488372}}, "human_acc": 68.55487799855013, "acc": 0.6295264623955432}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.1}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.5}, "判断推理|定义判断|单定义|拆词": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.7}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.4}, "判断推理|逻辑判断|削弱题型": {"hit": 13, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 1, "all": 10, "acc": 0.1}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 4, "all": 28, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.19696969696969696}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 9, "all": 10, "difficulty": {"5": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.9}, "言语理解与表达|阅读理解|中心理解题": {"hit": 203, "all": 319, "difficulty": {"5": {"hit": 22, "all": 58, "acc": 0.3793103448275862}, "6": {"hit": 18, "all": 33, "acc": 0.5454545454545454}, "3": {"hit": 44, "all": 49, "acc": 0.8979591836734694}, "4": {"hit": 110, "all": 140, "acc": 0.7857142857142857}, "7": {"hit": 9, "all": 39, "acc": 0.23076923076923078}}, "human_acc": 68.63568244351346, "acc": 0.6363636363636364}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 29, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 16, "all": 23, "acc": 0.6956521739130435}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.6041666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 11, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 63.99639746408, "acc": 0.44}, "判断推理|逻辑判断|加强题型": {"hit": 24, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 14, "all": 26, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.5}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.6}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.4}, "言语理解与表达|语句表达": {"hit": 35, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 1, "all": 17, "acc": 0.058823529411764705}, "6": {"hit": 7, "all": 11, "acc": 0.6363636363636364}}, "human_acc": 67.41332639953578, "acc": 0.3684210526315789}, "言语理解与表达|语句表达|语句填空题": {"hit": 13, "all": 30, "difficulty": {"5": {"hit": 7, "all": 11, "acc": 0.6363636363636364}, "4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.43333333333333335}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.5}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 19, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 10, "all": 13, "acc": 0.7692307692307693}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.6333333333333333}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 13, "all": 17, "acc": 0.7647058823529411}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 28, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 17, "all": 19, "acc": 0.8947368421052632}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.7}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 7, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 23, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 12, "all": 13, "acc": 0.9230769230769231}}, "human_acc": 63.04056480034193, "acc": 0.7419354838709677}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 17, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 4, "all": 4, "acc": 1.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.6071428571428571}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.6}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 18, "all": 29, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 12, "all": 15, "acc": 0.8}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.6206896551724138}, "言语理解与表达|语句表达|语句排序题": {"hit": 14, "all": 55, "difficulty": {"4": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "3": {"hit": 0, "all": 14, "acc": 0.0}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 74.78757039704001, "acc": 0.2545454545454545}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 4, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.3333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 83.03719898832999, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 17, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 10, "all": 12, "acc": 0.8333333333333334}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.7727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 147, "all": 496, "difficulty": {"6": {"hit": 25, "all": 82, "acc": 0.3048780487804878}, "3": {"hit": 14, "all": 37, "acc": 0.3783783783783784}, "5": {"hit": 46, "all": 155, "acc": 0.2967741935483871}, "4": {"hit": 56, "all": 184, "acc": 0.30434782608695654}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.2963709677419355}, "资料分析|基期与现期": {"hit": 19, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "4": {"hit": 12, "all": 30, "acc": 0.4}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期计算": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.5}, "资料分析|文字资料": {"hit": 71, "all": 237, "difficulty": {"6": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "3": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "5": {"hit": 22, "all": 75, "acc": 0.29333333333333333}, "4": {"hit": 27, "all": 88, "acc": 0.3068181818181818}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.29957805907172996}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 0, "all": 5, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.0}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.3}, "资料分析|简单计算": {"hit": 12, "all": 30, "difficulty": {"3": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.4}, "资料分析|简单计算|直接找数": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.6}, "资料分析|简单计算|简单加减计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.2}, "资料分析|增长率": {"hit": 8, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.25}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 5, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "5": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.15625}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 8, "all": 26, "difficulty": {"4": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.3076923076923077}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 11, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.02933098769998, "acc": 0.275}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.3}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.3}, "资料分析|综合分析": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.4}, "资料分析|基期与现期|现期计算": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.6}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.1}, "资料分析|增长率|混合增长率": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.2}, "资料分析|增长量|增长量比较": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 71.35157502931, "acc": 0.2}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.1}, "资料分析|简单计算|排序类": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.42931141622, "acc": 0.4}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.1}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/InternLM-7B/difficulty_result.json b/results/202309/details/InternLM-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f6ca69397b9a426b2d65acba2108ed8277bc8574 --- /dev/null +++ b/results/202309/details/InternLM-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"hit": 749, "all": 1768, "acc": 0.4236425339366516}, "3": {"hit": 119, "all": 193, "acc": 0.616580310880829}, "4": {"hit": 241, "all": 470, "acc": 0.5127659574468085}, "5": {"hit": 226, "all": 561, "acc": 0.4028520499108734}, "6": {"hit": 113, "all": 306, "acc": 0.369281045751634}, "7": {"hit": 49, "all": 236, "acc": 0.2076271186440678}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/Llama-13B/acc_result.json b/results/202309/details/Llama-13B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..998069d5f7c07be70326b7045dea9a113fd24784 --- /dev/null +++ b/results/202309/details/Llama-13B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.2703619909502262, "wrong_value": 0.15367278860331005, "human_acc": 0.6055938546977998, "hit": 478, "total": 1768, "wrong_hit": 489, "wrong_total": 1290, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "ABD", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "E", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "E", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "ABD", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "A", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "AB", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "A", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "A", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "B", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "AB", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "A", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "AB", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "A", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "AB", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "B", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "AB", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "A", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "G", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "G", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "AB", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "AB", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "A", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "G", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Llama-13B/category_result-all.json b/results/202309/details/Llama-13B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..5af34107f603d1b90674445d275c5385d88cba19 --- /dev/null +++ b/results/202309/details/Llama-13B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 982, "all": 3862, "difficulty": {"3": {"hit": 142, "all": 546, "acc": 0.2600732600732601}, "4": {"hit": 294, "all": 1078, "acc": 0.2727272727272727}, "5": {"hit": 259, "all": 1102, "acc": 0.23502722323049002}, "6": {"hit": 172, "all": 647, "acc": 0.26584234930448225}, "7": {"hit": 113, "all": 485, "acc": 0.2329896907216495}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.2542723977213879}, "判断推理": {"hit": 118, "all": 350, "difficulty": {"3": {"hit": 17, "all": 41, "acc": 0.4146341463414634}, "4": {"hit": 23, "all": 77, "acc": 0.2987012987012987}, "5": {"hit": 58, "all": 155, "acc": 0.3741935483870968}, "6": {"hit": 17, "all": 55, "acc": 0.3090909090909091}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.33714285714285713}, "判断推理|类比推理": {"hit": 30, "all": 96, "difficulty": {"3": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "4": {"hit": 4, "all": 20, "acc": 0.2}, "5": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "6": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.3125}, "判断推理|类比推理|逻辑关系": {"hit": 16, "all": 52, "difficulty": {"3": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.3076923076923077}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.36363636363636365}, "判断推理|类比推理|语义关系": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 67.00170566224, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 8, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.5714285714285714}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 41, "all": 226, "difficulty": {"5": {"hit": 14, "all": 87, "acc": 0.16091954022988506}, "7": {"hit": 11, "all": 48, "acc": 0.22916666666666666}, "6": {"hit": 6, "all": 50, "acc": 0.12}, "4": {"hit": 10, "all": 38, "acc": 0.2631578947368421}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 46.34274676514825, "acc": 0.18141592920353983}, "常识判断|人文常识": {"hit": 6, "all": 42, "difficulty": {"5": {"hit": 3, "all": 20, "acc": 0.15}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 8, "acc": 0.125}}, "human_acc": 53.66391099976427, "acc": 0.14285714285714285}, "常识判断|人文常识|文化常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.2}, "常识判断|人文常识|文学常识": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 58.752282007969995, "acc": 0.1}, "常识判断|人文常识|中国历史": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.2}, "常识判断|科技常识": {"hit": 9, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 1, "all": 14, "acc": 0.07142857142857142}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 51.632498263487996, "acc": 0.18}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 3, "all": 21, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 43.98006307271429, "acc": 0.14285714285714285}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.2}, "常识判断|科技常识|生物常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.2}, "常识判断|地理国情|国情社情": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 54.87697121455001, "acc": 0.1}, "常识判断|法律常识": {"hit": 14, "all": 80, "difficulty": {"5": {"hit": 6, "all": 35, "acc": 0.17142857142857143}, "6": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "7": {"hit": 5, "all": 16, "acc": 0.3125}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 42.31029945337126, "acc": 0.175}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.2}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 53.975357187650005, "acc": 0.1}, "常识判断|法律常识|宪法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.2}, "常识判断|经济常识": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.16666666666666666}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 134, "all": 485, "difficulty": {"5": {"hit": 27, "all": 116, "acc": 0.23275862068965517}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 54, "all": 132, "acc": 0.4090909090909091}, "4": {"hit": 22, "all": 68, "acc": 0.3235294117647059}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.27628865979381445}, "数量关系|数学运算": {"hit": 134, "all": 485, "difficulty": {"5": {"hit": 27, "all": 116, "acc": 0.23275862068965517}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 54, "all": 132, "acc": 0.4090909090909091}, "4": {"hit": 22, "all": 68, "acc": 0.3235294117647059}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.27628865979381445}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.16666666666666666}, "数量关系|数学运算|最值问题": {"hit": 21, "all": 65, "difficulty": {"5": {"hit": 6, "all": 16, "acc": 0.375}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.3230769230769231}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 9, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.2647058823529412}, "常识判断|法律常识|行政法": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.0}, "常识判断|法律常识|其他法律法规": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.3}, "常识判断|政治常识": {"hit": 7, "all": 21, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.3333333333333333}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 7, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "6": {"hit": 5, "all": 10, "acc": 0.5}}, "human_acc": 38.245969273603045, "acc": 0.21212121212121213}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.2}, "数量关系|数学运算|排列组合问题": {"hit": 24, "all": 74, "difficulty": {"6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 9, "all": 36, "acc": 0.25}}, "human_acc": 33.405759431517595, "acc": 0.32432432432432434}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 1, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.07142857142857142}, "言语理解与表达": {"hit": 552, "all": 2295, "difficulty": {"5": {"hit": 107, "all": 587, "acc": 0.18228279386712096}, "4": {"hit": 197, "all": 707, "acc": 0.27864214992927866}, "3": {"hit": 103, "all": 455, "acc": 0.22637362637362637}, "6": {"hit": 75, "all": 327, "acc": 0.22935779816513763}, "7": {"hit": 70, "all": 219, "acc": 0.319634703196347}}, "human_acc": 66.81637952144999, "acc": 0.24052287581699347}, "言语理解与表达|逻辑填空": {"hit": 393, "all": 1841, "difficulty": {"5": {"hit": 80, "all": 498, "acc": 0.1606425702811245}, "4": {"hit": 125, "all": 513, "acc": 0.24366471734892786}, "3": {"hit": 68, "all": 384, "acc": 0.17708333333333334}, "6": {"hit": 66, "all": 277, "acc": 0.23826714801444043}, "7": {"hit": 54, "all": 169, "acc": 0.31952662721893493}}, "human_acc": 66.44656371118516, "acc": 0.21347093970668116}, "言语理解与表达|逻辑填空|实词填空": {"hit": 25, "all": 151, "difficulty": {"5": {"hit": 6, "all": 49, "acc": 0.12244897959183673}, "4": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 3, "all": 26, "acc": 0.11538461538461539}, "6": {"hit": 3, "all": 24, "acc": 0.125}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.16556291390728478}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 129, "all": 622, "difficulty": {"5": {"hit": 22, "all": 163, "acc": 0.13496932515337423}, "4": {"hit": 43, "all": 172, "acc": 0.25}, "3": {"hit": 22, "all": 131, "acc": 0.16793893129770993}, "7": {"hit": 16, "all": 60, "acc": 0.26666666666666666}, "6": {"hit": 26, "all": 96, "acc": 0.2708333333333333}}, "human_acc": 66.76874610652267, "acc": 0.20739549839228297}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 25, "all": 143, "difficulty": {"5": {"hit": 4, "all": 43, "acc": 0.09302325581395349}, "4": {"hit": 10, "all": 42, "acc": 0.23809523809523808}, "3": {"hit": 4, "all": 25, "acc": 0.16}, "6": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 66.64745600073147, "acc": 0.17482517482517482}, "数量关系|数学运算|几何问题|立体几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.25}, "数量关系|数学运算|和差倍比问题": {"hit": 4, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.2}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析": {"hit": 169, "all": 771, "difficulty": {"5": {"hit": 36, "all": 201, "acc": 0.1791044776119403}, "4": {"hit": 54, "all": 217, "acc": 0.2488479262672811}, "3": {"hit": 30, "all": 167, "acc": 0.17964071856287425}, "6": {"hit": 24, "all": 116, "acc": 0.20689655172413793}, "7": {"hit": 25, "all": 70, "acc": 0.35714285714285715}}, "human_acc": 66.4145264015949, "acc": 0.2191958495460441}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 37, "all": 165, "difficulty": {"5": {"hit": 7, "all": 45, "acc": 0.15555555555555556}, "4": {"hit": 10, "all": 44, "acc": 0.22727272727272727}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 7, "all": 27, "acc": 0.25925925925925924}, "3": {"hit": 6, "all": 32, "acc": 0.1875}}, "human_acc": 65.38103981607519, "acc": 0.22424242424242424}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 26.693831188929995, "acc": 0.4}, "言语理解与表达|逻辑填空|成语填空": {"hit": 39, "all": 145, "difficulty": {"4": {"hit": 11, "all": 43, "acc": 0.2558139534883721}, "5": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "3": {"hit": 7, "all": 31, "acc": 0.22580645161290322}, "6": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 69.23037595903519, "acc": 0.2689655172413793}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 8, "all": 18, "difficulty": {"7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.4444444444444444}, "数量关系|数学运算|不定方程问题": {"hit": 9, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.34615384615384615}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 30, "all": 135, "difficulty": {"4": {"hit": 9, "all": 38, "acc": 0.23684210526315788}, "3": {"hit": 6, "all": 36, "acc": 0.16666666666666666}, "5": {"hit": 7, "all": 32, "acc": 0.21875}, "6": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 67.2510308321489, "acc": 0.2222222222222222}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 47, "all": 203, "difficulty": {"4": {"hit": 17, "all": 56, "acc": 0.30357142857142855}, "5": {"hit": 8, "all": 49, "acc": 0.16326530612244897}, "3": {"hit": 9, "all": 51, "acc": 0.17647058823529413}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 7, "all": 25, "acc": 0.28}}, "human_acc": 67.67567808645465, "acc": 0.2315270935960591}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 49, "all": 212, "difficulty": {"4": {"hit": 17, "all": 63, "acc": 0.2698412698412698}, "5": {"hit": 7, "all": 43, "acc": 0.16279069767441862}, "3": {"hit": 11, "all": 51, "acc": 0.21568627450980393}, "6": {"hit": 7, "all": 32, "acc": 0.21875}, "7": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 67.16383399377828, "acc": 0.23113207547169812}, "常识判断|法律常识|民事诉讼法": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.1}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 29, "all": 137, "difficulty": {"5": {"hit": 5, "all": 36, "acc": 0.1388888888888889}, "3": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "4": {"hit": 7, "all": 35, "acc": 0.2}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 65.9299610739475, "acc": 0.2116788321167883}, "常识判断|法律常识|劳动法": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.1}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.4}, "数量关系|数学运算|最值问题|构造数列": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.52370384819999, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 11, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.2682926829268293}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 63, "all": 174, "difficulty": {"5": {"hit": 32, "all": 78, "acc": 0.41025641025641024}, "4": {"hit": 16, "all": 40, "acc": 0.4}, "3": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.3620689655172414}, "判断推理|逻辑判断|翻译推理": {"hit": 17, "all": 40, "difficulty": {"5": {"hit": 9, "all": 18, "acc": 0.5}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.425}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.5}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 30, "all": 151, "difficulty": {"4": {"hit": 11, "all": 42, "acc": 0.2619047619047619}, "5": {"hit": 9, "all": 41, "acc": 0.21951219512195122}, "6": {"hit": 2, "all": 22, "acc": 0.09090909090909091}, "3": {"hit": 3, "all": 29, "acc": 0.10344827586206896}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}}, "human_acc": 64.30090962542516, "acc": 0.1986754966887417}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.2}, "数量关系|数学运算|经济利润问题": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.09090909090909091}, "数量关系|数学运算|行程问题": {"hit": 16, "all": 65, "difficulty": {"4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 9, "all": 21, "acc": 0.42857142857142855}, "5": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "7": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.22168221813383, "acc": 0.24615384615384617}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 28, "all": 139, "difficulty": {"5": {"hit": 5, "all": 35, "acc": 0.14285714285714285}, "4": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 3, "all": 27, "acc": 0.1111111111111111}}, "human_acc": 66.39573058612521, "acc": 0.2014388489208633}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 32.67128810771, "acc": 0.5}, "判断推理|定义判断": {"hit": 25, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 15, "all": 38, "acc": 0.39473684210526316}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 6, "all": 16, "acc": 0.375}}, "human_acc": 74.80628203606001, "acc": 0.3125}, "判断推理|定义判断|单定义": {"hit": 22, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 3, "all": 15, "acc": 0.2}, "5": {"hit": 13, "all": 33, "acc": 0.3939393939393939}, "3": {"hit": 6, "all": 16, "acc": 0.375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.3142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.3}, "数量关系|数学运算|概率问题": {"hit": 12, "all": 41, "difficulty": {"7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.2926829268292683}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 8, "all": 21, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.38095238095238093}, "数量关系|数学运算|行程问题|普通行程": {"hit": 4, "all": 13, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.3076923076923077}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.4}, "数量关系|数学运算|行程问题|平均速度": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.3}, "判断推理|定义判断|单定义|原因结果": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.1}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.18181818181818182}, "判断推理|定义判断|单定义|主客体": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 23, "all": 108, "difficulty": {"5": {"hit": 6, "all": 40, "acc": 0.15}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "6": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.21296296296296297}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 4, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.5}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.88811485691, "acc": 0.0}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 31, "all": 152, "difficulty": {"5": {"hit": 7, "all": 46, "acc": 0.15217391304347827}, "4": {"hit": 7, "all": 42, "acc": 0.16666666666666666}, "3": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "7": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 65.94677786230925, "acc": 0.20394736842105263}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.09090909090909091}, "言语理解与表达|阅读理解": {"hit": 134, "all": 359, "difficulty": {"4": {"hit": 64, "all": 154, "acc": 0.4155844155844156}, "5": {"hit": 20, "all": 69, "acc": 0.2898550724637681}, "6": {"hit": 5, "all": 39, "acc": 0.1282051282051282}, "3": {"hit": 32, "all": 54, "acc": 0.5925925925925926}, "7": {"hit": 13, "all": 43, "acc": 0.3023255813953488}}, "human_acc": 68.55487799855013, "acc": 0.3732590529247911}, "言语理解与表达|阅读理解|词句理解题": {"hit": 9, "all": 20, "difficulty": {"4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.45}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.87169104351999, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 17, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.25757575757575757}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.2727272727272727}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题": {"hit": 120, "all": 319, "difficulty": {"5": {"hit": 15, "all": 58, "acc": 0.25862068965517243}, "6": {"hit": 5, "all": 33, "acc": 0.15151515151515152}, "3": {"hit": 30, "all": 49, "acc": 0.6122448979591837}, "4": {"hit": 58, "all": 140, "acc": 0.4142857142857143}, "7": {"hit": 12, "all": 39, "acc": 0.3076923076923077}}, "human_acc": 68.63568244351346, "acc": 0.3761755485893417}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 18, "all": 48, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 9, "all": 23, "acc": 0.391304347826087}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 70.08123149284167, "acc": 0.375}, "言语理解与表达|阅读理解|细节判断题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.2}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 8, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 63.99639746408, "acc": 0.32}, "判断推理|逻辑判断|加强题型": {"hit": 18, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 13, "all": 26, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.375}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.7}, "言语理解与表达|语句表达": {"hit": 25, "all": 95, "difficulty": {"5": {"hit": 7, "all": 20, "acc": 0.35}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 8, "all": 40, "acc": 0.2}, "3": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}}, "human_acc": 67.41332639953578, "acc": 0.2631578947368421}, "言语理解与表达|语句表达|语句填空题": {"hit": 5, "all": 30, "difficulty": {"5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.16666666666666666}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.2}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 14, "all": 30, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.4666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 16, "all": 38, "difficulty": {"3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 72.18852298403947, "acc": 0.42105263157894735}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 15, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.375}, "言语理解与表达|语句表达|接语选择题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.6}, "判断推理|定义判断|多定义": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|定义判断|多定义|常规问法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 14, "all": 31, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}}, "human_acc": 63.04056480034193, "acc": 0.45161290322580644}, "判断推理|逻辑判断|原因解释": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.6}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 8, "all": 28, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.2857142857142857}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.2}, "判断推理|逻辑判断|组合排列-材料": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.78145644953, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 7, "all": 29, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.2413793103448276}, "言语理解与表达|语句表达|语句排序题": {"hit": 14, "all": 55, "difficulty": {"4": {"hit": 4, "all": 29, "acc": 0.13793103448275862}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 74.78757039704001, "acc": 0.2545454545454545}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 5, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.4166666666666667}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.15384615384615385}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 4, "all": 22, "difficulty": {"3": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.18181818181818182}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.2}, "言语理解与表达|阅读理解|标题填入题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 53.00512973501001, "acc": 0.3}, "资料分析": {"hit": 133, "all": 496, "difficulty": {"6": {"hit": 19, "all": 82, "acc": 0.23170731707317074}, "3": {"hit": 20, "all": 37, "acc": 0.5405405405405406}, "5": {"hit": 52, "all": 155, "acc": 0.33548387096774196}, "4": {"hit": 40, "all": 184, "acc": 0.21739130434782608}, "7": {"hit": 0, "all": 34, "acc": 0.0}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.26814516129032256}, "资料分析|基期与现期": {"hit": 19, "all": 57, "difficulty": {"6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "5": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "4": {"hit": 9, "all": 30, "acc": 0.3}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期计算": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.3}, "资料分析|文字资料": {"hit": 63, "all": 237, "difficulty": {"6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 25, "all": 75, "acc": 0.3333333333333333}, "4": {"hit": 20, "all": 88, "acc": 0.22727272727272727}, "7": {"hit": 0, "all": 16, "acc": 0.0}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.26582278481012656}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.1}, "资料分析|简单计算": {"hit": 10, "all": 30, "difficulty": {"3": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3333333333333333}, "资料分析|简单计算|直接找数": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.4}, "资料分析|简单计算|简单加减计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.3}, "资料分析|增长率": {"hit": 9, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.28125}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 6, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.1875}, "资料分析|比重问题|现期比重": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.2}, "资料分析|增长量": {"hit": 6, "all": 26, "difficulty": {"4": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.23076923076923078}, "资料分析|增长量|增长量计算": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.2}, "资料分析|平均数问题": {"hit": 10, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.25}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.5}, "资料分析|倍数与比值相关": {"hit": 7, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.22580645161290322}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.6}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.2}, "资料分析|增长率|混合增长率": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.3}, "资料分析|增长量|增长量比较": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.1}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.3}, "资料分析|倍数与比值相关|基期倍数": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.1}, "资料分析|平均数问题|基期平均数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.4}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.2}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.1}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 4, "all": 7, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.5714285714285714}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.7282913837, "acc": 1.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.6901408451, "acc": 0.0}} \ No newline at end of file diff --git a/results/202309/details/Llama-13B/difficulty_result.json b/results/202309/details/Llama-13B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4e76daba83119bb5f0486152d084f0c16baf3bd2 --- /dev/null +++ b/results/202309/details/Llama-13B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.2703619909502262, "hit": 478, "all": 1768}, "3": {"hit": 59, "all": 193, "acc": 0.30569948186528495}, "4": {"hit": 133, "all": 470, "acc": 0.28297872340425534}, "5": {"hit": 149, "all": 561, "acc": 0.26559714795008915}, "6": {"hit": 84, "all": 306, "acc": 0.27450980392156865}, "7": {"hit": 52, "all": 236, "acc": 0.22033898305084745}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/Llama-7B/acc_result.json b/results/202309/details/Llama-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..817e8234facbe34646deb3e41316c37f59083829 --- /dev/null +++ b/results/202309/details/Llama-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.24660633484162897, "wrong_value": 0.17011976658954142, "human_acc": 0.6055938546977998, "hit": 436, "total": 1768, "wrong_hit": 556, "wrong_total": 1332, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "E", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "BCD", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "C", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "B", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "C", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "C", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "C", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "BCD", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "BCD", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "BCD", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "BCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "E", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "BCD", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "BCD", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "BCD", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "E", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "BCD", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "C", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "E", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "E", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Llama-7B/category_result-all.json b/results/202309/details/Llama-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..0f0912ba964453fccebe2805dd46f3652916b4fe --- /dev/null +++ b/results/202309/details/Llama-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 966, "all": 3862, "difficulty": {"3": {"hit": 156, "all": 546, "acc": 0.2857142857142857}, "4": {"hit": 296, "all": 1078, "acc": 0.274582560296846}, "5": {"hit": 261, "all": 1102, "acc": 0.23684210526315788}, "6": {"hit": 178, "all": 647, "acc": 0.2751159196290572}, "7": {"hit": 75, "all": 485, "acc": 0.15463917525773196}, "2": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 62.54492157609842, "acc": 0.2501294665976178}, "判断推理": {"hit": 84, "all": 350, "difficulty": {"3": {"hit": 8, "all": 41, "acc": 0.1951219512195122}, "4": {"hit": 22, "all": 77, "acc": 0.2857142857142857}, "5": {"hit": 34, "all": 155, "acc": 0.21935483870967742}, "6": {"hit": 19, "all": 55, "acc": 0.34545454545454546}, "7": {"hit": 1, "all": 22, "acc": 0.045454545454545456}}, "human_acc": 67.0821947146088, "acc": 0.24}, "判断推理|类比推理": {"hit": 18, "all": 96, "difficulty": {"3": {"hit": 0, "all": 12, "acc": 0.0}, "4": {"hit": 4, "all": 20, "acc": 0.2}, "5": {"hit": 4, "all": 39, "acc": 0.10256410256410256}, "6": {"hit": 10, "all": 22, "acc": 0.45454545454545453}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.1875}, "判断推理|类比推理|逻辑关系": {"hit": 13, "all": 52, "difficulty": {"3": {"hit": 0, "all": 10, "acc": 0.0}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.25}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.36363636363636365}, "判断推理|类比推理|语义关系": {"hit": 2, "all": 30, "difficulty": {"5": {"hit": 0, "all": 18, "acc": 0.0}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 67.00170566224, "acc": 0.06666666666666667}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.0}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.0}, "判断推理|类比推理|拆分思维": {"hit": 3, "all": 14, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.21428571428571427}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 56.33420313286, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 45, "all": 226, "difficulty": {"5": {"hit": 19, "all": 87, "acc": 0.21839080459770116}, "7": {"hit": 8, "all": 48, "acc": 0.16666666666666666}, "6": {"hit": 9, "all": 50, "acc": 0.18}, "4": {"hit": 9, "all": 38, "acc": 0.23684210526315788}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 46.34274676514825, "acc": 0.19911504424778761}, "常识判断|人文常识": {"hit": 11, "all": 42, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.2619047619047619}, "常识判断|人文常识|文化常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.2}, "常识判断|人文常识|文学常识": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.2}, "常识判断|人文常识|中国历史": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.2}, "常识判断|科技常识": {"hit": 5, "all": 50, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 0, "all": 14, "acc": 0.0}, "4": {"hit": 0, "all": 9, "acc": 0.0}}, "human_acc": 51.632498263487996, "acc": 0.1}, "常识判断|科技常识|科技理论与成就": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.2}, "常识判断|地理国情": {"hit": 6, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.2857142857142857}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.0}, "常识判断|科技常识|生物常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 49.046366131910005, "acc": 0.2}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 20, "all": 80, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 42.31029945337126, "acc": 0.25}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.0}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.4}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.08333333333333333}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.0}, "数量关系": {"hit": 103, "all": 485, "difficulty": {"5": {"hit": 21, "all": 116, "acc": 0.1810344827586207}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 39, "all": 132, "acc": 0.29545454545454547}, "4": {"hit": 24, "all": 68, "acc": 0.35294117647058826}, "7": {"hit": 18, "all": 160, "acc": 0.1125}}, "human_acc": 40.061365720053836, "acc": 0.21237113402061855}, "数量关系|数学运算": {"hit": 103, "all": 485, "difficulty": {"5": {"hit": 21, "all": 116, "acc": 0.1810344827586207}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 39, "all": 132, "acc": 0.29545454545454547}, "4": {"hit": 24, "all": 68, "acc": 0.35294117647058826}, "7": {"hit": 18, "all": 160, "acc": 0.1125}}, "human_acc": 40.061365720053836, "acc": 0.21237113402061855}, "数量关系|数学运算|几何问题": {"hit": 2, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.08333333333333333}, "数量关系|数学运算|几何问题|平面几何": {"hit": 0, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.0}, "数量关系|数学运算|最值问题": {"hit": 14, "all": 65, "difficulty": {"5": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 16, "acc": 0.125}}, "human_acc": 41.27603456994616, "acc": 0.2153846153846154}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 9, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 40.35697170282646, "acc": 0.2647058823529412}, "常识判断|法律常识|行政法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.3}, "常识判断|法律常识|其他法律法规": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 41.25920562352999, "acc": 0.1}, "常识判断|政治常识": {"hit": 2, "all": 21, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 37.802677258790474, "acc": 0.09523809523809523}, "常识判断|政治常识|时政": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.1}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.347386177160004, "acc": 0.1}, "数量关系|数学运算|周期问题": {"hit": 8, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 5, "all": 10, "acc": 0.5}}, "human_acc": 38.245969273603045, "acc": 0.24242424242424243}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.0}, "数量关系|数学运算|排列组合问题": {"hit": 14, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 2, "all": 36, "acc": 0.05555555555555555}}, "human_acc": 33.405759431517595, "acc": 0.1891891891891892}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 615, "all": 2295, "difficulty": {"5": {"hit": 147, "all": 587, "acc": 0.2504258943781942}, "4": {"hit": 191, "all": 707, "acc": 0.27015558698727016}, "3": {"hit": 134, "all": 455, "acc": 0.2945054945054945}, "6": {"hit": 96, "all": 327, "acc": 0.29357798165137616}, "7": {"hit": 47, "all": 219, "acc": 0.2146118721461187}}, "human_acc": 66.81637952144999, "acc": 0.2679738562091503}, "言语理解与表达|逻辑填空": {"hit": 462, "all": 1841, "difficulty": {"5": {"hit": 127, "all": 498, "acc": 0.25502008032128515}, "4": {"hit": 120, "all": 513, "acc": 0.23391812865497075}, "3": {"hit": 97, "all": 384, "acc": 0.2526041666666667}, "6": {"hit": 83, "all": 277, "acc": 0.2996389891696751}, "7": {"hit": 35, "all": 169, "acc": 0.20710059171597633}}, "human_acc": 66.44656371118516, "acc": 0.2509505703422053}, "言语理解与表达|逻辑填空|实词填空": {"hit": 35, "all": 151, "difficulty": {"5": {"hit": 9, "all": 49, "acc": 0.1836734693877551}, "4": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "3": {"hit": 4, "all": 26, "acc": 0.15384615384615385}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}}, "human_acc": 63.11290800843907, "acc": 0.23178807947019867}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 163, "all": 622, "difficulty": {"5": {"hit": 52, "all": 163, "acc": 0.31901840490797545}, "4": {"hit": 37, "all": 172, "acc": 0.21511627906976744}, "3": {"hit": 33, "all": 131, "acc": 0.25190839694656486}, "7": {"hit": 14, "all": 60, "acc": 0.23333333333333334}, "6": {"hit": 27, "all": 96, "acc": 0.28125}}, "human_acc": 66.76874610652267, "acc": 0.2620578778135048}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 39, "all": 143, "difficulty": {"5": {"hit": 18, "all": 43, "acc": 0.4186046511627907}, "4": {"hit": 9, "all": 42, "acc": 0.21428571428571427}, "3": {"hit": 4, "all": 25, "acc": 0.16}, "6": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 66.64745600073147, "acc": 0.2727272727272727}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 4, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.2}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析": {"hit": 186, "all": 771, "difficulty": {"5": {"hit": 42, "all": 201, "acc": 0.208955223880597}, "4": {"hit": 52, "all": 217, "acc": 0.23963133640552994}, "3": {"hit": 42, "all": 167, "acc": 0.25149700598802394}, "6": {"hit": 37, "all": 116, "acc": 0.31896551724137934}, "7": {"hit": 13, "all": 70, "acc": 0.18571428571428572}}, "human_acc": 66.4145264015949, "acc": 0.24124513618677043}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 46, "all": 165, "difficulty": {"5": {"hit": 10, "all": 45, "acc": 0.2222222222222222}, "4": {"hit": 12, "all": 44, "acc": 0.2727272727272727}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 10, "all": 32, "acc": 0.3125}}, "human_acc": 65.38103981607519, "acc": 0.2787878787878788}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 38, "all": 145, "difficulty": {"4": {"hit": 9, "all": 43, "acc": 0.20930232558139536}, "5": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 11, "all": 31, "acc": 0.3548387096774194}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 69.23037595903519, "acc": 0.2620689655172414}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 8, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.3076923076923077}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 33, "all": 135, "difficulty": {"4": {"hit": 10, "all": 38, "acc": 0.2631578947368421}, "3": {"hit": 8, "all": 36, "acc": 0.2222222222222222}, "5": {"hit": 7, "all": 32, "acc": 0.21875}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 67.2510308321489, "acc": 0.24444444444444444}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 54, "all": 203, "difficulty": {"4": {"hit": 11, "all": 56, "acc": 0.19642857142857142}, "5": {"hit": 14, "all": 49, "acc": 0.2857142857142857}, "3": {"hit": 15, "all": 51, "acc": 0.29411764705882354}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 8, "all": 25, "acc": 0.32}}, "human_acc": 67.67567808645465, "acc": 0.2660098522167488}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 45, "all": 212, "difficulty": {"4": {"hit": 12, "all": 63, "acc": 0.19047619047619047}, "5": {"hit": 8, "all": 43, "acc": 0.18604651162790697}, "3": {"hit": 13, "all": 51, "acc": 0.2549019607843137}, "6": {"hit": 9, "all": 32, "acc": 0.28125}, "7": {"hit": 3, "all": 23, "acc": 0.13043478260869565}}, "human_acc": 67.16383399377828, "acc": 0.21226415094339623}, "常识判断|法律常识|民事诉讼法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.2}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.2}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 37, "all": 137, "difficulty": {"5": {"hit": 12, "all": 36, "acc": 0.3333333333333333}, "3": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "4": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "6": {"hit": 7, "all": 24, "acc": 0.2916666666666667}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 65.9299610739475, "acc": 0.27007299270072993}, "常识判断|法律常识|劳动法": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 51.41524415364002, "acc": 0.4}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 1, "all": 11, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.2}, "数量关系|数学运算|容斥原理问题": {"hit": 4, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.2}, "数量关系|数学运算|工程问题": {"hit": 16, "all": 41, "difficulty": {"6": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3902439024390244}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 46, "all": 174, "difficulty": {"5": {"hit": 19, "all": 78, "acc": 0.24358974358974358}, "4": {"hit": 14, "all": 40, "acc": 0.35}, "3": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.26436781609195403}, "判断推理|逻辑判断|翻译推理": {"hit": 6, "all": 40, "difficulty": {"5": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.15}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 38, "all": 151, "difficulty": {"4": {"hit": 10, "all": 42, "acc": 0.23809523809523808}, "5": {"hit": 10, "all": 41, "acc": 0.24390243902439024}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "3": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}}, "human_acc": 64.30090962542516, "acc": 0.25165562913907286}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题": {"hit": 10, "all": 65, "difficulty": {"4": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 3, "all": 21, "acc": 0.14285714285714285}, "5": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.15384615384615385}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.4}, "数量关系|数学运算|统筹规划问题": {"hit": 6, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.35294117647058826}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 33, "all": 139, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "4": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "7": {"hit": 0, "all": 10, "acc": 0.0}, "6": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "3": {"hit": 9, "all": 27, "acc": 0.3333333333333333}}, "human_acc": 66.39573058612521, "acc": 0.23741007194244604}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 32.67128810771, "acc": 0.2}, "判断推理|定义判断": {"hit": 20, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 11, "all": 38, "acc": 0.2894736842105263}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 4, "all": 16, "acc": 0.25}}, "human_acc": 74.80628203606001, "acc": 0.25}, "判断推理|定义判断|单定义": {"hit": 17, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "5": {"hit": 9, "all": 33, "acc": 0.2727272727272727}, "3": {"hit": 4, "all": 16, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.24285714285714285}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.3}, "数量关系|数学运算|概率问题": {"hit": 5, "all": 41, "difficulty": {"7": {"hit": 1, "all": 17, "acc": 0.058823529411764705}, "5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 33.07907322403902, "acc": 0.12195121951219512}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 4, "all": 21, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.19047619047619047}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.4}, "数量关系|数学运算|行程问题|平均速度": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.0}, "判断推理|定义判断|单定义|原因结果": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 81.04459294875, "acc": 0.1}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 1, "all": 11, "difficulty": {"6": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.09090909090909091}, "判断推理|定义判断|单定义|主客体": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 24, "all": 108, "difficulty": {"5": {"hit": 7, "all": 40, "acc": 0.175}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "6": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 4, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 40, "all": 152, "difficulty": {"5": {"hit": 16, "all": 46, "acc": 0.34782608695652173}, "4": {"hit": 10, "all": 42, "acc": 0.23809523809523808}, "3": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "7": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 5, "all": 23, "acc": 0.21739130434782608}}, "human_acc": 65.94677786230925, "acc": 0.2631578947368421}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.45454545454545453}, "言语理解与表达|阅读理解": {"hit": 126, "all": 359, "difficulty": {"4": {"hit": 63, "all": 154, "acc": 0.4090909090909091}, "5": {"hit": 16, "all": 69, "acc": 0.2318840579710145}, "6": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 24, "all": 54, "acc": 0.4444444444444444}, "7": {"hit": 10, "all": 43, "acc": 0.23255813953488372}}, "human_acc": 68.55487799855013, "acc": 0.35097493036211697}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.87169104351999, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.0}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.2}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.0}, "判断推理|逻辑判断|削弱题型": {"hit": 17, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.25757575757575757}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.09090909090909091}, "数量关系|数学运算|行程问题|流水行船": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.09090909090909091}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题": {"hit": 113, "all": 319, "difficulty": {"5": {"hit": 13, "all": 58, "acc": 0.22413793103448276}, "6": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 22, "all": 49, "acc": 0.4489795918367347}, "4": {"hit": 58, "all": 140, "acc": 0.4142857142857143}, "7": {"hit": 10, "all": 39, "acc": 0.2564102564102564}}, "human_acc": 68.63568244351346, "acc": 0.3542319749216301}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 21, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 11, "all": 23, "acc": 0.4782608695652174}, "3": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.4375}, "言语理解与表达|阅读理解|细节判断题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.3}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 12, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 63.99639746408, "acc": 0.48}, "判断推理|逻辑判断|加强题型": {"hit": 12, "all": 48, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 9, "all": 26, "acc": 0.34615384615384615}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.25}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.4}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 62.78980569171999, "acc": 0.0}, "言语理解与表达|语句表达": {"hit": 27, "all": 95, "difficulty": {"5": {"hit": 4, "all": 20, "acc": 0.2}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 8, "all": 40, "acc": 0.2}, "3": {"hit": 13, "all": 17, "acc": 0.7647058823529411}, "6": {"hit": 0, "all": 11, "acc": 0.0}}, "human_acc": 67.41332639953578, "acc": 0.28421052631578947}, "言语理解与表达|语句表达|语句填空题": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 55.56949742254332, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.1}, "判断推理|定义判断|单定义|大前提": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.1}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 7, "all": 30, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 74.24320108609, "acc": 0.23333333333333334}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 12, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 72.18852298403947, "acc": 0.3157894736842105}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 11, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "3": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.275}, "言语理解与表达|语句表达|接语选择题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.3}, "判断推理|定义判断|多定义": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|定义判断|多定义|常规问法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 9, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.4090909090909091}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 11, "all": 31, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}}, "human_acc": 63.04056480034193, "acc": 0.3548387096774194}, "判断推理|逻辑判断|原因解释": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.6}, "判断推理|定义判断|单定义|故事类": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 9, "all": 28, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.32142857142857145}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.1}, "判断推理|逻辑判断|组合排列-材料": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.78145644953, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 13, "all": 29, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 9, "all": 15, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.4482758620689655}, "言语理解与表达|语句表达|语句排序题": {"hit": 18, "all": 55, "difficulty": {"4": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "3": {"hit": 11, "all": 14, "acc": 0.7857142857142857}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.32727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 7, "all": 22, "difficulty": {"3": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.3181818181818182}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.2}, "资料分析": {"hit": 117, "all": 496, "difficulty": {"6": {"hit": 15, "all": 82, "acc": 0.18292682926829268}, "3": {"hit": 13, "all": 37, "acc": 0.35135135135135137}, "5": {"hit": 40, "all": 155, "acc": 0.25806451612903225}, "4": {"hit": 49, "all": 184, "acc": 0.266304347826087}, "7": {"hit": 0, "all": 34, "acc": 0.0}, "2": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 69.07169919470341, "acc": 0.23588709677419356}, "资料分析|基期与现期": {"hit": 14, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.24561403508771928}, "资料分析|基期与现期|基期计算": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 8, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.0}, "资料分析|文字资料": {"hit": 55, "all": 237, "difficulty": {"6": {"hit": 6, "all": 39, "acc": 0.15384615384615385}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "5": {"hit": 19, "all": 75, "acc": 0.25333333333333335}, "4": {"hit": 24, "all": 88, "acc": 0.2727272727272727}, "7": {"hit": 0, "all": 16, "acc": 0.0}, "2": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.12763865158183, "acc": 0.2320675105485232}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 4, "all": 30, "difficulty": {"3": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 82.90393719697998, "acc": 0.13333333333333333}, "资料分析|简单计算|直接找数": {"hit": 0, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 84.61737291947, "acc": 0.0}, "资料分析|简单计算|简单加减计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.3}, "资料分析|增长率": {"hit": 9, "all": 32, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.71806505801563, "acc": 0.28125}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 9, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.28125}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 5, "all": 26, "difficulty": {"4": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.19230769230769232}, "资料分析|增长量|增长量计算": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.2}, "资料分析|平均数问题": {"hit": 11, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.275}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.5}, "资料分析|倍数与比值相关": {"hit": 6, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.1935483870967742}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.1}, "资料分析|增长量|增长量比较": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.1}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.1}, "资料分析|平均数问题|基期平均数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.4}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.5}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Llama-7B/difficulty_result.json b/results/202309/details/Llama-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b22e3f013df92529b8c2c8b9a5f22de3d423589d --- /dev/null +++ b/results/202309/details/Llama-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.24660633484162897, "hit": 436, "all": 1768}, "3": {"hit": 55, "all": 193, "acc": 0.2849740932642487}, "4": {"hit": 136, "all": 470, "acc": 0.28936170212765955}, "5": {"hit": 136, "all": 561, "acc": 0.24242424242424243}, "6": {"hit": 76, "all": 306, "acc": 0.24836601307189543}, "7": {"hit": 33, "all": 236, "acc": 0.13983050847457626}, "2": {"hit": 0, "all": 2, "acc": 0.0}} \ No newline at end of file diff --git a/results/202309/details/Llama2-13B/acc_result.json b/results/202309/details/Llama2-13B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1fa80d472123357bc5a93a8ade89ad235395c6e2 --- /dev/null +++ b/results/202309/details/Llama2-13B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.3020361990950226, "wrong_value": 0.16568297301999596, "human_acc": 0.6055938546977998, "hit": 534, "total": 1768, "wrong_hit": 479, "wrong_total": 1234, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "E", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "F", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "ABD", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D##", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "CD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "D", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "G", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "E", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "D", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "G", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "D", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Llama2-13B/category_result-all.json b/results/202309/details/Llama2-13B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..04207b86e06ca2463b8c6e1f63277a06b24c1738 --- /dev/null +++ b/results/202309/details/Llama2-13B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1175, "all": 3862, "difficulty": {"3": {"hit": 183, "all": 546, "acc": 0.33516483516483514}, "4": {"hit": 380, "all": 1078, "acc": 0.3525046382189239}, "5": {"hit": 318, "all": 1102, "acc": 0.2885662431941924}, "6": {"hit": 193, "all": 647, "acc": 0.2982998454404946}, "7": {"hit": 99, "all": 485, "acc": 0.20412371134020618}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.3042465044018643}, "判断推理": {"hit": 108, "all": 350, "difficulty": {"3": {"hit": 15, "all": 41, "acc": 0.36585365853658536}, "4": {"hit": 30, "all": 77, "acc": 0.38961038961038963}, "5": {"hit": 49, "all": 155, "acc": 0.3161290322580645}, "6": {"hit": 11, "all": 55, "acc": 0.2}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.30857142857142855}, "判断推理|类比推理": {"hit": 23, "all": 96, "difficulty": {"3": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "4": {"hit": 6, "all": 20, "acc": 0.3}, "5": {"hit": 7, "all": 39, "acc": 0.1794871794871795}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.23958333333333334}, "判断推理|类比推理|逻辑关系": {"hit": 12, "all": 52, "difficulty": {"3": {"hit": 3, "all": 10, "acc": 0.3}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 15, "acc": 0.13333333333333333}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.23076923076923078}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.18181818181818182}, "判断推理|类比推理|语义关系": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 67.00170566224, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 50, "all": 226, "difficulty": {"5": {"hit": 18, "all": 87, "acc": 0.20689655172413793}, "7": {"hit": 8, "all": 48, "acc": 0.16666666666666666}, "6": {"hit": 10, "all": 50, "acc": 0.2}, "4": {"hit": 13, "all": 38, "acc": 0.34210526315789475}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 46.34274676514825, "acc": 0.22123893805309736}, "常识判断|人文常识": {"hit": 10, "all": 42, "difficulty": {"5": {"hit": 4, "all": 20, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 12, "acc": 0.25}, "4": {"hit": 2, "all": 8, "acc": 0.25}}, "human_acc": 53.66391099976427, "acc": 0.23809523809523808}, "常识判断|人文常识|文化常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.4}, "常识判断|人文常识|文学常识": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 58.752282007969995, "acc": 0.2}, "常识判断|人文常识|中国历史": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.1}, "常识判断|科技常识": {"hit": 8, "all": 50, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.16}, "常识判断|科技常识|科技理论与成就": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.2}, "常识判断|地理国情": {"hit": 6, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.2857142857142857}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.2}, "常识判断|科技常识|生物常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 49.046366131910005, "acc": 0.1}, "常识判断|地理国情|国情社情": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.5}, "常识判断|法律常识": {"hit": 19, "all": 80, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "6": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 42.31029945337126, "acc": 0.2375}, "常识判断|法律常识|刑法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.5}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.1}, "常识判断|法律常识|民法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.3}, "常识判断|人文常识|世界历史": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.3}, "常识判断|法律常识|宪法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.401631275, "acc": 0.2}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 128, "all": 485, "difficulty": {"5": {"hit": 35, "all": 116, "acc": 0.3017241379310345}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 41, "all": 132, "acc": 0.3106060606060606}, "4": {"hit": 22, "all": 68, "acc": 0.3235294117647059}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.2639175257731959}, "数量关系|数学运算": {"hit": 128, "all": 485, "difficulty": {"5": {"hit": 35, "all": 116, "acc": 0.3017241379310345}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 41, "all": 132, "acc": 0.3106060606060606}, "4": {"hit": 22, "all": 68, "acc": 0.3235294117647059}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.2639175257731959}, "数量关系|数学运算|几何问题": {"hit": 7, "all": 24, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 39.76032017807084, "acc": 0.2916666666666667}, "数量关系|数学运算|几何问题|平面几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.133635875575, "acc": 0.3333333333333333}, "数量关系|数学运算|最值问题": {"hit": 19, "all": 65, "difficulty": {"5": {"hit": 6, "all": 16, "acc": 0.375}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.2923076923076923}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 9, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 40.35697170282646, "acc": 0.2647058823529412}, "常识判断|法律常识|行政法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.1}, "常识判断|法律常识|其他法律法规": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.4}, "常识判断|政治常识": {"hit": 4, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 37.802677258790474, "acc": 0.19047619047619047}, "常识判断|政治常识|时政": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.3}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.347386177160004, "acc": 0.1}, "数量关系|数学运算|周期问题": {"hit": 11, "all": 33, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.3333333333333333}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.0}, "数量关系|数学运算|排列组合问题": {"hit": 18, "all": 74, "difficulty": {"6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 5, "all": 36, "acc": 0.1388888888888889}}, "human_acc": 33.405759431517595, "acc": 0.24324324324324326}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 4, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.2857142857142857}, "言语理解与表达": {"hit": 774, "all": 2295, "difficulty": {"5": {"hit": 170, "all": 587, "acc": 0.28960817717206133}, "4": {"hit": 265, "all": 707, "acc": 0.37482319660537483}, "3": {"hit": 159, "all": 455, "acc": 0.34945054945054943}, "6": {"hit": 121, "all": 327, "acc": 0.37003058103975534}, "7": {"hit": 59, "all": 219, "acc": 0.2694063926940639}}, "human_acc": 66.81637952144999, "acc": 0.33725490196078434}, "言语理解与表达|逻辑填空": {"hit": 544, "all": 1841, "difficulty": {"5": {"hit": 126, "all": 498, "acc": 0.25301204819277107}, "4": {"hit": 152, "all": 513, "acc": 0.2962962962962963}, "3": {"hit": 111, "all": 384, "acc": 0.2890625}, "6": {"hit": 107, "all": 277, "acc": 0.3862815884476534}, "7": {"hit": 48, "all": 169, "acc": 0.28402366863905326}}, "human_acc": 66.44656371118516, "acc": 0.29549158066268333}, "言语理解与表达|逻辑填空|实词填空": {"hit": 43, "all": 151, "difficulty": {"5": {"hit": 12, "all": 49, "acc": 0.24489795918367346}, "4": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 8, "all": 26, "acc": 0.3076923076923077}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}}, "human_acc": 63.11290800843907, "acc": 0.2847682119205298}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 173, "all": 622, "difficulty": {"5": {"hit": 40, "all": 163, "acc": 0.24539877300613497}, "4": {"hit": 51, "all": 172, "acc": 0.29651162790697677}, "3": {"hit": 35, "all": 131, "acc": 0.26717557251908397}, "7": {"hit": 12, "all": 60, "acc": 0.2}, "6": {"hit": 35, "all": 96, "acc": 0.3645833333333333}}, "human_acc": 66.76874610652267, "acc": 0.27813504823151125}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 48, "all": 143, "difficulty": {"5": {"hit": 13, "all": 43, "acc": 0.3023255813953488}, "4": {"hit": 15, "all": 42, "acc": 0.35714285714285715}, "3": {"hit": 6, "all": 25, "acc": 0.24}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 66.64745600073147, "acc": 0.3356643356643357}, "数量关系|数学运算|几何问题|立体几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.25}, "数量关系|数学运算|和差倍比问题": {"hit": 6, "all": 20, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 51.365180902629994, "acc": 0.3}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析": {"hit": 232, "all": 771, "difficulty": {"5": {"hit": 51, "all": 201, "acc": 0.2537313432835821}, "4": {"hit": 62, "all": 217, "acc": 0.2857142857142857}, "3": {"hit": 49, "all": 167, "acc": 0.2934131736526946}, "6": {"hit": 46, "all": 116, "acc": 0.39655172413793105}, "7": {"hit": 24, "all": 70, "acc": 0.34285714285714286}}, "human_acc": 66.4145264015949, "acc": 0.3009079118028534}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 52, "all": 165, "difficulty": {"5": {"hit": 13, "all": 45, "acc": 0.28888888888888886}, "4": {"hit": 12, "all": 44, "acc": 0.2727272727272727}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 13, "all": 27, "acc": 0.48148148148148145}, "3": {"hit": 9, "all": 32, "acc": 0.28125}}, "human_acc": 65.38103981607519, "acc": 0.3151515151515151}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 48, "all": 145, "difficulty": {"4": {"hit": 10, "all": 43, "acc": 0.23255813953488372}, "5": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 14, "all": 31, "acc": 0.45161290322580644}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 69.23037595903519, "acc": 0.3310344827586207}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 3, "all": 18, "difficulty": {"7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.16666666666666666}, "数量关系|数学运算|不定方程问题": {"hit": 5, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.19230769230769232}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 2, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.13333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 43, "all": 135, "difficulty": {"4": {"hit": 10, "all": 38, "acc": 0.2631578947368421}, "3": {"hit": 13, "all": 36, "acc": 0.3611111111111111}, "5": {"hit": 7, "all": 32, "acc": 0.21875}, "6": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 5, "all": 10, "acc": 0.5}}, "human_acc": 67.2510308321489, "acc": 0.31851851851851853}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 54, "all": 203, "difficulty": {"4": {"hit": 16, "all": 56, "acc": 0.2857142857142857}, "5": {"hit": 12, "all": 49, "acc": 0.24489795918367346}, "3": {"hit": 14, "all": 51, "acc": 0.27450980392156865}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "6": {"hit": 8, "all": 25, "acc": 0.32}}, "human_acc": 67.67567808645465, "acc": 0.2660098522167488}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 67, "all": 212, "difficulty": {"4": {"hit": 18, "all": 63, "acc": 0.2857142857142857}, "5": {"hit": 12, "all": 43, "acc": 0.27906976744186046}, "3": {"hit": 17, "all": 51, "acc": 0.3333333333333333}, "6": {"hit": 11, "all": 32, "acc": 0.34375}, "7": {"hit": 9, "all": 23, "acc": 0.391304347826087}}, "human_acc": 67.16383399377828, "acc": 0.3160377358490566}, "常识判断|法律常识|民事诉讼法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 37.81514019971, "acc": 0.2}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 37, "all": 137, "difficulty": {"5": {"hit": 5, "all": 36, "acc": 0.1388888888888889}, "3": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "4": {"hit": 11, "all": 35, "acc": 0.3142857142857143}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 65.9299610739475, "acc": 0.27007299270072993}, "常识判断|法律常识|劳动法": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.2}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.52370384819999, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 4, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 14, "all": 41, "difficulty": {"6": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.34146341463414637}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 55, "all": 174, "difficulty": {"5": {"hit": 29, "all": 78, "acc": 0.3717948717948718}, "4": {"hit": 19, "all": 40, "acc": 0.475}, "3": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 4, "all": 28, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.3160919540229885}, "判断推理|逻辑判断|翻译推理": {"hit": 11, "all": 40, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.275}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.2}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 33, "all": 151, "difficulty": {"4": {"hit": 14, "all": 42, "acc": 0.3333333333333333}, "5": {"hit": 6, "all": 41, "acc": 0.14634146341463414}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "3": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}}, "human_acc": 64.30090962542516, "acc": 0.2185430463576159}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 45.9671414727, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题": {"hit": 19, "all": 65, "difficulty": {"4": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 6, "all": 12, "acc": 0.5}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.2923076923076923}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.76722241438, "acc": 0.4}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 34, "all": 139, "difficulty": {"5": {"hit": 10, "all": 35, "acc": 0.2857142857142857}, "4": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "7": {"hit": 0, "all": 10, "acc": 0.0}, "6": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "3": {"hit": 5, "all": 27, "acc": 0.18518518518518517}}, "human_acc": 66.39573058612521, "acc": 0.2446043165467626}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 30, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 13, "all": 38, "acc": 0.34210526315789475}, "7": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 8, "all": 16, "acc": 0.5}}, "human_acc": 74.80628203606001, "acc": 0.375}, "判断推理|定义判断|单定义": {"hit": 25, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "5": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 8, "all": 16, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.35714285714285715}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.4}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 7, "all": 21, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.3333333333333333}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.3}, "数量关系|数学运算|行程问题|平均速度": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.1}, "判断推理|定义判断|单定义|原因结果": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.2}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.36363636363636365}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 37, "all": 108, "difficulty": {"5": {"hit": 13, "all": 40, "acc": 0.325}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "6": {"hit": 9, "all": 16, "acc": 0.5625}, "3": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.3425925925925926}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 3, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 48, "all": 152, "difficulty": {"5": {"hit": 13, "all": 46, "acc": 0.2826086956521739}, "4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "3": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.3157894736842105}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.45454545454545453}, "言语理解与表达|阅读理解": {"hit": 202, "all": 359, "difficulty": {"4": {"hit": 99, "all": 154, "acc": 0.6428571428571429}, "5": {"hit": 36, "all": 69, "acc": 0.5217391304347826}, "6": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 48, "all": 54, "acc": 0.8888888888888888}, "7": {"hit": 9, "all": 43, "acc": 0.20930232558139536}}, "human_acc": 68.55487799855013, "acc": 0.5626740947075209}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.1}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.4}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 18, "all": 66, "difficulty": {"4": {"hit": 10, "all": 14, "acc": 0.7142857142857143}, "6": {"hit": 1, "all": 10, "acc": 0.1}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.2727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题": {"hit": 182, "all": 319, "difficulty": {"5": {"hit": 30, "all": 58, "acc": 0.5172413793103449}, "6": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 44, "all": 49, "acc": 0.8979591836734694}, "4": {"hit": 89, "all": 140, "acc": 0.6357142857142857}, "7": {"hit": 9, "all": 39, "acc": 0.23076923076923078}}, "human_acc": 68.63568244351346, "acc": 0.5705329153605015}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 27, "all": 48, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 15, "all": 23, "acc": 0.6521739130434783}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.5625}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 13, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.52}, "判断推理|逻辑判断|加强题型": {"hit": 24, "all": 48, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 16, "all": 26, "acc": 0.6153846153846154}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.5}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.4}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 62.78980569171999, "acc": 0.7}, "言语理解与表达|语句表达": {"hit": 28, "all": 95, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 14, "all": 40, "acc": 0.35}, "3": {"hit": 0, "all": 17, "acc": 0.0}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}}, "human_acc": 67.41332639953578, "acc": 0.29473684210526313}, "言语理解与表达|语句表达|语句填空题": {"hit": 7, "all": 30, "difficulty": {"5": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.23333333333333334}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.4}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.4}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 13, "all": 17, "acc": 0.7647058823529411}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 21, "all": 40, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 66.77662401733, "acc": 0.525}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 16, "all": 22, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.7272727272727273}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 18, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}}, "human_acc": 63.04056480034193, "acc": 0.5806451612903226}, "判断推理|逻辑判断|原因解释": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.2}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 10, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.35714285714285715}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.58474381049999, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.1}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 18, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 10, "all": 15, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.6206896551724138}, "言语理解与表达|语句表达|语句排序题": {"hit": 16, "all": 55, "difficulty": {"4": {"hit": 10, "all": 29, "acc": 0.3448275862068966}, "3": {"hit": 0, "all": 14, "acc": 0.0}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 74.78757039704001, "acc": 0.2909090909090909}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 4, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.3333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.15384615384615385}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 15, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 9, "all": 12, "acc": 0.75}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6818181818181818}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.0}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 112, "all": 496, "difficulty": {"6": {"hit": 10, "all": 82, "acc": 0.12195121951219512}, "3": {"hit": 7, "all": 37, "acc": 0.1891891891891892}, "5": {"hit": 46, "all": 155, "acc": 0.2967741935483871}, "4": {"hit": 47, "all": 184, "acc": 0.2554347826086957}, "7": {"hit": 0, "all": 34, "acc": 0.0}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.22580645161290322}, "资料分析|基期与现期": {"hit": 11, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 5, "all": 30, "acc": 0.16666666666666666}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.19298245614035087}, "资料分析|基期与现期|基期计算": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 8, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.0}, "资料分析|文字资料": {"hit": 54, "all": 237, "difficulty": {"6": {"hit": 5, "all": 39, "acc": 0.1282051282051282}, "3": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 22, "all": 75, "acc": 0.29333333333333333}, "4": {"hit": 23, "all": 88, "acc": 0.26136363636363635}, "7": {"hit": 0, "all": 16, "acc": 0.0}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.22784810126582278}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 5, "all": 5, "difficulty": {"5": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.34466161420001, "acc": 1.0}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 10, "all": 30, "difficulty": {"3": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3333333333333333}, "资料分析|简单计算|直接找数": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.5}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 5, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.15625}, "资料分析|增长率|一般增长率": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.0}, "资料分析|比重问题": {"hit": 7, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.21875}, "资料分析|比重问题|现期比重": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.2}, "资料分析|增长量": {"hit": 3, "all": 26, "difficulty": {"4": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.11538461538461539}, "资料分析|增长量|增长量计算": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.1}, "资料分析|平均数问题": {"hit": 10, "all": 40, "difficulty": {"4": {"hit": 6, "all": 15, "acc": 0.4}, "6": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.25}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.0}, "资料分析|倍数与比值相关": {"hit": 6, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.1935483870967742}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.4}, "资料分析|综合分析": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.5}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.2}, "资料分析|增长率|混合增长率": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.5}, "资料分析|增长量|增长量比较": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 71.35157502931, "acc": 0.1}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.0}, "资料分析|倍数与比值相关|基期倍数": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.0}, "资料分析|平均数问题|基期平均数": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.6}, "资料分析|简单计算|排序类": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.4}, "资料分析|平均数问题|平均数的增长率": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.0}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Llama2-13B/difficulty_result.json b/results/202309/details/Llama2-13B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..209b55943b76233f786e6aa62c36b81a4c78e6c9 --- /dev/null +++ b/results/202309/details/Llama2-13B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.3020361990950226, "hit": 534, "all": 1768}, "3": {"hit": 70, "all": 193, "acc": 0.3626943005181347}, "4": {"hit": 174, "all": 470, "acc": 0.3702127659574468}, "5": {"hit": 165, "all": 561, "acc": 0.29411764705882354}, "6": {"hit": 83, "all": 306, "acc": 0.27124183006535946}, "7": {"hit": 41, "all": 236, "acc": 0.17372881355932204}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/Llama2-7B/acc_result.json b/results/202309/details/Llama2-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f9510ddf31012d03a0768c11686e2942bc6b7624 --- /dev/null +++ b/results/202309/details/Llama2-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.2743212669683258, "wrong_value": 0.15837782728709907, "human_acc": 0.6055938546977998, "hit": 485, "total": 1768, "wrong_hit": 489, "wrong_total": 1283, "detail": [{"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "E", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "E", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "ABD", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "D##", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "D", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "A", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "D##", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "A", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "D", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "C", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "G", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "E", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "D", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "C", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "G", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Llama2-7B/category_result-all.json b/results/202309/details/Llama2-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..f552c8214523fdf163fbcc212ace07a989a9731c --- /dev/null +++ b/results/202309/details/Llama2-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1064, "all": 3862, "difficulty": {"3": {"hit": 155, "all": 546, "acc": 0.2838827838827839}, "4": {"hit": 333, "all": 1078, "acc": 0.30890538033395176}, "5": {"hit": 285, "all": 1102, "acc": 0.25862068965517243}, "6": {"hit": 191, "all": 647, "acc": 0.29520865533230295}, "7": {"hit": 98, "all": 485, "acc": 0.2020618556701031}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.27550491973070945}, "判断推理": {"hit": 96, "all": 350, "difficulty": {"3": {"hit": 15, "all": 41, "acc": 0.36585365853658536}, "4": {"hit": 22, "all": 77, "acc": 0.2857142857142857}, "5": {"hit": 44, "all": 155, "acc": 0.2838709677419355}, "6": {"hit": 9, "all": 55, "acc": 0.16363636363636364}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.2742857142857143}, "判断推理|类比推理": {"hit": 25, "all": 96, "difficulty": {"3": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 20, "acc": 0.1}, "5": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "6": {"hit": 2, "all": 22, "acc": 0.09090909090909091}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.82436428905626, "acc": 0.2604166666666667}, "判断推理|类比推理|逻辑关系": {"hit": 15, "all": 52, "difficulty": {"3": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 1, "all": 13, "acc": 0.07692307692307693}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.80522117180384, "acc": 0.28846153846153844}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 5, "all": 30, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.16666666666666666}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.1}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 5, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.45454545454545453}, "常识判断": {"hit": 50, "all": 226, "difficulty": {"5": {"hit": 18, "all": 87, "acc": 0.20689655172413793}, "7": {"hit": 9, "all": 48, "acc": 0.1875}, "6": {"hit": 10, "all": 50, "acc": 0.2}, "4": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 46.34274676514825, "acc": 0.22123893805309736}, "常识判断|人文常识": {"hit": 12, "all": 42, "difficulty": {"5": {"hit": 7, "all": 20, "acc": 0.35}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 12, "acc": 0.25}, "4": {"hit": 2, "all": 8, "acc": 0.25}}, "human_acc": 53.66391099976427, "acc": 0.2857142857142857}, "常识判断|人文常识|文化常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.3}, "常识判断|人文常识|文学常识": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 58.752282007969995, "acc": 0.2}, "常识判断|人文常识|中国历史": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.3}, "常识判断|科技常识": {"hit": 13, "all": 50, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.26}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 6, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.2857142857142857}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 49.661417476859995, "acc": 0.4}, "常识判断|科技常识|生物常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.2}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 13, "all": 80, "difficulty": {"5": {"hit": 3, "all": 35, "acc": 0.08571428571428572}, "6": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 42.31029945337126, "acc": 0.1625}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.2}, "常识判断|法律常识|民法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.35864705227, "acc": 0.2}, "常识判断|人文常识|世界历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.4}, "常识判断|法律常识|宪法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.2}, "常识判断|经济常识": {"hit": 0, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.0}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.0}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.4}, "数量关系": {"hit": 131, "all": 485, "difficulty": {"5": {"hit": 34, "all": 116, "acc": 0.29310344827586204}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 46, "all": 132, "acc": 0.3484848484848485}, "4": {"hit": 21, "all": 68, "acc": 0.3088235294117647}, "7": {"hit": 28, "all": 160, "acc": 0.175}}, "human_acc": 40.061365720053836, "acc": 0.27010309278350514}, "数量关系|数学运算": {"hit": 131, "all": 485, "difficulty": {"5": {"hit": 34, "all": 116, "acc": 0.29310344827586204}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 46, "all": 132, "acc": 0.3484848484848485}, "4": {"hit": 21, "all": 68, "acc": 0.3088235294117647}, "7": {"hit": 28, "all": 160, "acc": 0.175}}, "human_acc": 40.061365720053836, "acc": 0.27010309278350514}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 17, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.26153846153846155}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 11, "all": 34, "difficulty": {"5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.3235294117647059}, "常识判断|法律常识|行政法": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.0}, "常识判断|法律常识|其他法律法规": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.3}, "常识判断|政治常识": {"hit": 6, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 37.802677258790474, "acc": 0.2857142857142857}, "常识判断|政治常识|时政": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.3}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 8, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 38.245969273603045, "acc": 0.24242424242424243}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 2, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 35.81940208507692, "acc": 0.15384615384615385}, "常识判断|法律常识|经济法": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.1}, "数量关系|数学运算|排列组合问题": {"hit": 21, "all": 74, "difficulty": {"6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 7, "all": 36, "acc": 0.19444444444444445}}, "human_acc": 33.405759431517595, "acc": 0.28378378378378377}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 5, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.35714285714285715}, "言语理解与表达": {"hit": 649, "all": 2295, "difficulty": {"5": {"hit": 142, "all": 587, "acc": 0.24190800681431004}, "4": {"hit": 227, "all": 707, "acc": 0.32107496463932106}, "3": {"hit": 125, "all": 455, "acc": 0.27472527472527475}, "6": {"hit": 103, "all": 327, "acc": 0.3149847094801223}, "7": {"hit": 52, "all": 219, "acc": 0.2374429223744292}}, "human_acc": 66.81637952144999, "acc": 0.28278867102396515}, "言语理解与表达|逻辑填空": {"hit": 488, "all": 1841, "difficulty": {"5": {"hit": 112, "all": 498, "acc": 0.2248995983935743}, "4": {"hit": 152, "all": 513, "acc": 0.2962962962962963}, "3": {"hit": 90, "all": 384, "acc": 0.234375}, "6": {"hit": 90, "all": 277, "acc": 0.3249097472924188}, "7": {"hit": 44, "all": 169, "acc": 0.2603550295857988}}, "human_acc": 66.44656371118516, "acc": 0.265073329712113}, "言语理解与表达|逻辑填空|实词填空": {"hit": 36, "all": 151, "difficulty": {"5": {"hit": 12, "all": 49, "acc": 0.24489795918367346}, "4": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 5, "all": 26, "acc": 0.19230769230769232}, "6": {"hit": 4, "all": 24, "acc": 0.16666666666666666}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.23841059602649006}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 173, "all": 622, "difficulty": {"5": {"hit": 30, "all": 163, "acc": 0.18404907975460122}, "4": {"hit": 60, "all": 172, "acc": 0.3488372093023256}, "3": {"hit": 33, "all": 131, "acc": 0.25190839694656486}, "7": {"hit": 12, "all": 60, "acc": 0.2}, "6": {"hit": 38, "all": 96, "acc": 0.3958333333333333}}, "human_acc": 66.76874610652267, "acc": 0.27813504823151125}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 35, "all": 143, "difficulty": {"5": {"hit": 5, "all": 43, "acc": 0.11627906976744186}, "4": {"hit": 11, "all": 42, "acc": 0.2619047619047619}, "3": {"hit": 8, "all": 25, "acc": 0.32}, "6": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 66.64745600073147, "acc": 0.24475524475524477}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析": {"hit": 196, "all": 771, "difficulty": {"5": {"hit": 53, "all": 201, "acc": 0.263681592039801}, "4": {"hit": 56, "all": 217, "acc": 0.25806451612903225}, "3": {"hit": 36, "all": 167, "acc": 0.2155688622754491}, "6": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "7": {"hit": 21, "all": 70, "acc": 0.3}}, "human_acc": 66.4145264015949, "acc": 0.25421530479896237}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 45, "all": 165, "difficulty": {"5": {"hit": 13, "all": 45, "acc": 0.28888888888888886}, "4": {"hit": 10, "all": 44, "acc": 0.22727272727272727}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 9, "all": 27, "acc": 0.3333333333333333}, "3": {"hit": 7, "all": 32, "acc": 0.21875}}, "human_acc": 65.38103981607519, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 47, "all": 145, "difficulty": {"4": {"hit": 14, "all": 43, "acc": 0.32558139534883723}, "5": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 11, "all": 31, "acc": 0.3548387096774194}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.32413793103448274}, "数量关系|数学运算|数学运算-其他": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.1}, "数量关系|数学运算|数列问题": {"hit": 7, "all": 18, "difficulty": {"7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.3888888888888889}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 34, "all": 135, "difficulty": {"4": {"hit": 8, "all": 38, "acc": 0.21052631578947367}, "3": {"hit": 8, "all": 36, "acc": 0.2222222222222222}, "5": {"hit": 10, "all": 32, "acc": 0.3125}, "6": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 67.2510308321489, "acc": 0.2518518518518518}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 60, "all": 203, "difficulty": {"4": {"hit": 21, "all": 56, "acc": 0.375}, "5": {"hit": 12, "all": 49, "acc": 0.24489795918367346}, "3": {"hit": 14, "all": 51, "acc": 0.27450980392156865}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "6": {"hit": 9, "all": 25, "acc": 0.36}}, "human_acc": 67.67567808645465, "acc": 0.2955665024630542}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 61, "all": 212, "difficulty": {"4": {"hit": 22, "all": 63, "acc": 0.3492063492063492}, "5": {"hit": 9, "all": 43, "acc": 0.20930232558139536}, "3": {"hit": 14, "all": 51, "acc": 0.27450980392156865}, "6": {"hit": 9, "all": 32, "acc": 0.28125}, "7": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 67.16383399377828, "acc": 0.28773584905660377}, "常识判断|法律常识|民事诉讼法": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 37.81514019971, "acc": 0.0}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 43.75836103538, "acc": 0.5}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 39, "all": 137, "difficulty": {"5": {"hit": 5, "all": 36, "acc": 0.1388888888888889}, "3": {"hit": 7, "all": 28, "acc": 0.25}, "4": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 65.9299610739475, "acc": 0.2846715328467153}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.4}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 32.85243511338, "acc": 0.4}, "数量关系|数学运算|工程问题": {"hit": 16, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 5, "all": 10, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3902439024390244}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 42.448790404570005, "acc": 0.6}, "判断推理|逻辑判断": {"hit": 40, "all": 174, "difficulty": {"5": {"hit": 22, "all": 78, "acc": 0.28205128205128205}, "4": {"hit": 11, "all": 40, "acc": 0.275}, "3": {"hit": 0, "all": 13, "acc": 0.0}, "6": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.22988505747126436}, "判断推理|逻辑判断|翻译推理": {"hit": 8, "all": 40, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.2}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 27, "all": 151, "difficulty": {"4": {"hit": 9, "all": 42, "acc": 0.21428571428571427}, "5": {"hit": 8, "all": 41, "acc": 0.1951219512195122}, "6": {"hit": 3, "all": 22, "acc": 0.13636363636363635}, "3": {"hit": 4, "all": 29, "acc": 0.13793103448275862}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}}, "human_acc": 64.30090962542516, "acc": 0.17880794701986755}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.2}, "数量关系|数学运算|经济利润问题": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题": {"hit": 17, "all": 65, "difficulty": {"4": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 8, "all": 21, "acc": 0.38095238095238093}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.26153846153846155}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 3, "all": 17, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.17647058823529413}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 39, "all": 139, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "4": {"hit": 15, "all": 39, "acc": 0.38461538461538464}, "7": {"hit": 1, "all": 10, "acc": 0.1}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "3": {"hit": 4, "all": 27, "acc": 0.14814814814814814}}, "human_acc": 66.39573058612521, "acc": 0.2805755395683453}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.67128810771, "acc": 0.3}, "判断推理|定义判断": {"hit": 31, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "7": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.3875}, "判断推理|定义判断|单定义": {"hit": 25, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 9, "all": 33, "acc": 0.2727272727272727}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.35714285714285715}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.4}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.4}, "数量关系|数学运算|行程问题|平均速度": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.1}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.36363636363636365}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 29, "all": 108, "difficulty": {"5": {"hit": 13, "all": 40, "acc": 0.325}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "6": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 3, "all": 19, "acc": 0.15789473684210525}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.26851851851851855}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 3, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.1}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 36, "all": 152, "difficulty": {"5": {"hit": 9, "all": 46, "acc": 0.1956521739130435}, "4": {"hit": 11, "all": 42, "acc": 0.2619047619047619}, "3": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "7": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 9, "all": 23, "acc": 0.391304347826087}}, "human_acc": 65.94677786230925, "acc": 0.23684210526315788}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解": {"hit": 133, "all": 359, "difficulty": {"4": {"hit": 66, "all": 154, "acc": 0.42857142857142855}, "5": {"hit": 26, "all": 69, "acc": 0.37681159420289856}, "6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 27, "all": 54, "acc": 0.5}, "7": {"hit": 6, "all": 43, "acc": 0.13953488372093023}}, "human_acc": 68.55487799855013, "acc": 0.37047353760445684}, "言语理解与表达|阅读理解|词句理解题": {"hit": 7, "all": 20, "difficulty": {"4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.35}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.49700996277002, "acc": 0.3}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 15, "all": 66, "difficulty": {"4": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.22727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题": {"hit": 116, "all": 319, "difficulty": {"5": {"hit": 19, "all": 58, "acc": 0.3275862068965517}, "6": {"hit": 7, "all": 33, "acc": 0.21212121212121213}, "3": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "4": {"hit": 60, "all": 140, "acc": 0.42857142857142855}, "7": {"hit": 6, "all": 39, "acc": 0.15384615384615385}}, "human_acc": 68.63568244351346, "acc": 0.36363636363636365}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 18, "all": 48, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 10, "all": 23, "acc": 0.43478260869565216}, "3": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 70.08123149284167, "acc": 0.375}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 9, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.36}, "判断推理|逻辑判断|加强题型": {"hit": 13, "all": 48, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 9, "all": 26, "acc": 0.34615384615384615}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.2708333333333333}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.2}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 28, "all": 95, "difficulty": {"5": {"hit": 4, "all": 20, "acc": 0.2}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 9, "all": 40, "acc": 0.225}, "3": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}}, "human_acc": 67.41332639953578, "acc": 0.29473684210526313}, "言语理解与表达|语句表达|语句填空题": {"hit": 5, "all": 30, "difficulty": {"5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.16666666666666666}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.2}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.1}, "判断推理|定义判断|单定义|大前提": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.2}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 10, "all": 30, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.3333333333333333}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 14, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.3684210526315789}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 13, "all": 40, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "3": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 66.77662401733, "acc": 0.325}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 12, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 64.28934778878182, "acc": 0.5454545454545454}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 10, "all": 31, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}}, "human_acc": 63.04056480034193, "acc": 0.3225806451612903}, "判断推理|逻辑判断|原因解释": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.4}, "判断推理|定义判断|单定义|故事类": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 10, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.35714285714285715}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.2}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 12, "all": 29, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.41379310344827586}, "言语理解与表达|语句表达|语句排序题": {"hit": 18, "all": 55, "difficulty": {"4": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "3": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 74.78757039704001, "acc": 0.32727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 4, "all": 12, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.3333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 83.03719898832999, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.15384615384615385}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 6, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 12, "acc": 0.25}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.2727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.0}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 135, "all": 496, "difficulty": {"6": {"hit": 23, "all": 82, "acc": 0.2804878048780488}, "3": {"hit": 12, "all": 37, "acc": 0.32432432432432434}, "5": {"hit": 47, "all": 155, "acc": 0.3032258064516129}, "4": {"hit": 49, "all": 184, "acc": 0.266304347826087}, "7": {"hit": 2, "all": 34, "acc": 0.058823529411764705}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.2721774193548387}, "资料分析|基期与现期": {"hit": 14, "all": 57, "difficulty": {"6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 6, "all": 30, "acc": 0.2}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.24561403508771928}, "资料分析|基期与现期|基期计算": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 8, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.1}, "资料分析|文字资料": {"hit": 63, "all": 237, "difficulty": {"6": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 22, "all": 75, "acc": 0.29333333333333333}, "4": {"hit": 24, "all": 88, "acc": 0.2727272727272727}, "7": {"hit": 1, "all": 16, "acc": 0.0625}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.26582278481012656}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 3, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.018162254625004, "acc": 0.375}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3}, "资料分析|简单计算|直接找数": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.4}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 9, "all": 32, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.71806505801563, "acc": 0.28125}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 10, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.3125}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 7, "all": 26, "difficulty": {"4": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.2692307692307692}, "资料分析|增长量|增长量计算": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.1}, "资料分析|平均数问题": {"hit": 13, "all": 40, "difficulty": {"4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.02933098769998, "acc": 0.325}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.3}, "资料分析|倍数与比值相关": {"hit": 7, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.22580645161290322}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.3}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.4}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.6}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 0, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.80231180570001, "acc": 0.0}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.6901408451, "acc": 0.0}} \ No newline at end of file diff --git a/results/202309/details/Llama2-7B/difficulty_result.json b/results/202309/details/Llama2-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ec207b6d21118bbe6387f047ddebf796ce473508 --- /dev/null +++ b/results/202309/details/Llama2-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.2743212669683258, "hit": 485, "all": 1768}, "3": {"hit": 58, "all": 193, "acc": 0.3005181347150259}, "4": {"hit": 144, "all": 470, "acc": 0.30638297872340425}, "5": {"hit": 152, "all": 561, "acc": 0.2709447415329768}, "6": {"hit": 86, "all": 306, "acc": 0.28104575163398693}, "7": {"hit": 44, "all": 236, "acc": 0.1864406779661017}, "2": {"hit": 1, "all": 2, "acc": 0.5}} \ No newline at end of file diff --git a/results/202309/details/Moss-7B/acc_result.json b/results/202309/details/Moss-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..88f092c4f03d6f05ba837cdfab04b57fa868c3d6 --- /dev/null +++ b/results/202309/details/Moss-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.2873303167420814, "wrong_value": 0.16589657845760958, "human_acc": 0.6055938546977998, "hit": 508, "total": 1768, "wrong_hit": 523, "wrong_total": 1260, "detail": [{"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "ABCD", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "D", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "B", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "ABD", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "D", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "ABD", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "C", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "C", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "D", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "C", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "C", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "C", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "C", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "A", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "ABCD", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "B", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "C", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "C", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "BCD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "ABCD", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "A", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Moss-7B/category_result-all.json b/results/202309/details/Moss-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..04b96bfceb59cdd32e9de0f9d5135bb957ed5dbb --- /dev/null +++ b/results/202309/details/Moss-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1114, "all": 3862, "difficulty": {"3": {"hit": 175, "all": 546, "acc": 0.32051282051282054}, "4": {"hit": 334, "all": 1078, "acc": 0.3098330241187384}, "5": {"hit": 304, "all": 1102, "acc": 0.27586206896551724}, "6": {"hit": 205, "all": 647, "acc": 0.3168469860896445}, "7": {"hit": 96, "all": 485, "acc": 0.1979381443298969}, "2": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 62.54492157609842, "acc": 0.28845157949249095}, "判断推理": {"hit": 100, "all": 350, "difficulty": {"3": {"hit": 12, "all": 41, "acc": 0.2926829268292683}, "4": {"hit": 24, "all": 77, "acc": 0.3116883116883117}, "5": {"hit": 40, "all": 155, "acc": 0.25806451612903225}, "6": {"hit": 20, "all": 55, "acc": 0.36363636363636365}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.2857142857142857}, "判断推理|类比推理": {"hit": 32, "all": 96, "difficulty": {"3": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 7, "all": 20, "acc": 0.35}, "5": {"hit": 7, "all": 39, "acc": 0.1794871794871795}, "6": {"hit": 11, "all": 22, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.82436428905626, "acc": 0.3333333333333333}, "判断推理|类比推理|逻辑关系": {"hit": 22, "all": 52, "difficulty": {"3": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.80522117180384, "acc": 0.4230769230769231}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.36363636363636365}, "判断推理|类比推理|语义关系": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 67.00170566224, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.0}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 57.19460108329999, "acc": 0.4}, "未分类": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 5, "all": 11, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.45454545454545453}, "常识判断": {"hit": 59, "all": 226, "difficulty": {"5": {"hit": 27, "all": 87, "acc": 0.3103448275862069}, "7": {"hit": 7, "all": 48, "acc": 0.14583333333333334}, "6": {"hit": 13, "all": 50, "acc": 0.26}, "4": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 46.34274676514825, "acc": 0.2610619469026549}, "常识判断|人文常识": {"hit": 13, "all": 42, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 8, "acc": 0.25}}, "human_acc": 53.66391099976427, "acc": 0.30952380952380953}, "常识判断|人文常识|文化常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.3}, "常识判断|人文常识|文学常识": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.2}, "常识判断|人文常识|中国历史": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.2}, "常识判断|科技常识": {"hit": 12, "all": 50, "difficulty": {"7": {"hit": 1, "all": 10, "acc": 0.1}, "5": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.24}, "常识判断|科技常识|科技理论与成就": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.1}, "常识判断|地理国情": {"hit": 7, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 43.98006307271429, "acc": 0.3333333333333333}, "常识判断|地理国情|自然常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 34.48786343879, "acc": 0.3}, "常识判断|科技常识|化学常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.5}, "常识判断|科技常识|生物常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.1}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 20, "all": 80, "difficulty": {"5": {"hit": 11, "all": 35, "acc": 0.3142857142857143}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 42.31029945337126, "acc": 0.25}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.4}, "常识判断|科技常识|生活常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.4}, "常识判断|法律常识|民法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.1}, "常识判断|人文常识|世界历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.6}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.16666666666666666}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.5}, "数量关系": {"hit": 124, "all": 485, "difficulty": {"5": {"hit": 26, "all": 116, "acc": 0.22413793103448276}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 51, "all": 132, "acc": 0.38636363636363635}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 17, "all": 160, "acc": 0.10625}}, "human_acc": 40.061365720053836, "acc": 0.2556701030927835}, "数量关系|数学运算": {"hit": 124, "all": 485, "difficulty": {"5": {"hit": 26, "all": 116, "acc": 0.22413793103448276}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 51, "all": 132, "acc": 0.38636363636363635}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 17, "all": 160, "acc": 0.10625}}, "human_acc": 40.061365720053836, "acc": 0.2556701030927835}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.08333333333333333}, "数量关系|数学运算|最值问题": {"hit": 15, "all": 65, "difficulty": {"5": {"hit": 2, "all": 16, "acc": 0.125}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.23076923076923078}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 9, "all": 34, "difficulty": {"5": {"hit": 0, "all": 10, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 40.35697170282646, "acc": 0.2647058823529412}, "常识判断|法律常识|行政法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.3}, "常识判断|法律常识|其他法律法规": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 41.25920562352999, "acc": 0.3}, "常识判断|政治常识": {"hit": 5, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 37.802677258790474, "acc": 0.23809523809523808}, "常识判断|政治常识|时政": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 34.89429799924999, "acc": 0.0}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.5}, "数量关系|数学运算|周期问题": {"hit": 12, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.36363636363636365}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 4, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.3076923076923077}, "常识判断|法律常识|经济法": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.1}, "数量关系|数学运算|排列组合问题": {"hit": 18, "all": 74, "difficulty": {"6": {"hit": 7, "all": 14, "acc": 0.5}, "4": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 2, "all": 36, "acc": 0.05555555555555555}}, "human_acc": 33.405759431517595, "acc": 0.24324324324324326}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 1, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 28.644400674264286, "acc": 0.07142857142857142}, "言语理解与表达": {"hit": 704, "all": 2295, "difficulty": {"5": {"hit": 172, "all": 587, "acc": 0.293015332197615}, "4": {"hit": 224, "all": 707, "acc": 0.31683168316831684}, "3": {"hit": 135, "all": 455, "acc": 0.2967032967032967}, "6": {"hit": 109, "all": 327, "acc": 0.3333333333333333}, "7": {"hit": 64, "all": 219, "acc": 0.2922374429223744}}, "human_acc": 66.81637952144999, "acc": 0.3067538126361656}, "言语理解与表达|逻辑填空": {"hit": 523, "all": 1841, "difficulty": {"5": {"hit": 140, "all": 498, "acc": 0.28112449799196787}, "4": {"hit": 153, "all": 513, "acc": 0.2982456140350877}, "3": {"hit": 91, "all": 384, "acc": 0.23697916666666666}, "6": {"hit": 91, "all": 277, "acc": 0.3285198555956679}, "7": {"hit": 48, "all": 169, "acc": 0.28402366863905326}}, "human_acc": 66.44656371118516, "acc": 0.28408473655621946}, "言语理解与表达|逻辑填空|实词填空": {"hit": 41, "all": 151, "difficulty": {"5": {"hit": 13, "all": 49, "acc": 0.2653061224489796}, "4": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 26, "acc": 0.15384615384615385}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.271523178807947}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 181, "all": 622, "difficulty": {"5": {"hit": 51, "all": 163, "acc": 0.3128834355828221}, "4": {"hit": 48, "all": 172, "acc": 0.27906976744186046}, "3": {"hit": 30, "all": 131, "acc": 0.22900763358778625}, "7": {"hit": 20, "all": 60, "acc": 0.3333333333333333}, "6": {"hit": 32, "all": 96, "acc": 0.3333333333333333}}, "human_acc": 66.76874610652267, "acc": 0.2909967845659164}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 43, "all": 143, "difficulty": {"5": {"hit": 15, "all": 43, "acc": 0.3488372093023256}, "4": {"hit": 14, "all": 42, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 25, "acc": 0.16}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 66.64745600073147, "acc": 0.3006993006993007}, "数量关系|数学运算|几何问题|立体几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.3333333333333333}, "数量关系|数学运算|和差倍比问题": {"hit": 7, "all": 20, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.35}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析": {"hit": 213, "all": 771, "difficulty": {"5": {"hit": 50, "all": 201, "acc": 0.24875621890547264}, "4": {"hit": 67, "all": 217, "acc": 0.3087557603686636}, "3": {"hit": 40, "all": 167, "acc": 0.23952095808383234}, "6": {"hit": 39, "all": 116, "acc": 0.33620689655172414}, "7": {"hit": 17, "all": 70, "acc": 0.24285714285714285}}, "human_acc": 66.4145264015949, "acc": 0.27626459143968873}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 53, "all": 165, "difficulty": {"5": {"hit": 11, "all": 45, "acc": 0.24444444444444444}, "4": {"hit": 19, "all": 44, "acc": 0.4318181818181818}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 9, "all": 27, "acc": 0.3333333333333333}, "3": {"hit": 10, "all": 32, "acc": 0.3125}}, "human_acc": 65.38103981607519, "acc": 0.3212121212121212}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 26.693831188929995, "acc": 0.3}, "言语理解与表达|逻辑填空|成语填空": {"hit": 40, "all": 145, "difficulty": {"4": {"hit": 10, "all": 43, "acc": 0.23255813953488372}, "5": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 10, "all": 31, "acc": 0.3225806451612903}, "6": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 69.23037595903519, "acc": 0.27586206896551724}, "数量关系|数学运算|数学运算-其他": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.1}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 38, "all": 135, "difficulty": {"4": {"hit": 13, "all": 38, "acc": 0.34210526315789475}, "3": {"hit": 9, "all": 36, "acc": 0.25}, "5": {"hit": 7, "all": 32, "acc": 0.21875}, "6": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 67.2510308321489, "acc": 0.2814814814814815}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 59, "all": 203, "difficulty": {"4": {"hit": 13, "all": 56, "acc": 0.23214285714285715}, "5": {"hit": 14, "all": 49, "acc": 0.2857142857142857}, "3": {"hit": 14, "all": 51, "acc": 0.27450980392156865}, "7": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "6": {"hit": 10, "all": 25, "acc": 0.4}}, "human_acc": 67.67567808645465, "acc": 0.29064039408866993}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 48, "all": 212, "difficulty": {"4": {"hit": 14, "all": 63, "acc": 0.2222222222222222}, "5": {"hit": 9, "all": 43, "acc": 0.20930232558139536}, "3": {"hit": 11, "all": 51, "acc": 0.21568627450980393}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 4, "all": 23, "acc": 0.17391304347826086}}, "human_acc": 67.16383399377828, "acc": 0.22641509433962265}, "常识判断|法律常识|民事诉讼法": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.3}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 40, "all": 137, "difficulty": {"5": {"hit": 11, "all": 36, "acc": 0.3055555555555556}, "3": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "4": {"hit": 10, "all": 35, "acc": 0.2857142857142857}, "6": {"hit": 7, "all": 24, "acc": 0.2916666666666667}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.291970802919708}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.4}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 13, "acc": 0.07692307692307693}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.2}, "数量关系|数学运算|工程问题": {"hit": 12, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.2926829268292683}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.2}, "判断推理|逻辑判断": {"hit": 48, "all": 174, "difficulty": {"5": {"hit": 21, "all": 78, "acc": 0.2692307692307692}, "4": {"hit": 13, "all": 40, "acc": 0.325}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.27586206896551724}, "判断推理|逻辑判断|翻译推理": {"hit": 8, "all": 40, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 43, "all": 151, "difficulty": {"4": {"hit": 10, "all": 42, "acc": 0.23809523809523808}, "5": {"hit": 14, "all": 41, "acc": 0.34146341463414637}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "3": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.2847682119205298}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 15, "all": 65, "difficulty": {"4": {"hit": 6, "all": 12, "acc": 0.5}, "6": {"hit": 4, "all": 21, "acc": 0.19047619047619047}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.23076923076923078}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.4}, "数量关系|数学运算|统筹规划问题": {"hit": 9, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.5294117647058824}, "数量关系|数学运算|年龄问题": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 39, "all": 139, "difficulty": {"5": {"hit": 11, "all": 35, "acc": 0.3142857142857143}, "4": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 6, "all": 27, "acc": 0.2222222222222222}}, "human_acc": 66.39573058612521, "acc": 0.2805755395683453}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 32.67128810771, "acc": 0.2}, "判断推理|定义判断": {"hit": 20, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 16, "acc": 0.125}}, "human_acc": 74.80628203606001, "acc": 0.25}, "判断推理|定义判断|单定义": {"hit": 17, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "5": {"hit": 9, "all": 33, "acc": 0.2727272727272727}, "3": {"hit": 2, "all": 16, "acc": 0.125}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.24285714285714285}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.3}, "数量关系|数学运算|概率问题": {"hit": 8, "all": 41, "difficulty": {"7": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.1951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 5, "all": 21, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.23809523809523808}, "数量关系|数学运算|行程问题|普通行程": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.23392225894615, "acc": 0.38461538461538464}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.4}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.1}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 1, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.09090909090909091}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 31, "all": 108, "difficulty": {"5": {"hit": 9, "all": 40, "acc": 0.225}, "4": {"hit": 11, "all": 30, "acc": 0.36666666666666664}, "6": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.28703703703703703}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 48, "all": 152, "difficulty": {"5": {"hit": 15, "all": 46, "acc": 0.32608695652173914}, "4": {"hit": 15, "all": 42, "acc": 0.35714285714285715}, "3": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 65.94677786230925, "acc": 0.3157894736842105}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解": {"hit": 149, "all": 359, "difficulty": {"4": {"hit": 65, "all": 154, "acc": 0.42207792207792205}, "5": {"hit": 23, "all": 69, "acc": 0.3333333333333333}, "6": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 34, "all": 54, "acc": 0.6296296296296297}, "7": {"hit": 13, "all": 43, "acc": 0.3023255813953488}}, "human_acc": 68.55487799855013, "acc": 0.415041782729805}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.2}, "判断推理|定义判断|单定义|拆词": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.3}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 16, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.24242424242424243}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.09090909090909091}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题": {"hit": 133, "all": 319, "difficulty": {"5": {"hit": 17, "all": 58, "acc": 0.29310344827586204}, "6": {"hit": 13, "all": 33, "acc": 0.3939393939393939}, "3": {"hit": 32, "all": 49, "acc": 0.6530612244897959}, "4": {"hit": 58, "all": 140, "acc": 0.4142857142857143}, "7": {"hit": 13, "all": 39, "acc": 0.3333333333333333}}, "human_acc": 68.63568244351346, "acc": 0.4169278996865204}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 22, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 10, "all": 23, "acc": 0.43478260869565216}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.4583333333333333}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 12, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 63.99639746408, "acc": 0.48}, "判断推理|逻辑判断|加强题型": {"hit": 13, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 8, "all": 26, "acc": 0.3076923076923077}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.2708333333333333}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.5}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 32, "all": 95, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 6, "all": 40, "acc": 0.15}, "3": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}}, "human_acc": 67.41332639953578, "acc": 0.3368421052631579}, "言语理解与表达|语句表达|语句填空题": {"hit": 9, "all": 30, "difficulty": {"5": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.4}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.1}, "判断推理|定义判断|单定义|大前提": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.2}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 14, "all": 30, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 74.24320108609, "acc": 0.4666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 14, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.3684210526315789}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 16, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.4}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|定义判断|多定义|常规问法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 9, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 64.28934778878182, "acc": 0.4090909090909091}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 12, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 6, "all": 13, "acc": 0.46153846153846156}}, "human_acc": 63.04056480034193, "acc": 0.3870967741935484}, "判断推理|逻辑判断|原因解释": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.6}, "判断推理|定义判断|单定义|故事类": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 12, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.42857142857142855}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.58474381049999, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.3}, "判断推理|逻辑判断|组合排列-材料": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.78145644953, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 11, "all": 29, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 6, "all": 15, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.3793103448275862}, "言语理解与表达|语句表达|语句排序题": {"hit": 18, "all": 55, "difficulty": {"4": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "3": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.32727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 5, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.4166666666666667}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 83.03719898832999, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 8, "all": 22, "difficulty": {"3": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 6, "all": 12, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.36363636363636365}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.2}, "言语理解与表达|阅读理解|标题填入题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 53.00512973501001, "acc": 0.3}, "资料分析": {"hit": 122, "all": 496, "difficulty": {"6": {"hit": 12, "all": 82, "acc": 0.14634146341463414}, "3": {"hit": 25, "all": 37, "acc": 0.6756756756756757}, "5": {"hit": 38, "all": 155, "acc": 0.24516129032258063}, "4": {"hit": 43, "all": 184, "acc": 0.23369565217391305}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 69.07169919470341, "acc": 0.24596774193548387}, "资料分析|基期与现期": {"hit": 17, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.2982456140350877}, "资料分析|基期与现期|基期计算": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.1}, "资料分析|文字资料": {"hit": 58, "all": 237, "difficulty": {"6": {"hit": 5, "all": 39, "acc": 0.1282051282051282}, "3": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "5": {"hit": 18, "all": 75, "acc": 0.24}, "4": {"hit": 21, "all": 88, "acc": 0.23863636363636365}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.12763865158183, "acc": 0.24472573839662448}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 3, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.018162254625004, "acc": 0.375}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 1, "all": 5, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.3}, "资料分析|简单计算": {"hit": 8, "all": 30, "difficulty": {"3": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 82.90393719697998, "acc": 0.26666666666666666}, "资料分析|简单计算|直接找数": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 84.61737291947, "acc": 0.2}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.06221757717, "acc": 0.3}, "资料分析|比重问题": {"hit": 8, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.25}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 6, "all": 26, "difficulty": {"4": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.23076923076923078}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 9, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 0, "all": 8, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.225}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 7, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.22580645161290322}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.1}, "资料分析|综合分析": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.2}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.1}, "资料分析|增长量|增长量比较": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 71.35157502931, "acc": 0.0}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.4}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.4}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.2}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.7282913837, "acc": 1.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Moss-7B/difficulty_result.json b/results/202309/details/Moss-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4e5177ed4f916c13adcd2a1865f2b7077133589f --- /dev/null +++ b/results/202309/details/Moss-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"hit": 508, "all": 1768, "acc": 0.2873303167420814}, "3": {"hit": 67, "all": 193, "acc": 0.3471502590673575}, "4": {"hit": 150, "all": 470, "acc": 0.3191489361702128}, "5": {"hit": 162, "all": 561, "acc": 0.2887700534759358}, "6": {"hit": 91, "all": 306, "acc": 0.2973856209150327}, "7": {"hit": 38, "all": 236, "acc": 0.16101694915254236}, "2": {"hit": 0, "all": 2, "acc": 0.0}} \ No newline at end of file diff --git a/results/202309/details/Qwen-7B/acc_result.json b/results/202309/details/Qwen-7B/acc_result.json new file mode 100644 index 0000000000000000000000000000000000000000..551dcc10ec9b8409bedc7e21a627edc99d96648b --- /dev/null +++ b/results/202309/details/Qwen-7B/acc_result.json @@ -0,0 +1 @@ +{"acc": 0.4638009049773756, "wrong_value": 0.21320210491181313, "human_acc": 0.6055938546977998, "hit": 820, "total": 1768, "wrong_hit": 454, "wrong_total": 948, "detail": [{"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.913254521497}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.934205596942}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.42948607025400004}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.764253826113}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.750650287645}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.849076302174}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.428664572987}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.505229853169}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.31334579289000003}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.315691687016}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.40972793737200003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.456461528069}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.458765475445}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5840195644380001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.381171287066}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33372121017600004}, {"answer": "B", "most_wrong": "A", "predict": "ABD", "human_acc": 0.416499584483}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.43870718264499997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.48999848064900003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.666294871203}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.349687226744}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7508750604780001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.312804588659}, {"answer": "C", "most_wrong": "D", "predict": "ACD", "human_acc": 0.443626414625}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.43914029592799997}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.86904957431}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.451785400176}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.298384071779}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.682497945768}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.7884221982190001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.765030494713}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.549294209181}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.626115166261}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.518189373519}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.62418293993}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.445143426267}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.42564733775900004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.637908496732}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.527212032282}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.382596218075}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.458425748187}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7096774193550001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.068902594796}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.21715284353000003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.875514830485}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.407981172294}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846025750776}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.549595723133}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.8357023581640001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.420198134475}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.49738451337199996}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.41610276662300005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.818189659554}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.275550278564}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9076025924450001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.923772828395}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.446527742396}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.23389277760100002}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.506179151754}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7189751622039999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24720454154500002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.500766780701}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.73267987487}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.46146021501600004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.58823725536}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.730064619949}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.509677042972}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.38883932469500004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6798880282}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.343636997121}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.687861099883}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.6623416618250001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.954361467458}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.988573883162}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.90068990097}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.752670023168}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.725090828078}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.652922754019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.44014444433800004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.652426109227}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.46672414272600005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.41680009414200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.26606583072100004}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.440275304133}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8042125590960001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.35624665942100003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.818769877447}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5485811414890001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.688707451702}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.824271097848}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.316396777666}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743814844374}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.806523787892}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.551911578184}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.734510589235}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.6552458056029999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.664557664763}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.086415882968}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8123245857150001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.777860047023}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.45161290322600006}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.935534970212}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.609165990793}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.83596489686}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.784856818219}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.934356552538}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.791353772769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.314393806705}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.536383499967}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.51771732761}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.383470627211}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.793610404297}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.173720661793}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6876884061440001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8760715351589999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9462081128750001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.514158262219}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.19434770961700001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6818270388390001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7484063206870001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.38994033808399997}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.824552219175}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5940614322500001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.350825217328}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.405532348972}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.712313221108}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8654843567010001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593146741581}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.323767548199}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11382113821100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.364268327044}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.11965562096}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.176190177507}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.891983073302}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.643266430786}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7811950231160001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.324573046633}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.396093876888}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8216473128580001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.48829713454100004}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.689054422599}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44553103174599995}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.636608022798}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.851879145173}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8200006361529999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.716420409359}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.594029053451}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8871212458380001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.38356204699800006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.890550239234}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.407174305712}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.568564982589}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.33280084894}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.793608546301}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.547588157775}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9413475604510001}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.258814648154}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.1517985536}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8047235454020001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694615160562}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.872871287129}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8622942217339999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8205968126790001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.71561315599}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.436490407884}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.517123991573}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6817770319500001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.536189193738}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.16959064327499998}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.503086244814}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.50576070901}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.42555935370599995}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.631754450454}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.719946452048}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7048290980730001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7894617144970001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.560469064635}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6128099307830001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.616967283702}, {"answer": "H", "most_wrong": "F", "predict": "D", "human_acc": 0.293364950892}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.16586774695}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.25175480775299997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.529997515788}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.350800279459}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.618698596545}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.926476219652}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.719655514765}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.298405649921}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.555154567397}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.534550204484}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9357238386960001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.734183575682}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.601927390043}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.889599742066}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.715406562054}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9280638029060001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.692170386802}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.3694285218}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.155418525069}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.299793055875}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.461692781132}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6026072945659999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.439898884854}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.389399664653}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.554200989545}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7226893088040001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.583665884427}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.936884930452}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.55801454724}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8298797786919999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.857663083997}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6036745457530001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.13998711393600002}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8981075915660001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.439910685638}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.369781312127}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.60324830709}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.786210188319}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4634043059}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.891072660021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.555762732663}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.905808232596}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6881517493629999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.32894320811100003}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.604510859477}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.561137870523}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.355555049942}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.870899888857}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.520564093058}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.42033847278700004}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.85233832988}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.237146660154}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.584765745868}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.647459074125}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40503174334000003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.876374209517}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.814942652716}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4597143219}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.211216343143}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8426802622}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.523914654978}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.408967493654}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.205199799805}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.469548175906}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.984616456733}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.926317977499}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.599568197699}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9016485293780001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.124791534878}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.376688237802}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.380890520078}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.394984603144}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.459329705771}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.692874657121}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.285040098406}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.749518780661}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.138276122817}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7272111999800001}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.17268009891799999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.46039867381599997}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8517500458130001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.568709824366}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.297406823533}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.500757448241}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.5611230259309999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.565219783475}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.47592345973199995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.526946081651}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.890979035999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.426322930801}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.313987372511}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.08741773132000001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.617308326516}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.540841041901}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.357625243982}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.57800724426}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.789279934588}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.54118300669}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.09365199524199999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.632073921811}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.13570166515}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.19708148697900002}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8835046022820001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.36804037591399996}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.902578596253}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.263729246488}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.578009545388}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.17389112903200002}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.546460606347}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.154385693925}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.590642806542}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.53603175523}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5359002062670001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.469124153167}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.604398516163}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.281056036367}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.673948723753}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.914887617369}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8059866962309999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7705468500160001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.724048458386}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7699562532759999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.472644166397}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.8033624471749999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.934010152284}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.491482989675}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.928991040599}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.320490562964}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.567118327349}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.393757173108}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.790751634993}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.092237199164}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.832542792328}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.458789354172}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.51547298232}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.578761150983}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.306053799893}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.29457103279999997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.25692992294100003}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9617987457830001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6762768440019999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.45537566259499995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.864520175622}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.858166158065}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.570158523901}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8554083906559999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8170989282009999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47967012854700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.269255914312}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.854245970681}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7155987815960001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.193498982228}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5434963579600001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.418813946558}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.730769230769}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.128457897251}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.47450155401000005}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.839708323453}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.710691246771}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.48798533458300003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.9107036247329999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.8545025444350001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.43753594337499996}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.546310109214}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.66475985519}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.647661728946}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.847135986008}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.414554811147}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.440721118591}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.179174011584}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.90432554529}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.970915644416}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.565572380287}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.555291425785}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.427013796173}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.877818188697}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.544042553191}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45579269278300005}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.561520197494}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779176181437}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.906983113333}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.219864578193}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.153210457778}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.367389854849}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.134119409493}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.2579268964}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.734569918023}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.182903729015}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5017493304840001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7130834782850001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.893347485814}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5916305916310001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.410459094076}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24217516152200003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.196765628771}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.271207727032}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.214894863047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.12712888486100002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.39355319342800005}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7678607569320001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.433265870202}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.42930460386900005}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.24754764474200003}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.12914217313}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.275157460454}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.606025363108}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7066992702160001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.621796601025}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5397076473300001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.748103453504}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.461475734525}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6050195490570001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.7862518381820001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.818713755034}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.664637552187}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.32185561339400004}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.22128294380900002}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.487327522489}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843779750918}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.840511966277}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.605294821137}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6964489175849999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.763517429825}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.950684931507}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.6614090431130001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.902485146127}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.909273689025}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.934850273066}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.754325729097}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.622468810869}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.577039716954}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.890428459119}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.911145785616}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.653130881368}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7077966950660001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.883616563888}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8419226846050001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.18178327065600003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.898596894767}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.491688418739}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18716916877700002}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.117827102172}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.547117666736}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.580014114326}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.85973222085}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.797124523568}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.370580811429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8494340828990001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9224979250740001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.546491770073}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5624253470530001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.410323142579}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.87454237839}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.24124727400600002}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.566881100266}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.415736510777}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.787070446563}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9032652145100001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8803459493770001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.785612557825}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.557594271724}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.584375374576}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.87588050123}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.954224020437}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.42064804904200004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.743538119343}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.900758762504}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.362427737521}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.729408931743}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.79052373119}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.872084574881}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.426474461131}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9004144523550001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5033275598129999}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.778964667214}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.594021715621}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.840299056257}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.535795683625}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8644438492490001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.491364047685}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.134341682833}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.947001875668}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.909969923691}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.901831980674}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.41809399896599997}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.19968564509800002}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.790143974529}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.925871636478}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.8700177147920001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.31775170437}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.50670237741}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.45324791023000005}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.8777157605060001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5654839235520001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6716181690749999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.448929105462}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.574480864154}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.7898432325020001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.924848009447}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.18791163598600003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.593262226847}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.46015461740900004}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.842259836777}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.469976467016}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.619864230098}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.374822320225}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.144033471944}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.378646264182}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.117528555976}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8769251645289999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.898862994576}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.943243417211}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.085292280827}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.254748643501}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.442467843445}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.765594880978}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6384041317820001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8172164728600001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.918989681195}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.583996518403}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.406905224202}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.848073040119}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.500216927582}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731504140403}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.47094412871}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.580515927301}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.874424255612}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.22562500278600003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.156427378965}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.492811689842}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830303030303}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.801080344739}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.524870109084}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.613690181177}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.896636373133}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.44263810755599997}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9070016034210001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.356579423286}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.7136180708809999}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.899430740038}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.112487100103}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6446693881429999}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6092531553980001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.6446266057760001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8420186263489999}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.628182792047}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.41512897281800004}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.292538847449}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.893808777429}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5375061511060001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.418359910802}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.272051516477}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.287676526948}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.305267572164}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.933716867693}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.773523288566}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.305012919897}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.927133375913}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.591786510691}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9205123705910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.95597739149}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.826528732809}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8105908421300001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.953858798199}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.985457781603}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.647339306584}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.401495964932}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.9100917118990001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.449199968472}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.899148104728}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.806108282544}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.633669507065}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.853994088722}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.501367855478}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.752890637055}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5434288466580001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46594257178500004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34000016767200003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.154795689747}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9164158565280001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.44448626270200003}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.223141443831}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8730227606200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8966069061730001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.20498238239500002}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.74390892854}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.482467457545}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7719993017829999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517396046353}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.633122543865}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.839511960803}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.350272874017}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.190322680349}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.612780135042}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.880384884226}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.563831003767}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7120658552739999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.440446161122}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7335556970730001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.798979587795}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.405732021176}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.897458771952}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.299329779936}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.822429906542}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.892105466636}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.865906747623}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.948703881498}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43018909899900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.805857695573}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.857812012459}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.591697714923}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8865788965010001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.610919392984}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.694895000265}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.927652982184}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.709717627882}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.692630736248}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.42275438748200006}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.5879207215910001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.854989679835}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.699423881484}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.44970371829100003}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.745595308308}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7604589116680001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8551305542830001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.942191728282}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8258525433420001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.671594206079}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.7844561995}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.440112040794}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.768815809844}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.479974932413}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7697891192390001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8903098301960001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.687052974697}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.892155315287}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.588582947366}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7192033032470001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.697817501756}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18385319560900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.179278127808}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7132248515649999}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.795414812509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.614491478242}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8510330195829999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.617030458281}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.185065311979}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.49973964254000003}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.567278445301}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.843591855949}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.259606821255}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.19077949766500002}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.811851714691}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7005860465879999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.968572136973}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.460925457958}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.859224759615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.775758641577}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.9653409644900001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.930131458164}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.430596199576}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.478652615878}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.64799466865}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.945315837135}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.72010523185}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.384162806397}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.921225648455}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.55611629416}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.920310981535}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.581603171987}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.500046719616}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.701772059324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.536192444898}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.873030564882}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.572597094013}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.475044871691}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.513009233593}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5193911492409999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8550638445000001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7393721666240001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8720391421610001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.744345156516}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.792960654298}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.554863406586}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.558862768288}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.803533953492}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.549670780412}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.866335668829}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838820079109}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.921622250712}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.143547065375}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.604894998539}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.887139050833}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.522557246763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.864844521018}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.651157778466}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.10717125550300001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.970619992044}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.518146682877}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.510772913817}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.904648141355}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.870919107645}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.634634527662}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.955016800082}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6854934563470001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.84892808739}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.314921657008}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.516467326695}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.396346533675}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.679281854491}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.852779614019}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.5765207828610001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.549490087686}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5338582677170001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.22542407520899999}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.64110226247}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.269407230685}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.777672667157}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.373976309609}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.463054045352}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.43982200539300004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.522996853062}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.836475449527}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882627631113}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.348694029851}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7743261031980001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.697457440832}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.678451021943}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.451514182347}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.883353878133}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.636363636364}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5455952483550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.446021826322}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.124852160246}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.501659550978}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7139417755149999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.595859777655}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.238319155762}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.5857178873059999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.226722607713}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.801707044578}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.794520547945}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.675604210766}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.390377926519}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.824217684695}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.618191131112}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.143305549298}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.7459834226600001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7585970835710001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.94896607925}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.590748042022}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7203317006100001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.287813924735}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.305919892913}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.404759341014}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318045984785}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.925250702547}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6406911823990001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.781306106556}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.943517872412}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.287745166916}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7667855020800001}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.868793335843}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.115583221863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9283946089670001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.461042358386}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.33366415038600006}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.890462577378}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.946194203148}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.43838693210800006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.663631018072}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.290502446084}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8771644098660001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.845981470635}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.762978194748}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.425142776784}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.725271769036}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.145725634337}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.567913378836}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.734629538918}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.779746582361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531404631267}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.476422006448}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.961941312865}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.804198927933}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.650241871977}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.795818278171}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.853641881925}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.591180548605}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.680099302874}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.8637254739540001}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.356521018158}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.87398956696}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8453028154550001}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.312433554477}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8027369516720001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.46948441247}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.334384309402}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.8797533401850001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.5277580854130001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.9354071415640001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.5952359368510001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959005376344}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.655966808604}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.787652908968}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.26780865315}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.17249580350399998}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.836713194627}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.541138233437}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.933659108679}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.618150594915}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.553704429635}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.58171086609}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.986677705856}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8592380435050001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.763687205112}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.891104059677}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.778138833165}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6840255669299999}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.214893311988}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.901657158381}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8778044600020001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.776798067791}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.507336885617}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.263975367002}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.8546193766819999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.435812241441}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.833670497902}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.415106435625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.404534926246}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.841611405125}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.714907087451}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.168874215739}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.497872651052}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.634975111344}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8852517463130001}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.430264437959}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.836829636011}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.509137659434}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6519961073189999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.880175474987}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.43389929787500003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.922828589741}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.672280287164}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6650901489420001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7688467975550001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.431108693077}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.809933133614}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.600930773706}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.890243902439}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.85638453297}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9301315024119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.7709348355660001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5597301951779999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.448234283133}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.66694203105}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.846023235031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.759523843713}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.49938722987100004}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.285769853124}, {"answer": "AB", "most_wrong": "D", "predict": "A", "human_acc": 0.195903116034}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.42580279219600004}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.5781847346610001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7776479978199999}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.629111668806}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.33170221134800004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.507787120199}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.6563848322379999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.762316257656}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.586660387355}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.697519981919}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.62962962963}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.866638566913}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5172112098430001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.741946889245}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.443518252371}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.31278683336}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.893308155317}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.585606142274}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9466428642270001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.944326268075}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.694270012816}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.972959685349}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7973736408080001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7676344967430001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7910530924139999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8256861379}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.650550611544}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.7094104524979999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7913797255}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.520779698419}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.5825649622800001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.876894442967}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.519458196435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8111094499639999}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8112978351360001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8878109406590001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.421265822785}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.42236450949000004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.880376434275}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.39297887178700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7883890626250001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.756987847879}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921827888304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.8369778553160001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.565183978074}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.703016725837}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.954925297544}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.8059824198840001}, {"answer": "BC", "most_wrong": "A", "predict": "C", "human_acc": 0.468992299434}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.638246045001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.88254308083}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.846907578188}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.926166152966}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.866715570827}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.396601004249}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.125769777357}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.584615372649}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7861560158970001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.699961424372}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.4853475818}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.757243638196}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8598355412009999}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.370432357985}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.887757972534}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7651566460329999}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9215251295589999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.5331316239120001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7109757737600001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7248250265020001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.703100908001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.146994438048}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.830856842297}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.731243115298}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.823573557923}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40797916159000003}, {"answer": "AC", "most_wrong": "B", "predict": "B", "human_acc": 0.143938396736}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.438349063349}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5135178635900001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.7723422716189999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.9290296712110001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.734734734735}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.842420758745}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.658490202023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9000610447370001}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.692124861353}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.724812895797}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.470335540175}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8594201766039999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.760692830843}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.675989754421}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.810762737413}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7928990768280001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.408842970324}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9371688115060001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.822205845516}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.610215899867}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.855602694625}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.547534376482}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.671680564092}, {"answer": "ABC", "most_wrong": "D", "predict": "ABD", "human_acc": 0.225384692749}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.654948757473}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7210052806570001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.416405879564}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7831459778359999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724646226415}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.886592181799}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.660856568964}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.828624715065}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.542496550968}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.965140533852}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.287208815734}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.855025099352}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8111433020990001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5139406307859999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.871969530002}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.690121776623}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.27086942121100005}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.571299240212}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7522955757990001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.38919868612}, {"answer": "ABCD", "most_wrong": "", "predict": "B", "human_acc": 0.41813344248900003}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8335151922110001}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.616885945483}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.673845055937}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.309842041312}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.803301237964}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.6356184506360001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.759112144927}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6605489516759999}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.734918151126}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.490026098684}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.633118426126}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.463195594089}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.487957946779}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8789357994860001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.617282913837}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6810637754600001}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.7026003933699999}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.684934612031}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.768182856296}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.647730220493}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.816901408451}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.695011809928}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.84690576408}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.563555097514}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.52353304509}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.721196284464}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.856662278777}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.36657963446499997}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.297933666544}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.6047619047620001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.271990740741}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.688003173968}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.385900339751}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.043835616438000005}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5070422535210001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.39312869393500005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.6847175214790001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.511143120074}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.864437780121}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.856232084663}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.46597562530700004}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.5759806050080001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.515052714973}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.516111707841}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.519888991674}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7262110882659999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7252868783559999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.55660083586}, {"answer": "ABCD", "most_wrong": "", "predict": "D", "human_acc": 0.088250930356}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.825570890841}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.573232782989}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.8892280724770001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.730691350882}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.574798790385}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.838830584708}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.722039447049}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.858181961154}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.605810062114}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.433741146169}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.7908385007450001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.785647644223}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.693255184315}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.573135475002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.55225382099}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.243693107932}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31530237278900003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.256890668067}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.86686531724}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.6957149849450001}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.366969759796}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.47789609049500004}, {"answer": "BC", "most_wrong": "A", "predict": "BC", "human_acc": 0.149411764706}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.195260440289}, {"answer": "ABCD", "most_wrong": "", "predict": "C", "human_acc": 0.135852090032}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.255500354862}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.22428658166400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5203018902550001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.694882262294}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.281074499279}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.783711289929}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.7802377620500001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.43187046924500005}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.792003364961}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.48196754579}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.382919080546}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7867718955159999}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.634485176954}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.6431798926860001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.846774193548}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.740031484766}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.620706607236}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.9232005377320001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.53307353092}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.476951941428}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.677209456615}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.826571801946}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.890705153532}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.9143969623670001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.421833501116}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9247281053230001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.632993281911}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.696825210339}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5623397159560001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.22849090869000002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.49124698688400004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.5641302068190001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.946597118728}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.48291742529700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.390417363154}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.5821097769810001}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.429727125178}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5612035974780001}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.153316581185}, {"answer": "AD", "most_wrong": "C", "predict": "ABD", "human_acc": 0.410609842417}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.212371490281}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.309112081151}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.612261083353}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6113376429640001}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.517335347796}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.5681692705910001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.695763836477}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.302408732749}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.43595152226800005}, {"answer": "ACD", "most_wrong": "B", "predict": "A", "human_acc": 0.254778761062}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.260025873221}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.221879538068}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.057583852775000006}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.19739111650200003}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.536036545696}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.480499481102}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.43796338592399997}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.711574961679}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.241884323735}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.553887155486}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.5037314508}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.933009708738}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.09822906737600001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.970950050856}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.5826282896139999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8809197107360001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.568097353788}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.400013582035}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.924967150332}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6570571773989999}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.9253214638970001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.9312143518739999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.500311171727}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.94801057852}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.34969530727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.602360752171}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.7945176621740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.318025864344}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.753273809524}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.84412519592}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.754338239959}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.525676645959}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6077486064090001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.33959296391899996}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.919147152183}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.937272285645}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.864742382614}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.539287481044}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.33455678394800004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.705288702284}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.903533387123}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.801397379913}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.730357125635}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.585999556948}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.744623174692}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.428034371643}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.686331282422}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.415618213407}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.934975164125}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7176089236340001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7785512930509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6706136811800001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.792168396237}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.553997430024}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.413886976851}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.852496600322}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.769397363465}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.709879514206}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.8847598351620001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.458855926098}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.507325094919}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6477463923579999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.605781776202}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.754650222402}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7806128072299999}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438613111027}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.9499599007780001}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.657893815023}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.13729328214}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.391333027738}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.35514984498799995}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.326510126807}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.441171389304}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7236590160590001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.37797262219300004}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.413587162348}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.43325402450100003}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.36924384027199997}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.209984896972}, {"answer": "BD", "most_wrong": "A", "predict": "D", "human_acc": 0.571558495246}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.225617479417}, {"answer": "BD", "most_wrong": "A", "predict": "B", "human_acc": 0.470723701625}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.43096169753200003}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.45369302988900007}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.13980318968400002}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.964866894768}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.834255891191}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.648062907557}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.485328986366}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.23821772736400001}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.862177539995}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.611554517208}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.883595850941}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.34667776600600003}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.708502024291}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.33831230148499997}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.730774183632}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.195171736997}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.8757652205040001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.459300961764}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.46978785662}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9669571968930001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.594119635012}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.44558242843}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.516632390043}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.39497490534900004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.596638409822}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.8446457234579999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.71636032031}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.34916746162499995}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.46011746772800005}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.724146701256}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.808670661791}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.511977268516}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.512411746059}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9276834445119999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.710949156433}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.54947970648}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.763018663901}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.604128415836}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.46718242529000004}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.567171362293}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.833362426727}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.630821842787}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.735355082789}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.200396932468}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.457227711131}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.503375843961}, {"answer": "AC", "most_wrong": "B", "predict": "A", "human_acc": 0.604803724474}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.402888606968}, {"answer": "ABC", "most_wrong": "D", "predict": "B", "human_acc": 0.145872129112}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.905596281066}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.716925695929}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.834292594822}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.777610424403}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7812200525790001}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.750382663337}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.662099396191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.668874913759}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.542815819247}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.7177816825950001}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.733431861568}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.6740599592450001}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.857404739137}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7009174072819999}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6703871781380001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.70074968763}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.858358023511}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.839171699741}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.624037725203}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.686817664846}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7575556538399999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.466418417548}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.738230785193}, {"answer": "AB", "most_wrong": "C", "predict": "D", "human_acc": 0.129900140299}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.634774609016}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.477211033197}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.549291329864}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7284288473920001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.846153846154}, {"answer": "A", "most_wrong": "B", "predict": "ABD", "human_acc": 0.917149187773}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.478297604326}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.7347476115249999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.2526684722}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.643344525073}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.566680443159}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.406231457834}, {"answer": "AD", "most_wrong": "B", "predict": "D", "human_acc": 0.497637935645}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.48835202027700003}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.243506801295}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.518606863924}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.394144805316}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.509959454851}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.162858274578}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.502250417935}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.11027479092}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.18211075038400001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.41343645637800003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.517599853383}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.715993810126}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.7923141891890001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.733339438499}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.5930680268740001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.959504750412}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.514283737024}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.9355373303669999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.602653474252}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.467865150615}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.587809391006}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.544355758267}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6808320168509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8039517100250001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6263736263740001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.355736167552}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7533487297920001}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.964285714286}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.496793635645}, {"answer": "D", "most_wrong": "B", "predict": "BD", "human_acc": 0.419925554892}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.732120293151}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.419446617825}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.687457645795}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.842302671115}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8767805783910001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.866804247818}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.8036184537050001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.847747760854}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.403358965891}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579925385025}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.40533747398000003}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.55137669593}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.81835412761}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.881582606497}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.644241408745}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.321931760312}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.78150113252}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.82038586307}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.9396512287900001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.503319148936}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.643760179943}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.523207837092}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.6724803933040001}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.49891242670700003}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.717194311409}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.691469612676}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.6863420528260001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.793022889542}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.695849970668}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.8985128677020001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.56741642388}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.63697165565}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.858890295598}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.523615855132}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.824030261285}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.73372415921}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.282740573332}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.704418723156}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.478469189255}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.559870951235}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.563665384642}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.327969425727}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.503905977541}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.6499415363459999}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.380977492186}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.47050294142}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.587149010111}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.730264684604}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.241587037806}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.311187357039}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.719368127305}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.241906312172}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.241928706792}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.941206022689}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.105098855359}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.7989834660130001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.286080273271}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9377431906610001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.255782809344}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.338814910908}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.20073060787100003}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.273573366911}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.67883678294}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.627685637238}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.59287911372}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7026834445119999}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.49654886802900006}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.820209973753}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.835621335621}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.46023774799800005}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7905700776160001}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.60959816632}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.649661483127}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.838101884159}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.40408315072100004}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.5389531870790001}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.325642034594}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.8190369226449999}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9071025656470001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.715154713627}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.15192601956000001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.627415614532}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.713053136839}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.311274385997}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.26762690834499997}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.8233883263049999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.9526925766809999}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.234527013041}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.6480794932220001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.921741522541}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.800975919865}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8519812789200001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.896751671704}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.743032188432}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.855658198614}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9517409800519999}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.559480986471}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.792655966751}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.5637935401640001}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.720246350579}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.603705486044}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.618243302284}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.6977580338449999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.809647651932}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.405269275475}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.640649114321}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.313578387447}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.08077926398900001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.851104707012}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.723794634188}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.742751331005}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.770601303535}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.892161173577}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.7558323647820001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.852923627685}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.76623260792}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.38021097672400006}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.8649744274130001}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.45542048625}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.713904082877}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.7303856403160001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.761361519836}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.597144799456}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.736354481023}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.6684312629470001}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.926080363912}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.562690718166}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.639447200161}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.7962460612380001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.484675982293}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.5817157580760001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.6831448752170001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.444406233701}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.24551491985399998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.444200706583}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.41175562621600004}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.406707860015}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.438484961411}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.380257476411}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.821091156694}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.6515300261100001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.16372670971800002}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.501898494942}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.06464727785}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.917240396942}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.20158871945400003}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.7556236317139999}, {"answer": "AD", "most_wrong": "B", "predict": "ABCD", "human_acc": 0.055084745763}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.837249436702}, {"answer": "C", "most_wrong": "A", "predict": "A", "human_acc": 0.9139430699550001}, {"answer": "BC", "most_wrong": "A", "predict": "B", "human_acc": 0.49081094974899997}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.365366902057}, {"answer": "ABCD", "most_wrong": "", "predict": "ABCD", "human_acc": 0.653308752183}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.439777052746}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.491814432113}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.48721694667599996}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.426301809252}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.524030995714}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.440377804014}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.51760147525}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.707659231776}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.6163633164400001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.94959396473}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.161526210623}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.5926950747090001}, {"answer": "H", "most_wrong": "C", "predict": "C", "human_acc": 0.180162231393}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.713500721373}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.240844354018}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.785706334187}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.923737916219}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.514590024293}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.597991970162}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.098392444787}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.8075773223900001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.543349674228}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.374561797753}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8607194244599999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.25929859497700003}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.36936700979000003}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.16510707819499998}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.837501702147}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.9799576340230001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.530364889002}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.259107142857}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.215536096636}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.622111434511}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.431034482759}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.644597238603}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.464900610424}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.774058407374}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.829597907478}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.744240227802}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.633493926386}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.690392563283}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.6410745742810001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.494721255447}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.754073170377}, {"answer": "A", "most_wrong": "D", "predict": "A", "human_acc": 0.947679477664}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.5438708816860001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.7568384673520001}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.93191711649}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.7084996418830001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.831469648562}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.659163743723}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.881432440566}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.5751793174840001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.893383418084}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.6632097881529999}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.467736436575}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.605727345368}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.31142567097400004}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.731315429455}, {"answer": "D", "most_wrong": "A", "predict": "A", "human_acc": 0.646154350534}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.741048557856}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.660549446508}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.578902788181}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.7835055101170001}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.6908719224959999}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.847523040982}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.565748986914}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.521363835661}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8342914892340001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.690726742487}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.517607806394}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.156536765582}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.957880271957}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.943204365079}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.913614507341}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.732960255151}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.388396163053}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.5331938193970001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.6626730720749999}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6544726430740001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.67}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.629673633674}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.53759661101}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.601990223725}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.659575120321}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.358179124832}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.569333730444}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.749269324047}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.724173734113}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.7362422186809999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.861661811613}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.457735777903}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.715061444096}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.436508943296}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.468130081845}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.38759509007500004}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8360160402260001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.18699612149699998}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.917624245153}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.544238645221}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.542937637689}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.504382799561}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.7515164556089999}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.274826880705}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.845733404848}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.256666238461}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.48599658981}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.569603003967}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.526754114629}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.49482410291400003}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.587762792543}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.209239931991}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5479225247889999}, {"answer": "D", "most_wrong": "C", "predict": "ABD", "human_acc": 0.046893317702000004}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.518056185407}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.584735714434}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.777885438731}, {"answer": "AB", "most_wrong": "C", "predict": "B", "human_acc": 0.15733143061}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.6973552630509999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.692706935123}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.29730055435}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.495756877697}, {"answer": "ABD", "most_wrong": "C", "predict": "B", "human_acc": 0.40744368266400005}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.62964810321}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.181095122861}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.383427364019}, {"answer": "B", "most_wrong": "D", "predict": "A", "human_acc": 0.204973992198}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.249868287029}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.501990195668}, {"answer": "B", "most_wrong": "A", "predict": "A", "human_acc": 0.442956699596}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.62731284354}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.5929542210550001}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.458976831287}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.458988160085}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.683607177028}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.601978664226}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.71013085729}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.553832333254}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.564330665838}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.51731621937}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.53349471863}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.509451862073}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.374838527844}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.523146356054}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.21858646270600002}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.753327099815}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.16522988505699998}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.389316160119}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.579866303105}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.5168152573070001}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.877064220183}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.445370447537}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.9242193591500001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.472777676786}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.435074626866}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.525277654021}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.7370754003150001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.396715311528}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.471125022772}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.8992829257930001}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.586041687968}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.688334964528}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.380743908165}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.684158004393}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.574270352606}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.574474884447}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.769742856007}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.34322619637}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.301541298075}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9149911621440001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.653270531852}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.872690953935}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7405071294530001}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.6960606858420001}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.27333995766200003}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.313158612586}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.798296231472}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.843130553657}, {"answer": "A", "most_wrong": "D", "predict": "B", "human_acc": 0.765773175232}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.416256157635}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.634634371092}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.566008824248}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.6821054737590001}, {"answer": "ABD", "most_wrong": "C", "predict": "A", "human_acc": 0.23257505620900001}, {"answer": "A", "most_wrong": "B", "predict": "D", "human_acc": 0.442551717806}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.733161526575}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.5746075003259999}, {"answer": "ABD", "most_wrong": "C", "predict": "ABD", "human_acc": 0.361388290935}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.7029915509040001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.828827769942}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.9402917459450001}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.591836511187}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.7643001167360001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7571287354570001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.418002819448}, {"answer": "B", "most_wrong": "D", "predict": "C", "human_acc": 0.579602551068}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.669787228818}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.880241648898}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.663206556176}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.718469988643}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.583737743884}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.660264551443}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.8101559027659999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.828088791316}, {"answer": "A", "most_wrong": "C", "predict": "A", "human_acc": 0.607071163304}, {"answer": "D", "most_wrong": "A", "predict": "C", "human_acc": 0.400429293806}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.711623341457}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6966358454}, {"answer": "B", "most_wrong": "C", "predict": "D", "human_acc": 0.547780546396}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.65965394139}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7944960000000001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.83903148404}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.901755027281}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.9516357567929999}, {"answer": "C", "most_wrong": "D", "predict": "D", "human_acc": 0.8938666230660001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.749854346037}, {"answer": "A", "most_wrong": "D", "predict": "C", "human_acc": 0.640411778789}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.843382486388}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.651900574673}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.635328945184}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.882330734028}, {"answer": "A", "most_wrong": "C", "predict": "D", "human_acc": 0.674117963911}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.78042349181}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.5356111621649999}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.455093710042}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.516921109833}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.874081389543}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.732394779183}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.840124948191}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.697577820914}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.7502190719140001}, {"answer": "C", "most_wrong": "D", "predict": "B", "human_acc": 0.644453484622}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.686840320715}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.628028617563}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.719717064545}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.7416162090980001}, {"answer": "C", "most_wrong": "A", "predict": "B", "human_acc": 0.653356913442}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.60301202501}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.374008870777}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.381998668361}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.579165199014}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.37811320928500003}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6830509706969999}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.493308526938}, {"answer": "B", "most_wrong": "C", "predict": "B", "human_acc": 0.556685340501}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.860467140577}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.237196765499}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.7625289780590001}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.666088965916}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.6689752053390001}, {"answer": "BCD", "most_wrong": "A", "predict": "C", "human_acc": 0.324389358031}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.364032761601}, {"answer": "D", "most_wrong": "A", "predict": "D", "human_acc": 0.49452325372600003}, {"answer": "A", "most_wrong": "D", "predict": "D", "human_acc": 0.23020097502700002}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.375308978376}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.518515183628}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.061417731370000006}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.52433042084}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.648337095424}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.280868050207}, {"answer": "C", "most_wrong": "A", "predict": "D", "human_acc": 0.33870265563799995}, {"answer": "D", "most_wrong": "B", "predict": "B", "human_acc": 0.6490451991189999}, {"answer": "C", "most_wrong": "B", "predict": "D", "human_acc": 0.470440578205}, {"answer": "C", "most_wrong": "B", "predict": "A", "human_acc": 0.504120977568}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.167501227295}, {"answer": "B", "most_wrong": "A", "predict": "D", "human_acc": 0.68094994836}, {"answer": "D", "most_wrong": "B", "predict": "C", "human_acc": 0.717077217806}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.909054895303}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.683834252179}, {"answer": "C", "most_wrong": "D", "predict": "A", "human_acc": 0.312070113157}, {"answer": "D", "most_wrong": "B", "predict": "D", "human_acc": 0.8721883160180001}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.660941157903}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.585595535268}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.931484914883}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.6270066899750001}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.5233048414729999}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.58850068744}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.53645254501}, {"answer": "D", "most_wrong": "A", "predict": "B", "human_acc": 0.492613111727}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.852174064041}, {"answer": "D", "most_wrong": "B", "predict": "A", "human_acc": 0.7392360318500001}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.8345169876680001}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.8578618181820001}, {"answer": "G", "most_wrong": "C", "predict": "B", "human_acc": 0.035510914268}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.194703432344}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.325983377103}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.789851881505}, {"answer": "C", "most_wrong": "A", "predict": "C", "human_acc": 0.878394809801}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.378008937074}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.81900539707}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.7711948621150001}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.41201736830400004}, {"answer": "B", "most_wrong": "D", "predict": "D", "human_acc": 0.560495883318}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.916450487521}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.92705415205}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.487545392646}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.520739209311}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.83125503573}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.702968518435}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.511231931717}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.917166575086}, {"answer": "D", "most_wrong": "C", "predict": "C", "human_acc": 0.585343489914}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.413052165485}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.36917837786}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.618076258356}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.434610135565}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.531199378264}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.8932915223060001}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.8395386029990001}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.977722521793}, {"answer": "A", "most_wrong": "B", "predict": "C", "human_acc": 0.82965436933}, {"answer": "B", "most_wrong": "A", "predict": "B", "human_acc": 0.365059328452}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.9098599034529999}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.641647885109}, {"answer": "B", "most_wrong": "C", "predict": "A", "human_acc": 0.882638423988}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.7775859562399999}, {"answer": "A", "most_wrong": "C", "predict": "B", "human_acc": 0.48481072342700005}, {"answer": "C", "most_wrong": "B", "predict": "C", "human_acc": 0.8998247999400001}, {"answer": "B", "most_wrong": "D", "predict": "B", "human_acc": 0.458010735906}, {"answer": "B", "most_wrong": "C", "predict": "C", "human_acc": 0.870451080344}, {"answer": "D", "most_wrong": "C", "predict": "D", "human_acc": 0.588221805711}, {"answer": "A", "most_wrong": "B", "predict": "A", "human_acc": 0.716756644995}, {"answer": "C", "most_wrong": "D", "predict": "C", "human_acc": 0.39094217900899997}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.7794730411349999}, {"answer": "D", "most_wrong": "C", "predict": "A", "human_acc": 0.6626263296220001}, {"answer": "A", "most_wrong": "C", "predict": "C", "human_acc": 0.750454924336}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.7179358210060001}, {"answer": "C", "most_wrong": "B", "predict": "B", "human_acc": 0.8172849092250001}, {"answer": "A", "most_wrong": "B", "predict": "B", "human_acc": 0.656672792509}, {"answer": "B", "most_wrong": "A", "predict": "C", "human_acc": 0.680761947312}, {"answer": "D", "most_wrong": "C", "predict": "B", "human_acc": 0.6312380574240001}]} \ No newline at end of file diff --git a/results/202309/details/Qwen-7B/category_result-all.json b/results/202309/details/Qwen-7B/category_result-all.json new file mode 100644 index 0000000000000000000000000000000000000000..6539a8cb7f03dd286b5165004c8f3185a861df87 --- /dev/null +++ b/results/202309/details/Qwen-7B/category_result-all.json @@ -0,0 +1 @@ +{"总计": {"hit": 1895, "all": 3862, "difficulty": {"3": {"hit": 358, "all": 546, "acc": 0.6556776556776557}, "4": {"hit": 563, "all": 1078, "acc": 0.5222634508348795}, "5": {"hit": 548, "all": 1102, "acc": 0.49727767695099817}, "6": {"hit": 283, "all": 647, "acc": 0.437403400309119}, "7": {"hit": 139, "all": 485, "acc": 0.2865979381443299}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.4906784049715173}, "判断推理": {"hit": 149, "all": 350, "difficulty": {"3": {"hit": 21, "all": 41, "acc": 0.5121951219512195}, "4": {"hit": 39, "all": 77, "acc": 0.5064935064935064}, "5": {"hit": 72, "all": 155, "acc": 0.4645161290322581}, "6": {"hit": 10, "all": 55, "acc": 0.18181818181818182}, "7": {"hit": 7, "all": 22, "acc": 0.3181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.4257142857142857}, "判断推理|类比推理": {"hit": 38, "all": 96, "difficulty": {"3": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "4": {"hit": 8, "all": 20, "acc": 0.4}, "5": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.82436428905626, "acc": 0.3958333333333333}, "判断推理|类比推理|逻辑关系": {"hit": 23, "all": 52, "difficulty": {"3": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.80522117180384, "acc": 0.4423076923076923}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.36363636363636365}, "判断推理|类比推理|语义关系": {"hit": 10, "all": 30, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.3333333333333333}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.5}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 6, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.5454545454545454}, "常识判断": {"hit": 121, "all": 226, "difficulty": {"5": {"hit": 50, "all": 87, "acc": 0.5747126436781609}, "7": {"hit": 15, "all": 48, "acc": 0.3125}, "6": {"hit": 26, "all": 50, "acc": 0.52}, "4": {"hit": 28, "all": 38, "acc": 0.7368421052631579}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.5353982300884956}, "常识判断|人文常识": {"hit": 27, "all": 42, "difficulty": {"5": {"hit": 14, "all": 20, "acc": 0.7}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.6428571428571429}, "常识判断|人文常识|文化常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.8}, "常识判断|人文常识|文学常识": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.5}, "常识判断|人文常识|中国历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.6}, "常识判断|科技常识": {"hit": 33, "all": 50, "difficulty": {"7": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 14, "all": 17, "acc": 0.8235294117647058}, "6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}}, "human_acc": 51.632498263487996, "acc": 0.66}, "常识判断|科技常识|科技理论与成就": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.6}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 34.48786343879, "acc": 0.4}, "常识判断|科技常识|化学常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.7}, "常识判断|科技常识|生物常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.8}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 38, "all": 80, "difficulty": {"5": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "6": {"hit": 11, "all": 18, "acc": 0.6111111111111112}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.475}, "常识判断|法律常识|刑法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.4}, "常识判断|科技常识|物理常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.6}, "常识判断|科技常识|生活常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.6}, "常识判断|法律常识|民法": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.35864705227, "acc": 0.6}, "常识判断|人文常识|世界历史": {"hit": 8, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 53.975357187650005, "acc": 0.8}, "常识判断|法律常识|宪法": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.401631275, "acc": 0.6}, "常识判断|经济常识": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.4166666666666667}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 127, "all": 485, "difficulty": {"5": {"hit": 35, "all": 116, "acc": 0.3017241379310345}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 41, "all": 132, "acc": 0.3106060606060606}, "4": {"hit": 16, "all": 68, "acc": 0.23529411764705882}, "7": {"hit": 32, "all": 160, "acc": 0.2}}, "human_acc": 40.061365720053836, "acc": 0.2618556701030928}, "数量关系|数学运算": {"hit": 127, "all": 485, "difficulty": {"5": {"hit": 35, "all": 116, "acc": 0.3017241379310345}, "3": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 41, "all": 132, "acc": 0.3106060606060606}, "4": {"hit": 16, "all": 68, "acc": 0.23529411764705882}, "7": {"hit": 32, "all": 160, "acc": 0.2}}, "human_acc": 40.061365720053836, "acc": 0.2618556701030928}, "数量关系|数学运算|几何问题": {"hit": 4, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.16666666666666666}, "数量关系|数学运算|几何问题|平面几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.16666666666666666}, "数量关系|数学运算|最值问题": {"hit": 14, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.2153846153846154}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 6, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 40.35697170282646, "acc": 0.17647058823529413}, "常识判断|法律常识|行政法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.3}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 10, "all": 21, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.47619047619047616}, "常识判断|政治常识|时政": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.5}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.5}, "数量关系|数学运算|周期问题": {"hit": 9, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 38.245969273603045, "acc": 0.2727272727272727}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 37.83136397003, "acc": 0.6}, "数量关系|数学运算|排列组合问题": {"hit": 26, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "7": {"hit": 12, "all": 36, "acc": 0.3333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.35135135135135137}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 5, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.35714285714285715}, "言语理解与表达": {"hit": 1348, "all": 2295, "difficulty": {"5": {"hit": 335, "all": 587, "acc": 0.5706984667802385}, "4": {"hit": 439, "all": 707, "acc": 0.620933521923621}, "3": {"hit": 319, "all": 455, "acc": 0.701098901098901}, "6": {"hit": 176, "all": 327, "acc": 0.5382262996941896}, "7": {"hit": 79, "all": 219, "acc": 0.3607305936073059}}, "human_acc": 66.81637952144999, "acc": 0.5873638344226579}, "言语理解与表达|逻辑填空": {"hit": 1053, "all": 1841, "difficulty": {"5": {"hit": 276, "all": 498, "acc": 0.5542168674698795}, "4": {"hit": 304, "all": 513, "acc": 0.5925925925925926}, "3": {"hit": 259, "all": 384, "acc": 0.6744791666666666}, "6": {"hit": 152, "all": 277, "acc": 0.5487364620938628}, "7": {"hit": 62, "all": 169, "acc": 0.3668639053254438}}, "human_acc": 66.44656371118516, "acc": 0.5719717544812601}, "言语理解与表达|逻辑填空|实词填空": {"hit": 88, "all": 151, "difficulty": {"5": {"hit": 30, "all": 49, "acc": 0.6122448979591837}, "4": {"hit": 23, "all": 39, "acc": 0.5897435897435898}, "3": {"hit": 21, "all": 26, "acc": 0.8076923076923077}, "6": {"hit": 11, "all": 24, "acc": 0.4583333333333333}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.5827814569536424}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 361, "all": 622, "difficulty": {"5": {"hit": 88, "all": 163, "acc": 0.5398773006134969}, "4": {"hit": 108, "all": 172, "acc": 0.627906976744186}, "3": {"hit": 91, "all": 131, "acc": 0.6946564885496184}, "7": {"hit": 20, "all": 60, "acc": 0.3333333333333333}, "6": {"hit": 54, "all": 96, "acc": 0.5625}}, "human_acc": 66.76874610652267, "acc": 0.5803858520900321}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 88, "all": 143, "difficulty": {"5": {"hit": 25, "all": 43, "acc": 0.5813953488372093}, "4": {"hit": 30, "all": 42, "acc": 0.7142857142857143}, "3": {"hit": 15, "all": 25, "acc": 0.6}, "6": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 66.64745600073147, "acc": 0.6153846153846154}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 4, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.2}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析": {"hit": 428, "all": 771, "difficulty": {"5": {"hit": 111, "all": 201, "acc": 0.5522388059701493}, "4": {"hit": 120, "all": 217, "acc": 0.5529953917050692}, "3": {"hit": 108, "all": 167, "acc": 0.6467065868263473}, "6": {"hit": 62, "all": 116, "acc": 0.5344827586206896}, "7": {"hit": 27, "all": 70, "acc": 0.38571428571428573}}, "human_acc": 66.4145264015949, "acc": 0.5551232166018158}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 97, "all": 165, "difficulty": {"5": {"hit": 26, "all": 45, "acc": 0.5777777777777777}, "4": {"hit": 26, "all": 44, "acc": 0.5909090909090909}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 15, "all": 27, "acc": 0.5555555555555556}, "3": {"hit": 25, "all": 32, "acc": 0.78125}}, "human_acc": 65.38103981607519, "acc": 0.5878787878787879}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 89, "all": 145, "difficulty": {"4": {"hit": 27, "all": 43, "acc": 0.627906976744186}, "5": {"hit": 24, "all": 39, "acc": 0.6153846153846154}, "3": {"hit": 21, "all": 31, "acc": 0.6774193548387096}, "6": {"hit": 11, "all": 18, "acc": 0.6111111111111112}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 69.23037595903519, "acc": 0.6137931034482759}, "数量关系|数学运算|数学运算-其他": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.5}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 5, "all": 26, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.48429408539231, "acc": 0.19230769230769232}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 2, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.70558675868666, "acc": 0.13333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 59, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 17, "all": 36, "acc": 0.4722222222222222}, "5": {"hit": 13, "all": 32, "acc": 0.40625}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 67.2510308321489, "acc": 0.43703703703703706}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 116, "all": 203, "difficulty": {"4": {"hit": 32, "all": 56, "acc": 0.5714285714285714}, "5": {"hit": 27, "all": 49, "acc": 0.5510204081632653}, "3": {"hit": 38, "all": 51, "acc": 0.7450980392156863}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 13, "all": 25, "acc": 0.52}}, "human_acc": 67.67567808645465, "acc": 0.5714285714285714}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 122, "all": 212, "difficulty": {"4": {"hit": 35, "all": 63, "acc": 0.5555555555555556}, "5": {"hit": 23, "all": 43, "acc": 0.5348837209302325}, "3": {"hit": 37, "all": 51, "acc": 0.7254901960784313}, "6": {"hit": 19, "all": 32, "acc": 0.59375}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.5754716981132075}, "常识判断|法律常识|民事诉讼法": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 37.81514019971, "acc": 0.3}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 81, "all": 137, "difficulty": {"5": {"hit": 18, "all": 36, "acc": 0.5}, "3": {"hit": 18, "all": 28, "acc": 0.6428571428571429}, "4": {"hit": 24, "all": 35, "acc": 0.6857142857142857}, "6": {"hit": 15, "all": 24, "acc": 0.625}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.5912408759124088}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 7, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.35}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.4}, "数量关系|数学运算|工程问题": {"hit": 14, "all": 41, "difficulty": {"6": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.34146341463414637}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 68, "all": 174, "difficulty": {"5": {"hit": 36, "all": 78, "acc": 0.46153846153846156}, "4": {"hit": 20, "all": 40, "acc": 0.5}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.39080459770114945}, "判断推理|逻辑判断|翻译推理": {"hit": 15, "all": 40, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.375}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.4}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 52.19779781423, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 86, "all": 151, "difficulty": {"4": {"hit": 27, "all": 42, "acc": 0.6428571428571429}, "5": {"hit": 24, "all": 41, "acc": 0.5853658536585366}, "6": {"hit": 12, "all": 22, "acc": 0.5454545454545454}, "3": {"hit": 15, "all": 29, "acc": 0.5172413793103449}, "7": {"hit": 8, "all": 17, "acc": 0.47058823529411764}}, "human_acc": 64.30090962542516, "acc": 0.5695364238410596}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.2}, "数量关系|数学运算|经济利润问题": {"hit": 0, "all": 11, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.0}, "数量关系|数学运算|行程问题": {"hit": 17, "all": 65, "difficulty": {"4": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 7, "all": 21, "acc": 0.3333333333333333}, "5": {"hit": 6, "all": 12, "acc": 0.5}, "7": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.26153846153846155}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.76722241438, "acc": 0.4}, "数量关系|数学运算|统筹规划问题": {"hit": 6, "all": 17, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.35294117647058826}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 76, "all": 139, "difficulty": {"5": {"hit": 18, "all": 35, "acc": 0.5142857142857142}, "4": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 14, "all": 28, "acc": 0.5}, "3": {"hit": 20, "all": 27, "acc": 0.7407407407407407}}, "human_acc": 66.39573058612521, "acc": 0.5467625899280576}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.67128810771, "acc": 0.3}, "判断推理|定义判断": {"hit": 43, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 11, "all": 17, "acc": 0.6470588235294118}, "5": {"hit": 20, "all": 38, "acc": 0.5263157894736842}, "7": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 9, "all": 16, "acc": 0.5625}}, "human_acc": 74.80628203606001, "acc": 0.5375}, "判断推理|定义判断|单定义": {"hit": 38, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 10, "all": 15, "acc": 0.6666666666666666}, "5": {"hit": 17, "all": 33, "acc": 0.5151515151515151}, "3": {"hit": 9, "all": 16, "acc": 0.5625}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.5428571428571428}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.5}, "数量关系|数学运算|概率问题": {"hit": 8, "all": 41, "difficulty": {"7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 33.07907322403902, "acc": 0.1951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 5, "all": 21, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.23809523809523808}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.4}, "数量关系|数学运算|行程问题|平均速度": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.0}, "判断推理|定义判断|单定义|原因结果": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.4}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 64, "all": 108, "difficulty": {"5": {"hit": 25, "all": 40, "acc": 0.625}, "4": {"hit": 16, "all": 30, "acc": 0.5333333333333333}, "6": {"hit": 7, "all": 16, "acc": 0.4375}, "3": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.5925925925925926}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 3, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 42.54616771271819, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.5}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 87, "all": 152, "difficulty": {"5": {"hit": 23, "all": 46, "acc": 0.5}, "4": {"hit": 26, "all": 42, "acc": 0.6190476190476191}, "3": {"hit": 18, "all": 29, "acc": 0.6206896551724138}, "7": {"hit": 6, "all": 12, "acc": 0.5}, "6": {"hit": 14, "all": 23, "acc": 0.6086956521739131}}, "human_acc": 65.94677786230925, "acc": 0.5723684210526315}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.09090909090909091}, "言语理解与表达|阅读理解": {"hit": 257, "all": 359, "difficulty": {"4": {"hit": 123, "all": 154, "acc": 0.7987012987012987}, "5": {"hit": 47, "all": 69, "acc": 0.6811594202898551}, "6": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 53, "all": 54, "acc": 0.9814814814814815}, "7": {"hit": 15, "all": 43, "acc": 0.3488372093023256}}, "human_acc": 68.55487799855013, "acc": 0.7158774373259053}, "言语理解与表达|阅读理解|词句理解题": {"hit": 12, "all": 20, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.6}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.7}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.7}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 31.51805716275, "acc": 0.2}, "判断推理|逻辑判断|削弱题型": {"hit": 17, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 10, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.25757575757575757}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.45454545454545453}, "数量关系|数学运算|行程问题|流水行船": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.2727272727272727}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题": {"hit": 227, "all": 319, "difficulty": {"5": {"hit": 37, "all": 58, "acc": 0.6379310344827587}, "6": {"hit": 16, "all": 33, "acc": 0.48484848484848486}, "3": {"hit": 49, "all": 49, "acc": 1.0}, "4": {"hit": 112, "all": 140, "acc": 0.8}, "7": {"hit": 13, "all": 39, "acc": 0.3333333333333333}}, "human_acc": 68.63568244351346, "acc": 0.7115987460815048}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 37, "all": 48, "difficulty": {"5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 20, "all": 23, "acc": 0.8695652173913043}, "3": {"hit": 7, "all": 7, "acc": 1.0}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.7708333333333334}, "言语理解与表达|阅读理解|细节判断题": {"hit": 9, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.9}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 16, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.64}, "判断推理|逻辑判断|加强题型": {"hit": 28, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 19, "all": 26, "acc": 0.7307692307692307}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.5833333333333334}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.5}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.6}, "言语理解与表达|语句表达": {"hit": 38, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}}, "human_acc": 67.41332639953578, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题": {"hit": 16, "all": 30, "difficulty": {"5": {"hit": 7, "all": 11, "acc": 0.6363636363636364}, "4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.5333333333333333}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.4}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.02576181201, "acc": 0.6}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 25, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 12, "all": 13, "acc": 0.9230769230769231}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.8333333333333334}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 26, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.6842105263157895}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 28, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 17, "all": 19, "acc": 0.8947368421052632}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.7}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 14, "all": 22, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.6363636363636364}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 21, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 10, "all": 13, "acc": 0.7692307692307693}}, "human_acc": 63.04056480034193, "acc": 0.6774193548387096}, "判断推理|逻辑判断|原因解释": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.8}, "判断推理|定义判断|单定义|故事类": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 21, "all": 28, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.32961605834642, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.6}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 22, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 13, "all": 15, "acc": 0.8666666666666667}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.7586206896551724}, "言语理解与表达|语句表达|语句排序题": {"hit": 17, "all": 55, "difficulty": {"4": {"hit": 5, "all": 29, "acc": 0.1724137931034483}, "3": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 74.78757039704001, "acc": 0.3090909090909091}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 77.69154875399232, "acc": 0.15384615384615385}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 16, "all": 22, "difficulty": {"3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.7272727272727273}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.0}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.2}, "言语理解与表达|阅读理解|标题填入题": {"hit": 9, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 53.00512973501001, "acc": 0.9}, "资料分析": {"hit": 144, "all": 496, "difficulty": {"6": {"hit": 30, "all": 82, "acc": 0.36585365853658536}, "3": {"hit": 12, "all": 37, "acc": 0.32432432432432434}, "5": {"hit": 54, "all": 155, "acc": 0.34838709677419355}, "4": {"hit": 38, "all": 184, "acc": 0.20652173913043478}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.2903225806451613}, "资料分析|基期与现期": {"hit": 20, "all": 57, "difficulty": {"6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "5": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "4": {"hit": 9, "all": 30, "acc": 0.3}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.3508771929824561}, "资料分析|基期与现期|基期计算": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.5}, "资料分析|文字资料": {"hit": 69, "all": 237, "difficulty": {"6": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 27, "all": 75, "acc": 0.36}, "4": {"hit": 18, "all": 88, "acc": 0.20454545454545456}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.2911392405063291}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.5}, "资料分析|简单计算": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3}, "资料分析|简单计算|直接找数": {"hit": 7, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.7}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 9, "acc": 0.0}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 10, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.3125}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 8, "all": 26, "difficulty": {"4": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.02933960017693, "acc": 0.3076923076923077}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 9, "all": 40, "difficulty": {"4": {"hit": 1, "all": 15, "acc": 0.06666666666666667}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.225}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 9, "all": 31, "difficulty": {"3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.2903225806451613}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.5}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.3}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.3}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.0}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.82193192074, "acc": 0.3}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/details/Qwen-7B/difficulty_result.json b/results/202309/details/Qwen-7B/difficulty_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6623277628cf670945e5e55df6775b739aca92c1 --- /dev/null +++ b/results/202309/details/Qwen-7B/difficulty_result.json @@ -0,0 +1 @@ +{"总计": {"acc": 0.4638009049773756, "hit": 820, "all": 1768}, "3": {"hit": 120, "all": 193, "acc": 0.6217616580310881}, "4": {"hit": 238, "all": 470, "acc": 0.5063829787234042}, "5": {"hit": 276, "all": 561, "acc": 0.4919786096256685}, "6": {"hit": 122, "all": 306, "acc": 0.39869281045751637}, "7": {"hit": 62, "all": 236, "acc": 0.2627118644067797}, "2": {"hit": 2, "all": 2, "acc": 1.0}} \ No newline at end of file diff --git a/results/202309/test_dataset.json b/results/202309/test_dataset.json new file mode 100644 index 0000000000000000000000000000000000000000..adcabbc69e05c474d1f1330be0993f013c8c7d93 --- /dev/null +++ b/results/202309/test_dataset.json @@ -0,0 +1 @@ +[{"id": 2144568, "material": "", "question": "语言:思想", "type": "单选题", "options": "A. 行为:品格\nB. 头部:大脑\nC. 粉笔:黑板\nD. 纸张:知识", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 972189, "human_acc": 91.3254521497, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第103题", "difficulty": 3, "formulas": 0, "history": [{"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 3697, "material": "", "question": "酒:杯", "type": "单选题", "options": "A. 饭:桶\nB. 水:井\nC. 菜:筐\nD. 汤:碗", "choice": "D", "keypoints": "逻辑关系-对应关系", "most_wrong": "C", "human_count": 67949, "human_acc": 86.1940573077, "source": "2008年广东省公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 18269, "material": "", "question": "泥:璟", "type": "单选题", "options": "A. 嫁:休\nB. 众:沸\nC. 弦:讼\nD. 武:踪", "choice": "C", "keypoints": "逻辑关系-对应关系", "most_wrong": "A", "human_count": 117224, "human_acc": 55.9629427421, "source": "2010年江苏省公务员录用考试《行测》题(B类)第104题", "difficulty": 5, "formulas": 0}, {"id": 2262764, "material": "", "question": "鸟:蛋", "type": "单选题", "options": "A. 鱼:虾\nB. 树:苗\nC. 蛙:卵\nD. 甜:蜜", "choice": "C", "keypoints": "逻辑关系-对应关系", "most_wrong": "B", "human_count": 3008, "human_acc": 96.6090425532, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第33题", "difficulty": 5, "formulas": 0}, {"id": 1130273, "material": "", "question": "锐:任", "type": "单选题", "options": "A. 润:采\nB. 果:呆\nC. 壤:轮\nD. 聪:明", "choice": "C", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 56781, "human_acc": 53.1022701256, "source": "2010年江苏省公务员录用考试《行测》题(C类)第44题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 2052036, "material": "", "question": "QQ:微信:FaceBook", "type": "单选题", "options": "A. 手提电脑:打印机:数字电视\nB. 微博:论坛:互联网\nC. 人民日报:工人日报:光明日报\nD. 医生:护士:患者", "choice": "C", "keypoints": "逻辑关系-并列关系", "most_wrong": "B", "human_count": 603258, "human_acc": 93.4205596942, "source": "2017年422联考《行测》题(吉林卷甲级)第83题", "difficulty": 4, "formulas": 0, "history": [{"id": 4668700, "material": "", "question": "麒∶麟", "type": "单选题", "options": "A. 鲲∶鹏\nB. 凤∶凰\nC. 玄∶武\nD. 龙∶凤", "choice": "B", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 1209055, "human_acc": 65.5228256779, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第86题", "difficulty": 5, "formulas": 0}, {"id": 4668912, "material": "", "question": "乾:坤", "type": "单选题", "options": "A. 秦:汉\nB. 中:外\nC. 纵:横\nD. 宇:宙", "choice": "C", "keypoints": "逻辑关系-并列关系", "most_wrong": "D", "human_count": 1212630, "human_acc": 50.4388807798, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 5510248, "material": "", "question": "问:答", "type": "单选题", "options": "A. 求:应\nB. 教:学\nC. 来:去\nD. 买:卖", "choice": "A", "keypoints": "逻辑关系-并列关系", "most_wrong": "D", "human_count": 464551, "human_acc": 45.1375629371, "source": "2023年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第51题", "difficulty": 5, "formulas": 0}, {"id": 2184718, "material": "", "question": "嫁:娶", "type": "单选题", "options": "A. 教:授\nB. 订:阅\nC. 买:卖\nD. 进:出", "choice": "C", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 862689, "human_acc": 85.9283009288, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第75题", "difficulty": 5, "formulas": 0}, {"id": 4775947, "material": "", "question": "凤:凰", "type": "单选题", "options": "A. 鸳:鸯\nB. 混:沌\nC. 嫦:娥\nD. 熊:猫", "choice": "A", "keypoints": "逻辑关系-并列关系", "most_wrong": "D", "human_count": 412920, "human_acc": 91.0047951177, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第53题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"]]}, {"id": 2264192, "material": "", "question": "做一天和尚撞一天钟:得过且过", "type": "单选题", "options": "A. 醉翁之意不在酒:项庄舞剑\nB. 张公吃酒李公醉:罪有应得\nC. 坐山观虎斗:必有好戏\nD. 有志不在年高:有眼不识泰山", "choice": "A", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 5779, "human_acc": 42.9486070254, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第87题", "difficulty": 5, "formulas": 0, "history": [{"id": 50701, "material": "", "question": "观:看", "type": "单选题", "options": "A. 火:暖\nB. 水:船\nC. 近:远\nD. 叫:喊", "choice": "D", "keypoints": "语义关系-近义关系", "most_wrong": "A", "human_count": 1052197, "human_acc": 98.4512405947, "source": "2013年广东省公务员录用考试《行测》题(一)第46题", "difficulty": 5, "formulas": 0}, {"id": 5510014, "material": "", "question": "修缮:修葺", "type": "单选题", "options": "A. 淹留:逗留\nB. 休闲:休憩\nC. 履职:履任\nD. 赏识:赏玩", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 650668, "human_acc": 33.2867145764, "source": "2023年天津市公务员考试《行测》题(网友回忆版)第81题", "difficulty": 5, "formulas": 0}, {"id": 1749, "material": "", "question": "愉快:快活", "type": "单选题", "options": "A. 信任:信息\nB. 严肃:严谨\nC. 真诚:诚实\nD. 闲聊:休闲", "choice": "C", "keypoints": "语义关系-近义关系", "most_wrong": "B", "human_count": 61069, "human_acc": 75.5145818664, "source": "2008年江苏省公务员录用考试《行测》题(C类)第23题", "difficulty": 5, "formulas": 0}, {"id": 4621237, "material": "", "question": "杜撰:臆造", "type": "单选题", "options": "A. 彩礼:嫁妆\nB. 商榷:协商\nC. 保守:激进\nD. 罕见:荒诞", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "D", "human_count": 10106, "human_acc": 90.4710073224, "source": "2021下半年省考第三十五季行测模考大赛(甘肃卷)第84题", "difficulty": 3, "formulas": 0}, {"id": 1130059, "material": "", "question": "同情:怜悯", "type": "单选题", "options": "A. 当然:实际\nB. 宽恕:饶恕\nC. 偶然:必然\nD. 所有:有些", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 143672, "human_acc": 96.7620691575, "source": "2010年江苏省公务员录用考试《行测》题(C类)第36题", "difficulty": 2, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"]]}, {"id": 2536769, "material": "", "question": "直言不讳:旁敲侧击", "type": "单选题", "options": "A. 畏缩不前:奋不顾身\nB. 明日黄花:曾几何时\nC. 三人成虎:众口铄金\nD. 前车之鉴:不足为训", "choice": "A", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 305532, "human_acc": 76.4253826113, "source": "2021年国考第四季行测模考大赛(副省级)第96题", "difficulty": 5, "formulas": 0, "history": [{"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}, {"id": 2374829, "material": "", "question": "丰富:贫乏", "type": "单选题", "options": "A. 体贴:粗犷\nB. 精致:丑恶\nC. 拘束:随意\nD. 振奋:高兴", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "B", "human_count": 1233081, "human_acc": 87.8226166813, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 52203, "material": "", "question": "对立:和谐", "type": "单选题", "options": "A. 创新:变革\nB. 依赖:独立\nC. 专家:骗子\nD. 准确:失败", "choice": "B", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 448088, "human_acc": 93.431647355, "source": "2012年广州市公务员录用考试《行测》题第41题", "difficulty": 3, "formulas": 0}, {"id": 2036450, "material": "", "question": "平凡:伟大", "type": "单选题", "options": "A. 高尚:伟岸\nB. 平庸:优秀\nC. 洪亮:宽阔\nD. 可敬:可爱", "choice": "B", "keypoints": "语义关系-反义关系", "most_wrong": "A", "human_count": 30193, "human_acc": 93.5382373398, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第51题", "difficulty": 3, "formulas": 0}, {"id": 464695, "material": "", "question": "绿洲:荒漠", "type": "单选题", "options": "A. 开放:乐观\nB. 白玉:玉石\nC. 翠柳:黄花\nD. 冷静:紧张", "choice": "D", "keypoints": "语义关系-反义关系", "most_wrong": "C", "human_count": 818697, "human_acc": 75.4511131713, "source": "2014年江苏省公务员录用考试《行测》题(A类)第41题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"]]}, {"id": 2650734, "material": "", "question": "升山:采珠", "type": "单选题", "options": "A. 南辕:北辙\nB. 惩前:毖后\nC. 瓜熟:蒂落\nD. 缘木:求鱼", "choice": "D", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 158007, "human_acc": 75.0650287645, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第88题", "difficulty": 4, "formulas": 0, "history": [{"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 5074005, "material": "", "question": "买椟:还珠", "type": "单选题", "options": "A. 见贤:思齐\nB. 呼风:唤雨\nC. 载笑:载言\nD. 春暖:花开", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "B", "human_count": 96336, "human_acc": 46.4571914964, "source": "2022下半年省考第一季行测模考大赛(安徽卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 4854850, "material": "", "question": "源清:流清", "type": "单选题", "options": "A. 地冻:天寒\nB. 人仰:马翻\nC. 理屈:词穷\nD. 莺歌:燕舞", "choice": "C", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "A", "human_count": 339333, "human_acc": 64.3901418371, "source": "2022上半年省考第十三季行测模考大赛(广东乡镇卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 2525037, "material": "", "question": "春暖:花开", "type": "单选题", "options": "A. 东南:西北\nB. 愚公:移山\nC. 水滴:石穿\nD. 种瓜:得瓜", "choice": "C", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "D", "human_count": 347962, "human_acc": 74.6018243371, "source": "2020年上半年省考第二十六季行测模考大赛(浙江卷)第76题", "difficulty": 4, "formulas": 0}, {"id": 5518364, "material": "", "question": "聚沙:成塔", "type": "单选题", "options": "A. 山积:而高\nB. 集腋:为裘\nC. 滴水:穿石\nD. 绳锯:木断", "choice": "B", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 328, "human_acc": 66.1585365854, "source": "2021年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 1787122, "material": "", "question": "高大:矮小 与(  )在内在逻辑关系上最为相似。", "type": "单选题", "options": "A. 黑色:白色\nB. 男人:女人\nC. 明亮:昏暗\nD. 失去:得到", "choice": "C", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 606313, "human_acc": 84.9076302174, "source": "2015年广州市公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0, "history": [{"id": 2402428, "material": "", "question": "咸:淡", "type": "单选题", "options": "A. 香:臭\nB. 痛:痒\nC. 麻:辣\nD. 肥:瘦", "choice": "A", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 582694, "human_acc": 71.6681482905, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 5, "formulas": 0}, {"id": 20727, "material": "", "question": "雪中送炭:火上浇油", "type": "单选题", "options": "A. 家喻户晓:默默无闻\nB. 凤毛麟角:多如牛毛\nC. 胸有成竹:不知所措\nD. 锦上添花:落井下石", "choice": "D", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "B", "human_count": 600382, "human_acc": 74.2327384898, "source": "2012年江苏省公务员录用考试《行测》题(A类)第43题", "difficulty": 5, "formulas": 0}, {"id": 2021822, "material": "", "question": "大义凛然:卑躬屈膝", "type": "单选题", "options": "A. 安分守己:好高骛远\nB. 穷奢极欲:节衣缩食\nC. 得心应手:百无一能\nD. 持之以恒:虎头蛇尾", "choice": "D", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "B", "human_count": 635630, "human_acc": 44.0731243019, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第64题", "difficulty": 6, "formulas": 0}, {"id": 5432649, "material": "", "question": "和蔼可亲:张牙舞爪", "type": "单选题", "options": "A. 鼠目寸光:高瞻远瞩\nB. 豪言壮语:沉默寡言\nC. 众说纷纭:莫衷一是\nD. 扬眉吐气:忍气吞声", "choice": "D", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "A", "human_count": 344750, "human_acc": 52.7869470631, "source": "2023上半年省考第一季行测模考大赛(广东县级卷)第54题", "difficulty": 6, "formulas": 0}, {"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 163825, "material": "根据《全国经济普查条例》的规定,国务院决定开展第三次全国经济普查工作:全面调查了解我国第二产业和第三产业的发展规模及布局;了解我国产业组织、产业结构、产业技术的现状以及各生产要素的构成;进一步查实服务业、战略性新兴产业和小微企业的发展状况;摸清我国各类单位的基本情况;全面更新覆盖国民经济各行业的基本单位名录库、基础信息数据库和统计电子地理信息系统。通过普查,进一步夯实统计基础,健全统计工作的部门协调机制和信息共享机制,为____________________宏观调控,加快经济结构战略性调整,科学制定中长期发展规划,提供科学准确的统计信息支持。\n\n        国务院将成立第三次全国经济普查领导小组,负责普查组织和实施中重大问题的研究和决策。普查领导小组由国务院领导同志任组长,成员单位包括国务院办公厅、统计局、发展改革委等部门。普查领导小组办公室设在统计局,负责普查的具体组织实施和协调。其中,涉及普查经费方面的事项,由财政部负责和协调;涉及固定资产投资保障方面的事项,由发展改革委负责和协调。国务院其他各有关部门,也要按照各自的职能,各负其责、通力协作、密切配合。\n\n        地方各级人民政府要设立相应的普查领导小组及其办公室,加强领导、认真组织好本地区的普查实施工作。对于普查工作中遇到的困难和问题,要及时采取措施,切实予以解决。要充分发挥街道办事处和居民委员会、乡镇政府和村民委员会的作用,广泛动员和组织社会力量积极参与并认真配合做好普查工作。\n\n        地方普查机构应当根据工作需要,聘用或者从有关单位商调符合条件的普查指导员和普查员,并及时支付聘用人员的劳动报酬,保证商调人员在原单位的工资、福利及其他待遇不变,稳定经济普查工作队伍,确保普查工作顺利进行。\n\n        利用统计电子地理信息系统,全面建立普查区电子地图;____________________统计联网直报系统成果;积极推广使用手持电子数据采集设备,努力提高普查工作的信息化水平和效率,减轻基层普查人员的工作负担。", "question": "根据上下文,填入最后1段画线部分最恰当的一项是:", "type": "单选题", "options": "A. 深化和普及\nB. 巩固和拓展\nC. 健全和支持\nD. 改进和完善", "choice": "B", "keypoints": "", "most_wrong": "A", "human_count": 92023, "human_acc": 42.8664572987, "source": "2014年北京市公务员录用考试《行测》题第44题", "difficulty": 6, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 26335, "material": "", "question": "旗舰店:商店", "type": "单选题", "options": "A. 黄金水道:航线\nB. 劳力士:钟表\nC. 总统套房:标间\nD. 金刚钻:瓷器", "choice": "A", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 556899, "human_acc": 50.5229853169, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第90题", "difficulty": 5, "formulas": 0, "history": [{"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 2050480, "material": "", "question": "蛇:腿", "type": "单选题", "options": "A. 鸡:翅膀\nB. 狮:爪子\nC. 牛:尾巴\nD. 鲸:鱼鳃", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 719045, "human_acc": 91.7188771217, "source": "2017年422联考《行测》题(吉林卷乙级)第71题", "difficulty": 3, "formulas": 0}, {"id": 2050404, "material": "", "question": "猪:猪肝", "type": "单选题", "options": "A. 鱼:鱼鳔\nB. 马:马蹄\nC. 虫:虫草\nD. 虾:虾须", "choice": "A", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 957770, "human_acc": 89.4237656222, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第81题", "difficulty": 4, "formulas": 0}, {"id": 17335, "material": "", "question": "花卉:花", "type": "单选题", "options": "A. 汽车:车\nB. 人口:人\nC. 山峰:山\nD. 粮食:米", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 144739, "human_acc": 21.1442665764, "source": "2010年贵州省公务员录用考试《行测》题第62题", "difficulty": 7, "formulas": 0}, {"id": 5510252, "material": "", "question": "章:节", "type": "单选题", "options": "A. 年:月\nB. 桌:椅\nC. 中考:高考\nD. 班主任:班长", "choice": "A", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 488174, "human_acc": 96.8574729502, "source": "2023年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 17693, "material": "", "question": "2009年11月25日至12月6日,小王在加拿大旅游,发现当地不少男士佩戴白丝带,这表示:", "type": "单选题", "options": "A. 反对对妇女的暴力\nB. 对恐怖主义者的抗议和对受害者的哀悼\nC. 勇于承担对家庭的责任\nD. 坚持对婚姻的忠诚", "choice": "A", "keypoints": "文化常识", "most_wrong": "B", "human_count": 248805, "human_acc": 31.334579289, "source": "2010年四川省公务员录用考试《行测》题(下半年)第83题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 4564320, "material": "", "question": "下列作品不是出自“世界三大短篇小说巨匠”的是(    )。", "type": "单选题", "options": "A. 《最后一片叶子》\nB. 《小公务员之死》\nC. 《我的叔叔于勒》\nD. 《丧钟为谁而鸣》", "choice": "D", "keypoints": "文学常识", "most_wrong": "B", "human_count": 18838, "human_acc": 31.5691687016, "source": "2021下半年省考第三十二季行测模考大赛(云南卷)第20题", "difficulty": 7, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 2049676, "material": "", "question": "下列哪一事件不是发生在魏晋南北朝时期?", "type": "单选题", "options": "A. 七国之乱\nB. 五胡乱华\nC. 王与马共天下\nD. 梁武帝舍身佛寺", "choice": "A", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1086294, "human_acc": 40.9727937372, "source": "2017年422联考《行测》题(山东卷)第47题", "difficulty": 6, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 3791908, "material": "", "question": "2021年4月29日,中国空间站天和核心舱发射升空,准确进入预定轨道,任务取得成功。下列相关说法错误的是(    )。", "type": "单选题", "options": "A. 天和核心舱是我国空间站的管理和控制中心\nB. 中国空间站天和核心舱在甘肃酒泉卫星中心发射\nC. 中国空间站天和核心舱利用长征五号B遥二运载火箭发射\nD. 建造空间站是实现我国载人航天工程“三步走”战略的重要目标", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 14803, "human_acc": 45.6461528069, "source": "2021下半年省考第十四季行测模考大赛(新疆卷)第13题", "difficulty": 7, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 2448556, "material": "", "question": "关于诗句涉及的物候特征,下列对应错误的是:", "type": "单选题", "options": "A. 不知近水花先发,疑是经冬雪未销——水对温度的调节作用\nB. 羌笛何须怨杨柳,春风不度玉门关——冷锋过境产生的天气变化\nC. 春风疑不到天涯,二月山城未见花——海拔对植物生长的影响\nD. 南枝向暖北枝寒,一种春风有两般——光照对植物的影响", "choice": "B", "keypoints": "自然常识", "most_wrong": "A", "human_count": 3030446, "human_acc": 45.8765475445, "source": "2020年国家公务员录用考试《行测》题(副省级网友回忆版)第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 2814448, "material": "", "question": "下列关于一氧化碳中毒及其预防措施,表述有误的是(    )。", "type": "单选题", "options": "A. 氧气供给不足时,碳燃烧不充分,就会生成一氧化碳\nB. 在高温下,炽热的碳也可使二氧化碳转变为一氧化碳\nC. 一氧化碳有特殊臭味,一旦察觉泄露应立即开窗通风\nD. 人体吸入一氧化碳后,血液会逐渐失去输氧的能力", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 237165, "human_acc": 58.4019564438, "source": "2021上半年省考第九季行测模考大赛(广东卷)第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 21117, "material": "", "question": "下列有关医药常识不正确的是:", "type": "单选题", "options": "A. 脾脏是人体的消化器官之一\nB. 腮腺炎是呼吸道传染病\nC. 河豚的毒素在其内脏中含量最高\nD. 很多矿物质可以作为中药材使用", "choice": "A", "keypoints": "生物常识", "most_wrong": "B", "human_count": 492057, "human_acc": 38.1171287066, "source": "2012年山东省公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 2047680, "material": "", "question": "“海上丝绸之路”是古代中国与外国交通贸易和文化交往的海上通道,包括东海航线和南海航线。以下城市不属于“海上丝绸之路”航线中主要港口的是:", "type": "单选题", "options": "A. 广州\nB. 泉州\nC. 宁波\nD. 厦门", "choice": "D", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1146412, "human_acc": 33.3721210176, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第71题", "difficulty": 5, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 1391, "material": "", "question": "关于正当防卫与紧急避险,下列说法正确的是:", "type": "单选题", "options": "A. 正当防卫明显超过必要限度造成重大损害的,应当以防卫过当罪定罪,但是应当酌情减轻或者免除处罚\nB. 紧急避险用于解决紧迫情况下合法利益之间的冲突\nC. 防卫过当的场合,其罪过形式通常是直接故意\nD. 对于事后防卫的,通常按照防卫过当处理", "choice": "B", "keypoints": "刑法", "most_wrong": "A", "human_count": 323693, "human_acc": 41.6499584483, "source": "2008年北京市公务员录用考试《行测》题(应届)第66题", "difficulty": 5, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 2452898, "material": "", "question": "已知物体表面颜色越浅,反射热辐射的能力越强,进行热辐射的能力越差;物体表面颜色越深,反射热辐射的能力越差,进行热辐射的能力越强。据此,下列关于石油液化气罐和电力变压器表面颜色的判断,说法正确的是____________________。", "type": "单选题", "options": "A. 均应漆成银白色\nB. 均应漆成灰黑色\nC. 前者漆成灰黑色,后者漆成银白色\nD. 前者漆成银白色,后者漆成灰黑色", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 817192, "human_acc": 43.8707182645, "source": "2020年上海市公务员录用考试《行测》题(A类)(网友回忆版)第109题", "difficulty": 5, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 1688446, "material": "", "question": "下列说法都正确的一组是:①铅笔芯含铅  ②水银是汞  ③黄铜是合金  ④甘油不是油  ⑤纯碱是碱  ⑥干冰不是冰", "type": "单选题", "options": "A. ①②④⑥\nB. ①③④⑤\nC. ②③⑤⑥\nD. ②③④⑥", "choice": "D", "keypoints": "生活常识", "most_wrong": "A", "human_count": 381742, "human_acc": 48.9998480649, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第16题", "difficulty": 5, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 4700177, "material": "", "question": "促织:蟋蟀", "type": "单选题", "options": "A. 挑檐:走廊\nB. 玉米:包谷\nC. 大虫:老虎\nD. 绵羊:黑羊", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 303034, "human_acc": 66.6294871203, "source": "2022上半年省考第六季行测模考大赛(广东县级卷)第53题", "difficulty": 4, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}, {"id": 2601, "material": "", "question": "柳絮:杨花", "type": "单选题", "options": "A. 松子:榆钱\nB. 月华:幽兰\nC. 芙蓉:荷花\nD. 菊花:银甲", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 53007, "human_acc": 46.193898919, "source": "2008年辽宁省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0}, {"id": 11963, "material": "", "question": "报警:警报", "type": "单选题", "options": "A. 来回:回来\nB. 书写:写书\nC. 给付:付给\nD. 开水:水开", "choice": "D", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 41134, "human_acc": 30.7798901152, "source": "2008年安徽省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 3988177, "material": "", "question": "风卷残云:铁树开花", "type": "单选题", "options": "A. 鸠占鹊巢:孤芳自赏\nB. 白驹过隙:沧海桑田\nC. 锋芒毕露:吴牛喘月\nD. 鬼迷心窍:渔翁得利", "choice": "D", "keypoints": "拆分思维", "most_wrong": "A", "human_count": 148670, "human_acc": 34.9687226744, "source": "2021下半年省考第十八季行测模考大赛(广东县级卷)第54题", "difficulty": 6, "formulas": 0, "history": [{"id": 48973, "material": "", "question": "嫦娥奔月", "type": "单选题", "options": "A. 后羿射日\nB. 鸡鸣起舞\nC. 欢呼雀跃\nD. 海纳百川", "choice": "A", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 492588, "human_acc": 98.5695956865, "source": "2013年江苏省公务员录用考试《行测》题(B类)第96题", "difficulty": 5, "formulas": 0}, {"id": 2730742, "material": "", "question": "劲敌:严冬", "type": "单选题", "options": "A. 良师:暴雪\nB. 朋友:海洋\nC. 阿爸:老虎\nD. 知音:飞鸟", "choice": "A", "keypoints": "拆分思维", "most_wrong": "D", "human_count": 612542, "human_acc": 48.9714990972, "source": "2020年深圳市考公务员录用考试《思维能力测验》试题(网友回忆版)第57题", "difficulty": 5, "formulas": 0}, {"id": 5642121, "material": "", "question": "银钗:损友", "type": "单选题", "options": "A. 疾风:劳动\nB. 茉莉:淡水\nC. 贵宾:红笔\nD. 兵马:圩田", "choice": "C", "keypoints": "拆分思维", "most_wrong": "D", "human_count": 57580, "human_acc": 52.7440083362, "source": "2023下半年省考第十一季行测模考大赛(广东县级卷)第53题", "difficulty": 6, "formulas": 0}, {"id": 2247238, "material": "", "question": "忧国:忧民", "type": "单选题", "options": "A. 若有:若无\nB. 诚惶:诚恐\nC. 戒骄:戒躁\nD. 相亲:相爱", "choice": "C", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 678818, "human_acc": 65.5664699522, "source": "2018年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第74题", "difficulty": 5, "formulas": 0}, {"id": 4555752, "material": "", "question": "风起:云涌", "type": "单选题", "options": "A. 莺歌:燕舞\nB. 按图:索骥\nC. 水落:石出\nD. 殊途:同归", "choice": "C", "keypoints": "拆分思维", "most_wrong": "A", "human_count": 312386, "human_acc": 67.7050187909, "source": "2022年国考第三十七季行测模考大赛(行政执法类)第94题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"]]}, {"id": 2166042, "material": "", "question": "我国《民法典》规定,继承人对于被继承人生前的合法债务:", "type": "单选题", "options": "A. 应当负责全额偿还\nB. 可以负责全额偿还\nC. 可以不负责偿还\nD. 应当在遗产的实际价值范围内负责清偿", "choice": "D", "keypoints": "民法", "most_wrong": "A", "human_count": 669668, "human_acc": 75.0875060478, "source": "天津市选调2018年应届优秀大学毕业生到基层培养锻炼考试题(网友回忆版)第59题", "difficulty": 5, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 2049592, "material": "", "question": "下列关于国际战争的说法错误的是:", "type": "单选题", "options": "A. 前苏联于1978年入侵阿富汗,持续十余年\nB. 1990年开始的海湾战争源于伊朗入侵科威特\nC. 中东战争是以色列与周边阿拉伯国家所进行的5次大规模战争\nD. 1982年4月-6月,英国和阿根廷爆发了马尔维纳斯群岛海战", "choice": "B", "keypoints": "世界历史", "most_wrong": "C", "human_count": 1451753, "human_acc": 31.2804588659, "source": "2017年422联考《行测》题(新疆卷)第40题", "difficulty": 6, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 4627080, "material": "", "question": "下列关于我国宪法说法正确的是(    )。", "type": "单选题", "options": "A. 我国现行宪法包括序言、正文、附则三部分\nB. 宪法判例是我国宪法的渊源\nC. 我国宪法的正文包括总纲,公民的基本权利和义务,国家机构,国旗、国歌、国徽、首都\nD. 我国现行宪法为2018年宪法", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 80410, "human_acc": 44.3626414625, "source": "2021下半年省考第三十五季行测模考大赛(深圳卷)第12题", "difficulty": 6, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 2521, "material": "", "question": "基尼系数是一个用来描述收入整体差距程度的重要指标。国际上通常认为,当它处于0.3-0.4时表示收入分配比较合理,0.4-0.5表示收入差距过大,超过0.5则意味着出现两极分化。从现实来看,世界各国对基尼系数的运用并不完全一致。很多国家都是把它与其他因素结合起来,综合判断收入差距。\n\n下列说法正确的是:", "type": "多选题", "options": "A. 基尼系数只可参考,不可绝对化\nB. 我国是二元经济结构的国家,应用基尼系数的一般标准来衡量收入差距\nC. 我国城乡差距大,不能简单地套用基尼系数的一般标准来衡量收入差距\nD. 在不少国家,基尼系数有不同的标准和界限", "choice": "ACD", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 9259, "human_acc": 43.9140295928, "source": "2008年山东省公务员录用考试《行测》题第115题", "difficulty": 5, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 2571713, "material": "", "question": "正误:是非", "type": "单选题", "options": "A. 优劣:贵贱\nB. 爱憎:情仇\nC. 卑微:渺小\nD. 成败:胜负", "choice": "D", "keypoints": "语义关系-反义关系;语义关系-近义关系;拆分思维", "most_wrong": "A", "human_count": 1716978, "human_acc": 86.904957431, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第57题", "difficulty": 5, "formulas": 0, "history": [{"id": 3699004, "material": "", "question": "巨大:微小", "type": "单选题", "options": "A. 哭泣:安静\nB. 虚假:真诚\nC. 进退:得失\nD. 朋友:敌人", "choice": "B", "keypoints": "语义关系-反义关系;语义关系-近义关系;拆分思维", "most_wrong": "D", "human_count": 102437, "human_acc": 90.4145962885, "source": "2021下半年省考第九季行测模考大赛(广东乡镇卷)第56题", "difficulty": 3, "formulas": 0}, {"id": 3019158, "material": "", "question": "东奔:西走", "type": "单选题", "options": "A. 跋山:涉水\nB. 完整:无缺\nC. 顾此:失彼\nD. 大街:小巷", "choice": "D", "keypoints": "语义关系-反义关系;语义关系-近义关系;拆分思维", "most_wrong": "A", "human_count": 662142, "human_acc": 69.819162657, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}, {"id": 551177, "material": "", "question": "南征北战:东讨西伐", "type": "单选题", "options": "A. 万紫千红:姹紫嫣红\nB. 古往今来:天南地北\nC. 朝三暮四:喜新厌旧\nD. 左顾右盼:东张西望", "choice": "D", "keypoints": "语义关系-反义关系;语义关系-近义关系;拆分思维", "most_wrong": "C", "human_count": 1214196, "human_acc": 89.5021067439, "source": "2014年河南省选调生选拔考试 《行政职业能力测验》试卷(精选)第65题", "difficulty": 4, "formulas": 0}, {"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}, {"id": 50701, "material": "", "question": "观:看", "type": "单选题", "options": "A. 火:暖\nB. 水:船\nC. 近:远\nD. 叫:喊", "choice": "D", "keypoints": "语义关系-近义关系", "most_wrong": "A", "human_count": 1052197, "human_acc": 98.4512405947, "source": "2013年广东省公务员录用考试《行测》题(一)第46题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "语义关系", "语义关系-近义关系"], ["判断推理", "类比推理", "拆分思维"]]}, {"id": 3542562, "material": "", "question": "益智玩具:金属玩具:电子玩具", "type": "单选题", "options": "A. 直线运动:匀速运动:机械运动\nB. 民族乐器:打击乐器:木管乐器\nC. 神经系统:免疫系统:消化系统\nD. 小说作家:当代作家:著名作家", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 85275, "human_acc": 45.1785400176, "source": "2021下半年省考第三季行测模考大赛(河南卷)第106题", "difficulty": 6, "formulas": 0, "history": [{"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}, {"id": 5585651, "material": "", "question": "主食:甜食", "type": "单选题", "options": "A. 剧团:戏班\nB. 商品:零食\nC. 戏剧:小说\nD. 动物:芍药", "choice": "B", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 43627, "human_acc": 49.1484631077, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 2034140, "material": "", "question": "律师:教授", "type": "单选题", "options": "A. 专家:吉林人\nB. 钢筋:房屋\nC. 歌手:乐队\nD. 人:社会", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 569161, "human_acc": 87.4676936754, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0}, {"id": 2021824, "material": "", "question": "流行:高尚", "type": "单选题", "options": "A. 专家:学者\nB. 勇敢:品德\nC. 树根:树叶\nD. 闰月:春季", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 532077, "human_acc": 52.6615508658, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第65题", "difficulty": 5, "formulas": 0}, {"id": 5289672, "material": "", "question": "陶器:酒器", "type": "单选题", "options": "A. 童鞋:凉鞋\nB. 主食:副食\nC. 卧椅:躺椅\nD. 官窑:哥窑", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 215948, "human_acc": 90.1254005594, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第91题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"]]}, {"id": 2402433, "material": "", "question": "天生丽质:倾国倾城", "type": "单选题", "options": "A. 技惊四座:蟾宫折桂\nB. 标新立异:独树一帜\nC. 杯弓蛇影:草木皆兵\nD. 绝无仅有:天下无双", "choice": "B", "keypoints": "语义-其他", "most_wrong": "D", "human_count": 399894, "human_acc": 29.8384071779, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第90题", "difficulty": 5, "formulas": 0, "history": [{"id": 15387, "material": "", "question": "选择:抉择", "type": "单选题", "options": "A. 爱好:嗜好\nB. 决定:决策\nC. 按时:准时\nD. 参加:参与", "choice": "B", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 217958, "human_acc": 41.2854770185, "source": "2010年深圳市公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}, {"id": 1503649, "material": "", "question": "豺狼:凶残", "type": "单选题", "options": "A. 喜鹊:报喜\nB. 小鸟:依人\nC. 蜜蜂:勤劳\nD. 梅花:坚强", "choice": "C", "keypoints": "语义-其他", "most_wrong": "D", "human_count": 826477, "human_acc": 92.5996730702, "source": "2015年四川省公务员录用考试《行测》题(上半年)第73题", "difficulty": 5, "formulas": 0}, {"id": 2685607, "material": "", "question": "遵守:恪守", "type": "单选题", "options": "A. 毁坏:损坏\nB. 风味:风光\nC. 瑕疵:缺陷\nD. 美好:美丽", "choice": "C", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 221684, "human_acc": 64.4272929034, "source": "2021年国考第二十二季行测模考大赛(副省级)第101题", "difficulty": 4, "formulas": 0}, {"id": 2004796, "material": "", "question": "表扬:恭维", "type": "单选题", "options": "A. 肯定:认可\nB. 相信:迷信\nC. 请教:求教\nD. 激动:生气", "choice": "B", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 26118, "human_acc": 85.4621333946, "source": "2010年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 2376460, "material": "", "question": "听:闻:聆", "type": "单选题", "options": "A. 看:瞥:瞪\nB. 咬:嚼:咽\nC. 买:购:租\nD. 打:揍:殴", "choice": "D", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 1064168, "human_acc": 51.4701626059, "source": "2019年420联考《行测》题(吉林乙级)(网友回忆版)第63题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 2264084, "material": "", "question": "移风:易俗", "type": "单选题", "options": "A. 愚公:移山\nB. 成王:败寇\nC. 腾云:驾雾\nD. 反腐:倡廉", "choice": "C", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "D", "human_count": 6085, "human_acc": 68.2497945768, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第98题", "difficulty": 5, "formulas": 0, "history": [{"id": 5358502, "material": "", "question": "追本:溯源", "type": "单选题", "options": "A. 偃旗:息鼓\nB. 偷梁:换柱\nC. 循规:蹈矩\nD. 察言:观色", "choice": "C", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "B", "human_count": 328185, "human_acc": 59.0133613663, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第88题", "difficulty": 5, "formulas": 0}, {"id": 2036434, "material": "", "question": "排忧:解难", "type": "单选题", "options": "A. 明亮:干净\nB. 树木:花草\nC. 创先:争优\nD. 走访:寻找", "choice": "C", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "D", "human_count": 31549, "human_acc": 84.2752543662, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第46题", "difficulty": 4, "formulas": 0}, {"id": 2187591, "material": "", "question": "势均∶力敌", "type": "单选题", "options": "A. 旗鼓∶相当\nB. 并驾∶齐驱\nC. 不相∶上下\nD. 平分∶秋色", "choice": "B", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "A", "human_count": 1374196, "human_acc": 71.8906909931, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第95题", "difficulty": 4, "formulas": 0}, {"id": 51739, "material": "", "question": "三心:两意", "type": "单选题", "options": "A. 五脏:六腑\nB. 朝令:夕改\nC. 惊世:骇俗\nD. 信誓:旦旦", "choice": "C", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "A", "human_count": 837209, "human_acc": 29.4775856447, "source": "2013年广州市公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 4768032, "material": "", "question": "见多:识广", "type": "单选题", "options": "A. 上行:下效\nB. 异口:同声\nC. 高瞻:远瞩\nD. 朝三:暮四", "choice": "C", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "A", "human_count": 221017, "human_acc": 65.8885968048, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第71题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"], ["判断推理", "类比推理", "拆分思维"]]}, {"id": 4670678, "material": "", "question": "西风渭水长安:淡烟疏雨骊山", "type": "单选题", "options": "A. 山下孤烟远村:天边独树高原\nB. 长夜风轻露重:佳人滴泪无痕\nC. 青草湖边草色:飞猿岭上猿声\nD. 红粉楼前月照:碧纱窗外莺啼", "choice": "A", "keypoints": "拆分思维;逻辑关系-并列关系", "most_wrong": "C", "human_count": 244416, "human_acc": 78.8422198219, "source": "2022上半年省考第一季行测模考大赛(四川卷)第73题", "difficulty": 4, "formulas": 0, "history": [{"id": 5392914, "material": "", "question": "吞云:吐雾", "type": "单选题", "options": "A. 春华:秋实\nB. 捶胸:顿足\nC. 生龙:活虎\nD. 人寿:年丰", "choice": "B", "keypoints": "拆分思维;逻辑关系-并列关系", "most_wrong": "A", "human_count": 349674, "human_acc": 82.4027522778, "source": "2022下半年省考第二十季行测模考大赛(浙江C卷)第89题", "difficulty": 4, "formulas": 0}, {"id": 5102387, "material": "", "question": "动静:是非", "type": "单选题", "options": "A. 大小:多少\nB. 生死:曲直\nC. 古今:长短\nD. 轻重:贵贱", "choice": "B", "keypoints": "拆分思维;逻辑关系-并列关系", "most_wrong": "D", "human_count": 1166135, "human_acc": 58.0828977777, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第69题", "difficulty": 5, "formulas": 0}, {"id": 453865, "material": "", "question": "春夏:秋冬", "type": "单选题", "options": "A. 生老:病死\nB. 昨天:今天\nC. 日出:日落\nD. 雷鸣:暴雨", "choice": "A", "keypoints": "拆分思维;逻辑关系-并列关系", "most_wrong": "C", "human_count": 757888, "human_acc": 72.8492864381, "source": "2014年广东省公务员录用考试《行测》题(县级以上)第60题", "difficulty": 5, "formulas": 0}, {"id": 5585650, "material": "", "question": "狂风:骤雨", "type": "单选题", "options": "A. 隐恶:扬善\nB. 风雨:如晦\nC. 风花:雪月\nD. 桃红:柳绿", "choice": "D", "keypoints": "拆分思维;逻辑关系-并列关系", "most_wrong": "C", "human_count": 44185, "human_acc": 50.166346045, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第51题", "difficulty": 6, "formulas": 0}, {"id": 5721488, "material": "", "question": "鲜衣:美食", "type": "单选题", "options": "A. 焚琴:煮鹤\nB. 舞刀:跃马\nC. 轻歌:曼舞\nD. 车水:马龙", "choice": "C", "keypoints": "拆分思维;逻辑关系-并列关系", "most_wrong": "B", "human_count": 114478, "human_acc": 83.4308775485, "source": "2023下半年省考第十八季行测模考大赛(广东县级卷)第51题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"]]}, {"id": 2187582, "material": "", "question": "品质∶好坏∶质量", "type": "单选题", "options": "A. 食物∶大小∶重量\nB. 分数∶高低∶成绩\nC. 旅游∶远近∶兴趣\nD. 人口∶多少∶密度", "choice": "B", "keypoints": "语义关系-近义关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 1491734, "human_acc": 76.5030494713, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第81题", "difficulty": 4, "formulas": 0, "history": [{"id": 5510153, "material": "", "question": "奔:跑:快", "type": "单选题", "options": "A. 崎:岖:路\nB. 飞:翔:高\nC. 写:字:好\nD. 督:促:严", "choice": "B", "keypoints": "语义关系-近义关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 406225, "human_acc": 63.8200504646, "source": "2023年内蒙古公务员录用考试《行测》题(网友回忆版)第77题", "difficulty": 5, "formulas": 0}, {"id": 5257976, "material": "", "question": "品德:高风亮节:怀瑾握瑜", "type": "单选题", "options": "A. 心情:如沐春风:满面红光\nB. 时间:尺璧寸阴:千金一刻\nC. 争论:不易之论:颠扑不破\nD. 天气:风和日丽:凄风苦雨", "choice": "B", "keypoints": "语义关系-近义关系;逻辑关系-对应关系", "most_wrong": "A", "human_count": 163327, "human_acc": 50.1325561603, "source": "2022下半年省考第九季行测模考大赛(浙江A卷)第102题", "difficulty": 6, "formulas": 0}, {"id": 5284877, "material": "", "question": "翩若惊鸿:婉若游龙:体态", "type": "单选题", "options": "A. 雷厉风行:闻风而动:行动\nB. 身无长物:宵衣旰食:贫困\nC. 腰缠万贯:富甲一方:富有\nD. 威仪不肃:正襟危坐:威望", "choice": "A", "keypoints": "语义关系-近义关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 190119, "human_acc": 19.4993661864, "source": "2022下半年省考第十季行测模考大赛(浙江A卷)第103题", "difficulty": 7, "formulas": 0}, {"id": 3988219, "material": "", "question": "奔跑:健步如飞:风驰电掣", "type": "单选题", "options": "A. 物价:洛阳纸贵:物美价廉\nB. 学习:悬梁刺股:韦编三绝\nC. 力气:气吞山河:气贯长虹\nD. 遥远:千山万水:天南海北", "choice": "B", "keypoints": "语义关系-近义关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 136579, "human_acc": 47.847033585, "source": "2021下半年省考第十八季行测模考大赛(河南卷)第108题", "difficulty": 6, "formulas": 0}, {"id": 2636151, "material": "", "question": "罪大恶极:恶贯满盈:画地刻木", "type": "单选题", "options": "A. 煽风点火:引火烧身:玩火自焚\nB. 囊萤映雪:悬梁刺股:金榜题名\nC. 精打细算:克勤克俭:挥霍无度\nD. 见风使舵:令人齿冷:人所不齿", "choice": "B", "keypoints": "语义关系-近义关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 132440, "human_acc": 48.0345816974, "source": "2020年下半年省考第五季行测模考大赛(新疆卷)第91题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 5595621, "material": "", "question": "道:头头是道:能说会道", "type": "单选题", "options": "A. 明:弃暗投明:柳暗花明\nB. 食:饥不择食:丰衣足食\nC. 语:流言蜚语:花言巧语\nD. 书:博览群书:罄竹难书", "choice": "D", "keypoints": "拆分思维;语义-其他", "most_wrong": "C", "human_count": 44985, "human_acc": 54.9294209181, "source": "2023下半年省考第六季行测模考大赛(陕西卷)第77题", "difficulty": 6, "formulas": 0, "history": [{"id": 2028310, "material": "", "question": "成百:上千", "type": "单选题", "options": "A. 三教:九流\nB. 三头:六臂\nC. 千变:万化\nD. 千方:百计", "choice": "C", "keypoints": "拆分思维;语义-其他", "most_wrong": "D", "human_count": 2909608, "human_acc": 81.7579550235, "source": "2017年国家公务员录用考试《行测》题(地市级)第93题", "difficulty": 5, "formulas": 0}, {"id": 4928009, "material": "", "question": "苦尽:甘来", "type": "单选题", "options": "A. 冷嘲:热讽\nB. 大街:小巷\nC. 异口:同声\nD. 内忧:外患", "choice": "A", "keypoints": "拆分思维;语义-其他", "most_wrong": "D", "human_count": 348955, "human_acc": 34.2496883552, "source": "2022年重庆市选调优秀大学生到基层工作考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2261877, "material": "", "question": "扶贫:济困", "type": "单选题", "options": "A. 励精:图治\nB. 克难:攻坚\nC. 狼吞:虎咽\nD. 星罗:棋布", "choice": "B", "keypoints": "拆分思维;语义-其他", "most_wrong": "C", "human_count": 12048, "human_acc": 84.8024568393, "source": "2017年湖北省选调生行测题(精选)第102题", "difficulty": 4, "formulas": 0}, {"id": 2764341, "material": "", "question": "抢:夺:抢夺", "type": "单选题", "options": "A. 卑:鄙:卑鄙\nB. 欺:凌:欺凌\nC. 贫:穷:贫穷\nD. 救:济:救济", "choice": "B", "keypoints": "拆分思维;语义-其他", "most_wrong": "C", "human_count": 185845, "human_acc": 56.066614652, "source": "2021上半年省考第五季行测模考大赛(广东卷)第60题", "difficulty": 6, "formulas": 0}, {"id": 5546575, "material": "", "question": "望梅止渴:画饼充饥", "type": "单选题", "options": "A. 刻舟求剑:凿壁偷光\nB. 削足适履:生搬硬套\nC. 胶柱鼓瑟:一成不变\nD. 杀鸡儆猴:杀一儆百", "choice": "D", "keypoints": "拆分思维;语义-其他", "most_wrong": "A", "human_count": 39266, "human_acc": 53.9066877197, "source": "2023上半年省考第十三季行测模考大赛(四川卷)第72题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 1429, "material": "", "question": "一个面积为2π的圆内接长方形的最大面积为:", "type": "单选题", "options": "A. π\nB. 3\nC. 2\nD. 4", "choice": "D", "keypoints": "平面几何;非典型最值问题", "most_wrong": "C", "human_count": 27126, "human_acc": 62.6115166261, "source": "2008年江苏省公务员录用考试《行测》题(C类)第14题", "difficulty": 5, "formulas": 0, "history": [{"id": 28117, "material": "", "question": "一个三角形的面积为12平方米,则该三角形内接正方形的最大面积为:", "type": "单选题", "options": "A. 6平方米\nB. 4平方米\nC. 3平方米\nD. 不能确定", "choice": "A", "keypoints": "平面几何;非典型最值问题", "most_wrong": "B", "human_count": 12933, "human_acc": 60.1793860667, "source": "2008年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 5, "formulas": 0}, {"id": 2187522, "material": "", "question": "某地市区有一个长方形广场,其面积为1600平方米。由此可知,这个广场的周长至少有:", "type": "单选题", "options": "A. 160米\nB. 200米\nC. 240米\nD. 320米", "choice": "A", "keypoints": "平面几何;非典型最值问题", "most_wrong": "B", "human_count": 820284, "human_acc": 49.0622759922, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第67题", "difficulty": 6, "formulas": 0}, {"id": 5510292, "material": "", "question": "在边长为2正方形中投入若干石子(石子大小忽略不计),问至少投几个石子才能使这些石子中一定存在距离不超过$\\sqrt{2}$的两个石子?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "A", "keypoints": "平面几何;非典型最值问题", "most_wrong": "B", "human_count": 175971, "human_acc": 37.9750072455, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 1}, {"id": 3727407, "material": "", "question": "有一面长方形的旧墙需要翻修,长是273厘米,宽是231厘米。现要用相同的正方形瓷砖做装饰,恰好铺满该墙面,那么最少需要多少块瓷砖?", "type": "单选题", "options": "A. 122\nB. 132\nC. 143\nD. 156", "choice": "C", "keypoints": "平面几何;非典型最值问题", "most_wrong": "B", "human_count": 81199, "human_acc": 56.4982327369, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第38题", "difficulty": 6, "formulas": 0}, {"id": 3888199, "material": "", "question": "一只蚂蚁在一个面积为10平方米的三角形区域内活动,三角形的三个顶点各有一个热源。已知距离每个热源1米的范围内对蚂蚁来说是危险区域,则蚂蚁活动的全部安全区域至少约是多少平方米?($\\pi$近似取3.14)", "type": "单选题", "options": "A. 9.12\nB. 8.43\nC. 6.64\nD. 1.57", "choice": "B", "keypoints": "平面几何;非典型最值问题", "most_wrong": "C", "human_count": 38481, "human_acc": 46.085080949, "source": "2021下半年省考第十六季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 1}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 25079, "material": "", "question": "下列关于国家行政机关之间的说法正确的是:", "type": "单选题", "options": "A. 各级国家行政机关都有权实施行政处罚\nB. 行政诉讼实行举证责任倒置原则,因此,行政机关承担全部举证责任\nC. 国家行政机关公务员被判处刑罚的,给予开除处分\nD. 国务院的法定会议形式分为国务院常务会议、国务院全体会议、国务院办公会议", "choice": "C", "keypoints": "行政法", "most_wrong": "D", "human_count": 454826, "human_acc": 51.8189373519, "source": "2010年国家公务员录用考试《行测》题第137题", "difficulty": 5, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 5102165, "material": "", "question": "肥:瘦:挑肥拣瘦", "type": "单选题", "options": "A. 上:下:欺上瞒下\nB. 来:去:翻来覆去\nC. 黑:白:黑白分明\nD. 是:非:口是心非", "choice": "A", "keypoints": "语义关系-反义关系;拆分思维", "most_wrong": "B", "human_count": 1668176, "human_acc": 62.418293993, "source": "2022年内蒙古公务员录用考试《行测》题(网友回忆版)第94题", "difficulty": 5, "formulas": 0, "history": [{"id": 2776031, "material": "", "question": "先礼:后兵", "type": "单选题", "options": "A. 居安:思危\nB. 头重:脚轻\nC. 鞍前:马后\nD. 生离:死别", "choice": "B", "keypoints": "语义关系-反义关系;拆分思维", "most_wrong": "D", "human_count": 1916499, "human_acc": 34.5706415709, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第88题", "difficulty": 5, "formulas": 0}, {"id": 2636135, "material": "", "question": "惩恶:扬善", "type": "单选题", "options": "A. 凶多:吉少\nB. 阴晴:圆缺\nC. 喜新:厌旧\nD. 拈轻:怕重", "choice": "C", "keypoints": "语义关系-反义关系;拆分思维", "most_wrong": "D", "human_count": 138951, "human_acc": 72.5212484977, "source": "2020年下半年省考第五季行测模考大赛(新疆卷)第88题", "difficulty": 4, "formulas": 0}, {"id": 2674477, "material": "", "question": "深入:浅出", "type": "单选题", "options": "A. 大同:小异\nB. 瞻前:顾后\nC. 青山:绿水\nD. 内忧:外患", "choice": "A", "keypoints": "语义关系-反义关系;拆分思维", "most_wrong": "B", "human_count": 3190, "human_acc": 87.3040752351, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第107题", "difficulty": 5, "formulas": 0}, {"id": 1324711, "material": "", "question": "高大:渺小", "type": "单选题", "options": "A. 无穷:无尽\nB. 春种:秋收\nC. 赞誉:诋毁\nD. 牛奶:面包", "choice": "C", "keypoints": "语义关系-反义关系;拆分思维", "most_wrong": "B", "human_count": 993247, "human_acc": 95.917027688, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第47题", "difficulty": 5, "formulas": 0}, {"id": 1939, "material": "", "question": "南辕:北辙", "type": "单选题", "options": "A. 声东:击西\nB. 虚情:假意\nC. 七上:八下\nD. 阳春:白雪", "choice": "A", "keypoints": "语义关系-反义关系;拆分思维", "most_wrong": "C", "human_count": 59613, "human_acc": 63.1003304648, "source": "2008年江西省公务员录用考试《行测》题第67题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "拆分思维"]]}, {"id": 4818044, "material": "", "question": "化险为夷:转危为安", "type": "单选题", "options": "A. 异曲同工:深入浅出\nB. 承前启后:继往开来\nC. 除旧布新:空前绝后\nD. 畏首畏尾:瞻前顾后", "choice": "B", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "D", "human_count": 1415710, "human_acc": 44.5143426267, "source": "2022年青海省公务员录用考试《行测》题(网友回忆版)第87题", "difficulty": 5, "formulas": 0, "history": [{"id": 4807496, "material": "", "question": "辩论:争吵", "type": "单选题", "options": "A. 责备:诋毁\nB. 抱怨:埋怨\nC. 干扰:骚扰\nD. 支持:破坏", "choice": "C", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "A", "human_count": 1838, "human_acc": 52.0674646355, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第86题", "difficulty": 5, "formulas": 0}, {"id": 4800094, "material": "", "question": "顾此失彼:捉襟见肘", "type": "单选题", "options": "A. 挑肥拣瘦:先人后己\nB. 心灰意冷:灰心丧气\nC. 扬长避短:避实就虚\nD. 来因去果:有始无终", "choice": "B", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "C", "human_count": 336416, "human_acc": 72.6612289546, "source": "2022上半年省考第十一季行测模考大赛(广东乡镇卷)第59题", "difficulty": 5, "formulas": 0}, {"id": 4581716, "material": "", "question": "随机应变:见风使舵", "type": "单选题", "options": "A. 侃侃而谈:夸夸其谈\nB. 无微不至:无所不至\nC. 欢天喜地:喜气洋洋\nD. 不负众望:不孚众望", "choice": "A", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "C", "human_count": 10299, "human_acc": 65.4141178755, "source": "2021下半年省考第三十三季行测模考大赛(甘肃卷)第84题", "difficulty": 4, "formulas": 0}, {"id": 4487270, "material": "", "question": "利欲熏心:唯利是图", "type": "单选题", "options": "A. 死有余辜:死不瞑目\nB. 聚精会神:全神贯注\nC. 目不识丁:文不加点\nD. 自以为是:刚愎自用", "choice": "D", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "B", "human_count": 11069, "human_acc": 64.1069653989, "source": "2021下半年省考第二十六季行测模考大赛(甘肃卷)第84题", "difficulty": 4, "formulas": 0}, {"id": 4492885, "material": "", "question": "无所适从:莫衷一是", "type": "单选题", "options": "A. 沉鱼落雁:闭月羞花\nB. 獐头鼠目:贼眉鼠眼\nC. 杀鸡儆猴:指桑骂槐\nD. 摩肩接踵:熙熙攘攘", "choice": "D", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "C", "human_count": 10885, "human_acc": 35.3789618741, "source": "2021下半年省考第二十七季行测模考大赛(甘肃卷)第84题", "difficulty": 7, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 2188292, "material": "", "question": "根据住房城乡建设部《生活垃圾分类制度实施方案》,下列选项属于有害垃圾的是:", "type": "单选题", "options": "A. 畜禽产品内脏\nB. 废弃电子产品\nC. 废旧纺织物\nD. 废荧光灯管", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 925367, "human_acc": 42.5647337759, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第45题", "difficulty": 6, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 2739318, "material": "", "question": "下列关于“2019年度海南省科学技术奖”说法正确的有(    )。\n\n①“海南莎草科资源研究及其分类学修订”成果为海南省自然科学奖特等奖\n\n②“太阳能利用高性能电极材料的精细设计”成果为海南省自然科学奖一等奖\n\n③“甘蔗高效转基因育种技术研发及基因资源挖掘”成果为海南省技术发明奖二等奖\n\n④“国际热带农业中心”为海南省国际科学技术合作奖", "type": "单选题", "options": "A. ①②\nB. ①②③\nC. ②③④\nD. ①②③④", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 3825, "human_acc": 63.7908496732, "source": "2021上半年省考第二季行测模考大赛(海南卷)第92题", "difficulty": 4, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 2621841, "material": "", "question": "甲醛:氧气:刺激性", "type": "单选题", "options": "A. 象棋:围棋:趣味性\nB. 金属:玻璃:导电性\nC. 短跑:长跑:竞争性\nD. 流体:固体:流动性", "choice": "B", "keypoints": "逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 136300, "human_acc": 52.7212032282, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第91题", "difficulty": 6, "formulas": 0, "history": [{"id": 2022316, "material": "", "question": "书:纸:笔", "type": "单选题", "options": "A. 河:水:海\nB. 饭:米:青菜\nC. 林:树:木\nD. 枪:子弹:炮", "choice": "B", "keypoints": "逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 494476, "human_acc": 53.2015709559, "source": "2016年吉林省公务员录用考试《行测》题(乙级)第68题", "difficulty": 5, "formulas": 0}, {"id": 2796882, "material": "", "question": "砂糖:酸甜苦辣", "type": "单选题", "options": "A. 山洪:风霜雨雪\nB. 大雁:飞禽走兽\nC. 徽墨:笔墨纸砚\nD. 红枣:青红皂白", "choice": "D", "keypoints": "逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 239921, "human_acc": 23.5727593666, "source": "2022年国考第一季行测模考大赛(副省级)第97题", "difficulty": 7, "formulas": 0}, {"id": 4495937, "material": "", "question": "酒:高粱:葡萄", "type": "单选题", "options": "A. 酸奶:牛奶:羊奶\nB. 黄河:长江:珠江\nC. 豆腐:豆干:豆皮\nD. 面塑:泥塑:木雕", "choice": "A", "keypoints": "逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 227703, "human_acc": 86.3190208298, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第98题", "difficulty": 3, "formulas": 0}, {"id": 26349, "material": "", "question": "卫星:飞船:航天", "type": "单选题", "options": "A. 股票:债券:金融\nB. 错层:复式:别墅\nC. 预算:结算:决算\nD. 移动:联通:电信", "choice": "A", "keypoints": "逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "B", "human_count": 582150, "human_acc": 86.8750322082, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第92题", "difficulty": 5, "formulas": 0}, {"id": 2184630, "material": "", "question": "蚊子:蚊帐:蚊香", "type": "单选题", "options": "A. 院子:木门:铁门\nB. 暴雨:雨伞:雨衣\nC. 窗户:窗纱:窗帘\nD. 疾病:疫苗:病菌", "choice": "B", "keypoints": "逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 857723, "human_acc": 94.9983852596, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第79题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 5509902, "material": "", "question": "中国特色社会主义进入新时代以来,以习近平同志为核心的党中央对我国生态文明建设作出一系列重大部署,创造了举世瞩目的生态奇迹和绿色发展奇迹。对此,下列说法不正确的是:", "type": "单选题", "options": "A. 把“绿色”纳入新发展理念\nB. 把“美丽中国”纳入社会主义现代化强国目标\nC. 把“生态文明建设”纳入“四个全面”战略布局\nD. 把“人与自然和谐共生”纳入新时代坚持和发展中国特色社会主义基本方略", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 363783, "human_acc": 38.2596218075, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第5题", "difficulty": 4, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 2062734, "material": "", "question": "标有$a$、$b$、$c$、$d$、$e$、$f$记号的六盏灯按序排成一行。每盏灯装有开关,现有$b$、$d$两盏灯亮着,其余灯是灭的。某测试人员拉动$a$灯开关,并按序拉动$b$、$c$、$d$、$e$、$f$灯开关,再按此顺序循环拉下去。则当测试人员拉动2023次后,亮着的灯应该是(    )。", "type": "单选题", "options": "A. $b、c$\nB. $a、b、d$\nC. $a、c、e$\nD. $c、e、f$", "choice": "D", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 201086, "human_acc": 45.8425748187, "source": "2016年广州市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 348, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 49171, "material": "", "question": "2013年是中国农历蛇年。在本世纪余下年份里,农历是蛇年的年份还有:", "type": "单选题", "options": "A. 5个\nB. 6个\nC. 7个\nD. 8个", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 397220, "human_acc": 75.9863551684, "source": "2013年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 3, "formulas": 0}, {"id": 1353, "material": "", "question": "把分数$\\frac{3}{7}$用小数来表示,则小数点后第2008位的数字是:", "type": "单选题", "options": "A. 1\nB. 2\nC. 4\nD. 5", "choice": "D", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 59335, "human_acc": 75.2827167776, "source": "2008年浙江省公务员录用考试《行测》题第11题", "difficulty": 4, "formulas": 1}, {"id": 453, "material": "", "question": "学校举行运动会,要求按照红、黄、绿、紫的颜色插彩旗于校门口,请问第58面旗是什么颜色?", "type": "单选题", "options": "A. 黄\nB. 红\nC. 绿\nD. 紫", "choice": "A", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 50270, "human_acc": 86.5904117764, "source": "2008年广西壮族自治区公务员录用考试《行测》题第10题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"]]}, {"id": 5703389, "material": "", "question": "某植物园计划开辟一片形状为直角三角形的玫瑰花圃。己知该花圃的两条直角边的长度分别为80米和60米。现考虑将花圃入口设在最长边上的某处,在直角顶点处还设置了一个喷泉,则从花圃入口到达喷泉可能的最短路线为________米。", "type": "单选题", "options": "A. 48\nB. 50\nC. 56\nD. 64", "choice": "A", "keypoints": "平面几何", "most_wrong": "B", "human_count": 93, "human_acc": 70.9677419355, "source": "2016年上海市行政执法类考试《行测》试题(网友回忆版)第55题", "difficulty": 3, "formulas": 0, "history": [{"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 7325, "material": "", "question": "一个四边形去掉一个角,还剩几个角?下列不可能的是:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "D", "keypoints": "平面几何", "most_wrong": "B", "human_count": 18944, "human_acc": 65.5563766892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2256406, "material": "", "question": "一个矩形的周长为100,它的面积可能是多少?", "type": "单选题", "options": "A. 600\nB. 650\nC. 700\nD. 750", "choice": "A", "keypoints": "平面几何", "most_wrong": "B", "human_count": 24813, "human_acc": 71.4544795067, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第64题", "difficulty": 4, "formulas": 0}, {"id": 827287, "material": "", "question": "等边三角形边长减少为原来的50%,面积减少了:", "type": "单选题", "options": "A. 75%\nB. 60%\nC. 55%\nD. 50%", "choice": "A", "keypoints": "平面几何", "most_wrong": "D", "human_count": 165807, "human_acc": 67.3524036983, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第58题", "difficulty": 4, "formulas": 0}, {"id": 6713, "material": "", "question": "若半径不相等的两个圆有公共点,那么这两个圆的公切线最多有:", "type": "单选题", "options": "A. 1条\nB. 2条\nC. 3条\nD. 4条", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 23925, "human_acc": 55.8620689655, "source": "2009年江苏省公务员录用考试《行测》题(A类)第14题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"]]}, {"id": 4669655, "material": "", "question": "根据《中华人民共和国公司法》,下列说法正确的是(    )。", "type": "单选题", "options": "A. 有限责任公司股东会会议更换公司董事不用经代表三分之二以上表决权的股东通过\nB. 股份有限公司董事会成员中应当包括公司职工代表\nC. 分公司具有法人资格,依法独立承担民事责任\nD. 股份有限公司的股东以其认缴的出资额为限对公司承担责任", "choice": "A", "keypoints": "经济法", "most_wrong": "D", "human_count": 27401, "human_acc": 6.8902594796, "source": "2022上半年省考第一季行测模考大赛(四川卷)第6题", "difficulty": 7, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 2062768, "material": "", "question": "某部门里身高各不相同的8人一起排练合唱节目。合唱要求8人排成两排,前后人员对齐,但要求后排的每个人要比站其前面的那个人高,以不被挡住。则这8人的站位方法有(    )种。", "type": "单选题", "options": "A. 980\nB. 1260\nC. 1860\nD. 2520", "choice": "D", "keypoints": "基础排列组合", "most_wrong": "B", "human_count": 198556, "human_acc": 21.715284353, "source": "2016年广州市公务员录用考试《行测》题第51题", "difficulty": 6, "formulas": 0, "history": [{"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 48241, "material": "", "question": "由1—9中的数字组成一个三位数,有数字重复的情形有多少种:", "type": "单选题", "options": "A. 220\nB. 255\nC. 280\nD. 225", "choice": "D", "keypoints": "基础排列组合", "most_wrong": "B", "human_count": 169979, "human_acc": 51.8328734726, "source": "2013年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 18299, "material": "", "question": "从1、2、3、4中任取3个数组成没有重复的三位数的偶数,取法种数为:", "type": "单选题", "options": "A. 13\nB. 12\nC. 10\nD. 11", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 110794, "human_acc": 79.2010397675, "source": "2011年吉林省公务员录用考试《行测》题第7题", "difficulty": 4, "formulas": 0}, {"id": 2139432, "material": "", "question": "有4个不同的信箱,有5封不同的信件欲投其中,则不同的投法有:", "type": "单选题", "options": "A. 5种\nB. 1024种\nC. 40种\nD. 625种", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 31244, "human_acc": 52.6661118935, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第4题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 44479, "material": "", "question": "香港:澳门:港澳", "type": "单选题", "options": "A. 广东:广西:两广\nB. 海洋:岛屿:海岛\nC. 上海:南京:沪宁高速\nD. 科技:伦理:科技伦理", "choice": "A", "keypoints": "逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 356428, "human_acc": 87.5514830485, "source": "2012年江苏省公务员录用考试《行测》题(B类)第99题", "difficulty": 5, "formulas": 0, "history": [{"id": 4970429, "material": "", "question": "申:酉:地支", "type": "单选题", "options": "A. 兑:坎:八卦\nB. 辛:癸:天干\nC. 诗:书:五经\nD. 猴:鸡:生肖", "choice": "D", "keypoints": "逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 269474, "human_acc": 54.6097211605, "source": "2022上半年省考第十八季行测模考大赛(河南卷)第106题", "difficulty": 6, "formulas": 0}, {"id": 4818020, "material": "", "question": "五音:商:徵", "type": "单选题", "options": "A. 五经:易:乐\nB. 五谷:麦:稷\nC. 五金:金:铝\nD. 五行:火:雷", "choice": "B", "keypoints": "逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1426340, "human_acc": 57.1632990732, "source": "2022年青海省公务员录用考试《行测》题(网友回忆版)第93题", "difficulty": 5, "formulas": 0}, {"id": 5566669, "material": "", "question": "五谷:黍:稷", "type": "单选题", "options": "A. 五帝:舜:禹\nB. 六艺:琴:棋\nC. 七情:悲:喜\nD. 六腑:肝:胆", "choice": "C", "keypoints": "逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 48283, "human_acc": 29.4596441812, "source": "2023下半年省考第二季行测模考大赛(河南卷)第71题", "difficulty": 7, "formulas": 0}, {"id": 2741977, "material": "", "question": "花:鸟:杜鹃", "type": "单选题", "options": "A. 戏:剧:昆曲\nB. 钟:表:秒表\nC. 草:木:植物\nD. 人:畜:黄牛", "choice": "D", "keypoints": "逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1191886, "human_acc": 70.4309808153, "source": "2021年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第71题", "difficulty": 5, "formulas": 0}, {"id": 2719445, "material": "", "question": "江河湖海:水体", "type": "单选题", "options": "A. 鳏寡孤独:身份\nB. 油盐酱醋:调味\nC. 山珍海味:美食\nD. 绫罗绸缎:面料", "choice": "D", "keypoints": "逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 1752990, "human_acc": 56.0093896714, "source": "2021年国家公务员录用考试《行测》题(副省级网友回忆版)第96题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 3835961, "material": "", "question": "中国:北京:圆明园", "type": "单选题", "options": "A. 美国:纽约:白宫\nB. 泰国:曼谷:泰姬陵\nC. 英国:伦敦:白金汉宫\nD. 澳大利亚:悉尼:悉尼塔", "choice": "C", "keypoints": "逻辑关系-对应关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 126197, "human_acc": 40.7981172294, "source": "2021下半年省考第十五季行测模考大赛(广东乡镇卷)第60题", "difficulty": 6, "formulas": 0, "history": [{"id": 2741975, "material": "", "question": "金:金币:货币", "type": "单选题", "options": "A. 木:木床:床\nB. 水:水稻:稻\nC. 火:火盆:盆\nD. 土:土鸡:鸡", "choice": "A", "keypoints": "逻辑关系-对应关系;逻辑关系-包容关系", "most_wrong": "C", "human_count": 1080079, "human_acc": 95.9923301907, "source": "2021年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第71题", "difficulty": 5, "formulas": 0}, {"id": 2452554, "material": "", "question": "笔:文具:写字", "type": "单选题", "options": "A. 缸:容器:盛水\nB. 钟:时间:计时\nC. 草:植物:喂牛\nD. 瓦:建材:砌墙", "choice": "A", "keypoints": "逻辑关系-对应关系;逻辑关系-包容关系", "most_wrong": "D", "human_count": 1396431, "human_acc": 86.8824166751, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第69题", "difficulty": 5, "formulas": 0}, {"id": 1751800, "material": "", "question": "光:激光:光柱", "type": "单选题", "options": "A. 水:流水:河流\nB. 枣:红枣:枣树\nC. 人:好人:人心\nD. 词:词汇:汉语", "choice": "A", "keypoints": "逻辑关系-对应关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 514333, "human_acc": 51.4324377398, "source": "2015年江苏省公务员录用考试《行测》题(C类)第39题", "difficulty": 5, "formulas": 0}, {"id": 49705, "material": "", "question": "文字:剧本:话剧", "type": "单选题", "options": "A. 水:水果:果汁\nB. 叶子:植物:中药\nC. 字母:键盘:文章\nD. 音符:乐谱:歌曲", "choice": "D", "keypoints": "逻辑关系-对应关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 2025472, "human_acc": 92.3596080321, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第114题", "difficulty": 5, "formulas": 0}, {"id": 2015388, "material": "", "question": "健身:器械:形体", "type": "单选题", "options": "A. 阅兵:坦克:广场\nB. 教育:书本:知识\nC. 勘探:矿产:石油\nD. 导航:汽车:卫星", "choice": "B", "keypoints": "逻辑关系-对应关系;逻辑关系-包容关系", "most_wrong": "C", "human_count": 535319, "human_acc": 87.933176293, "source": "2016年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 566479, "material": "", "question": "①今年全国“两会”实行矿泉水“实名制”,不再提供沏茶服务。这________不是一种创新?\n\n②只要我们还拥有生命,就得对生命负责,让生命________出光彩。\n\n③我们经历了灾难的创痛,更在灾难中铸就了不屈的精神,________了无尽的力量。", "type": "单选题", "options": "A. 难道 散发 凝结\nB. 何尝 散发 凝聚\nC. 何尝 焕发 凝聚\nD. 何曾 焕发 凝结", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 405347, "human_acc": 84.6025750776, "source": "2014年河北省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0, "history": [{"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 3871, "material": "", "question": "讲诚信,就应说到做到,对作出的承诺决不能________:", "type": "单选题", "options": "A. 食言\nB. 失言\nC. 逃避\nD. 扯谎", "choice": "A", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 64431, "human_acc": 93.878722975, "source": "2008年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 323, "material": "", "question": "在人际交往中,多听少说,善于倾听别人讲话是一种良好的___。", "type": "单选题", "options": "A. 修养\nB. 格调\nC. 素养\nD. 道德", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 106331, "human_acc": 45.2248168455, "source": "2008年湖南省公务员录用考试《行测》题第9题", "difficulty": 6, "formulas": 0}, {"id": 3501, "material": "", "question": "毋庸______,中华民族优秀的民族文化是人类历史上的一笔宝贵财富。", "type": "单选题", "options": "A. 置疑\nB. 怀疑\nC. 多疑\nD. 质疑", "choice": "A", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 93002, "human_acc": 91.2238446485, "source": "2008年广东省公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 622607, "material": "", "question": "沿一个平面将长、宽和高分别为8、5和3厘米的长方体切割为两部分,问两部分的表面积之和最大是多少平方厘米:", "type": "单选题", "options": "A. 206\nB. 238\nC. $158+16\\sqrt{34}$\nD. $158+10\\sqrt{73}$", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 602310, "human_acc": 54.9595723133, "source": "2014年四川省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 209, "history": [{"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 16173, "material": "", "question": "如果不堆叠,直径16厘米的盘子里最多可以放多少个边长为6厘米的正方体:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 44853, "human_acc": 37.8079504158, "source": "2010年贵州省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 9131, "material": "", "question": "若正四面体的棱长增长10%,则该正四面体的表面积增加:", "type": "单选题", "options": "A. 21%\nB. 15%\nC. 44%\nD. 40%", "choice": "A", "keypoints": "立体几何", "most_wrong": "C", "human_count": 9164, "human_acc": 64.4260148407, "source": "2009年江苏省公务员录用考试《行测》题(C类)第14题", "difficulty": 5, "formulas": 0}, {"id": 5271, "material": "", "question": "一个球体的半径增加10%后,它的表面积增长百分之几:", "type": "单选题", "options": "A. 10%\nB. 21%\nC. 33.1%\nD. 25%", "choice": "B", "keypoints": "立体几何", "most_wrong": "C", "human_count": 28839, "human_acc": 60.3835084434, "source": "2008年江苏省公务员录用考试《行测》题(A类)第16题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 1709, "material": "", "question": "一本书,小静第一天读了12.5%,第二天读了37.5%,第二天比第一天多读了32页,这本书共多少页?", "type": "单选题", "options": "A. 98\nB. 108\nC. 118\nD. 128", "choice": "D", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 24553, "human_acc": 83.5702358164, "source": "2008年陕西省公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0, "history": [{"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2136472, "material": "", "question": "一本书的正文页码数字中总计出现了87次2,问出现3的次数比6多多少次?", "type": "单选题", "options": "A. 3\nB. 4\nC. 6\nD. 10", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 373729, "human_acc": 16.2021143663, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第42题", "difficulty": 7, "formulas": 0}, {"id": 50653, "material": "", "question": "一款手机打七折后价格为1050元,则该手机原价为(  )元。", "type": "单选题", "options": "A. 1100\nB. 1400\nC. 1500\nD. 2100", "choice": "C", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 326583, "human_acc": 92.3495711657, "source": "2013年广东省公务员录用考试《行测》题(一)第6题", "difficulty": 3, "formulas": 0}, {"id": 50655, "material": "", "question": "某企业组织80名员工一起去划船,每条船乘客定员12人,则该企业最少需要租船多少条:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 390926, "human_acc": 84.3164691016, "source": "2013年广东省公务员录用考试《行测》题(一)第7题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 2434265, "material": "", "question": "方阵训练时,教官让40名学生站成一行面向自己。教官喊出某个数字后,该数字倍数的同学要向后转。第一次教官喊了数字3,喊完第二次数字后,他发现面向自己的学生还有24名。教官第二次喊的数字是(    )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "D", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 48351, "human_acc": 42.0198134475, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第60题", "difficulty": 4, "formulas": 0, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 4801487, "material": "", "question": "一个数有6个约数,其最小的3个约数之和为11,满足条件的所有数之和是多少?", "type": "单选题", "options": "A. 210\nB. 343\nC. 798\nD. 840", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 1577, "human_acc": 9.8287888396, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}, {"id": 13571, "material": "", "question": "将参与社会活动的108名学生平均分成若干小组,每组人数在8-30人之间,有多少种不同的分法:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 24574, "human_acc": 40.0016277366, "source": "2009年四川省公务员录用考试《行测》题(上半年)第10题", "difficulty": 5, "formulas": 0}, {"id": 9273, "material": "", "question": "整数64具有可被它的个位数字所整除的性质。\n\n试问在10和50之间有多少个整数具有这种性质?", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 18", "choice": "C", "keypoints": "公倍数与公约数问题", "most_wrong": "B", "human_count": 28057, "human_acc": 45.8994190398, "source": "2009年河南省公务员录用考试《行测》题第55题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"]]}, {"id": 2144764, "material": "", "question": "在________着传统女性乞巧习俗、忠贞不渝爱情观和现代时尚情人节多样标签的七夕,已经愈加成为________传统文化的窗口,成为青年人眼中表达浪漫爱情的舞台。\n\n依次填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 承继 宣扬\nB. 发展 弘扬\nC. 沿袭 推广\nD. 跟随 宣扬", "choice": "A", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 13573, "human_acc": 49.7384513372, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3859, "material": "", "question": "现在有的人,遇到问题,就相互__________,谁也不肯主动承担责任:", "type": "单选题", "options": "A. 责备\nB. 推托\nC. 推诿\nD. 谦让", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 64614, "human_acc": 72.8263224688, "source": "2008年安徽省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14053, "material": "", "question": "新媒体的迅速成长使中国传媒产业结构发生了很大的变化,中国报业进入(    )的关键时期。", "type": "单选题", "options": "A. 改革\nB. 转型\nC. 发展\nD. 突围", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41222, "human_acc": 78.2106642084, "source": "2009年四川省公务员录用考试《行测》题(上半年)第20题", "difficulty": 5, "formulas": 0}, {"id": 7687, "material": "", "question": "生活就像一杯茶,平淡是它的本色,苦涩是它的_______,清香是它的馈赠。\n\n上面划线处填入词语,最恰当的是:", "type": "单选题", "options": "A. 历陈\nB. 归宿\nC. 历程\nD. 结果", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 45474, "human_acc": 72.0521616748, "source": "2009年江西省公务员录用考试《行测》题第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 20983, "material": "", "question": "5个人手拉手围成一个圆圈,问共有多少种不同的方法:", "type": "单选题", "options": "A. 120\nB. 24\nC. 60\nD. 30", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "A", "human_count": 45073, "human_acc": 41.6102766623, "source": "2010年新疆维吾尔自治区公务员录用考试《行测》题第6题", "difficulty": 4, "formulas": 0, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 25299, "material": "", "question": "有5对夫妇参加一场婚宴,他们被安排在一张10个座位的圆桌就餐,但是婚礼操办者并不知道他们彼此之间的关系,只是随机安排座位。问5对夫妇恰好都被安排在一起相邻而坐的概率是多少:", "type": "单选题", "options": "A. 在1‰到5‰之间\nB. 在5‰到1%之间\nC. 超过1%\nD. 不超过1‰", "choice": "A", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 510557, "human_acc": 28.9239007594, "source": "2012年国家公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}, {"id": 2742003, "material": "", "question": "某次圆桌会议共设8个座位,有4个部门参加,每个部门2人,排座位时,要求同一部门的两人相邻,若小李和小王代表不同部门参加会议,则他们座位相邻的概率是:", "type": "单选题", "options": "A. $\\frac{1}{48}$\nB. $\\frac{1}{24}$\nC. $\\frac{1}{12}$\nD. $\\frac{1}{6}$", "choice": "D", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "C", "human_count": 459877, "human_acc": 24.8492531699, "source": "2021年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第56题", "difficulty": 5, "formulas": 398}, {"id": 2377373, "material": "", "question": "主人随机安排10名客人坐成一圈就餐,这10名客人中有两对情侣,那么这两对情侣恰好都被安排相邻而坐的概率约在(  )。", "type": "单选题", "options": "A. $0$到$2\\%$之间\nB. $2\\%$到$3\\%$之间\nC. $3\\%$到$4\\%$之间\nD. $4\\%$到$5\\%$之间\nE. $5\\%$到$6\\%$之间\nF. $6\\%$到$7\\%$之间\nG. $7\\%$到$8\\%$之间\nH. $8\\%$以上", "choice": "E", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "D", "human_count": 363840, "human_acc": 17.7242744063, "source": "2019年420联考《行测》题(陕西卷)(网友回忆版)第116题", "difficulty": 8, "formulas": 1258}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"]]}, {"id": 47715, "material": "", "question": "文学评论中,对形式的模仿与内容的抄袭,不应______;对早期的作品和现在的创作,不可______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 相提并论 等量齐观\nB. 等量齐观 混为一谈\nC. 混为一谈 同日而语\nD. 同日而语 相提并论", "choice": "C", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 649237, "human_acc": 81.8189659554, "source": "2013年浙江省公务员录用考试《行测》题(B类)第9题", "difficulty": 4, "formulas": 0, "history": [{"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 3505, "material": "", "question": "他的父亲是一名指挥家,或许因为______,孩提时的小刘便对乐器演奏显现出很高的天赋。", "type": "单选题", "options": "A. 耳闻目睹\nB. 耳提面命\nC. 耳熟能详\nD. 耳濡目染", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 119927, "human_acc": 95.7457453284, "source": "2008年广东省公务员录用考试《行测》题第20题", "difficulty": 3, "formulas": 0}, {"id": 277, "material": "", "question": "我们的研究发现,在工作动机上的个体差异是明显的。比如,对人类做出巨大贡献的两个人,洛克菲勒一生追求财富,圣雄甘地一生粗布缠身,人生目标___。", "type": "单选题", "options": "A. 相差甚远\nB. 各有所求\nC. 截然不同\nD. 南辕北辙", "choice": "C", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 115961, "human_acc": 70.8910754478, "source": "2008年湖南省公务员录用考试《行测》题第4题", "difficulty": 4, "formulas": 0}, {"id": 2452998, "material": "", "question": "图灵在密码方面取得的成就____________________。他发明了“图灵机”,虽然这个机器当时是为战争服务的,但是,在人工智能的发展历史中,却是____________的一个事件。", "type": "单选题", "options": "A. 可望而不可即,开天辟地\nB. 可望而不可及,开天辟地\nC. 可望而不可及,开天劈地\nD. 可望而不可即,开天劈地", "choice": "B", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1302652, "human_acc": 85.8957726238, "source": "2020年上海市公务员录用考试《行测》题(A类)(网友回忆版)第5题", "difficulty": 5, "formulas": 0}, {"id": 3522654, "material": "", "question": "区块链的诸多特征使其成为一项备受期待的革命性技术,而目前这一技术的应用潜能还远未被完全开发。今天我们看到的区块链技术在金融、物流、医疗、保险等领域的应用,仅是_____________般的一瞥所见,尚有许多应用正在被尝试、推广。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浮光掠影\nB. 走马观花\nC. 蜻蜓点水\nD. 浅尝辄止", "choice": "A", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 1839680, "human_acc": 36.3080535745, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 748747, "material": "", "question": "有一枚棋子从棋盘的起点走到终点,每次只能从起点向终点方向走9格或者从终点向起点方向走7格,问该棋盘至少有多少格(起点和终点各算一格),才能保证从起点出发的棋子都能走到终点并返回起点:", "type": "单选题", "options": "A. 9\nB. 10\nC. 15\nD. 16", "choice": "D", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 142337, "human_acc": 27.5550278564, "source": "2014年青海省公务员录用考试《行测》题第58题", "difficulty": 6, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 5296038, "material": "", "question": "瓷器:餐具:汤匙", "type": "单选题", "options": "A. 资源:煤炭:石油\nB. 汽车:曲柄:车架\nC. 雨布:伞具:雨伞\nD. 玉器:印章:官印", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "C", "human_count": 198577, "human_acc": 90.7602592445, "source": "2022下半年省考第十二季行测模考大赛(浙江C卷)第93题", "difficulty": 3, "formulas": 0, "history": [{"id": 2741980, "material": "", "question": "白鸽:母鸽:鸽", "type": "单选题", "options": "A. 柿饼:甜饼:饼\nB. 桃花:梨花:花\nC. 零售:网售:买\nD. 水桶:铁桶:桶", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1184474, "human_acc": 80.4456661776, "source": "2021年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第72题", "difficulty": 5, "formulas": 0}, {"id": 5408570, "material": "", "question": "四边形:矩形:菱形", "type": "单选题", "options": "A. 雄蕊:花药:花丝\nB. 固态:液态:气态\nC. 体裁:诗歌:散文\nD. 塑料:着色剂:稳定剂", "choice": "C", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1084353, "human_acc": 81.8456720275, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2188619, "material": "", "question": "扣子:西装:裤子", "type": "单选题", "options": "A. 鼠标:电脑:键盘\nB. 学生:青年:艺术家\nC. 窗帘:窗户:房子\nD. 方向盘:轿车:商务车", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1230062, "human_acc": 65.2997978964, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第85题", "difficulty": 5, "formulas": 0}, {"id": 4607741, "material": "", "question": "诗人:宋朝人:杜甫", "type": "单选题", "options": "A. 湖泊:海洋:西湖\nB. 液体:可燃物:酒精\nC. 书法家:哲学家:王羲之\nD. 运输:机翼:轮船", "choice": "C", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 6951, "human_acc": 48.9713710258, "source": "2021下半年省考第三十四季行测模考大赛(甘肃卷)第84题", "difficulty": 7, "formulas": 0}, {"id": 2741633, "material": "", "question": "天然气:气体:燃料", "type": "单选题", "options": "A. 读后感:感想:散文\nB. 量角器:圆规:文具\nC. 金银花:花卉:中药\nD. 互联网:网络:网站", "choice": "C", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 1195592, "human_acc": 94.37324773, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第64题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 4670676, "material": "", "question": "亭台楼阁:建筑", "type": "单选题", "options": "A. 雨雪霜露:天气\nB. 厉兵秣马:防御\nC. 抑扬顿挫:声音\nD. 刀枪剑戟:兵器", "choice": "D", "keypoints": "拆分思维;逻辑关系-包容关系", "most_wrong": "A", "human_count": 236438, "human_acc": 92.3772828395, "source": "2022上半年省考第一季行测模考大赛(四川卷)第71题", "difficulty": 3, "formulas": 0, "history": [{"id": 5510148, "material": "", "question": "绫罗绸缎:丝织物", "type": "单选题", "options": "A. 笔墨纸砚:澄泥砚\nB. 风轻云淡:云朵\nC. 亭台楼阁:建筑物\nD. 蛇鼠一窝:动物", "choice": "C", "keypoints": "拆分思维;逻辑关系-包容关系", "most_wrong": "A", "human_count": 391125, "human_acc": 92.7964205817, "source": "2023年黑龙江省公务员录用考试《行测》题(网友回忆版)第87题", "difficulty": 5, "formulas": 0}, {"id": 5579482, "material": "", "question": "崇山:峻岭:山系", "type": "单选题", "options": "A. 躁言:丑句:词语\nB. 拭目:倾耳:五官\nC. 枯枝:败叶:树木\nD. 寒霜:朔雪:气象", "choice": "C", "keypoints": "拆分思维;逻辑关系-包容关系", "most_wrong": "D", "human_count": 40056, "human_acc": 28.7672258838, "source": "2023下半年省考第四季行测模考大赛(陕西卷)第77题", "difficulty": 7, "formulas": 0}, {"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 48973, "material": "", "question": "嫦娥奔月", "type": "单选题", "options": "A. 后羿射日\nB. 鸡鸣起舞\nC. 欢呼雀跃\nD. 海纳百川", "choice": "A", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 492588, "human_acc": 98.5695956865, "source": "2013年江苏省公务员录用考试《行测》题(B类)第96题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 3727920, "material": "", "question": "唱念做打:念白", "type": "单选题", "options": "A. 说学逗唱:贯口\nB. 起承转合:承上\nC. 解甲归田:铠甲\nD. 诗词歌赋:宋词", "choice": "B", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 98135, "human_acc": 44.6527742396, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第56题", "difficulty": 6, "formulas": 0, "history": [{"id": 5241656, "material": "", "question": "《尚书》:《诗经》:四书五经", "type": "单选题", "options": "A. 洞庭湖:南海:五湖四海\nB. 嵩山:峨眉山:三山五岳\nC. 西南方:东北方:四面八方\nD. 心脏:小肠:五脏六腑", "choice": "C", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 164824, "human_acc": 17.3894578459, "source": "2022下半年省考第八季行测模考大赛(浙江C卷)第93题", "difficulty": 7, "formulas": 0}, {"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 4668700, "material": "", "question": "麒∶麟", "type": "单选题", "options": "A. 鲲∶鹏\nB. 凤∶凰\nC. 玄∶武\nD. 龙∶凤", "choice": "B", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 1209055, "human_acc": 65.5228256779, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第86题", "difficulty": 5, "formulas": 0}, {"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 48973, "material": "", "question": "嫦娥奔月", "type": "单选题", "options": "A. 后羿射日\nB. 鸡鸣起舞\nC. 欢呼雀跃\nD. 海纳百川", "choice": "A", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 492588, "human_acc": 98.5695956865, "source": "2013年江苏省公务员录用考试《行测》题(B类)第96题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 4614864, "material": "", "question": "序号为1-9的9个盒子中共装有162颗糖,每个盒子里糖的颗数按盒子的序号排序恰好构成等差数列,且3号盒子里糖的颗数比8号盒子少$\\frac{2}{3}$。问序号为偶数的盒子里共装有多少颗糖?", "type": "单选题", "options": "A. 72\nB. 78\nC. 84\nD. 90", "choice": "A", "keypoints": "数列问题", "most_wrong": "C", "human_count": 25144, "human_acc": 23.3892777601, "source": "2021下半年省考第三十五季行测模考大赛(浙江卷)第71题", "difficulty": 7, "formulas": 1, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}, {"id": 16549, "material": "", "question": "在1-101中5的倍数的所有数的平均数是:", "type": "单选题", "options": "A. 52.5\nB. 53.5\nC. 54.5\nD. 55.5", "choice": "A", "keypoints": "数列问题", "most_wrong": "C", "human_count": 118215, "human_acc": 72.9619760606, "source": "2010年安徽省公务员录用考试《行测》题第7题", "difficulty": 3, "formulas": 0}, {"id": 1147, "material": "", "question": "77个连续自然数的和是7546,则其中第45个自然数是:", "type": "单选题", "options": "A. 91\nB. 100\nC. 104\nD. 105", "choice": "C", "keypoints": "数列问题", "most_wrong": "D", "human_count": 45503, "human_acc": 69.4195987078, "source": "2008年山西省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"]]}, {"id": 2184679, "material": "", "question": "一项测验共有29道单项选择题,答对得5分,答错减3分,不答不得分也不减分,答对15题及以上另加10分,否则另减5分。小郑答题共得60分,问他最少有几道题未答?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 320756, "human_acc": 50.6179151754, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}, {"id": 16151, "material": "", "question": "某单位有宿舍11间,可以住67人,已知每间小宿舍住5人,中宿舍住7人,大宿舍住8人,则小宿舍间数是:", "type": "单选题", "options": "A. 6\nB. 7\nC. 8\nD. 9", "choice": "A", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 65148, "human_acc": 64.0526186529, "source": "2010年江苏省公务员录用考试《行测》题(A类)第38题", "difficulty": 4, "formulas": 0}, {"id": 6033, "material": "", "question": "小明在商店买了若干块5分钱的糖果和1角3分钱的糖果,如果他恰好用了1块钱,问他买了多少块5分钱的糖果:", "type": "单选题", "options": "A. 6\nB. 7\nC. 8\nD. 9", "choice": "B", "keypoints": "普通不定方程", "most_wrong": "C", "human_count": 35407, "human_acc": 81.6533453837, "source": "2008年云南省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 2042500, "material": "", "question": "设正整数$a$,$b$,$c$,满足$a\\lt b\\lt c$,且$ab+ac+bc=abc$,则$c$的值是:", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 9", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 385061, "human_acc": 58.9363763144, "source": "2017年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 6}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"]]}, {"id": 2730472, "material": "", "question": "将下列选项中的词语依次填入句子横线处恰当的一组是:\n\n毛笔文化的特征,恰是中国传统文人群体人格的________。在总体上,它应该淡隐了,但这并不________书法作为一种传统艺术光耀百世。喧嚣迅捷的现代社会时时需要获得审美慰抚,书法对此独具功效。我自己每每在头昏脑胀之际,近乎本能地把手伸向那些碑帖,只要轻轻翻开,洒脱委和的________立即扑面而来。", "type": "单选题", "options": "A. 反映 妨害 神韵\nB. 映照 妨碍 气韵\nC. 映射 阻碍 韵味\nD. 映衬 阻隘 风韵", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 892551, "human_acc": 71.8975162204, "source": "2020年深圳市考公务员录用考试《行测2》试题(网友回忆版)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 8773, "material": "", "question": "从下列四个选项中选择最合适的词语填入横线中:\n\n生命是一场充满意外收获的伟大_________,看上去难以掌握,其实_________无处不在。", "type": "单选题", "options": "A. 冒险 机遇\nB. 历程 惊险\nC. 历险 机会\nD. 奇迹 刺激", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 49930, "human_acc": 33.9695573803, "source": "2009年河南省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 2255949, "material": "", "question": "“素质教育”一直被认为是积极教育,虽然加以________,却难以推进,往往为应试教育的影响所________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 提倡 隐蔽\nB. 倡导 蒙蔽\nC. 提倡 遮蔽\nD. 倡导 荫蔽", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 6395, "human_acc": 63.3307271306, "source": "2014年江西省法检系统招录考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 5532334, "material": "", "question": "从甲骨文到金文,再到篆书、隶书、楷书,汉字的每一次演变,都是中华文明发展的________。然而,古文字在今人眼中却经常被视为“天书”,无法释读,难以亲近,进而影响了人们更好地________传统文化之美。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 诠释 创造\nB. 缩影 回溯\nC. 象征 欣赏\nD. 注脚 领略", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 40834, "human_acc": 46.2359798207, "source": "2023上半年省考第十二季行测模考大赛(西藏卷)第1题", "difficulty": 6, "formulas": 0}, {"id": 2144773, "material": "", "question": "保护好历史建筑,实质就是留住城市发展的______,让人真切 ______到城市的“昨天”“今天”与“明天”。我们并不______有历史的城市,但很多城市确实缺少“历史感”与“厚重感”。就此看,“不拆真遗存,不建假古董”,其实不是针对具体历史建筑的保护,而是强调对历史的敬畏,对人文本位的回归。依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 痕迹 感受 存在\nB. 文脉 体认 缺乏\nC. 线索 了解 获得\nD. 遗迹 领悟 缺少", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 14911, "human_acc": 52.4176782241, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第35题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 285, "material": "", "question": "我国的传统节日不像西方国家以宗教为主,我们是一个讲求礼义忠孝、仁爱康寿的___,传统节日代表着我们天人合一、和谐共生的文化根基和历史印记。", "type": "单选题", "options": "A. 国家\nB. 地区\nC. 民族\nD. 国度", "choice": "D", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 104634, "human_acc": 24.7204541545, "source": "2008年湖南省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0, "history": [{"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 14515, "material": "", "question": "夏天的大草原美极了,蔚蓝的天空(    )着一片片白云。", "type": "单选题", "options": "A. 铺展\nB. 铺陈\nC. 铺设\nD. 铺排", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 40926, "human_acc": 55.2851488052, "source": "2009年四川省公务员录用考试《行测》题(上半年)第25题", "difficulty": 5, "formulas": 0}, {"id": 2374707, "material": "", "question": "近年来,各地纷纷大刀阔斧地开展(    ),向不担当不作为亮剑。", "type": "单选题", "options": "A. 整理\nB. 整治\nC. 修理\nD. 梳理", "choice": "B", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 991664, "human_acc": 98.5790550025, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第3题", "difficulty": 2, "formulas": 0}, {"id": 10657, "material": "", "question": "元月13日,长沙市中级人民法院与长沙晚报联合召开会议,______“星城十佳法官”。", "type": "单选题", "options": "A. 表扬\nB. 赞扬\nC. 表彰\nD. 奖励", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41918, "human_acc": 98.0127868696, "source": "2009年湖南省公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 1796512, "material": "", "question": "农村电网(    )升级,事关广大农村地区的长远发展。\n\n填入括号处最恰当的一项是:", "type": "单选题", "options": "A. 改造\nB. 改线\nC. 改变\nD. 改良", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 844151, "human_acc": 82.4616685877, "source": "2016年广东省公务员录用考试《行测》题(乡镇)第2题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2262518, "material": "", "question": "近年来多渠道、多形式、多层次的对外文化交流,积极地参与世界文明对话,促进不同文化体的相互借鉴,________中华文化在世界上的传播力、感召力和影响力,在________我国文明、民主、开放、进步形象的同时,也________了国际社会对我国基本国情、价值观念、发展道路、内外政策的了解和认识。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 增强 展现 增进\nB. 扩大 呈现 促进\nC. 提升 展示 提高\nD. 增加 树立 推进", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 25431, "human_acc": 50.0766780701, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第18题", "difficulty": 5, "formulas": 0, "history": [{"id": 2262685, "material": "", "question": "我们要创造条件,使知识分子的才能得以充分的(    )。", "type": "单选题", "options": "A. 展现\nB. 发展\nC. 施展\nD. 伸展", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 4393, "human_acc": 83.5647621216, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第11题", "difficulty": 5, "formulas": 0}, {"id": 2261629, "material": "", "question": "大脑具有把化学信号从一条神经(  )到另一条神经的传输功能。", "type": "单选题", "options": "A. 传递\nB. 传送\nC. 传输\nD. 输送", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 304578, "human_acc": 60.0302713919, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第13题", "difficulty": 5, "formulas": 0}, {"id": 249311, "material": "", "question": "她总是喜欢________她的美丽。填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 表示\nB. 夸奖\nC. 夸口\nD. 炫耀", "choice": "D", "keypoints": "词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 21280, "human_acc": 93.7406015038, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第18题", "difficulty": 3, "formulas": 0}, {"id": 2262689, "material": "", "question": "中华民族在漫长的历史发展中,(    )起了十分成熟的道德价值体系。", "type": "单选题", "options": "A. 建构\nB. 构筑\nC. 建立\nD. 构造", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 4536, "human_acc": 47.2001763668, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第12题", "difficulty": 5, "formulas": 0}, {"id": 219125, "material": "", "question": "我在农村________了我的童年。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 度过\nB. 渡过\nC. 经历\nD. 回顾", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 314991, "human_acc": 90.7784666863, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第60题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4896415, "material": "", "question": "在服务行业中,信任无疑是弥足珍贵的基本要素。构建并维系消费者与服务者之间的信任,依赖于双方对服务契约和规则的遵守。不过,人心都是复杂的,仅仅依靠道德倡导,恐怕不足以约束少数心理扭曲、道德沦丧的服务者。依法严格惩处破坏规则的人,____________,不仅是违规者应当承担的代价,也能让更多存有不良心思学着做坏事的人得到警示。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 以儆效尤\nB. 防微杜渐\nC. 惩前毖后\nD. 当头棒喝", "choice": "A", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 23975, "human_acc": 73.267987487, "source": "2023年国考第十七季行测模考大赛(行政执法类)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 2036506, "material": "", "question": "凡事从坏处准备,努力争取最好的结果,这样才能________,遇事不慌,牢牢把握主动权。", "type": "单选题", "options": "A. 胸有成竹\nB. 有备无患\nC. 防患未然\nD. 有的放矢", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 31705, "human_acc": 63.7438889765, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第11题", "difficulty": 5, "formulas": 0}, {"id": 2036498, "material": "", "question": "产业发展是农业增收致富的基础,由于各地情况不同,农业产业的具体方式和途径应该__________。", "type": "单选题", "options": "A. 因势利导\nB. 因地制宜\nC. 因利乘便\nD. 因事制宜", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 31622, "human_acc": 96.4929479476, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第9题", "difficulty": 3, "formulas": 0}, {"id": 638465, "material": "", "question": "在物联网、云计算等新技术日趋进步之时,管理软件厂商如何提升自身的市场洞察力和创新能力已经______。", "type": "单选题", "options": "A. 迫不及待\nB. 迫不得已\nC. 迫在眉睫\nD. 时不我待", "choice": "C", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 548098, "human_acc": 91.9888414116, "source": "2014年广州市公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 2010848, "material": "", "question": "有人断言,如果中医不能________,随着老一代中医纷纷故去,中国将只能成为教科书上的“中医故乡”。", "type": "单选题", "options": "A. 前赴后继\nB. 生生不息\nC. 薪火相传\nD. 继往开来", "choice": "C", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 71620, "human_acc": 94.6481429768, "source": "2014年四川省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5070156, "material": "", "question": "根据《民事诉讼法》,下列关于第二审程序的说法,正确的是(    )。", "type": "单选题", "options": "A. 原审人民法院对发回重审的案件作出判决后,当事人提起上诉的,第二审人民法院可以再次发回重审\nB. 对方当事人不提出答辩状的,不影响人民法院审理\nC. 第二审人民法院对所有上诉案件都应当开庭审理\nD. 第二审人民法院审理上诉案件只能在本院进行", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 57019, "human_acc": 46.1460215016, "source": "2022上半年省考终极行测模考大赛(宁夏卷)第5题", "difficulty": 6, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 17849, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 134\nB. 142\nC. 149\nD. 152", "choice": "C", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 29993, "human_acc": 58.823725536, "source": "2010年江苏省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0, "history": [{"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 2718068, "material": "", "question": "每周三和周五为文化馆活动日,甲每3天去一次文化馆、乙每5天去一次文化馆,7月1日周三这天两人同时去了文化馆,问7月份两人中有人去文化馆活动日的共多少天?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 60792, "human_acc": 46.0998157652, "source": "2020年下半年省考第十五季行测模考大赛(北京卷)第85题", "difficulty": 6, "formulas": 0}, {"id": 2948983, "material": "", "question": "某单位有值班人员甲、乙、丙、丁4人,每天安排1人值班,按照甲、乙、丙各值一天、丁值两天依次排班,本周一恰好是甲值班,问至少几周之后的周一至周四每天值班人员均不相同?", "type": "单选题", "options": "A. 5\nB. 4\nC. 3\nD. 2", "choice": "D", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 321401, "human_acc": 14.482842306, "source": "2022年国考第五季行测模考大赛(副省级)第67题", "difficulty": 7, "formulas": 0}, {"id": 2028394, "material": "", "question": "为维护办公环境,某办公室四人在工作日每天轮流打扫卫生,每周一打扫卫生的人给植物浇水。7月5日周五轮到小玲打扫卫生,下一次小玲给植物浇水是哪天?", "type": "单选题", "options": "A. 7月15日\nB. 7月22日\nC. 7月29日\nD. 8月5日", "choice": "C", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 1878396, "human_acc": 60.4374689895, "source": "2017年国家公务员录用考试《行测》题(地市级)第61题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"]]}, {"id": 2732733, "material": "", "question": "老李家的草莓园开展采摘活动,每位游客进园可以免费吃,并且带走2斤草莓。每位游客在采摘过程中平均吃1斤草莓。目前老李家的草莓园估计有成熟草莓2000斤,并且每天还会有40斤草莓成熟,为保证采摘活动至少可以持续20天,那么平均每天最多接待________位游客。", "type": "单选题", "options": "A. 36\nB. 46\nC. 56\nD. 66", "choice": "B", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 198855, "human_acc": 73.0064619949, "source": "2021年上海市公务员录用考试《行测》题(B类)(网友回忆版)第74题", "difficulty": 3, "formulas": 0, "history": [{"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 826151, "material": "", "question": "有一堆围棋子。白子数是黑子的3倍。每次拿出5颗白子、3颗黑子,经过若干次后,剩下的白子数是黑子数的9倍。问原来白子最少有几颗:", "type": "单选题", "options": "A. 33\nB. 66\nC. 22\nD. 27", "choice": "A", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 270411, "human_acc": 44.785160367, "source": "2014年甘肃省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 5665343, "material": "", "question": "足球联赛的计分规则如下:胜一场得3分,平一场得1分,负一场不得分。现有一支球队在联赛中进行38场比赛后总得分为96分,那么该球队最少获胜多少场?", "type": "单选题", "options": "A. 30\nB. 29\nC. 28\nD. 27", "choice": "B", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 3781, "human_acc": 66.2787622322, "source": "2023下半年省考第十三季行测模考大赛(广东县级卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 22397, "material": "", "question": "某单位招待所有若干间房间,现在安排一支考察队的队员住宿,若每间住3人则有2人无房可住;若每间住4人,则有一间房间不空也不满,则该招待所的房间最多有:", "type": "单选题", "options": "A. 4间\nB. 5间\nC. 6间\nD. 7间", "choice": "B", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 353885, "human_acc": 61.0082371392, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第42题", "difficulty": 5, "formulas": 0}, {"id": 2819572, "material": "", "question": "某俱乐部男、女会员的人数之比为3:2,分为甲、乙两组。已知乙组共有100人,且甲组中有$\\frac{5}{8}$是男会员,则该俱乐部男会员至少有多少人?", "type": "单选题", "options": "A. 56\nB. 84\nC. 102\nD. 140", "choice": "B", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 74310, "human_acc": 46.2118153681, "source": "2022年国考第二季行测模考大赛(副省级)第71题", "difficulty": 6, "formulas": 1}], "categories": [["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 163615, "material": "", "question": "某次智力测验的形式为选择题,规定答对一题得20分,不作答的题不扣分,而在答错的题中,第一道答错的题扣10分,此后每一道答错的题的扣分都比上一道答错的题多10分,小张在测验中拿到了一份100道试题的试卷,总共获得1270分,问他至少有几道题未作答:", "type": "单选题", "options": "A. 0\nB. 5\nC. 7\nD. 9", "choice": "B", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "C", "human_count": 205693, "human_acc": 50.9677042972, "source": "2013年四川公务员录用考试《行测》题(下半年)第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 18309, "material": "", "question": "一个质数的3倍与另一个质数的2倍之和等于20,那么这两个质数的和是:", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "A", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "C", "human_count": 200614, "human_acc": 72.4650323507, "source": "2011年吉林省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 622553, "material": "", "question": "将2万本书籍分给某希望小学9个班的学生。在9个班中,其中1个班有学生32人,其余8个班人数相同且在40到50人之间。如每名学生分到的书本数相同,问每人分到了多少本书:", "type": "单选题", "options": "A. 40\nB. 50\nC. 60\nD. 80", "choice": "B", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "C", "human_count": 280534, "human_acc": 70.4299657083, "source": "2014年四川省公务员录用考试《行测》题第59题", "difficulty": 4, "formulas": 0}, {"id": 16873, "material": "", "question": "工人甲一分钟可生产螺丝3个或螺丝帽9个,工人乙一分钟可生产螺丝2个或螺丝帽7个,现在两人各花20分钟,共生产螺丝和螺丝帽134个,问生产的螺丝比螺丝帽多几个:", "type": "单选题", "options": "A. 34个\nB. 32个\nC. 30个\nD. 28个", "choice": "A", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "B", "human_count": 99630, "human_acc": 35.2775268493, "source": "2010年浙江省公务员录用考试《行测》题(A类)第82题", "difficulty": 6, "formulas": 0}, {"id": 2846558, "material": "", "question": "某公司有A、B两个部门,现要发放一批口罩。如果A部门每人分12包,B部门每人分5包,则将剩余26包;如果该公司每人分8包,则刚好剩余5包。问该公司的总人数最少为多少人?", "type": "单选题", "options": "A. 12\nB. 14\nC. 18\nD. 21", "choice": "B", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "C", "human_count": 255050, "human_acc": 44.1442854342, "source": "2021上半年省考第十季行测模考大赛(重庆卷)第70题", "difficulty": 7, "formulas": 0}, {"id": 3515929, "material": "", "question": "小明在水果店花费100元购买了香蕉、苹果、橘子共14公斤,已知每种水果的单价分别为12元/公斤、8元/公斤、5元/公斤,且购买水果的重量均为整数,则购买最多的水果为多少斤?", "type": "单选题", "options": "A. 6\nB. 8\nC. 12\nD. 16", "choice": "D", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "B", "human_count": 57562, "human_acc": 17.1484660019, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第59题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 53081, "material": "", "question": "某高校组织了篮球比赛。其中机械学院队、外语学院队、材料学院队和管理学院队被分在同一个小组,每两队之间进行一场比赛且无平局。结果机械学院队赢了管理学院队,且机械学院队、外语学院队和材料学院队胜利的场数相同,则管理学院队胜了多少场?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 263407, "human_acc": 38.8839324695, "source": "2013年921联考《行测》题(河南卷)第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 2784583, "material": "", "question": "轻:重:拈轻怕重", "type": "单选题", "options": "A. 上:下:上下其手\nB. 长:短:取长补短\nC. 肥:瘦:挑肥拣瘦\nD. 老:少:返老还童", "choice": "C", "keypoints": "逻辑关系-并列关系;语义-其他", "most_wrong": "B", "human_count": 202551, "human_acc": 67.98880282, "source": "2021上半年省考第七季行测模考大赛(广东卷)第60题", "difficulty": 4, "formulas": 0, "history": [{"id": 4668700, "material": "", "question": "麒∶麟", "type": "单选题", "options": "A. 鲲∶鹏\nB. 凤∶凰\nC. 玄∶武\nD. 龙∶凤", "choice": "B", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 1209055, "human_acc": 65.5228256779, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第86题", "difficulty": 5, "formulas": 0}, {"id": 2402428, "material": "", "question": "咸:淡", "type": "单选题", "options": "A. 香:臭\nB. 痛:痒\nC. 麻:辣\nD. 肥:瘦", "choice": "A", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 582694, "human_acc": 71.6681482905, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 5, "formulas": 0}, {"id": 4668912, "material": "", "question": "乾:坤", "type": "单选题", "options": "A. 秦:汉\nB. 中:外\nC. 纵:横\nD. 宇:宙", "choice": "C", "keypoints": "逻辑关系-并列关系", "most_wrong": "D", "human_count": 1212630, "human_acc": 50.4388807798, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 15387, "material": "", "question": "选择:抉择", "type": "单选题", "options": "A. 爱好:嗜好\nB. 决定:决策\nC. 按时:准时\nD. 参加:参与", "choice": "B", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 217958, "human_acc": 41.2854770185, "source": "2010年深圳市公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}, {"id": 5510248, "material": "", "question": "问:答", "type": "单选题", "options": "A. 求:应\nB. 教:学\nC. 来:去\nD. 买:卖", "choice": "A", "keypoints": "逻辑关系-并列关系", "most_wrong": "D", "human_count": 464551, "human_acc": 45.1375629371, "source": "2023年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第51题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 49905, "material": "", "question": "在空间中最多能放置多少个正方体,使得任意两个正方体都有一部分表面相接触?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "非典型最值问题;立体几何", "most_wrong": "B", "human_count": 295623, "human_acc": 34.3636997121, "source": "2013年山东省公务员录用考试《行测》题第56题", "difficulty": 6, "formulas": 0, "history": [{"id": 1752510, "material": "", "question": "一个正方体的边长为1,一只蚂蚁从其一个角出发,沿着正方体的棱行进,直到经过该正方体的每一条棱为止(经过一个顶点即算作经过该顶点所连接的3条棱)。则其最短的行进距离为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "非典型最值问题;立体几何", "most_wrong": "B", "human_count": 195955, "human_acc": 43.2767727284, "source": "2016年北京市公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2679130, "material": "", "question": "一个正方体木块,棱长为36厘米,现沿正方体的三个方向(上下、左右、前后)分别锯成3份、4份和5份,然后将得到的大小相同的小木块平铺到水平地面上,问覆盖的地面面积最大为多少平方厘米?", "type": "单选题", "options": "A. 3888\nB. 5184\nC. 5760\nD. 6480", "choice": "D", "keypoints": "非典型最值问题;立体几何", "most_wrong": "C", "human_count": 48811, "human_acc": 17.0371432669, "source": "2021年国考第二十一季行测模考大赛(副省级)第75题", "difficulty": 7, "formulas": 0}, {"id": 1085, "material": "", "question": "一个长7厘米、宽5厘米、高3厘米的长方体盒子。一只瓢虫从盒子的任意一个顶点,爬到与设定点在同一体对角线的另一个顶点,则所有情形的爬行路线的最小值是:", "type": "单选题", "options": "A. $\\sqrt{153}$\nB. $\\sqrt{109}$\nC. $\\sqrt{171}$\nD. $\\sqrt{113}$", "choice": "D", "keypoints": "非典型最值问题;立体几何", "most_wrong": "B", "human_count": 36625, "human_acc": 47.8962457338, "source": "2008年山西省公务员录用考试《行测》题第42题", "difficulty": 5, "formulas": 334}, {"id": 2388127, "material": "", "question": "长、宽、高分别为12cm、4cm、3cm的长方体$ABCD-A_{1}B_{1}C_{1}D_{1}$上,有一个蚂蚁从A出发沿长方体表面爬行到$C_{1}$获取食物,其路程最小值是多少cm?", "type": "单选题", "options": "A. $13$\nB. $\\sqrt{193}$\nC. $\\sqrt{241}$\nD. $17$", "choice": "B", "keypoints": "非典型最值问题;立体几何", "most_wrong": "C", "human_count": 763226, "human_acc": 48.6601609484, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第75题", "difficulty": 6, "formulas": 337}, {"id": 2264165, "material": "", "question": "建造一间占地面积为12$m^{2}$的背面靠墙的猪圈,底面为长方形,猪圈正面的造价为120$元/m^{2}$,侧面的造价为80$元/m^{2}$,屋顶造价为1120$元/m^{2}$,如果墙高3m,则最低总造价为(    )元。", "type": "单选题", "options": "A. 14600\nB. 15230\nC. 16320\nD. 17200", "choice": "C", "keypoints": "非典型最值问题;立体几何", "most_wrong": "B", "human_count": 5000, "human_acc": 55.4, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第60题", "difficulty": 5, "formulas": 4}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 4212167, "material": "", "question": "菜果之物:铁中铮铮:才能", "type": "单选题", "options": "A. 初出茅庐:老马识途:经验\nB. 足智多谋:矜智负能:智慧\nC. 出谋划策:草船借箭:计谋\nD. 真知灼见:游刃有余:才智", "choice": "A", "keypoints": "语义关系-反义关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 168236, "human_acc": 68.7861099883, "source": "2021下半年省考第二十一季行测模考大赛(河南卷)第108题", "difficulty": 4, "formulas": 0, "history": [{"id": 764105, "material": "", "question": "束缚:摆脱:自由", "type": "单选题", "options": "A. 紧张:消除:放松\nB. 雨天:改变:彩虹\nC. 引力:克服:超重\nD. 货物:出售:流通", "choice": "A", "keypoints": "语义关系-反义关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 428114, "human_acc": 95.0643987349, "source": "2014年黑龙江省公务员录用考试《行测》题第82题", "difficulty": 5, "formulas": 0}, {"id": 5358515, "material": "", "question": "疾:徐:不疾不徐", "type": "单选题", "options": "A. 慌:忙:不慌不忙\nB. 依:饶:不依不饶\nC. 即:离:不即不离\nD. 偏:倚:不偏不倚", "choice": "C", "keypoints": "语义关系-反义关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 318285, "human_acc": 61.2284587712, "source": "2022下半年省考第十七季行测模考大赛(浙江A卷)第102题", "difficulty": 4, "formulas": 0}, {"id": 5032216, "material": "", "question": "泄密:密码锁:保密", "type": "单选题", "options": "A. 暖和:壁挂炉:供暖\nB. 存钱:银行卡:取钱\nC. 感冒:军大衣:保暖\nD. 失眠:安眠药:安眠", "choice": "D", "keypoints": "语义关系-反义关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 344789, "human_acc": 79.3656410152, "source": "2022上半年省考第二十二季行测模考大赛(河南卷)第106题", "difficulty": 4, "formulas": 0}, {"id": 3522627, "material": "", "question": "洪涝:干旱:防洪抗旱", "type": "单选题", "options": "A. 地震:海啸:抗震救灾\nB. 滑坡:雪崩:道路抢修\nC. 严寒:酷热:防冻消暑\nD. 风沙:雾霾:防沙除霾", "choice": "C", "keypoints": "语义关系-反义关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 1754590, "human_acc": 62.9310551183, "source": "2021年甘肃公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}, {"id": 5662267, "material": "", "question": "大步流星:鹅行鸭步:动作", "type": "单选题", "options": "A. 蜻蜓点水:浮光掠影:速度\nB. 毫发不爽:大相径庭:差别\nC. 釜中生鱼:汗牛充栋:困难\nD. 门庭若市:门可罗雀:建筑", "choice": "B", "keypoints": "语义关系-反义关系;逻辑关系-对应关系", "most_wrong": "A", "human_count": 68707, "human_acc": 75.571630256, "source": "2023下半年省考第十三季行测模考大赛(陕西卷)第77题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 4288262, "material": "", "question": "李白:诗仙:《将进酒》", "type": "单选题", "options": "A. 李贺:诗鬼:《雁门太守行》\nB. 白居易:诗杰:《长恨歌》\nC. 王维:诗佛:《春晓》\nD. 杜甫:诗狂:《登高》", "choice": "A", "keypoints": "逻辑关系-全同关系;逻辑关系-对应关系", "most_wrong": "B", "human_count": 172100, "human_acc": 66.2341661825, "source": "2021下半年省考第二十二季行测模考大赛(河南卷)第107题", "difficulty": 4, "formulas": 0, "history": [{"id": 5101607, "material": "", "question": "私塾:学校:教师", "type": "单选题", "options": "A. 木箸:筷子:客官\nB. 轿辇:火车:旅客\nC. 客栈:宾馆:掌柜\nD. 医馆:医院:医生", "choice": "D", "keypoints": "逻辑关系-全同关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 1607253, "human_acc": 89.0426709423, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第71题", "difficulty": 5, "formulas": 0}, {"id": 1688508, "material": "", "question": "青春痘:痤疮:慢性", "type": "单选题", "options": "A. 兰花豆:蚕豆:豆科草本\nB. 蛐蛐儿:蟋蟀:直翅目\nC. 上元节:元宵:赏灯猜谜\nD. 芙蓉花:木莲:喜光照", "choice": "D", "keypoints": "逻辑关系-全同关系;逻辑关系-对应关系", "most_wrong": "B", "human_count": 231165, "human_acc": 43.1907944542, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第80题", "difficulty": 5, "formulas": 0}, {"id": 2255615, "material": "", "question": "鲁迅:周树人:《狂人日记》", "type": "单选题", "options": "A. 老舍:舒庆春:《骆驼祥子》\nB. 李白:诗仙:《望庐山瀑布》\nC. 郭沫若:郭开贞:《伤逝》\nD. 陶渊明:五柳先生:《桃花源记》", "choice": "A", "keypoints": "逻辑关系-全同关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 4559, "human_acc": 75.2138626892, "source": "2014年江西省法检系统招录考试《行测》题第89题", "difficulty": 5, "formulas": 0}, {"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 1873, "material": "", "question": "高尚:卑鄙:德行", "type": "单选题", "options": "A. 谦虚:骄傲:品质\nB. 伟大:自豪:美德\nC. 平凡:平庸:才华\nD. 有才:有德:人才", "choice": "A", "keypoints": "语义关系-反义关系;逻辑关系-包容关系", "most_wrong": "C", "human_count": 46693, "human_acc": 95.4361467458, "source": "2008年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 9313, "material": "", "question": "性格:外向:内向", "type": "单选题", "options": "A. 品质:谦虚:骄傲\nB. 股市:熊市:牛市\nC. 心情:卑微:诚恳\nD. 善良:险恶:美德", "choice": "A", "keypoints": "语义关系-反义关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 20894, "human_acc": 47.204939217, "source": "2009年江苏省公务员录用考试《行测》题(C类)第28题", "difficulty": 5, "formulas": 0}, {"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}, {"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 2402428, "material": "", "question": "咸:淡", "type": "单选题", "options": "A. 香:臭\nB. 痛:痒\nC. 麻:辣\nD. 肥:瘦", "choice": "A", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 582694, "human_acc": 71.6681482905, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 5, "formulas": 0}, {"id": 2050480, "material": "", "question": "蛇:腿", "type": "单选题", "options": "A. 鸡:翅膀\nB. 狮:爪子\nC. 牛:尾巴\nD. 鲸:鱼鳃", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 719045, "human_acc": 91.7188771217, "source": "2017年422联考《行测》题(吉林卷乙级)第71题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 2004278, "material": "", "question": "冷漠:冷酷:热情", "type": "单选题", "options": "A. 束缚:禁锢:解放\nB. 顽强:强烈:开放\nC. 劳动:薪水:工资\nD. 海水:盐分:氯化钠", "choice": "A", "keypoints": "语义关系-反义关系;语义关系-近义关系", "most_wrong": "B", "human_count": 11640, "human_acc": 98.8573883162, "source": "2008年江苏省公务员录用考试《行测》题(A类)第35题", "difficulty": 5, "formulas": 0, "history": [{"id": 2366005, "material": "", "question": "相信:坚信:质疑", "type": "单选题", "options": "A. 希望:盼望:奢望\nB. 报道:报告:封杀\nC. 微词:批判:赞扬\nD. 诚恳:诚信:伪装", "choice": "C", "keypoints": "语义关系-反义关系;语义关系-近义关系", "most_wrong": "D", "human_count": 1129092, "human_acc": 73.2651546552, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第106题", "difficulty": 5, "formulas": 0}, {"id": 9293, "material": "", "question": "文明:礼貌:野蛮", "type": "单选题", "options": "A. 诚实:实际:虚伪\nB. 谦逊:和逊:卑逊\nC. 盲目:盲动:激动\nD. 和谐:协调:冲突", "choice": "D", "keypoints": "语义关系-反义关系;语义关系-近义关系", "most_wrong": "A", "human_count": 20902, "human_acc": 73.6723758492, "source": "2009年江苏省公务员录用考试《行测》题(C类)第26题", "difficulty": 4, "formulas": 0}, {"id": 6629, "material": "", "question": "失败︰成功︰功成名就", "type": "单选题", "options": "A. 忧伤︰喜悦︰喜气洋洋\nB. 上岗︰下岗︰艰苦奋斗\nC. 报纸︰广告︰广泛宣传\nD. 失业︰就业:兴高采烈", "choice": "A", "keypoints": "语义关系-反义关系;语义关系-近义关系", "most_wrong": "D", "human_count": 38134, "human_acc": 73.0450516599, "source": "2009年江苏省公务员录用考试《行测》题(B类)第84题", "difficulty": 4, "formulas": 0}, {"id": 2668388, "material": "", "question": "机密:绝密:公开", "type": "单选题", "options": "A. 谴责:批评:表扬\nB. 乐于助人:舍己为人:自私自利\nC. 狡诈:奸邪:聪慧\nD. 一丝不苟:任劳任怨:百密一疏", "choice": "B", "keypoints": "语义关系-反义关系;语义关系-近义关系", "most_wrong": "A", "human_count": 62117, "human_acc": 68.6816813433, "source": "2020年山东省选拔录用选调生笔试综合测试(节选)(网友回忆版)第19题", "difficulty": 5, "formulas": 0}, {"id": 4775957, "material": "", "question": "紧要:鸡毛蒜皮:细枝末节", "type": "单选题", "options": "A. 强大:瞻前顾后:投鼠忌器\nB. 奢侈:粗茶淡饭:布衣蔬食\nC. 坚固:铜墙铁壁:金城汤池\nD. 动荡:兵荒马乱:内忧外患", "choice": "B", "keypoints": "语义关系-反义关系;语义关系-近义关系", "most_wrong": "C", "human_count": 355025, "human_acc": 86.6972748398, "source": "2022上半年省考第十季行测模考大赛(河南卷)第108题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "语义关系", "语义关系-近义关系"]]}, {"id": 6859, "material": "", "question": "概率:几率:逻辑学", "type": "单选题", "options": "A. 双胞:孪生:生物学\nB. 报导:报道:物理学\nC. 拒绝:接受:社会学\nD. 展览:战略:经济学", "choice": "A", "keypoints": "逻辑关系-全同关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 39281, "human_acc": 90.068990097, "source": "2009年江苏省公务员录用考试《行测》题(A类)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 2050480, "material": "", "question": "蛇:腿", "type": "单选题", "options": "A. 鸡:翅膀\nB. 狮:爪子\nC. 牛:尾巴\nD. 鲸:鱼鳃", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 719045, "human_acc": 91.7188771217, "source": "2017年422联考《行测》题(吉林卷乙级)第71题", "difficulty": 3, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 2049514, "material": "", "question": "书法一旦离开了文字所表达的思想内涵和精神境界,就如同艺术只剩下技术而毫无风骨气韵,书法艺术唯有思想上的_______ ,文学上的滋润,文化上的________,心灵上的寄托,才能________出打动人心的魅力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高尚 传承 展现\nB. 充沛 弘扬 展示\nC. 充盈 传承 彰显\nD. 高贵 弘扬 突显", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1632851, "human_acc": 75.2670023168, "source": "2017年422联考《行测》题(湖南卷)第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 17333, "material": "", "question": "“进去,只留下脚印;出来,只带走照片”,这句话看似简单,但却包含了一个重要的道理,它直观地提示我们,依托生态发展旅游,必须______自然规律,______保护生态环境。", "type": "单选题", "options": "A. 遵循 注重\nB. 遵照 强调\nC. 遵守 注意\nD. 尊重 重点", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 34019, "human_acc": 89.7998177489, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第53题", "difficulty": 5, "formulas": 0}, {"id": 1687378, "material": "", "question": "孟子说:“生于忧患,死于安乐”。就是说,艰苦的生活环境能够________一个人的坚强意志,激励他不断地进取;而安逸的生活则很容易________一个人,使他________其中,走向颓废乃至于最后的灭亡。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 锤炼 锈蚀 沉潜\nB. 历练 侵蚀 沉滞\nC. 锻炼 腐蚀 沉溺\nD. 磨练 销蚀 沉浮", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 572805, "human_acc": 64.8627368825, "source": "2015年江苏省公务员录用考试《行测》题(C类)第14题", "difficulty": 5, "formulas": 0}, {"id": 826735, "material": "", "question": "将选项中的词语依次填入下列各句横线内,最恰当的一组是(    )。\n\n(1)有些广告用谐音字______成语,对学生的语文学习产生不良影响。\n\n(2)为充实管理干部队伍,公司_______了一些管理经验丰富的退休职工。\n\n(3)这里太乱了,我们最好换个_______的地方好好谈谈。", "type": "单选题", "options": "A. 篡改 启用 清净\nB. 改变 启用 清静\nC. 改变 起用 清净\nD. 篡改 起用 清静", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 222162, "human_acc": 61.4574049567, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第22题", "difficulty": 5, "formulas": 0}, {"id": 4768444, "material": "", "question": "伴随着电子商务的普及,消费者成为个人信息泄露的主要受害群体。伴随信息泄露而至的垃圾短信、骚扰电话、精准诈骗日益________着人们的隐私、财产甚至生命安全;同时,消费者个人信息泄露还容易破坏市场秩序、制约经济发展、滋长各类犯罪、破坏社会稳定,甚至________公共安全及国家安全危机。\n\n填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 危及 导致\nB. 威胁 引发\nC. 影响 引起\nD. 危害 触发", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 141283, "human_acc": 75.3983140222, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第19题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 16295, "material": "", "question": "横扫时尚世界的牛仔装,在美国诞生之初,就是以其野性、粗犷、豪放的风格闻名于世,后来经过(  )后,也为其加入了休闲的元素。", "type": "单选题", "options": "A. 改装\nB. 引入\nC. 修饰\nD. 改进", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 116704, "human_acc": 72.5090828078, "source": "2010年贵州省公务员录用考试《行测》题第19题", "difficulty": 4, "formulas": 0, "history": [{"id": 16251, "material": "", "question": "随着时代的发展,计算机技术更加(  )地应用于机关和各种商务办公。", "type": "单选题", "options": "A. 广泛\nB. 深入\nC. 普及\nD. 全面", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 120772, "human_acc": 86.492730103, "source": "2010年贵州省公务员录用考试《行测》题第16题", "difficulty": 4, "formulas": 0}, {"id": 2262655, "material": "", "question": "改变最重要的就是重视民生细节,广开渠道________民意,兼听则明。\n\n填入横线处最恰当的一项是:", "type": "单选题", "options": "A. 征求\nB. 征召\nC. 征询\nD. 咨询", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 5535, "human_acc": 53.0623306233, "source": "2016年青海省选调生行测题(精选)第2题", "difficulty": 5, "formulas": 0}, {"id": 769173, "material": "", "question": "一个人应该从多方面加强自己的道德修养,但首先要做到的是(   )端正。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 品行\nB. 品性\nC. 态度\nD. 品格", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 142884, "human_acc": 80.714425688, "source": "2011年广东省公务员录用考试《行测》题第23题", "difficulty": 4, "formulas": 0}, {"id": 2374800, "material": "", "question": "只要我们迈出的步伐足够坚实,前进的意志足够(    ),奋斗路上的困难终将被克服,前进路上的沟壑终将被跨越。", "type": "单选题", "options": "A. 强硬\nB. 奋勇\nC. 坚定\nD. 坚硬", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 625381, "human_acc": 98.4655753852, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第2题", "difficulty": 2, "formulas": 0}, {"id": 10813, "material": "", "question": "刚刚过了秋分_______,就觉得突然增加了一些____。", "type": "单选题", "options": "A. 气候 寒意\nB. 时序 凉意\nC. 时间 凉意\nD. 节气 寒意", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 41084, "human_acc": 32.0781812871, "source": "2009年湖南省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4808795, "material": "", "question": "冬奥会∶夏奥会∶残奥会", "type": "单选题", "options": "A. 男演员∶女演员∶小演员\nB. 运动员∶裁判员∶监督员\nC. 红衣服∶蓝衣服∶黄衣服\nD. 推土机∶挖土机∶挖掘机", "choice": "A", "keypoints": "逻辑关系-交叉关系;逻辑关系-并列关系", "most_wrong": "C", "human_count": 303019, "human_acc": 65.2922754019, "source": "2022年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第82题", "difficulty": 5, "formulas": 0, "history": [{"id": 4651700, "material": "", "question": "地砖:方砖:长条砖", "type": "单选题", "options": "A. 菜肴:荤菜:白菜\nB. 零食:素食:热食\nC. 青茄:紫茄:番茄\nD. 木船:客船:货船", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-并列关系", "most_wrong": "A", "human_count": 1103541, "human_acc": 71.356025739, "source": "2022年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第72题", "difficulty": 5, "formulas": 0}, {"id": 2376922, "material": "", "question": "感冒药:中药:西药", "type": "单选题", "options": "A. 果汁:冷饮:热饮\nB. 标枪:田赛:径赛\nC. 城墙:古建筑:西方建筑\nD. 学士:硕士:博士", "choice": "A", "keypoints": "逻辑关系-交叉关系;逻辑关系-并列关系", "most_wrong": "C", "human_count": 1313743, "human_acc": 82.5516101703, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第81题", "difficulty": 4, "formulas": 0}, {"id": 5603972, "material": "", "question": "水泥船:钢制船:商船", "type": "单选题", "options": "A. 青霉素:抗凝药:饮片\nB. 白描画:泼墨画:古画\nC. 数字音乐:碟片:彩铃\nD. 食用菌:野生菌:枞菌", "choice": "B", "keypoints": "逻辑关系-交叉关系;逻辑关系-并列关系", "most_wrong": "D", "human_count": 49460, "human_acc": 88.4007278609, "source": "2023下半年省考第七季行测模考大赛(广东县级卷)第55题", "difficulty": 3, "formulas": 0}, {"id": 2376463, "material": "", "question": "英国文学:法国文学:古典文学", "type": "单选题", "options": "A. 律诗:绝句:五言绝句\nB. 诗歌:古体诗:近体诗\nC. 曲艺:相声:单口相声\nD. 独奏曲:合奏曲:钢琴曲", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-并列关系", "most_wrong": "A", "human_count": 854864, "human_acc": 82.6709277733, "source": "2019年420联考《行测》题(吉林乙级)(网友回忆版)第64题", "difficulty": 4, "formulas": 0}, {"id": 4759393, "material": "", "question": "纯净水:桶装水:矿泉水", "type": "单选题", "options": "A. 油墨画:山水画:水墨画\nB. 化妆品:护肤品:日用品\nC. 塑料杯:陶瓷杯:情侣杯\nD. 学区房:商品房:二手房", "choice": "A", "keypoints": "逻辑关系-交叉关系;逻辑关系-并列关系", "most_wrong": "D", "human_count": 403664, "human_acc": 67.3532938285, "source": "2022上半年省考第九季行测模考大赛(河南卷)第106题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"]]}, {"id": 5137234, "material": "", "question": "扬琴:打琴:钢琴", "type": "单选题", "options": "A. 高音:音区:中音\nB. 板栗:毛栗:核桃\nC. 快递:物流:贸易\nD. 升记号:降记号:变音记号", "choice": "B", "keypoints": "逻辑关系-并列关系;逻辑关系-全同关系", "most_wrong": "D", "human_count": 104677, "human_acc": 44.0144444338, "source": "2022下半年省考第四季行测模考大赛(新疆卷)第98题", "difficulty": 6, "formulas": 0, "history": [{"id": 5090125, "material": "", "question": "京剧:京戏:越剧", "type": "单选题", "options": "A. 西周:东周:东汉\nB. 蒹葭:芦苇:香蒲\nC. 会战:决战:作战\nD. 导火线:导火索:炸药包", "choice": "B", "keypoints": "逻辑关系-并列关系;逻辑关系-全同关系", "most_wrong": "A", "human_count": 93332, "human_acc": 66.4413063044, "source": "2022下半年省考第二季行测模考大赛(新疆卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4668700, "material": "", "question": "麒∶麟", "type": "单选题", "options": "A. 鲲∶鹏\nB. 凤∶凰\nC. 玄∶武\nD. 龙∶凤", "choice": "B", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 1209055, "human_acc": 65.5228256779, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第86题", "difficulty": 5, "formulas": 0}, {"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 4668912, "material": "", "question": "乾:坤", "type": "单选题", "options": "A. 秦:汉\nB. 中:外\nC. 纵:横\nD. 宇:宙", "choice": "C", "keypoints": "逻辑关系-并列关系", "most_wrong": "D", "human_count": 1212630, "human_acc": 50.4388807798, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 5312458, "material": "", "question": "某公司要求所有员工每月加班时长必须满30个小时,否则罚款300元,王女士因加班时长未达到要求被公司罚款,王女士对此不满与公司发生争议,欲解决此劳动争议,王女士的下列做法不符合法律规定的是(    )。", "type": "单选题", "options": "A. 直接与公司协商,或者通过工会与公司协商\nB. 向调解组织申请调解\nC. 向劳动争议仲裁委员会申请仲裁\nD. 直接向人民法院提起诉讼", "choice": "D", "keypoints": "劳动法", "most_wrong": "C", "human_count": 144470, "human_acc": 65.2426109227, "source": "2022下半年省考第十三季行测模考大赛(广东乡镇卷)第24题", "difficulty": 4, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 3817581, "material": "", "question": "桌上有30个编号分别为1-30的小球,甲、乙、丙三人玩游戏每轮各取走1个小球(不再放回)。已知每轮游戏中,甲取走的小球编号是奇数,乙取走的小球编号是质数,丙取走的小球编号是偶数。问最少需要多少轮游戏才可以保证所有取走的小球编号中存在连续的三个数?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 35957, "human_acc": 46.6724142726, "source": "2021下半年省考第十五季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}, {"id": 21085, "material": "", "question": "有编号为1~13的卡片,每个编号有4张,共52张卡片。问至少摸出多少张,就可保证一定有3张卡片编号相连?", "type": "单选题", "options": "A. 27张\nB. 29张\nC. 33张\nD. 37张", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 297652, "human_acc": 26.7328961337, "source": "2012年浙江省公务员录用考试《行测》题第56题", "difficulty": 7, "formulas": 0}, {"id": 2021780, "material": "", "question": "有6种颜色的小球,数量分别为4,6,8,9,11,10,将它们放在一个盒子里,那么,拿到相同颜色的球最多需要的次数为:", "type": "单选题", "options": "A. 6\nB. 12\nC. 11\nD. 7", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 230605, "human_acc": 63.4201339954, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第94题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"]]}, {"id": 4548458, "material": "", "question": "学号为1-7的七名学生,在满分为60分的小测验中,得分均为正整数,七人总分为240多分,且每个学生的分数均不相同。学号越小的学生,分数越高。学号为1、2的两名学生平均分为43分,学号为6、7的两名学生平均分为28分。那么学号为4的学生最多比学号为5的学生高多少分?", "type": "单选题", "options": "A. 12\nB. 10\nC. 8\nD. 6", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 280427, "human_acc": 41.6800094142, "source": "2022年国考第三十七季行测模考大赛(行政执法类)第69题", "difficulty": 6, "formulas": 0, "history": [{"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 49329, "material": "", "question": "8名学生参加某项竞赛总得分是131分,已知最高分21分,每个人得分各不相同。则最低分为:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 5", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 323857, "human_acc": 60.7576800872, "source": "2013年江苏省公务员录用考试《行测》题(C类)第31题", "difficulty": 5, "formulas": 0}, {"id": 2264062, "material": "", "question": "假设七个相异正整数的平均数是17,中位数为20,则此七个正整数中的最大值可能为多少?", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "构造数列", "most_wrong": "C", "human_count": 8882, "human_acc": 58.5904075659, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第79题", "difficulty": 4, "formulas": 0}, {"id": 49169, "material": "", "question": "5名学生参加某学科竞赛,共得91分,已知每人得分各不相同且均为整数,且最高是21分,则最低分最低为:", "type": "单选题", "options": "A. 14\nB. 16\nC. 13\nD. 15", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 368572, "human_acc": 63.8995908533, "source": "2013年江苏省公务员录用考试《行测》题(A类)第27题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 2672522, "material": "", "question": "某单位投入100000元用于植树,每人每天可植树30棵,人员费用40元/天,树苗每棵10元。该单位在预算范围内最多可植树:", "type": "单选题", "options": "A. 8740棵\nB. 8780棵\nC. 8823棵\nD. 3920棵", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "C", "human_count": 2552, "human_acc": 26.6065830721, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第89题", "difficulty": 4, "formulas": 0, "history": [{"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 5597, "material": "", "question": "四个房间,每个房间里不少于2人,任何三个房间里的人数不少于8人,这四个房间至少有多少人:", "type": "单选题", "options": "A. 9\nB. 11\nC. 10\nD. 12", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "C", "human_count": 41432, "human_acc": 62.2948445646, "source": "2008年湖北省公务员录用考试《行测》题(A类)第42题", "difficulty": 5, "formulas": 0}, {"id": 6811, "material": "", "question": "有33个偶数的平均数,保留一位小数时是5.8,保留两位小数时,则该平均数最小是:", "type": "单选题", "options": "A. 5.76\nB. 5.75\nC. 5.78\nD. 5.82", "choice": "A", "keypoints": "非典型最值问题", "most_wrong": "B", "human_count": 28532, "human_acc": 32.6440487873, "source": "2009年江苏省公务员录用考试《行测》题(A类)第23题", "difficulty": 5, "formulas": 0}, {"id": 11243, "material": "", "question": "用2、3、4、5、6、7六个数字组成两个三位数,每个数字只用一次,这两个三位数的差最小是多少:", "type": "单选题", "options": "A. 47\nB. 49\nC. 69\nD. 111", "choice": "A", "keypoints": "非典型最值问题", "most_wrong": "C", "human_count": 47621, "human_acc": 32.8888515571, "source": "2009年山东省公务员录用考试《行测》题第114题", "difficulty": 5, "formulas": 0}, {"id": 8179, "material": "", "question": "小强前三次的数学测验平均分是88分,要想平均分达到90分以上,他第四次测验至少要得多少分:", "type": "单选题", "options": "A. 98分\nB. 92分\nC. 93分\nD. 96分", "choice": "D", "keypoints": "非典型最值问题", "most_wrong": "A", "human_count": 23958, "human_acc": 80.4950329744, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第18题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5535614, "material": "", "question": "工厂收到17台相同的机器准备提供给A、B、C三个生产车间使用,每个车间至少分到3台,但最多不超过10台,则共有多少种不同的分配方式?", "type": "单选题", "options": "A. 34\nB. 42\nC. 52\nD. 56", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 33127, "human_acc": 44.0275304133, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第46题", "difficulty": 6, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 2047796, "material": "", "question": "某单位有107名职工为灾区捐献了物资,其中78人捐献衣物,77人捐献食品。该单位既捐献衣物,又捐献食品的职工有多少人?", "type": "单选题", "options": "A. 48\nB. 50\nC. 52\nD. 54", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 778814, "human_acc": 80.4212559096, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第27题", "difficulty": 4, "formulas": 0, "history": [{"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 1130069, "material": "", "question": "某部门共有82人,其中男性62人,本省籍42人,不是本省籍的女性11人,则本省籍的男性人数有:", "type": "单选题", "options": "A. 33\nB. 21\nC. 22\nD. 23", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 55491, "human_acc": 84.125353661, "source": "2010年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 3, "formulas": 0}, {"id": 3581, "material": "", "question": "某单位职工24人中,有女性11人,已婚的有16人。在已婚的16人中有女性6人。问这个单位的未婚男性有多少人:", "type": "单选题", "options": "A. 1\nB. 3\nC. 9\nD. 12", "choice": "B", "keypoints": "两集合", "most_wrong": "C", "human_count": 42461, "human_acc": 91.2107581074, "source": "2008年安徽省公务员录用考试《行测》题第8题", "difficulty": 3, "formulas": 0}, {"id": 8417, "material": "", "question": "某医院统计某天求诊的病人,内科150人,外科90人,内外科都求诊的20人,这天一共有多少病人:", "type": "单选题", "options": "A. 240\nB. 220\nC. 200\nD. 170", "choice": "B", "keypoints": "两集合", "most_wrong": "C", "human_count": 26095, "human_acc": 87.2006131443, "source": "2009年四川省公务员录用考试《行测》题(下半年)第11题", "difficulty": 3, "formulas": 0}, {"id": 11229, "material": "", "question": "某单位有78个人,站成一排,从左向右数,小王是第50个,从右向左数,小张是第48个,则小王小张之间有多少人:", "type": "单选题", "options": "A. 16\nB. 17\nC. 18\nD. 20", "choice": "C", "keypoints": "两集合", "most_wrong": "D", "human_count": 28449, "human_acc": 55.073992056, "source": "2009年山东省公务员录用考试《行测》题第107题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 1686170, "material": "", "question": "实干兴邦:空谈误国", "type": "单选题", "options": "A. 任人唯亲:任人唯贤\nB. 趋炎附势:铁骨铮铮\nC. 破旧立新:墨守成规\nD. 滴水不漏:破绽百出", "choice": "D", "keypoints": "语义关系-反义关系;拆分思维;语义-其他", "most_wrong": "C", "human_count": 615537, "human_acc": 35.6246659421, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第83题", "difficulty": 5, "formulas": 0, "history": [{"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}, {"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 2402428, "material": "", "question": "咸:淡", "type": "单选题", "options": "A. 香:臭\nB. 痛:痒\nC. 麻:辣\nD. 肥:瘦", "choice": "A", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 582694, "human_acc": 71.6681482905, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 5, "formulas": 0}, {"id": 3699004, "material": "", "question": "巨大:微小", "type": "单选题", "options": "A. 哭泣:安静\nB. 虚假:真诚\nC. 进退:得失\nD. 朋友:敌人", "choice": "B", "keypoints": "语义关系-反义关系;语义关系-近义关系;拆分思维", "most_wrong": "D", "human_count": 102437, "human_acc": 90.4145962885, "source": "2021下半年省考第九季行测模考大赛(广东乡镇卷)第56题", "difficulty": 3, "formulas": 0}, {"id": 48973, "material": "", "question": "嫦娥奔月", "type": "单选题", "options": "A. 后羿射日\nB. 鸡鸣起舞\nC. 欢呼雀跃\nD. 海纳百川", "choice": "A", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 492588, "human_acc": 98.5695956865, "source": "2013年江苏省公务员录用考试《行测》题(B类)第96题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 5509884, "material": "", "question": "吾生也有涯:而知也无涯", "type": "单选题", "options": "A. 经师易求:人师难得\nB. 自知者英:自胜者雄\nC. 名非天造:必从其实\nD. 人心所归:惟道与义", "choice": "A", "keypoints": "语义关系-反义关系;拆分思维;逻辑关系-并列关系", "most_wrong": "B", "human_count": 574772, "human_acc": 81.8769877447, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第85题", "difficulty": 5, "formulas": 0, "history": [{"id": 2884267, "material": "", "question": "背井离乡:安家立业", "type": "单选题", "options": "A. 标新立异:抱残守缺\nB. 改弦易辙:旧调重弹\nC. 粗制滥造:偷工减料\nD. 兴高采烈:愁眉苦脸", "choice": "A", "keypoints": "语义关系-反义关系;拆分思维;逻辑关系-并列关系", "most_wrong": "D", "human_count": 408395, "human_acc": 42.3526242976, "source": "2022年国考第四季行测模考大赛(副省级)第99题", "difficulty": 7, "formulas": 0}, {"id": 4683198, "material": "", "question": "是非曲直:诗词歌赋", "type": "单选题", "options": "A. 喜新厌旧:豺狼虎豹\nB. 出生入死:渔樵耕读\nC. 轻重缓急:刀枪剑戟\nD. 旦夕祸福:牛鬼蛇神", "choice": "C", "keypoints": "语义关系-反义关系;拆分思维;逻辑关系-并列关系", "most_wrong": "D", "human_count": 223033, "human_acc": 91.9550021746, "source": "2022上半年省考第三季行测模考大赛(四川卷)第72题", "difficulty": 3, "formulas": 0}, {"id": 3018786, "material": "", "question": "和风细雨:暴风骤雨", "type": "单选题", "options": "A. 年富力强:风烛残年\nB. 如沐春风:如履薄冰\nC. 耀武扬威:扬眉吐气\nD. 雪中送炭:落井下石", "choice": "A", "keypoints": "语义关系-反义关系;拆分思维;逻辑关系-并列关系", "most_wrong": "D", "human_count": 2051765, "human_acc": 52.2125584558, "source": "2021年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第55题", "difficulty": 5, "formulas": 0}, {"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}, {"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"]]}, {"id": 3760774, "material": "", "question": "某公司承接A、B两个数量相同的口罩订单,已知丙车间4天的产量与甲、乙两车间3天的产量之和相同,若安排甲、乙两车间负责A订单,丙车间负责B订单,则完成A订单比B订单的时间少用12天。若三个车间同时开工合作完成两个订单,所需时间为:", "type": "单选题", "options": "A. 不到40天\nB. 40天多\nC. 41天多\nD. 超过42天", "choice": "C", "keypoints": "给效率比例型", "most_wrong": "B", "human_count": 90601, "human_acc": 54.8581141489, "source": "2021下半年省考第十三季行测模考大赛(广东乡镇卷)第36题", "difficulty": 6, "formulas": 0, "history": [{"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 218787, "material": "", "question": "工程队计划150天完成建筑,现计划30天后新增设备,提高20%工作效率,可以提前几天完成:", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 45", "choice": "A", "keypoints": "给效率比例型", "most_wrong": "B", "human_count": 152130, "human_acc": 76.3623216985, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第48题", "difficulty": 4, "formulas": 0}, {"id": 48217, "material": "", "question": "一项工程计划300天完工,开工100天后,由于施工人员减少,工作效率下降20%,问完成该工程比原计划推迟了多少天?", "type": "单选题", "options": "A. 40\nB. 50\nC. 60\nD. 70", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 186125, "human_acc": 79.400402955, "source": "2013年天津市公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2033314, "material": "", "question": "某农场原有300人,存储的粮食够吃80天。现调入若干人员,储存的粮食实际上只吃了60天,问实际上调入了多少人?", "type": "单选题", "options": "A. 100\nB. 200\nC. 300\nD. 400", "choice": "A", "keypoints": "给效率比例型", "most_wrong": "B", "human_count": 672021, "human_acc": 71.6196368863, "source": "2016年河南省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给效率比例型"]]}, {"id": 5496079, "material": "", "question": "倚山:傍水:农家院:袅袅炊烟", "type": "单选题", "options": "A. 竹深:树密:小山村:唧唧虫鸣\nB. 空山:微风:不见人:声声人语\nC. 穿林:绕坡:山间路:隐隐磐声\nD. 清晨:初日:照广场:翩翩舞影", "choice": "C", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "A", "human_count": 8696, "human_acc": 68.8707451702, "source": "2023年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第81题", "difficulty": 5, "formulas": 0, "history": [{"id": 2187709, "material": "", "question": "风霜雨雪:雾里看花", "type": "单选题", "options": "A. 春夏秋冬:踏雪寻梅\nB. 金木火土:水中望月\nC. 桃李杏橘:青梅煮酒\nD. 梅兰竹菊:茜窗画眉", "choice": "B", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 1727610, "human_acc": 76.4287657515, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第83题", "difficulty": 4, "formulas": 0}, {"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 4668700, "material": "", "question": "麒∶麟", "type": "单选题", "options": "A. 鲲∶鹏\nB. 凤∶凰\nC. 玄∶武\nD. 龙∶凤", "choice": "B", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 1209055, "human_acc": 65.5228256779, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第86题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 48973, "material": "", "question": "嫦娥奔月", "type": "单选题", "options": "A. 后羿射日\nB. 鸡鸣起舞\nC. 欢呼雀跃\nD. 海纳百川", "choice": "A", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 492588, "human_acc": 98.5695956865, "source": "2013年江苏省公务员录用考试《行测》题(B类)第96题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 2742111, "material": "", "question": "任何企业存在于社会之中,都是社会的企业。社会是企业家施展才华的舞台。只有真诚回报社会、切实履行社会责任的企业家,才能真正得到社会认可,才是符合时代要求的企业家。\n\n根据以上陈述,可以得出以下哪项?", "type": "单选题", "options": "A. 企业家如果符合时代要求,就会真正得到社会认可\nB. 企业家如果施展才华,企业就会长期存在于社会之中\nC. 企业家如果真诚回报社会,就是符合时代要求的企业家\nD. 企业家如果没有切实履行社会责任,就不会真正得到社会认可", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 647412, "human_acc": 82.4271097848, "source": "2021年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第91题", "difficulty": 5, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 2264412, "material": "", "question": "新中国的区域与城市规划始于20世纪50年代,目前在空间规划上已初步形成了八个主要________,按照从小到大的顺序,依次是乡村规划、小城镇规划、城市规划、大都市规划、大都市区规划、大都市圈规划、城市群规划和湾区规划。但由于缺乏系统的________和深入的研究,很多概念的内涵和边界不够清楚,这给实际的规划和建设带来诸多的不便和________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 层次 调查 阻碍\nB. 部分 考察 负担\nC. 层级 梳理 混乱\nD. 维度 分析 困难", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 3820336, "human_acc": 31.6396777666, "source": "2019年国家公务员录用考试《行测》题(副省级网友回忆版)第32题", "difficulty": 5, "formulas": 0, "history": [{"id": 769177, "material": "", "question": "回顾几十年的改革(   ),他感慨良多。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 里程\nB. 过程\nC. 路程\nD. 历程", "choice": "D", "keypoints": "对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 148682, "human_acc": 94.6187164553, "source": "2011年广东省公务员录用考试《行测》题第24题", "difficulty": 3, "formulas": 0}, {"id": 2262682, "material": "", "question": "古筝悠扬,清茶沁人,加之窗外的西湖美景,令人心旷神怡,(   )。", "type": "单选题", "options": "A. 乐不思蜀\nB. 感慨万千\nC. 诗兴大发\nD. 物我两忘", "choice": "D", "keypoints": "对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 3525, "human_acc": 54.7517730496, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第10题", "difficulty": 5, "formulas": 0}, {"id": 2261978, "material": "", "question": "港珠澳大桥必将推动粤港澳大湾区的建设,从而成为内地和港澳经济转型升级的(    )。", "type": "单选题", "options": "A. 引擎\nB. 契机\nC. 平台\nD. 纽带", "choice": "A", "keypoints": "对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 109657, "human_acc": 44.6145708892, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第27题", "difficulty": 6, "formulas": 0}, {"id": 769167, "material": "", "question": "领导干部应该深入群众,和群众打成一片,真正______民情。\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 体察\nB. 体恤\nC. 体贴\nD. 体验", "choice": "A", "keypoints": "对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 151775, "human_acc": 65.8678965574, "source": "2011年广东省公务员录用考试《行测》题第21题", "difficulty": 4, "formulas": 0}, {"id": 249297, "material": "", "question": "园中的书阁则如历史长河中的一柱悠悠文脉,默默守候着一段________而婉约的传说。填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 凄美\nB. 酣畅\nC. 优美\nD. 动人", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 20959, "human_acc": 14.848036643, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第17题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5665344, "material": "", "question": "一项工程,甲单独完成需要25天,乙单独完成需要15天,如果按照甲、乙的顺序交替进行,每人做一天,那么完成这项工程需要多少天?", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 3759, "human_acc": 74.3814844374, "source": "2023下半年省考第十三季行测模考大赛(广东县级卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 5867, "material": "", "question": "一个游泳池,甲管注满水需6小时,甲、乙两管同时注水,注满要4小时。如果只用乙管注水,那么注满水需多少小时:", "type": "单选题", "options": "A. 14\nB. 12\nC. 10\nD. 8", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 127732, "human_acc": 87.2490840197, "source": "2008年河南省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}, {"id": 3431, "material": "", "question": "要折叠一批纸飞机,若甲单独折叠要半个小时完成,乙单独折叠需要45分钟完成。若两人一起折,需要多少分钟完成:", "type": "单选题", "options": "A. 10\nB. 15\nC. 16\nD. 18", "choice": "D", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 59989, "human_acc": 76.2139725616, "source": "2008年广东省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 49325, "material": "", "question": "一项工程,甲、乙合作16天完成,乙、丙合作12天完成,丙、丁合作16天完成,如果甲、丁合作完成这项工程需要多少天:", "type": "单选题", "options": "A. 21\nB. 24\nC. 26\nD. 27", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "A", "human_count": 368874, "human_acc": 77.7297939134, "source": "2013年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"]]}, {"id": 2770243, "material": "", "question": "“凡尔赛文学”是“一种表演高级生活的精神”,不正面、直白地描述或展示生活之高端,看似____________地说某个话题或流露出某个细节,来展现自己高人一等的优越感。所以,有人提出,“凡尔赛文学”是“用最低调的话,炫最高调的耀”;也有人把“凡尔赛文学”的内容概括为故作困扰的炫耀、____________的责怪。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 点到为止 却之不恭\nB. 语焉不详 曲意逢迎\nC. 漫不经心 欲拒还迎\nD. 煞有介事 矫揉造作", "choice": "C", "keypoints": "对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 147491, "human_acc": 80.6523787892, "source": "2021上半年省考第六季行测模考大赛(陕西卷)第31题", "difficulty": 4, "formulas": 0, "history": [{"id": 14093, "material": "", "question": "机会总会眷顾有所准备的人,当错失良机时,我们往往(    )。", "type": "单选题", "options": "A. 浑然不觉\nB. 茫然若失\nC. 不知所措\nD. 六神无主", "choice": "B", "keypoints": "对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 47539, "human_acc": 25.0383895328, "source": "2009年四川省公务员录用考试《行测》题(上半年)第22题", "difficulty": 5, "formulas": 0}, {"id": 14127, "material": "", "question": "今天的幸福生活是先辈们用血汗换来的,我们不能忘记他们的______之功。", "type": "单选题", "options": "A. 来之不易\nB. 开天辟地\nC. 翻天覆地\nD. 筚路蓝缕", "choice": "D", "keypoints": "对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 43973, "human_acc": 52.4799308667, "source": "2008年重庆市公务员录用考试《行测》题第38题", "difficulty": 6, "formulas": 0}, {"id": 2262697, "material": "", "question": "近日,禁止干部参赌成为热门话题。在春节来临之际,突出抓一下这个问题,(   )。", "type": "单选题", "options": "A. 适可而止\nB. 恰如其分\nC. 适逢其时\nD. 及锋而试", "choice": "C", "keypoints": "对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 4505, "human_acc": 90.7214206437, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第14题", "difficulty": 5, "formulas": 0}, {"id": 14259, "material": "", "question": "由于凶手的残忍和狠毒,村民们面对公安人员的调查都______,生怕给自己酿下大祸:", "type": "单选题", "options": "A. 讳莫如深\nB. 轻言细语\nC. 三言两语\nD. 耳鬓厮磨", "choice": "A", "keypoints": "对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 43586, "human_acc": 83.0289542514, "source": "2008年重庆市公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0}, {"id": 273, "material": "", "question": "贝多芬曾多次___地对小卡尔进行批评劝诫,但他的仁慈和宽容没有唤回毫无人性的小卡尔。", "type": "单选题", "options": "A. 殚精竭虑\nB. 好心好意\nC. 仁至义尽\nD. 苦口婆心", "choice": "D", "keypoints": "对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 118848, "human_acc": 80.8419157243, "source": "2008年湖南省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 202423, "material": "", "question": "依次填入下列各句横线处的词语,最恰当的一组是:\n\n①文学的美,终其一生,将是我追求的________了。\n\n②天空高临在我们的头上,没有一丝云层,浩渺的清空呈现着神秘无边的伟大________。\n\n③一个人,心里觉得愉快时喜欢唱一唱歌是自然的________。", "type": "单选题", "options": "A. 理想 气象 表露\nB. 目标 气息 表露\nC. 目标 气象 流露\nD. 理想 气息 流露", "choice": "C", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 491191, "human_acc": 55.1911578184, "source": "2013年深圳市公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 50677, "material": "", "question": "进一步(  )地域特色,进行特色打造和品位提升是名镇名村创建工作的目的之一。\n\n填入括号中最恰当的一项是:", "type": "单选题", "options": "A. 挖掘\nB. 探索\nC. 发掘\nD. 摸索", "choice": "A", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 755151, "human_acc": 54.0351532343, "source": "2013年广东省公务员录用考试《行测》题(一)第18题", "difficulty": 5, "formulas": 0}, {"id": 50679, "material": "", "question": "随着社会老龄化进入了第一高峰期,广大老年人精神文化生活方面的需求也进一步(  )出来。\n\n填入括号中最恰当的一项是:", "type": "单选题", "options": "A. 体现\nB. 呈现\nC. 表现\nD. 凸显", "choice": "D", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 748982, "human_acc": 74.0107238892, "source": "2013年广东省公务员录用考试《行测》题(一)第19题", "difficulty": 5, "formulas": 0}, {"id": 2036504, "material": "", "question": "为知识分子营造良好的学习、工作和生活环境,使他们成长有机会、干事有舞台、发展有空间,是党和政府的重要_________。", "type": "单选题", "options": "A. 职责\nB. 责任\nC. 义务\nD. 职权", "choice": "A", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 31544, "human_acc": 87.8582297743, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第10题", "difficulty": 3, "formulas": 0}, {"id": 2261973, "material": "", "question": "“进去,只留下脚印;出来,只带走照片”,这句话直观地提示我们,依托生态发展旅游,必须遵循自然规律,(    )保护生态环境。", "type": "单选题", "options": "A. 坚守\nB. 强调\nC. 注重\nD. 重点", "choice": "C", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 111265, "human_acc": 79.8966431492, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第24题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 1688990, "material": "", "question": "面向未来,在中西文化的相遇中,要建构出理想形态的中国文学史理论,必须切实建立中国文学的主体意识,达成现代视野与传统资源之间的良性_______,使中国不再是以自在的形态而潜隐,而要在_______的理论自觉中成为自为的学术追求,在充分地成就中国文学史理论自觉意识中推进中西理论互诠互释、共生共荣。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 传承 开化\nB. 互动 明确\nC. 交接 现实\nD. 磨合 确实", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 16479, "human_acc": 73.4510589235, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第14题", "difficulty": 5, "formulas": 0, "history": [{"id": 2261970, "material": "", "question": "传统美德,是一片(    )的土地,生长着本真的人生体验,孕育着鲜活的道德追求。", "type": "单选题", "options": "A. 丰收\nB. 丰饶\nC. 丰产\nD. 丰盛", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 109811, "human_acc": 91.1475170976, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第21题", "difficulty": 3, "formulas": 0}, {"id": 2165995, "material": "", "question": "该地区对环境保护采取了强有力的措施,使水土流失现象得到______,生态环境向良性循环转变。", "type": "单选题", "options": "A. 治理\nB. 控制\nC. 遏制\nD. 改变", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 884309, "human_acc": 33.736849902, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第14题", "difficulty": 5, "formulas": 0}, {"id": 2036590, "material": "", "question": "乡村的美丽在于历史记忆,千百年来_________的村落空间、建筑风格,镌刻着一圈圈生命的年轮。", "type": "单选题", "options": "A. 养成\nB. 形成\nC. 造成\nD. 变成", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 32849, "human_acc": 96.0242320923, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第1题", "difficulty": 3, "formulas": 0}, {"id": 2165994, "material": "", "question": "在现代化的生活里,有人每一天都_____在一系列数字里,BP机号码、手机号码、电脑密码、信用卡密码······", "type": "单选题", "options": "A. 困扰\nB. 锁定\nC. 固定\nD. 纠缠", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 1086723, "human_acc": 17.447500421, "source": "天津市选调2018年应届优秀大学毕业生到基层培养锻炼考试题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 11647, "material": "", "question": "科学选择新兴战略性产业非常重要,选对了就能跨越发展,选错了将会______时机。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 痛失\nB. 耽误\nC. 错过\nD. 贻误", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 109013, "human_acc": 54.1605129663, "source": "2010年江西省公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2388031, "material": "", "question": "所有的艺术家都懂音乐,有些懂音乐的写诗歌,你不写诗歌,所以你不是艺术家。\n\n以下哪项的推理结构与上述推理的形式最为类似?", "type": "单选题", "options": "A. 所有的羊都吃草,有些吃草的吃田螺,牛不吃田螺,所以牛不是羊\nB. 所有工业设计专业的学生都会画图,有些会画图的爱好书法,小明不会画图,所以小明不是工业设计的学生\nC. 所有的教授都承担过国家级课题,有些承担国家级课题的是名教授,老范是普通教授,所以老范没承担过国家级课题\nD. 所有的女士都爱美,有些爱美的还喜欢健身,小丽不喜欢健身,所以小丽不是爱美的女士", "choice": "A", "keypoints": "推理形式", "most_wrong": "D", "human_count": 814241, "human_acc": 65.5245805603, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第109题", "difficulty": 5, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 2031220, "material": "", "question": "中央八项规定之所以取得成效,关键是中央政治局以身作则、________。各级领导干部要充分认识自己在作风建设中的关键地位和重要作用,以及对党和国家前途命运的重大责任,以________、如临深渊的小心和谨慎,对待自己的一言一行,一举一动。要带头改进作风,不是说给大家听,而是做给大家看,一级抓一级,一级带一级,层层________。\n\n依次填入画横线部分最恰当的是:", "type": "单选题", "options": "A. 身先士卒 如箭在弦 真抓实干\nB. 率先垂范 如履薄冰 求真务实\nC. 严于律己 如临大敌 贯彻落实\nD. 公平正直 小心翼翼 廉洁自律", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 540382, "human_acc": 66.4557664763, "source": "2015年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 4, "formulas": 0, "history": [{"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 8787, "material": "", "question": "在这场全球性的金融危机中,中国不可能______。\n\n填入横线上的词语最恰当的是:", "type": "单选题", "options": "A. 特立独行\nB. 独善其身\nC. 独步天下\nD. 孤独求败", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 79416, "human_acc": 95.7212652362, "source": "2009年安徽省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 50475, "material": "", "question": "外交调研是一门特殊的学问,既要善于____,又不能听风便是雨。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 见微知著\nB. 当机立断\nC. 反躬自省\nD. 触类旁通", "choice": "A", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 821674, "human_acc": 60.9951148509, "source": "2013年广东省公务员录用考试《行测》题(三)第20题", "difficulty": 5, "formulas": 0}, {"id": 14245, "material": "", "question": "有些干部对自己的下属颐指气使,对自己的上司______,唯唯诺诺,一副奴才的嘴脸,这都是要不得的:", "type": "单选题", "options": "A. 阳奉阴违\nB. 醍醐灌顶\nC. 顶礼膜拜\nD. 耳提面命", "choice": "C", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 44690, "human_acc": 46.1109867979, "source": "2008年重庆市公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 4323, "material": "", "question": "这条商业街位于繁华的市中心,开张以来,生意一直很好,人流如潮,___。\n\n上面画线处填入词语,最恰当的是:", "type": "单选题", "options": "A. 车水马龙\nB. 纷至沓来\nC. 络绎不绝\nD. 接踵而来", "choice": "C", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 81595, "human_acc": 45.8336907899, "source": "2008年福建省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3639328, "material": "", "question": "会议室有一排6个座位,甲、乙、丙、丁四人就坐,若甲坐在两端的座位,则乙也必须坐在两端的座位;若乙不坐两端的座位,则丙与乙必须相邻就坐。问两个空座相邻的排座方法有多少种?", "type": "单选题", "options": "A. 36\nB. 48\nC. 56\nD. 64", "choice": "D", "keypoints": "相邻问题", "most_wrong": "C", "human_count": 28710, "human_acc": 8.6415882968, "source": "2021下半年省考第七季行测模考大赛(河南卷)第63题", "difficulty": 7, "formulas": 0, "history": [{"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 8099, "material": "", "question": "3名学生和2名老师站成一排照相,2名老师必须站在一起且不在边上的不同排法共有:", "type": "单选题", "options": "A. 12种\nB. 24种\nC. 36种\nD. 48种", "choice": "B", "keypoints": "相邻问题", "most_wrong": "A", "human_count": 142697, "human_acc": 66.8682593187, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第8题", "difficulty": 5, "formulas": 0}, {"id": 455201, "material": "", "question": "四对情侣排成一队买演唱会门票,已知每对情侣必须排在一起,问共有多少种不同的排队顺序:", "type": "单选题", "options": "A. 24\nB. 96\nC. 384\nD. 40320", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 454303, "human_acc": 64.360569928, "source": "2014年浙江省公务员录用考试《行测》题(B类)第47题", "difficulty": 5, "formulas": 0}, {"id": 5647201, "material": "", "question": "壮壮给平板电脑设置了仅由数字5和6组成的六位数密码,且其中恰好有连续三位数字都是6。则壮壮设置的密码有多少种可能?", "type": "单选题", "options": "A. 10\nB. 9\nC. 12\nD. 11", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 50144, "human_acc": 54.2756860243, "source": "2023下半年省考第十二季行测模考大赛(广东县级卷)第40题", "difficulty": 6, "formulas": 0}, {"id": 5365372, "material": "", "question": "春节期间,单位安排甲、乙、丙三人在初一到初六值班,要求每人值班两天,且甲必须连续两天值班,则共有多少种值班方案?", "type": "单选题", "options": "A. 30\nB. 60\nC. 120\nD. 240", "choice": "A", "keypoints": "相邻问题", "most_wrong": "C", "human_count": 11719, "human_acc": 20.0870381432, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第66题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "相邻问题"]]}, {"id": 1503605, "material": "", "question": "某市针对虚假促销的专项检查中,发现某商场将一套茶具加价4成再以8折出售,实际售价比原价还高24元。问这套茶具的原价是多少元:", "type": "单选题", "options": "A. 100\nB. 150\nC. 200\nD. 250", "choice": "C", "keypoints": "经济利润问题", "most_wrong": "B", "human_count": 398699, "human_acc": 81.2324585715, "source": "2015年四川省公务员录用考试《行测》题(上半年)第51题", "difficulty": 4, "formulas": 0, "history": [{"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 5510095, "material": "", "question": "某商品的利润率是20%。如果进货价降低20%,售价保持不变,此时利润率是多少?", "type": "单选题", "options": "A. 40%\nB. 30%\nC. 60%\nD. 50%", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "A", "human_count": 160341, "human_acc": 60.6943950705, "source": "2023年河北省公务员录用考试《行测》题(网友回忆版)第71题", "difficulty": 3, "formulas": 0}, {"id": 8481, "material": "", "question": "电影票10元一张,降价后观众增加一倍,收入增加$\\frac{1}{5}$,则一张票降价多少元?", "type": "单选题", "options": "A. 8\nB. 6\nC. 4\nD. 2", "choice": "C", "keypoints": "经济利润问题", "most_wrong": "B", "human_count": 19208, "human_acc": 69.8042482299, "source": "2009年江西省公务员录用考试《行测》题第40题", "difficulty": 4, "formulas": 1}, {"id": 1209, "material": "", "question": "某商品进价240元,8折销售后还可获利40元,则原销售价比进价提高了:", "type": "单选题", "options": "A. 17%\nB. 45.83%\nC. 60%\nD. 145.83%", "choice": "B", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 38184, "human_acc": 78.1557720511, "source": "2008年四川省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 4652157, "material": "", "question": "某种商品如果每件降价30元,单价比打八折销售时贵10元,则这种商品的定价是多少元/件?", "type": "单选题", "options": "A. 200\nB. 250\nC. 300\nD. 350", "choice": "A", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 309878, "human_acc": 78.935258392, "source": "2022年北京市公务员录用考试《行测》题(网友回忆版)第72题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"]]}, {"id": 17941, "material": "", "question": "火车通过560米长的隧道用20秒,如果速度增加20%,通过1200米的隧道用30秒,火车的长度是多少米:", "type": "单选题", "options": "A. 220\nB. 240\nC. 250\nD. 260", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 76983, "human_acc": 77.7860047023, "source": "2011年江苏省公务员录用考试《行测》题(A类)第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 5703375, "material": "", "question": "某款皮鞋和某款钱包在两个商城甲和乙的原价均相同,皮鞋的单价是360元,且皮鞋的单价比钱包单价的4倍少8元。假如甲商城以8折优惠进行所有商品促销,而乙商城则是单件商品每满100元可立减30元,则最低能以________元钱购买这两种商品。", "type": "单选题", "options": "A. 361.6\nB. 343.6\nC. 362\nD. 380", "choice": "B", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "A", "human_count": 93, "human_acc": 45.1612903226, "source": "2016年上海市行政执法类考试《行测》试题(网友回忆版)第52题", "difficulty": 4, "formulas": 0, "history": [{"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 4751366, "material": "", "question": "文具店针对原价4元/本的笔记本有如下优惠活动:每买5本赠送1本,每买10本则打八折,两种优惠活动可同时享受。学校预计采购158本笔记本,问最少需要花费多少元?", "type": "单选题", "options": "A. 464\nB. 508\nC. 408\nD. 424", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "B", "human_count": 22389, "human_acc": 28.0896868998, "source": "2022上半年省考第九季行测模考大赛(浙江卷)第75题", "difficulty": 7, "formulas": 0}, {"id": 2758345, "material": "", "question": "张师傅去市场采购酱油和醋各100瓶。甲商店每瓶酱油5.5元,每瓶醋4元,乙商店每瓶酱油6元且每买5瓶送1瓶,每瓶醋5元且每买4瓶送1瓶,则张师傅此次采购最少需花费多少元?", "type": "单选题", "options": "A. 902\nB. 900\nC. 950\nD. 904", "choice": "A", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 154563, "human_acc": 25.2059030945, "source": "2021上半年省考第四季行测模考大赛(广东卷)第37题", "difficulty": 7, "formulas": 0}, {"id": 2172820, "material": "", "question": "文体用品店有一批数量为35支的羽毛球拍,进货价为每支130元。在进货价基础上提高$20\\%$销售,并实行消费返现制度,顾客购买羽毛球拍每满100元即减5元。假如规定每名顾客最多只能买3支球拍,则销售这批球拍至少可赚(  )元。", "type": "单选题", "options": "A. 650\nB. 675\nC. 735\nD. 900", "choice": "A", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "B", "human_count": 397690, "human_acc": 21.1126757022, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第37题", "difficulty": 7, "formulas": 1}, {"id": 2579729, "material": "", "question": "超市销售某种圆珠笔,单盒装的售价10元,5盒装的售价40元,10盒装的售价70元,20盒装的售价120元。现有两家企业来采购这种圆珠笔,甲企业的预算最多正好买92盒,乙企业的预算最多正好买103盒。问,两家企业如果合买最多比分开买多采购多少盒?", "type": "单选题", "options": "A. 3\nB. 5\nC. 8\nD. 10", "choice": "B", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 573928, "human_acc": 64.8881044312, "source": "2020年浙江公务员考试《行测》(B类)试题(网友回忆版)第15题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 4772048, "material": "", "question": "音乐是一种听觉艺术,但国风音乐除了能带给人听觉上的享受,还颇有__________。借助汉语表意的特性,国风音乐的歌词中往往包含各种________,如小桥、流水、冷月、红烛、青山、鹧鸪,如果把这些都铺陈开来,就是一幅________的图画。听音乐时,人们会被带入一种“古风意境”,仿佛身临其境。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 画面感 意象 生动\nB. 层次感 景色 完整\nC. 历史感 感受 绝美\nD. 仪式感 韵味 逼真", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 319429, "human_acc": 93.5534970212, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第35题", "difficulty": 3, "formulas": 0, "history": [{"id": 2385162, "material": "", "question": "以垃圾转运站为代表的垃圾收运环节,因其连接上下游,成为城市垃圾处理的______。", "type": "单选题", "options": "A. 中枢\nB. 枢要\nC. 中心\nD. 中坚", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 83893, "human_acc": 78.4272823716, "source": "2019深圳市公务员录用考试《行测》题(网友回忆版)第56题", "difficulty": 4, "formulas": 0}, {"id": 1796504, "material": "", "question": "干部走进基层,在实践中增长(    ),是锻炼干部、培养人才的重要途径。\n\n填入括号处最恰当的一项是:", "type": "单选题", "options": "A. 才学\nB. 才华\nC. 才干\nD. 才智", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 841264, "human_acc": 90.6846126781, "source": "2016年广东省公务员录用考试《行测》题(乡镇)第1题", "difficulty": 5, "formulas": 0}, {"id": 3524708, "material": "", "question": "人体已经适应了地表生活,进入太空后,难免会出现________反应,毕竟细胞间的相互作用与在地表时迥异。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 奇妙\nB. 特殊\nC. 异常\nD. 奇特", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 1594167, "human_acc": 88.1279062984, "source": "2021年内蒙古公务员录用考试《行测》题(网友回忆版)第25题", "difficulty": 4, "formulas": 0}, {"id": 2693452, "material": "", "question": "优秀的图画书都具有相当的思想________与情感力度,短短几十页,却________了创作者诸多的人生智慧与生活哲学。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 广度 见证\nB. 深度 折射\nC. 厚度 凝练\nD. 高度 聚焦", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 238772, "human_acc": 47.4079875362, "source": "2021年国考第二十三季行测模考大赛(副省级)第29题", "difficulty": 6, "formulas": 0}, {"id": 48227, "material": "", "question": "“刻章办证”的小广告在现实生活中屡见不鲜,办证俨然成为了一个行业。正是长期以来“以证治国”的管制思维,在给人带来不便的同时也催生了_____的证件需求。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 变异\nB. 异化\nC. 固化\nD. 变化", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 349719, "human_acc": 68.4992808512, "source": "2013年天津市公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5115453, "material": "", "question": "2022年,母亲年龄是儿子年龄的6倍。2年前,父亲年龄恰好是母亲和儿子的年龄之和;2年后,父亲年龄是儿子年龄的5倍。问父亲出生于哪一年?", "type": "单选题", "options": "A. 1992年\nB. 1990年\nC. 1989年\nD. 1987年", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 87541, "human_acc": 60.9165990793, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 4517, "material": "", "question": "父亲今年44岁,儿子今年16岁,当父亲的年龄是儿子的年龄的8倍时,父子的年龄和是多少岁:", "type": "单选题", "options": "A. 36\nB. 54\nC. 99\nD. 162", "choice": "A", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 16717, "human_acc": 79.8408805408, "source": "2009年北京市公务员录用考试《行测》题(社招)第17题", "difficulty": 5, "formulas": 0}, {"id": 5185, "material": "", "question": "哥哥5年后的年龄和弟弟3年前的年龄和是29岁,弟弟现在的年龄是两人年龄差的4倍。哥哥今年几岁?", "type": "单选题", "options": "A. 10\nB. 12\nC. 15\nD. 18", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 30233, "human_acc": 80.4551318096, "source": "2009年北京市公务员录用考试《行测》题(应届)第24题", "difficulty": 4, "formulas": 0}, {"id": 8161, "material": "", "question": "父亲与两个儿子的年龄和为84岁,12年后父亲的年龄等于两个儿子的年龄之和,请问父亲现在多少岁:", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 60", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 51483, "human_acc": 74.1837111279, "source": "2009年广东省公务员录用考试《行测》题第14题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "年龄问题"]]}, {"id": 2049446, "material": "", "question": "对于社会性动物人类来说,社交的重要性________________,而社交活动中必不可少的技能就是要认清别人的脸。不幸得脸盲症的话,真是会________________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 昭然若揭 见笑于人\nB. 毋庸赘述 贻笑大方\nC. 不言而喻 窘态百出\nD. 显而易见 羞愧难当", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 1649653, "human_acc": 83.596489686, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第3题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2097066, "material": "", "question": "除了那些家喻户晓的“国宝”,中华大地上还有不少动物正处于、或正在走向“濒危”行列。由于种种原因,它们所面临的危险还未被重视,甚至它们的名字和样子都________________。", "type": "单选题", "options": "A. 默默无闻\nB. 鲜为人知\nC. 无人问津\nD. 一无所知", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 946756, "human_acc": 90.7618224759, "source": "2017年四川省公务员录用考试《行测》题(下半年)第12题", "difficulty": 5, "formulas": 0}, {"id": 2255894, "material": "", "question": "只有带着中国“土”味儿的艺术,才能在世界画坛上_________,跟在别人屁股后面跑的,不管是什么千奇派、百怪派,只能说是_________,说文雅一些,是艺术教条主义。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 奇情异彩 拾人牙慧\nB. 大方光芒 拾人牙慧\nC. 大放异彩 拾人牙慧\nD. 光芒万丈 拾人牙慧", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 8983, "human_acc": 93.487698987, "source": "2016年江西省法检系统招录考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2049558, "material": "", "question": "沿着卢瓦尔河,法国的历史被书写进河谷里__________的城堡群中。想要探寻几百年间法国乃至欧洲王宫贵胄间的权力斗争,窥视__________的宫廷秘事,就要从走进这一座座城堡开始。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鳞次栉比 不可捉摸\nB. 星罗棋布 波诡云谲\nC. 浩如烟海 变幻莫测\nD. 不计其数 变幻无常", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 1829273, "human_acc": 80.4377476735, "source": "2017年422联考《行测》题(湖南卷)第4题", "difficulty": 5, "formulas": 0}, {"id": 1796104, "material": "", "question": "一方面,社会对带薪休假制度热切欢迎,而且对于落实和执行不力可谓________;但另一方面,具体到实际维权行动中,对不落实带薪休假者,即便在劳动争议案件中,也很少有人提及,而因此直接举报者更是________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 嗤之以鼻 门可罗雀\nB. 冷嘲热讽 寡不敌众\nC. 口诛笔伐 寥寥无几\nD. 疾言厉色 势单力薄", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 1429599, "human_acc": 89.758246893, "source": "2016年423联考《行测》题(贵州卷)第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4879478, "material": "", "question": "空调被:蚕丝被:保暖", "type": "单选题", "options": "A. 护理床:呼吸机:保健\nB. 原木浆:卫生纸:清洁\nC. 置物架:牙刷架:收纳\nD. 学习灯:玻璃灯:照明", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 303635, "human_acc": 78.4856818219, "source": "2022上半年省考第十四季行测模考大赛(广东县级卷)第55题", "difficulty": 4, "formulas": 0, "history": [{"id": 3522629, "material": "", "question": "党员:干部:服务人民", "type": "单选题", "options": "A. 青年:才俊:报效国家\nB. 科学:精英:科技立身\nC. 大国:工匠:技术强国\nD. 学校:教师:教书育人", "choice": "A", "keypoints": "逻辑关系-交叉关系;逻辑关系-对应关系", "most_wrong": "D", "human_count": 1562468, "human_acc": 90.0563723545, "source": "2021年甘肃公务员录用考试《行测》题(网友回忆版)第87题", "difficulty": 5, "formulas": 0}, {"id": 2578067, "material": "", "question": "青年人:公务员:服务人民", "type": "单选题", "options": "A. 当代史:革命史:史海耕耘\nB. 下农村:进工厂:劳动锻炼\nC. 创业者:劳动者:市场打拼\nD. 大学生:志愿者:奉献社会", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 1764331, "human_acc": 98.0331355058, "source": "2020年湖南公务员考试《行测》试题(网友回忆版)第94题", "difficulty": 5, "formulas": 0}, {"id": 5442307, "material": "", "question": "天气预报:中期预报:预报天气", "type": "单选题", "options": "A. 成分:营养成分:分成\nB. 门锁:电子锁:锁门\nC. 经济评论:文教评论:评论经济\nD. 问卷调查:抽样调查:调查问卷", "choice": "B", "keypoints": "逻辑关系-交叉关系;逻辑关系-对应关系", "most_wrong": "C", "human_count": 220700, "human_acc": 58.0398731309, "source": "2023上半年省考第三季行测模考大赛(天津卷)第85题", "difficulty": 5, "formulas": 0}, {"id": 5487068, "material": "", "question": "固体肥料:无机肥料:增产增收", "type": "单选题", "options": "A. 平面图形:立体图形:传递信息\nB. 高锰酸钾:强氧化剂:消毒杀菌\nC. 长期债券:公司债券:自由转让\nD. 婴儿服装:棉麻服装:防寒保暖", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-对应关系", "most_wrong": "B", "human_count": 28477, "human_acc": 73.9087684798, "source": "2023上半年省考第八季行测模考大赛(西藏卷)第50题", "difficulty": 4, "formulas": 0}, {"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 4674957, "material": "", "question": "春夏秋冬:春天:秋天", "type": "单选题", "options": "A. 豺狼虎豹:豺狗:雪豹\nB. 花鸟鱼虫:月季:鲤鱼\nC. 酸甜苦辣:酸角:苦瓜\nD. 梅兰竹菊:梅花:竹子", "choice": "D", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-全同关系", "most_wrong": "C", "human_count": 224455, "human_acc": 93.4356552538, "source": "2022上半年省考第二季行测模考大赛(河南卷)第106题", "difficulty": 3, "formulas": 0, "history": [{"id": 2654132, "material": "", "question": "生老病死:坠地:去世", "type": "单选题", "options": "A. 江河湖海:长江:死海\nB. 阴晴圆缺:阴天:晴天\nC. 笔墨纸砚:诸毛:石友\nD. 绿肥红瘦:丰腴:苗条", "choice": "C", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-全同关系", "most_wrong": "D", "human_count": 172081, "human_acc": 38.8596068131, "source": "2021年国考第十八季行测模考大赛(副省级)第102题", "difficulty": 6, "formulas": 0}, {"id": 4658537, "material": "", "question": "琴棋书画:古琴:围棋", "type": "单选题", "options": "A. 梅兰竹菊:梅花:兰花\nB. 花鸟虫鱼:菊花:画眉\nC. 笔墨纸砚:毛笔:砚台\nD. 江河湖海:长江:黄河", "choice": "A", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-全同关系", "most_wrong": "B", "human_count": 1530768, "human_acc": 57.5752824726, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第74题", "difficulty": 5, "formulas": 0}, {"id": 4985878, "material": "", "question": "衣帽鞋袜:衣服:帽子", "type": "单选题", "options": "A. 油盐酱醋:食盐:酱油\nB. 诗词歌赋:唐诗:宋词\nC. 琴瑟琵琶:古琴:锦瑟\nD. 经史子集:经书:史书", "choice": "D", "keypoints": "拆分思维;逻辑关系-并列关系;逻辑关系-全同关系", "most_wrong": "B", "human_count": 262877, "human_acc": 43.1760861544, "source": "2022上半年省考第十九季行测模考大赛(河南卷)第108题", "difficulty": 7, "formulas": 0}, {"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 4668700, "material": "", "question": "麒∶麟", "type": "单选题", "options": "A. 鲲∶鹏\nB. 凤∶凰\nC. 玄∶武\nD. 龙∶凤", "choice": "B", "keypoints": "逻辑关系-并列关系", "most_wrong": "A", "human_count": 1209055, "human_acc": 65.5228256779, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第86题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-并列关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 2259180, "material": "", "question": "按照乔麦的理论,看电影是一种基于________的有效心理治疗途径,让人________在别人的故事里流泪、欢笑、愤怒,泪是你的,怒是你的,但电影里的故事丝毫不会________你的生活。你是安全的,在故事之外。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 移情 沉醉 搅动\nB. 情感 沉浸 感动\nC. 移情 沉浸 撼动\nD. 情感 沉酣 撼动", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 468343, "human_acc": 79.1353772769, "source": "2015年江西省法检系统招录考试《行测》题第20题", "difficulty": 4, "formulas": 0, "history": [{"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 16261, "material": "", "question": "中国网民应该更加珍惜这种参政议政方式,________“网络暴力”等不良行为,发兴亡之言不叉腰________,写载道之文不偏激狭隘,做负责任、建设性的大国网民。\n\n填在横线上最恰当的词语是:", "type": "单选题", "options": "A. 杜绝 谩骂\nB. 杜撰 漫骂\nC. 杜绝 漫骂\nD. 杜撰 谩骂", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 36350, "human_acc": 82.15130674, "source": "2009年贵州省公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 4410941, "material": "", "question": "纵观中国文学史与世界文学史,以想象力作为文学本体的幻想类文学始终作为现实主义文学的陪衬,游荡于文学王国的边缘,在最初兴盛的神话文学之后,幻想文学就________于漫长的文学史长河中而无人问津了,这种情形直到中国网络文学的出现才发生了根本性的改变。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消逝\nB. 沉寂\nC. 湮灭\nD. 隐藏", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 21344, "human_acc": 80.4863193403, "source": "2021下半年省考第二十四季行测模考大赛(内蒙古卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 4988485, "material": "", "question": "受到限制时寻求自由已然成为古今乃至中外人们的共同之处。从这个意义上看,今天的人们________魏晋名士的洒脱不羁,并非没有缘由。在今天,我们的生活环境与魏晋时期相比发生了天翻地覆的变化,然而人们对魏晋风流向往的风潮和力度有增无减。这恰恰说明,我们在心灵深处与魏晋人士有________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 垂青 沟通\nB. 青睐 共鸣\nC. 朝拜 交流\nD. 追捧 共情", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 247936, "human_acc": 65.3289558596, "source": "2022上半年省考第十九季行测模考大赛(广东乡镇卷)第4题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2036482, "material": "", "question": "根据《中国共产党章程》,党的(    )每届任期两年或三年。", "type": "单选题", "options": "A. 支部委员会\nB. 基层委员会\nC. 地方委员会\nD. 中央委员会", "choice": "A", "keypoints": "政治常识", "most_wrong": "B", "human_count": 28547, "human_acc": 31.4393806705, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第69题", "difficulty": 6, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "政治常识"]]}, {"id": 5198462, "material": "", "question": "某单位开展为期9天的“争当文明使者”活动,其下属甲、乙两个科室分别派出5、4名工作人员参加,每天只安排1人且不重复参加,则同一科室的工作人员都不连续参加活动的情况数在以下哪个范围内?", "type": "单选题", "options": "A. 小于1000种\nB. 1000~2000种\nC. 2000~3000种\nD. 3000~4000种", "choice": "C", "keypoints": "不相邻问题", "most_wrong": "B", "human_count": 135927, "human_acc": 53.6383499967, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第60题", "difficulty": 6, "formulas": 0, "history": [{"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 2365993, "material": "", "question": "因电路改造,电力公司计划未来十天对某小区选择三天停电,要求不能连续两天停电,则共有多少种停电方案?", "type": "单选题", "options": "A. 35\nB. 56\nC. 84\nD. 120", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 18278, "human_acc": 46.2632673159, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第94题", "difficulty": 6, "formulas": 0}, {"id": 1587229, "material": "", "question": "小区内空着一排相邻的8个车位,现有4辆车随机停进车位,恰好没有连续空位的停车方式共有多少种?", "type": "单选题", "options": "A. 48\nB. 120\nC. 360\nD. 1440", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "A", "human_count": 252761, "human_acc": 39.8712617848, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第67题", "difficulty": 6, "formulas": 0}, {"id": 5483972, "material": "", "question": "某车库有10个并排的车位,有3辆不同的车要停进这10个车位之中,而且彼此不能相邻,则有多少种不同的停放方法?", "type": "单选题", "options": "A. 336\nB. 246\nC. 156\nD. 66", "choice": "A", "keypoints": "不相邻问题", "most_wrong": "B", "human_count": 25608, "human_acc": 19.9429865667, "source": "2023年北京市公务员录用考试《行测》题(网友回忆版)第78题", "difficulty": 4, "formulas": 0}, {"id": 2042510, "material": "", "question": "两公司为召开联欢晚会,分别编排了3个和2个节目,要求同一公司的节目不能连续出场,则安排节目出场顺序的方案共有:", "type": "单选题", "options": "A. 12种\nB. 18种\nC. 24种\nD. 30种", "choice": "A", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 528474, "human_acc": 63.2664993926, "source": "2017年江苏省公务员录用考试《行测》题(C类)第64题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"]]}, {"id": 2627858, "material": "", "question": "降维打击,指的是攻击目标本身所处的空间维度使其降低,让目标无法在低维度空间中生存从而毁灭目标。也就是说,随着市场大环境的改变,竞争双方中的一方无法适应这一环境,而另一方可以适应。\n\n根据上述定义,下列不属于降维打击的是:", "type": "单选题", "options": "A. 伴随着外卖软件的客户量激增,各类方便食品的销量大幅度下滑\nB. 某打车软件以免费乘车的噱头,使另一软件的付费打车用户量猛降\nC. 在手机像素越来越令消费者满意的同时,购买数码相机的人逐渐变少\nD. 共享单车以其便捷性迅速占领市场,让单车厂商的销售量几乎跌停", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 141641, "human_acc": 51.771732761, "source": "2020年下半年省考第四季行测模考大赛(新疆卷)第85题", "difficulty": 6, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 1587185, "material": "", "question": "成语“心知肚明”的发明人可能从未思考过它的生物学含义。在食物安全性和有效性的判断上,心知肚明是____的,当人吃了有害食物的时候,消化道微生物和肠道神经元会立即启动____机制而使人上吐下泻,尽快尽多地将有害物质排出。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 适用 免疫\nB. 准确 保护\nC. 科学 防御\nD. 普遍 平衡", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 436169, "human_acc": 38.3470627211, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第26题", "difficulty": 6, "formulas": 0, "history": [{"id": 25897, "material": "", "question": "人类正面临着全球变暖的挑战,联合国的一份报告为我们___了气候变化将会产生的灾难性后果。", "type": "单选题", "options": "A. 概括\nB. 描述\nC. 记录\nD. 记述", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 45437, "human_acc": 75.3746946321, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 16067, "material": "", "question": "在通往目标的历程中遭遇挫折并不可怕,可怕的是因挫折而产生的对自己能力的________。", "type": "单选题", "options": "A. 质疑\nB. 狐疑\nC. 疑心\nD. 怀疑", "choice": "D", "keypoints": "对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 92412, "human_acc": 38.1411504999, "source": "2010年吉林省公务员录用考试《行测》题第15题", "difficulty": 6, "formulas": 0}, {"id": 19979, "material": "", "question": "在没有准备的情况下,他______拿来了可乐和汉堡包作为替代品。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 按时\nB. 准时\nC. 临时\nD. 有时", "choice": "C", "keypoints": "对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 520349, "human_acc": 96.4229776554, "source": "2012年江西省公务员录用考试《行测》题第64题", "difficulty": 5, "formulas": 0}, {"id": 16267, "material": "", "question": "不要怕去学新的东西。知识没有(  ),是可以随身携带的宝藏,没有人会被它压垮,而且愈多你愈身心矫健。", "type": "单选题", "options": "A. 重量\nB. 大小\nC. 困难\nD. 期限", "choice": "A", "keypoints": "对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 105593, "human_acc": 91.6301269971, "source": "2010年贵州省公务员录用考试《行测》题第17题", "difficulty": 3, "formulas": 0}, {"id": 16279, "material": "", "question": "我国荒漠化总体扩张的趋势还在延续,不断(  )原本有限的生存空间,直接制约着国家社会和经济的可持续发展。", "type": "单选题", "options": "A. 侵蚀\nB. 占据\nC. 损害\nD. 蚕食", "choice": "D", "keypoints": "对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 101397, "human_acc": 37.9232127183, "source": "2010年贵州省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5603433, "material": "", "question": "人类对文化的欣赏、占用与满足,开始________物质限制,走向一种超现实。人们在纯粹的物质世界之外,制造了一个平行空间,这里有全新的价值模型,有独特的阐释逻辑,解构的同时也在________,让人迷惑也充满刺激。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 脱离 构想\nB. 摆脱 建构\nC. 超越 修正\nD. 突破 发展", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 3537, "human_acc": 79.3610404297, "source": "2023下半年省考第七季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0, "history": [{"id": 2261974, "material": "", "question": "浩瀚而宝贵的历史知识,既是人类总结昨天的(    ),也是人类把握今天,创造明天的向导。", "type": "单选题", "options": "A. 记录\nB. 经历\nC. 方式\nD. 回忆", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 108761, "human_acc": 54.5416095843, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第25题", "difficulty": 6, "formulas": 0}, {"id": 969, "material": "", "question": "从声学的角度看,对于绝大多数耳朵而言,批评是刺耳的音符,赞颂是动听的____。填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 音乐\nB. 节拍\nC. 旋律\nD. 乐章", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 76034, "human_acc": 75.3662835047, "source": "2008年广西壮族自治区公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}, {"id": 1073, "material": "", "question": "失去的应该争取,得到的要____珍惜,失去和获得只是暂时,只有拼搏进取才是____。填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 备加,永恒\nB. 倍加,永久\nC. 倍加,永恒\nD. 备加,永久", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 72600, "human_acc": 74.1280991736, "source": "2008年广西壮族自治区公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 1541939, "material": "", "question": "人类历史进程充分表明,权力最终能否被关进“笼子”,绝非取决于少数人的主观意志而是取决于对权力________力量的大小。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 制衡\nB. 对抗\nC. 约束\nD. 规范", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 887573, "human_acc": 39.7643912106, "source": "2015年山东省公务员录用考试《行测》题第1题", "difficulty": 6, "formulas": 0}, {"id": 24199, "material": "", "question": "人生是一个容器,可这个容器的容量实在是非常________。愁苦和畏惧多了,欢乐与________就少了。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 庞大 胆量\nB. 可观 轻松\nC. 有限 勇气\nD. 莫测 勇敢", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 54123, "human_acc": 95.8834506587, "source": "2009年426联考《行测》题(天津/陕西/湖北)第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5753860, "material": "", "question": "不透明盒子里共有白球和黑球20多个,不放回地取球。第一次任取两个球都是白球的概率为$\\frac{5}{18}$。取出两个白球后,第二次从剩余球中再任取一个球仍是白球的概率为$\\frac{1}{2}$。则该盒子里共有多少个球?", "type": "单选题", "options": "A. 19\nB. 22\nC. 25\nD. 28", "choice": "D", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 25990, "human_acc": 17.3720661793, "source": "2023下半年省考第二十一季行测模考大赛(山西卷)第75题", "difficulty": 7, "formulas": 2, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}, {"id": 2051036, "material": "", "question": "从两双完全相同的鞋中,随机抽取一双鞋的概率是:", "type": "单选题", "options": "A. $\\frac{2}{3}$\nB. $\\frac{1}{2}$\nC. $\\frac{1}{3}$\nD. 1", "choice": "A", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 385855, "human_acc": 29.8715838851, "source": "2017年422联考《行测》题(江西卷)第77题", "difficulty": 7, "formulas": 313}, {"id": 14255, "material": "", "question": "一个袋子里放有10个小球(其中4个白球,6个黑球),无放回地每次抽取1个,则第二次取到白球的概率是:", "type": "单选题", "options": "A. 2/15\nB. 4/15\nC. 1/5\nD. 2/5", "choice": "D", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 20989, "human_acc": 51.3459431131, "source": "2009年福建省公务员录用考试《行测》题(春季)第112题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 10777, "material": "", "question": "有甲、乙两只蜗牛,它们爬树的速度相等。甲蜗牛爬树24尺,然后乙蜗牛开始爬树;甲蜗牛爬到树顶,回过头来又往回爬,当它爬到距离顶点$\\frac{3}{8}$树高处,恰好碰到乙蜗牛。树的高度是多少尺?", "type": "单选题", "options": "A. 30\nB. 36\nC. 42\nD. 32", "choice": "D", "keypoints": "普通行程", "most_wrong": "B", "human_count": 20899, "human_acc": 68.7688406144, "source": "2009年河北省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 1, "history": [{"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 1129961, "material": "", "question": "大学生进行9天野营拉练,晴天每天走32千米,雨天每天走25千米,一共走了274千米,则拉练期间雨天的天数是:", "type": "单选题", "options": "A. 1\nB. 4\nC. 5\nD. 2", "choice": "D", "keypoints": "普通行程", "most_wrong": "C", "human_count": 30941, "human_acc": 87.001066546, "source": "2010年江苏省公务员录用考试《行测》题(C类)第26题", "difficulty": 4, "formulas": 0}, {"id": 4652155, "material": "", "question": "一辆车每天都比前一天多开15千米,第三天开的距离正好是第一天的2倍。则前三天一共开了多少千米?", "type": "单选题", "options": "A. 225\nB. 190\nC. 135\nD. 130", "choice": "C", "keypoints": "普通行程", "most_wrong": "B", "human_count": 303718, "human_acc": 84.4599266425, "source": "2022年北京市公务员录用考试《行测》题(网友回忆版)第71题", "difficulty": 3, "formulas": 0}, {"id": 15747, "material": "", "question": "汽车从甲地到乙地用了4小时,从乙地返回甲地用了3小时,返回时的速度比去时快百分之几:", "type": "单选题", "options": "A. 20%\nB. 18.26%\nC. 33.3%\nD. 36.4%", "choice": "C", "keypoints": "普通行程", "most_wrong": "B", "human_count": 20280, "human_acc": 86.1785009862, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 19321, "material": "", "question": "一辆汽车从A地开到B地需要一个小时,返回时速度为每小时75公里,比去时节约了20分钟,问AB两地相距多少公里:", "type": "单选题", "options": "A. 30\nB. 50\nC. 60\nD. 75", "choice": "B", "keypoints": "普通行程", "most_wrong": "C", "human_count": 141617, "human_acc": 76.4258528284, "source": "2012年北京市公务员录用考试《行测》题第71题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"]]}, {"id": 2679187, "material": "", "question": "走好新时代的长征路,我们必须以梦想为帆,奋斗为桨,一个胜利接着一个胜利去争取。大有可为的历史机遇____________,我们要倒排工期、挂图作战,以____________的勇气、勇往直前的毅力、____________的作风推进改革发展,完成我们这代人的历史使命。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 时不再来 披星戴月 严谨细致\nB. 迫不及待 劈波斩浪 艰苦朴素\nC. 时不我待 披荆斩棘 雷厉风行\nD. 势不可挡 披肝沥胆 闻风而动", "choice": "C", "keypoints": "词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 217795, "human_acc": 87.6071535159, "source": "2021年国考第二十一季行测模考大赛(副省级)第26题", "difficulty": 3, "formulas": 0, "history": [{"id": 5665225, "material": "", "question": "那个____________的年代,孕育了老一辈革命者救国救民的理想和追求。", "type": "单选题", "options": "A. 风狂雨骤\nB. 风雨交加\nC. 风雨雷电\nD. 风雨如晦", "choice": "D", "keypoints": "词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 283, "human_acc": 48.4098939929, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第1题", "difficulty": 4, "formulas": 0}, {"id": 2011096, "material": "", "question": "要写出____________的文字、写出时代的壮阔和生活的丰富,更需要阅历,更需要思想。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 动人心弦\nB. 石破天惊\nC. 惊天动地\nD. 动人心迹", "choice": "A", "keypoints": "词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 15936, "human_acc": 70.8709839357, "source": "2014年天津市公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 826767, "material": "", "question": "西方诗歌的翻译向来具有一定难度,一般人很难译得_______,板滞或晦涩常使我________。", "type": "单选题", "options": "A. 出神入化 味同嚼蜡\nB. 活灵活现 昏昏欲睡\nC. 神形俱备 意兴索然\nD. 栩栩如生 兴趣全无", "choice": "C", "keypoints": "词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 315830, "human_acc": 59.8534021467, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第27题", "difficulty": 5, "formulas": 0}, {"id": 2262665, "material": "", "question": "在我国社会主义现代化建设中,改革是动力,发展是目的,稳定是前提,三者之间存在着____________内在联系。\n\n填入横线处最恰当的一项是:", "type": "单选题", "options": "A. 不可替代\nB. 不可分割\nC. 千丝万缕\nD. 千头万绪", "choice": "B", "keypoints": "词的辨析-固定搭配;成语填空", "most_wrong": "C", "human_count": 23603, "human_acc": 60.068635343, "source": "2016年青海省选调生行测题(精选)第3题", "difficulty": 5, "formulas": 0}, {"id": 2255950, "material": "", "question": "四亿多年过去了,随着海陆的变迁,志留纪华南陆块的浅海,抬升成了今日滇东_________________的群山。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 绵绵不绝\nB. 此起彼伏\nC. 跌宕起伏\nD. 连绵起伏", "choice": "D", "keypoints": "词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 5022, "human_acc": 83.3930704898, "source": "2014年江西省法检系统招录考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5595411, "material": "", "question": "人体的脊椎之所以能够灵活弯曲,是因为连接椎骨与椎骨之间的椎间盘的存在。正是椎间盘的弯曲、伸展、承重、缓冲的作用,________了人体腰部自由的运动功能。当椎间盘反复发炎,________了弹性韧性,变质钙化后,就会________脊椎僵硬,造成患者驼背、畸形,甚至________活动能力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 造就 丧失 导致 失去\nB. 造就 失去 丧失 导致\nC. 导致 失去 造就 丧失\nD. 失去 造就 丧失 导致", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 2268, "human_acc": 94.6208112875, "source": "2023下半年省考第六季行测模考大赛(河南卷)第15题", "difficulty": 3, "formulas": 0, "history": [{"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}, {"id": 2166184, "material": "", "question": "美国有不少著名的礼貌程序,多少年来________至今,在太多社会礼节已被简化甚至荼毒的今天,这一类礼貌有幸成为仅存的硕果。", "type": "单选题", "options": "A. 沿用\nB. 延绵\nC. 延续\nD. 沿袭", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 1087494, "human_acc": 17.5600968833, "source": "2018深圳市公务员录用考试《行测》题(网友回忆版)第57题", "difficulty": 7, "formulas": 0}, {"id": 8719, "material": "", "question": "从下列四个选项中选择最合适的词语填入横线中:\n\n我们也要有清醒的认识,防止不法分子利用互联网等宣传手段_________群众舆论。", "type": "单选题", "options": "A. 把持\nB. 控制\nC. 掌握\nD. 操纵", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 49908, "human_acc": 86.1585316983, "source": "2009年河南省公务员录用考试《行测》题第6题", "difficulty": 4, "formulas": 0}, {"id": 5037906, "material": "", "question": "阅读是人类获取知识、启智增慧、培养道德的重要途径,可以让人树立崇高理想、________浩然正气。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 熏染\nB. 涵养\nC. 修养\nD. 陶冶", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 57784, "human_acc": 59.5372421432, "source": "2022上半年省考第二十三季行测模考大赛(内蒙古卷)第22题", "difficulty": 5, "formulas": 0}, {"id": 2036600, "material": "", "question": "_________原有产业基础和区位优势,某地区在金融、行政管理、涉外经济等领域不断推出改革创新举措。\n\n填入横线处最恰当的一项是:", "type": "单选题", "options": "A. 依据\nB. 依托\nC. 依仗\nD. 依赖", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 31776, "human_acc": 79.6072507553, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5402575, "material": "", "question": "某品牌原味酸奶的零售价为13.9元/组,购买2组赠1组;黄桃味酸奶的零售价为14.9元/组,购买3组及以上总价打7折。小李共需10组该品牌的酸奶,每种口味至少1组,最少需花费多少元?", "type": "单选题", "options": "A. 104.30\nB. 98.30\nC. 97.32\nD. 97.30", "choice": "C", "keypoints": "统筹规划问题", "most_wrong": "B", "human_count": 20624, "human_acc": 51.4158262219, "source": "2022下半年省考第二十一季行测模考大赛(浙江C卷)第69题", "difficulty": 6, "formulas": 0, "history": [{"id": 567163, "material": "", "question": "一架天平,只有5克和30克的砝码各一个,要将300克的食盐平均分成三份,最少需要用天平称几次:", "type": "单选题", "options": "A. 6次\nB. 5次\nC. 4次\nD. 3次", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 203660, "human_acc": 24.8885397231, "source": "2014年河北省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 21109, "material": "", "question": "有一架天平,只有5克和30克的砝码各一个。现在要用这架天平把300克味精分成3等份,那么至少需要称多少次:", "type": "单选题", "options": "A. 3次\nB. 4次\nC. 5次\nD. 6次", "choice": "A", "keypoints": "统筹规划问题", "most_wrong": "B", "human_count": 238120, "human_acc": 23.153452041, "source": "2012年浙江省公务员录用考试《行测》题第59题", "difficulty": 7, "formulas": 0}, {"id": 5430299, "material": "", "question": "有30个2克的砝码和8个5克的砝码,如果砝码只能放一边,那么从2克到100克间的整数克质量,有多少个不能用这些砝码称量出来?", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 258858, "human_acc": 25.0693430375, "source": "2023年浙江省公务员录用考试《行测》题(B类)(网友回忆版)第49题", "difficulty": 5, "formulas": 0}, {"id": 5521260, "material": "", "question": "小孟有58枚硬币,其中1枚为假,目前已知道真币重量相同,假币重量偏轻。如果小孟手中只有一个天平,则至少称(    )次一定能找出假币。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "A", "keypoints": "统筹规划问题", "most_wrong": "B", "human_count": 95680, "human_acc": 20.7702759197, "source": "2023年深圳市考公务员录用考试《行测》试题(网友回忆版)第52题", "difficulty": 4, "formulas": 0}, {"id": 25225, "material": "", "question": "用1个70毫升和1个30毫升的容器盛取20毫升的水到水池A中,并盛取80毫升的酒精到水池B中,倒进或倒出某个容器都算一次操作,则最少需要经过几次操作:", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 18", "choice": "A", "keypoints": "统筹规划问题", "most_wrong": "B", "human_count": 30180, "human_acc": 23.9893969516, "source": "2009年426联考《行测》题(天津/陕西/湖北)第99题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 5515274, "material": "", "question": "A、B两个工程队制作一批零件,如果让A队单独制作,每天制作12组,最后一天这批零件还剩下5组未制作;如果让B队单独制作,每天制作18组,最后一天这批零件还剩下11组未制作。由于受疫情影响,现在A队每天少制作$\\frac{1}{2}$,B队每天少制作$\\frac{1}{3}$,问这批零件由A、B两个工程队一起制作,最后一天这批零件剩余多少组?", "type": "单选题", "options": "A. 5\nB. 7\nC. 9\nD. 11", "choice": "D", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 7466, "human_acc": 19.4347709617, "source": "2023上半年省考第十季行测模考大赛(浙江B卷)第46题", "difficulty": 7, "formulas": 2, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 5101848, "material": "", "question": "兔子和乌龟举行一场跑步比赛,终点位于起点正北方500米处。兔子和乌龟同时出发,均保持匀速奔跑,且兔子的速度是乌龟的5倍。兔子先向正东方跑了一会后发现自己跑错了方向,马上直奔终点,速度不变,结果兔子和乌龟同时到达终点。那么兔子发现跑错方向时已经跑了多少米?", "type": "单选题", "options": "A. 600\nB. 1200\nC. 2400\nD. 3000", "choice": "B", "keypoints": "普通行程;平面几何", "most_wrong": "C", "human_count": 862182, "human_acc": 68.1827038839, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第47题", "difficulty": 4, "formulas": 0, "history": [{"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 5337, "material": "", "question": "台风中心从A地以每小时20公里的速度向东北方向移动,离台风中心30公里内的地区为危险区,城市B在A的正东40公里处。B城处于危险区内的时间为:", "type": "单选题", "options": "A. 1.5小时\nB. 1小时\nC. 0.5小时\nD. 2小时", "choice": "B", "keypoints": "普通行程;平面几何", "most_wrong": "A", "human_count": 27024, "human_acc": 40.193901717, "source": "2008年江苏省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 5642964, "material": "", "question": "小李玩无人机,无人机在小李身边垂直升空(忽略无人机与小李之间的距离),升到9米高时发现地面某处有一个纸箱,又上升7米后无人机与纸箱的直线距离比发现时多5米,若小李以3米/秒的速度跑向纸箱,则需要跑多少秒?", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 53703, "human_acc": 51.4980541124, "source": "2023下半年省考第十一季行测模考大赛(广东县级卷)第36题", "difficulty": 6, "formulas": 0}, {"id": 2042070, "material": "", "question": "一艘游轮在海上匀速航行,航向保持不变。上午8时在游轮的正东方30海里处有一灯塔。上午10时30分该灯塔位于游轮的正南方40海里处,则在该时段内,游轮与灯塔距离最短的时刻是:", "type": "单选题", "options": "A. 8时45分\nB. 8时54分\nC. 9时15分\nD. 9时18分", "choice": "B", "keypoints": "普通行程;平面几何", "most_wrong": "C", "human_count": 475207, "human_acc": 56.6233241514, "source": "2017年江苏省公务员录用考试《行测》题(B类)第67题", "difficulty": 5, "formulas": 0}, {"id": 5483968, "material": "", "question": "一个半径为120米的圆形人工湖正中有一个半径为60米的圆形人工岛。甲从岛的正北岸边出发,以1米/秒的速度匀速划船前往湖的正南岸边,则最少需要多长时间?", "type": "单选题", "options": "A. 不到3分45秒\nB. 3分45秒~4分之间\nC. 4分~4分15秒之间\nD. 超过4分15秒", "choice": "B", "keypoints": "普通行程;平面几何", "most_wrong": "C", "human_count": 26115, "human_acc": 38.3725828068, "source": "2023年北京市公务员录用考试《行测》题(网友回忆版)第77题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "几何问题", "平面几何"]]}, {"id": 163459, "material": "", "question": "某人开车从A镇前往B镇,在前一半路程中,以每小时60公里的速度前进;而在后一半的路程中,以每小时120公里的速度前进。\n\n则此人从A镇到达B镇的平均速度是每小时多少公里?", "type": "单选题", "options": "A. 60\nB. 80\nC. 90\nD. 100", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 248011, "human_acc": 74.8406320687, "source": "2014年北京市公务员录用考试《行测》题第76题", "difficulty": 4, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 47929, "material": "", "question": "某班有70%的学生喜欢打羽毛球,75%的学生喜欢打乒乓球,问喜欢打乒乓球的学生中至少有百分之几喜欢打羽毛球?", "type": "单选题", "options": "A. 30%\nB. 45%\nC. 60%\nD. 70%", "choice": "C", "keypoints": "非典型最值问题;两集合", "most_wrong": "B", "human_count": 301700, "human_acc": 38.9940338084, "source": "2013年浙江省公务员录用考试《行测》题(B类)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 19399, "material": "", "question": "全班有48人,喜欢打乒乓球的30人,喜欢打羽毛球的25人,既喜欢打乒乓球又喜欢打羽毛球的至少有多少人:", "type": "单选题", "options": "A. 5\nB. 7\nC. 10\nD. 18", "choice": "B", "keypoints": "非典型最值问题;两集合", "most_wrong": "C", "human_count": 97841, "human_acc": 84.3419425394, "source": "2011年内蒙古自治区公务员录用考试《行测》题第58题", "difficulty": 4, "formulas": 0}, {"id": 20977, "material": "", "question": "某一学校有500人,其中选修数学的有359人,选修文学的有408人,那么两种课程都选的学生至少有多少人:", "type": "单选题", "options": "A. 165人\nB. 203人\nC. 267人\nD. 199人", "choice": "C", "keypoints": "非典型最值问题;两集合", "most_wrong": "B", "human_count": 242426, "human_acc": 85.513930024, "source": "2010年新疆维吾尔自治区公务员录用考试《行测》题第5题", "difficulty": 3, "formulas": 0}, {"id": 2264383, "material": "", "question": "有100名员工去年和今年均参加考核,考核结果分为优、良、中、差四个等次。今年考核结果为优的人数是去年的1.2倍,今年考核结果为良及以下的人员占比比去年低15个百分点。问两年考核结果均为优的人数至少为多少人?", "type": "单选题", "options": "A. 55\nB. 65\nC. 75\nD. 85", "choice": "B", "keypoints": "非典型最值问题;两集合", "most_wrong": "C", "human_count": 2070138, "human_acc": 44.5920513512, "source": "2019年国家公务员录用考试《行测》题(副省级网友回忆版)第65题", "difficulty": 6, "formulas": 0}, {"id": 3515928, "material": "", "question": "某个班级进行考前突击模考,小李和小王所有题目均作答。已知小王答对且小李答错的题目数量占总题量的$\\frac{2}{5}$,比两人都答对的题目数量多$60\\%$,小李答对了21道题,则两人都答错的题目最多有多少道?", "type": "单选题", "options": "A. 15\nB. 27\nC. 39\nD. 51", "choice": "B", "keypoints": "非典型最值问题;两集合", "most_wrong": "C", "human_count": 55777, "human_acc": 39.9609157897, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第58题", "difficulty": 7, "formulas": 2}, {"id": 4706584, "material": "", "question": "某一百多人的公益团体近期举办了慈善义卖和爱心助学2个公益活动。已知参与活动的人员比未参与的多3倍;2个活动都参与的人员是只参与慈善义卖的$\\frac{1}{3}$,是参与爱心助学的40%。问只参与爱心助学的人员最多有多少人?", "type": "单选题", "options": "A. 36\nB. 42\nC. 48\nD. 60", "choice": "A", "keypoints": "非典型最值问题;两集合", "most_wrong": "C", "human_count": 274645, "human_acc": 9.2512152051, "source": "2022上半年省考第六季行测模考大赛(广东县级卷)第38题", "difficulty": 7, "formulas": 1}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 22769, "material": "", "question": "沉没成本是指已经付出且不可收回的成本。沉没成本是由过去的决策或环境决定的,它所造成的成本是不能由现在或将来的任何决策而改变的。\n\n根据上述定义,下列不涉及沉没成本的是:", "type": "单选题", "options": "A. 小李花100美元买了一台二手台式电脑,回国时由于无法携带,只好忍痛将电脑丢弃\nB. 某煤矿的煤炭已经开采完,矿井里的一些采掘设备由于无法取出,只好被废弃\nC. 小陈如果在承包的山林中放养野鸡,比放养野兔的年收益更多,但管理更多,于是他选择了放养野兔\nD. 小张准备约小丽一起去看电影,因为小丽临时加班,又不能退票,小张只好将两张电影票充当了留言条", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 383949, "human_acc": 82.4552219175, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第63题", "difficulty": 4, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 1325309, "material": "", "question": "阅览室有100本杂志,小赵借阅过其中75本,小王借阅过70本,小刘借阅过60本,则三人共同借阅过的杂志最少有()本。", "type": "单选题", "options": "A. 5\nB. 10\nC. 15\nD. 30", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 513053, "human_acc": 59.406143225, "source": "2015年广东省公务员录用考试《行测》题(县级以上)第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 21567, "material": "", "question": "一支600米长的队伍行军,队尾的通讯员要与最前面的连长联系,他用3分钟跑步追上了连长,又在队伍休息的时间以同样的速度跑回了队尾,用了2分24秒,如队伍和通讯员均匀速前进,则通讯员在行军时从最前面跑步回到队尾需要多长时间:", "type": "单选题", "options": "A. 48秒\nB. 1分钟\nC. 1分48秒\nD. 2分钟", "choice": "D", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 261931, "human_acc": 35.0825217328, "source": "2012年安徽省公务员录用考试《行测》题第64题", "difficulty": 6, "formulas": 0, "history": [{"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2388063, "material": "", "question": "甲乙二人沿环形跑道从同一地点同时背向开始跑步,35秒后两人相遇。已知甲跑一圈需要60秒,乙跑一圈需要多少秒?", "type": "单选题", "options": "A. 77\nB. 84\nC. 91\nD. 96", "choice": "B", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 591658, "human_acc": 74.0388873302, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第70题", "difficulty": 5, "formulas": 0}, {"id": 2392841, "material": "", "question": "甲、乙两人同时沿环形跑道同向匀速散步,5分钟后他们第一次相遇,20分钟后第二次相遇,问他们多少分钟后第三次相遇?", "type": "单选题", "options": "A. 45\nB. 40\nC. 35\nD. 30", "choice": "C", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 293380, "human_acc": 61.1019837753, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第57题", "difficulty": 4, "formulas": 0}, {"id": 17353, "material": "", "question": "甲、乙两人同地同向直线行走,其速度分别为7千米/时和5千米/时。乙先走2小时后甲才开始走,则甲追上乙需:", "type": "单选题", "options": "A. 4小时\nB. 5小时\nC. 6小时\nD. 7小时", "choice": "B", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 253272, "human_acc": 81.5617202059, "source": "2011年安徽省公务员录用考试《行测》题第5题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 4814290, "material": "", "question": "科研所组织的会议上共有9名专家作报告,其中本所有4名专家。如果本所的专家不是第一个也不是最后一个作报告,则本所的4名专家中,恰有3名专家作报告的顺序相邻的情况有多少种?", "type": "单选题", "options": "A. 57600\nB. 34560\nC. 8640\nD. 7590", "choice": "B", "keypoints": "不相邻问题;相邻问题", "most_wrong": "C", "human_count": 309778, "human_acc": 40.5532348972, "source": "2022上半年省考第十一季行测模考大赛(广东乡镇卷)第43题", "difficulty": 7, "formulas": 0, "history": [{"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}, {"id": 2819560, "material": "", "question": "现将奥运会吉祥物五个福娃排成一列,要求贝贝和晶晶必须相邻,但迎迎和妮妮不相邻,那么共有多少种排列方式?", "type": "单选题", "options": "A. 72\nB. 48\nC. 24\nD. 12", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 223456, "human_acc": 50.8471466418, "source": "2022年国考第二季行测模考大赛(副省级)第70题", "difficulty": 6, "formulas": 0}, {"id": 5460817, "material": "", "question": "某班级有2名男生和3名女生参演校元旦晚会,每人表演一个节目。要求3名女生中有且仅有2名女生的节目能够相邻,问有多少种不同的节目表演顺序?", "type": "单选题", "options": "A. 24\nB. 48\nC. 72\nD. 144", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 379521, "human_acc": 43.9121945821, "source": "2023上半年省考第六季行测模考大赛(深圳卷)第53题", "difficulty": 6, "formulas": 0}, {"id": 2047800, "material": "", "question": "单位工会组织拔河比赛,每支参赛队都由3名男职工和3名女职工组成。假设比赛时要求3名男职工的站位不能全部连在一起,则每支队伍有几种不同的站位方式?", "type": "单选题", "options": "A. 432\nB. 504\nC. 576\nD. 720", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 903875, "human_acc": 61.125708754, "source": "2016年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 5301575, "material": "", "question": "有一排8个连续的空车位,甲、乙两辆车停在不连续的2个空车位中,又来了3辆车停在连续的3个空车位中,问5辆车停好后没有连续空车位且最多有3辆车连续的情况有多少种?", "type": "单选题", "options": "A. 12\nB. 24\nC. 72\nD. 80", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 186772, "human_acc": 44.3337331077, "source": "2022下半年省考第十二季行测模考大赛(深圳卷)第54题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "排列组合问题", "相邻问题"]]}, {"id": 2261830, "material": "", "question": "关于联合国秘书长产生的程序,以下排列顺序正确的是:\n\n①各参选国向世界各国通报推荐人选\n\n②经过由五个常任理事国在内的联合国安理会讨论\n\n③获票最多的人,确定为联合国秘书长当选人\n\n④提交到联合国大会,由联合国所有成员国共同投票", "type": "单选题", "options": "A. ①②④③\nB. ①③④②\nC. ①③②④\nD. ①④③②", "choice": "A", "keypoints": "人文常识", "most_wrong": "D", "human_count": 5287, "human_acc": 71.2313221108, "source": "2017年湖北省选调生行测题(精选)第61题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识"]]}, {"id": 5987, "material": "", "question": "公文是指国家机关在处理公务的过程中,形成的具有法律效力和规范体式的文字材料。\n\n下列不属于公文的一项是:", "type": "单选题", "options": "A. 石家庄市人民政府《关于授予滹沱河生态开发整治工程市长特别奖的决定》\nB. 文化部《关于同意邀请新加坡歌手林俊到江苏演出的批复》\nC. 北京市人民政府《关于2007年北京地区普通中等专业学校毕业生就业派遣工作安排的通知》\nD. 东北师范大学教务处《关于2008年度工作情况的报告》", "choice": "D", "keypoints": "主客体", "most_wrong": "B", "human_count": 23908, "human_acc": 86.5484356701, "source": "2008年河北省公务员录用考试《行测》题第67题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5543, "material": "", "question": "行为罚亦称能力罚,是行政主体对违反行政法律规范的行政相对方所采取的限制或剥夺其特定行为能力或资格的一种处罚措施。\n\n下列属于行为罚的是:", "type": "单选题", "options": "A. 行政拘留\nB. 没收财物\nC. 吊销营业执照\nD. 劳动教养", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 14256, "human_acc": 70.8543771044, "source": "2009年北京市公务员录用考试《行测》题(应届)第54题", "difficulty": 5, "formulas": 0}, {"id": 1163, "material": "", "question": "产权是指主体对物的排他性权利,它的本质是人们在社会中发生的对劳动成果的权利。\n\n根据以上定义,下列不属于产权的是:", "type": "单选题", "options": "A. 所有权、占有权\nB. 收益权、转让权\nC. 劳动选择权、劳动交换转让权\nD. 支配权、使用权", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 32630, "human_acc": 82.7152926755, "source": "2008年山东省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2452831, "material": "", "question": "应激性是指生物对外来刺激(如温度、声音)在短时间内所做出的反应。\n\n根据上述定义,以下属于应激性的是:", "type": "单选题", "options": "A. 篮球触地后高高弹起\nB. 含羞草被碰触后叶子收缩\nC. 鲜牛奶常温放置24小时后发酸\nD. 纸张遇到明火燃烧", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 107843, "human_acc": 94.2314290218, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 769171, "material": "", "question": "由于身体的原因,他不得不(   )了这家公司的宴请,虽然他很想去。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推脱\nB. 推卸\nC. 推托\nD. 答应", "choice": "C", "keypoints": "关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 144165, "human_acc": 59.3146741581, "source": "2011年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 1796088, "material": "", "question": "法治和礼治发生在两种不同的社会_________中。这里所谓的礼治也许就是通常所谓的人治,但是礼治一词不会像人治一词那样容易引起_________,以致有人觉得社会秩序是可以由个人好恶来维持的了。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 形态 歧义\nB. 模式 偏差\nC. 情态 误解\nD. 形势 干扰", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1489754, "human_acc": 32.3767548199, "source": "2016年423联考《行测》题(贵州卷)第35题", "difficulty": 5, "formulas": 0, "history": [{"id": 12073, "material": "", "question": "其实,当前老百姓不仅要提防假冒伪劣商品,各种有害食品也需要老百姓自己________、自己学会防范。", "type": "单选题", "options": "A. 辨别\nB. 甄选\nC. 识别\nD. 分辨", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 115504, "human_acc": 56.449127303, "source": "2010年黑龙江省公务员录用考试《行测》题第25题", "difficulty": 7, "formulas": 0}, {"id": 17289, "material": "", "question": "在法治社会,有利益的冲突并不要紧,关键是要有公平、公正的利益______渠道来解决这一问题,其核心点就在程序正义。", "type": "单选题", "options": "A. 分配\nB. 均衡\nC. 沟通\nD. 博弈", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 33756, "human_acc": 14.9928901529, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第50题", "difficulty": 8, "formulas": 0}, {"id": 457911, "material": "", "question": "填入下列横线处的词语,最恰当的是:\n\n色彩绚烂的火烧云,波浪起伏的松花江,三三两两的渔船,构成一幅_______的《夕阳鱼归》图。", "type": "单选题", "options": "A. 艳丽\nB. 秀丽\nC. 绮丽\nD. 壮丽", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 116218, "human_acc": 28.5618406787, "source": "2014年深圳市公务员录用考试《行测》题第60题", "difficulty": 6, "formulas": 0}, {"id": 17241, "material": "", "question": "老虎是非常______的动物,自我保护意识很强,尤其是野生虎。50米范围内,它一定会有所动作,最起码会站起来,不可能让人一步步接近到20多米的距离。", "type": "单选题", "options": "A. 机警\nB. 警惕\nC. 敏感\nD. 警觉", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32726, "human_acc": 42.0644136161, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第48题", "difficulty": 5, "formulas": 0}, {"id": 2393607, "material": "", "question": "人们头脑中的偏见,往往是来自________,我们对于一件事情知道得越少,就越容易形成判断,而且是越容易形成强烈的单纯判断。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 愚昧\nB. 无知\nC. 傲慢\nD. 歧视", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 9784, "human_acc": 95.0531479967, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5550329, "material": "", "question": "将27个棱长为2厘米的小正方体切割成若干个棱长为1厘米的小正方体,问用这些小正方体可以拼成多少种体积不变,最短边为2或3厘米且形状不同的大长方体?", "type": "单选题", "options": "A. 6\nB. 7\nC. 8\nD. 9", "choice": "D", "keypoints": "基础排列组合;立体几何", "most_wrong": "C", "human_count": 7749, "human_acc": 11.3821138211, "source": "2023上半年省考第十三季行测模考大赛(浙江B卷)第49题", "difficulty": 7, "formulas": 0, "history": [{"id": 5063274, "material": "", "question": "现将一个棱长为6厘米的实心正方体切割成一个四面体,要求四面体的顶点都是正方体的顶点,共有多少种切法?", "type": "单选题", "options": "A. 34\nB. 58\nC. 64\nD. 70", "choice": "B", "keypoints": "基础排列组合;立体几何", "most_wrong": "C", "human_count": 371521, "human_acc": 32.8891233605, "source": "2022上半年省考第二十四季行测模考大赛(北京卷)第80题", "difficulty": 7, "formulas": 0}, {"id": 2524942, "material": "", "question": "老师让小明将一个立方体的任意2条棱分别染成黑色和白色,问他有多少种不同的染色方法?(旋转后相同的染色方法视为同一种)", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "基础排列组合;立体几何", "most_wrong": "C", "human_count": 102765, "human_acc": 38.961708753, "source": "2020年上半年省考第二十六季行测模考大赛(浙江卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 2377283, "material": "", "question": "现用5700立方厘米的蜡制作二十多个同样大小,且长、宽、高均为整数厘米的长方体实心蜡块,问蜡块的尺寸有多少种不同的可能性?", "type": "单选题", "options": "A. 4\nB. 6\nC. 10\nD. 16", "choice": "C", "keypoints": "基础排列组合;立体几何", "most_wrong": "B", "human_count": 708274, "human_acc": 41.9442193275, "source": "2019年四川省选调优秀大学毕业生到基层工作《行测》试题(网友回忆版)第53题", "difficulty": 6, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "基础排列组合"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 5440773, "material": "", "question": "某文具店开展促销活动,每买5支铅笔可以赠送1块橡皮。王老师花费53元得到了12支铅笔、5块橡皮、1支钢笔;张老师花费112元得到了27支铅笔、11块橡皮、2支钢笔。那么铅笔的单价为多少元?", "type": "单选题", "options": "A. 0.5\nB. 1\nC. 1.5\nD. 2", "choice": "D", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 216497, "human_acc": 36.4268327044, "source": "2023上半年省考第三季行测模考大赛(天津卷)第5题", "difficulty": 7, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 2613907, "material": "", "question": "面包店内,有三种面包的售价分别为12元、8元、7元。已知某天销量为20个,销售额为220元。问卖出的12元面包比8元的最多多几个?", "type": "单选题", "options": "A. 10\nB. 14\nC. 16\nD. 18", "choice": "C", "keypoints": "不定方程组", "most_wrong": "B", "human_count": 31902, "human_acc": 49.2633690678, "source": "2020年下半年省考第二季行测模考大赛(新疆卷)第69题", "difficulty": 6, "formulas": 0}, {"id": 4759990, "material": "", "question": "某超市老板花费2000元进购大、中、小三种不同规格的收纳箱共80个,进价分别为32元、24元、18元,问大收纳箱最多比中收纳箱多多少个?", "type": "单选题", "options": "A. 29\nB. 30\nC. 31\nD. 32", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 407382, "human_acc": 43.725299596, "source": "2022上半年省考第九季行测模考大赛(广东乡镇卷)第43题", "difficulty": 7, "formulas": 0}, {"id": 2526996, "material": "", "question": "某工厂有熟练工、技术工、学徒共33人,熟练工每人每天工资250元,技术工380元,学徒100元。工厂每天需结工资8480元。问学徒有多少人?", "type": "单选题", "options": "A. 14\nB. 11\nC. 8\nD. 5", "choice": "C", "keypoints": "不定方程组", "most_wrong": "B", "human_count": 278468, "human_acc": 53.7968455981, "source": "2021年国考第三季行测模考大赛(副省级)第70题", "difficulty": 6, "formulas": 0}, {"id": 2659342, "material": "", "question": "超市销售某种牙膏,不同包装盒中牙膏数量不同,分为一支装、四支组合装、五支组合装,小李一次性买了15盒,共38支牙膏,问购买的组合装牙膏最多为多少盒?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "不定方程组", "most_wrong": "B", "human_count": 164257, "human_acc": 54.1419848165, "source": "2021年国考第十九季行测模考大赛(副省级)第68题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"]]}, {"id": 5358952, "material": "", "question": "疫情防控期间,某上级机关要检查下属5个部门的防控部署情况。检查组由这5个部门的主任和上级机关选派的5名人员组成,每个部门都需要接受2人联检,每组必须有1名上级机关选派人员,且规定部门主任不能检查本部门,则有多少种不同的安排方法?", "type": "单选题", "options": "A. 216\nB. 1056\nC. 1080\nD. 5280", "choice": "D", "keypoints": "错位排列", "most_wrong": "C", "human_count": 304432, "human_acc": 11.965562096, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第59题", "difficulty": 7, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 5664884, "material": "", "question": "某天小刘、小孙、小张三人在同一家健身房分别购买了99次的课程包,并都在当天进行了第1次锻炼,之后小刘每隔3天去一次,小孙每隔4天去一次,小张每7天去一次。则当三人第3次同时锻炼后,小孙的课程包还剩多少次?", "type": "单选题", "options": "A. 56\nB. 16\nC. 43\nD. 42", "choice": "D", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 15943, "human_acc": 17.6190177507, "source": "2023下半年省考第十三季行测模考大赛(山西卷)第71题", "difficulty": 7, "formulas": 0, "history": [{"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}, {"id": 2137116, "material": "", "question": "有一种电子铃,每到整点就响一次铃,每走9分钟亮一次灯。正午12点时,它既亮灯又响铃。它下一次既响铃又亮灯是下午几点钟?", "type": "单选题", "options": "A. 1点钟\nB. 2点钟\nC. 3点钟\nD. 4点钟", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 384741, "human_acc": 81.9218643191, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第73题", "difficulty": 4, "formulas": 0}, {"id": 2172818, "material": "", "question": "公司安排甲、乙、丙三人从周一开始上班,已知甲每上班一天休一天,乙每上班两天休一天,丙每上班三天休一天,那么三人第三次同时休息是星期(  )。", "type": "单选题", "options": "A. 日\nB. 一\nC. 二\nD. 三", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 414685, "human_acc": 37.9702665879, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第35题", "difficulty": 6, "formulas": 0}, {"id": 19421, "material": "", "question": "小张每连续工作5天后休息3天,小周每连续工作7天后休息5天。假如3月1日两人都休息,3月2日两人都上班,问三月份有多少天两人都得上班:", "type": "单选题", "options": "A. 12\nB. 14\nC. 16\nD. 18", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 206280, "human_acc": 60.2632344386, "source": "2012年北京市公务员录用考试《行测》题第77题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"]]}, {"id": 5509444, "material": "", "question": "一本合格的教材,应该有城市也有乡村,有科学家、艺术家,也有在田间忙碌的农民、在工地流汗的工人,他们是乡村孩子的父辈,是值得被看见、被认可的____________。乡村振兴不应该是________和口号,也不应该是每个孩子手中的教材里轻飘飘的一行字,而是应该融入血脉中、留在心田里。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 擎天巨擘 大话\nB. 中流砥柱 空话\nC. 南天一柱 假话\nD. 栋梁之才 套话", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 1135248, "human_acc": 89.1983073302, "source": "2023年青海省公务员录用考试《行测》题(网友回忆版)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 27199, "material": "", "question": "现代社会,科学传播不可能起到____的效果,如果谁这样想,谁就会____科学,最终将会危害科学。", "type": "单选题", "options": "A. 立竿见影 误解\nB. 马到成功 误会\nC. 一蹴而就 曲解\nD. 立见成效 奉曲", "choice": "A", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 481491, "human_acc": 59.033709872, "source": "2012年河北省公务员录用考试《行测》题第24题", "difficulty": 5, "formulas": 0}, {"id": 50471, "material": "", "question": "我国许多传统的老字号药店,____在最困难的情况下,也在千方百计地保证药品的____。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 即使 质量\nB. 即使 性能\nC. 纵使 性质\nD. 尽管 功效", "choice": "A", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "D", "human_count": 775443, "human_acc": 85.2449503058, "source": "2013年广东省公务员录用考试《行测》题(三)第18题", "difficulty": 5, "formulas": 0}, {"id": 16285, "material": "", "question": "生态也是资本,________是“不可复制”的资本,创新生态资本________方式,对于建设“环境友好型”社会具有现实意义。\n\n填在横线上最恰当的词语是:", "type": "单选题", "options": "A. 而且 保障\nB. 常常 保障\nC. 而且 利用\nD. 常常 利用", "choice": "C", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 39997, "human_acc": 63.7972847964, "source": "2009年贵州省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 0}, {"id": 21617, "material": "", "question": "企业到底是不是适合开展连锁经营?能不能开展连锁经营?面对这两个问题,一些企业往往________,________发展时机。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无所适从  贻误\nB. 一筹莫展  痛失\nC. 举棋不定  耽误\nD. 优柔寡断  错过", "choice": "A", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "D", "human_count": 215145, "human_acc": 26.2943596179, "source": "2008年国家公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2172667, "material": "", "question": "一只黑色布袋中装着分别标有数字1、2、3的三种玻璃球若干。若从布袋中随机摸出10个球,球上数字之和为21,则10个球中标有数字1的玻璃球至多有几个?", "type": "单选题", "options": "A. 2个\nB. 3个\nC. 4个\nD. 5个", "choice": "C", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 510992, "human_acc": 64.3266430786, "source": "2018年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 2262010, "material": "", "question": "一项考试共有35道试题,答对一题得2分,答错一题扣1分,不答则不得分。一名考生一共得了47分,那么,他最多答对(    )题。", "type": "单选题", "options": "A. 26\nB. 27\nC. 29\nD. 30", "choice": "B", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 130292, "human_acc": 79.9389064563, "source": "广东省2019年选调优秀大学毕业生笔试 思维能力测验(网友回忆版)第59题", "difficulty": 4, "formulas": 0}, {"id": 2573696, "material": "", "question": "某车间15名工人一周的值班情况统计如下:所有人中最少的值班3天,最多的值班6天,人均值班4.8天,且值班4天的工人数量最多。问值班4天的工人最多有多少名?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 295402, "human_acc": 14.8685520071, "source": "2021年国考第八季行测模考大赛(副省级)第68题", "difficulty": 7, "formulas": 0}, {"id": 5309093, "material": "", "question": "体育教师组织某班同学20人进行3项体能测试,3项达标为优秀档,2项达标为良好档,1项达标为及格档。已知有5人3项测试均不达标,总共有37人次达标,各档人数均不为零,则及格档的同学最多有多少人?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 6022, "human_acc": 43.1086017934, "source": "2022下半年省考第十三季行测模考大赛(浙江C卷)第69题", "difficulty": 7, "formulas": 0}, {"id": 2021770, "material": "", "question": "希望中学为三个特困学生发放课外读本。甲发到的读本数与乙发到的读本数的2倍之和比丙发到的读本数多6本;甲发到的读本数与丙发到的读本数的2倍之和比乙发到的读本数多3本,则三个学生发到的读本数的平方和最小值为:", "type": "单选题", "options": "A. 14\nB. 28\nC. 24\nD. 20", "choice": "A", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 172073, "human_acc": 42.9306166569, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第90题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2137068, "material": "", "question": "甲、乙两人生产零件,甲的任务量是乙的2倍,甲每天生产200个零件,乙每天生产150个零件,甲完成任务的时间比乙多2天,则甲、乙任务量总共为多少个零件?", "type": "单选题", "options": "A. 1200\nB. 1800\nC. 2400\nD. 3600", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 455305, "human_acc": 78.1195023116, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第78题", "difficulty": 4, "formulas": 0, "history": [{"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 2036662, "material": "", "question": "做同一种零件,赵师傅3小时做15个,钱师傅4小时做21个,孙师傅5小时做27个,李师傅6小时做31个,则( )的工作效率最高。", "type": "单选题", "options": "A. 赵师傅\nB. 钱师傅\nC. 孙师傅\nD. 李师傅", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 263218, "human_acc": 85.4394456306, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第41题", "difficulty": 3, "formulas": 0}, {"id": 5601983, "material": "", "question": "甲、乙、丙加工一个某种零件分别需要2分钟、3分钟、4分钟。若三人同时开始,合作加工完成此种零件650个,问最终甲比乙多加工了多少个零件?", "type": "单选题", "options": "A. 50\nB. 100\nC. 150\nD. 200", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 2066, "human_acc": 72.3620522749, "source": "2023下半年省考第七季行测模考大赛(广东县级卷)第31题", "difficulty": 4, "formulas": 0}, {"id": 2783927, "material": "", "question": "甲、乙两人加工一批零件共计1200个,甲单独完成的用时比乙单独完成的用时多20小时,是二人合作完成用时的2.5倍。则乙每小时比甲多加工多少个零件?", "type": "单选题", "options": "A. 3\nB. 5\nC. 10\nD. 30", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 51088, "human_acc": 57.702395866, "source": "2021上半年省考第七季行测模考大赛(河南卷)第46题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 5524889, "material": "", "question": "甲部门人数比乙部门多$\\frac{1}{3}$,比丙部门少$\\frac{1}{4}$。若从丙部门调2人到甲部门,则乙、甲、丙三个部门的人数正好依次构成等差数列,问甲部门最初有多少人?", "type": "单选题", "options": "A. 20\nB. 35\nC. 60\nD. 72", "choice": "D", "keypoints": "数列问题;和差倍比问题", "most_wrong": "C", "human_count": 33903, "human_acc": 32.4573046633, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第47题", "difficulty": 7, "formulas": 2, "history": [{"id": 5051, "material": "", "question": "部队组织新兵到野外进行拉练,行程每天增加2千米。已知去时用了4天,回来时用了3天。目的地距离营地多少千米?", "type": "单选题", "options": "A. 54\nB. 72\nC. 84\nD. 92", "choice": "C", "keypoints": "数列问题;和差倍比问题", "most_wrong": "B", "human_count": 21602, "human_acc": 65.7207665957, "source": "2009年北京市公务员录用考试《行测》题(应届)第12题", "difficulty": 4, "formulas": 0}, {"id": 5291981, "material": "", "question": "小红、小丽、小芳三人的书籍数量成等差数列。若小红给小丽20本书,则小丽的书籍数量是小红的2倍;若小丽给小芳9本书,则小丽的书籍数量和小芳的一样多。已知小红的书籍数量最多,则三人共有多少本书?", "type": "单选题", "options": "A. 42\nB. 72\nC. 114\nD. 126", "choice": "B", "keypoints": "数列问题;和差倍比问题", "most_wrong": "C", "human_count": 199137, "human_acc": 55.7525723497, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第56题", "difficulty": 6, "formulas": 0}, {"id": 4919945, "material": "", "question": "甲、乙、丙三人均参加了一门百分制的考试,其中甲的成绩比乙多20%,丙的成绩比乙少10%。若甲的成绩减少4分,乙的成绩增加2分,甲的成绩依然最高,且此时三人的成绩恰好可以构成等差数列,则甲最初的成绩为多少分?", "type": "单选题", "options": "A. 80\nB. 92\nC. 96\nD. 100", "choice": "C", "keypoints": "数列问题;和差倍比问题", "most_wrong": "B", "human_count": 281116, "human_acc": 67.321319313, "source": "2022上半年省考第十六季行测模考大赛(广东县级卷)第31题", "difficulty": 4, "formulas": 0}, {"id": 13545, "material": "", "question": "甲乙丙三名羽毛球选手训练共用了48个羽毛球,其中甲比乙多用了4个,乙比丙多用了4个,他们三个用的羽毛球数之比为:", "type": "单选题", "options": "A. $5\\colon4\\colon3$\nB. $6\\colon5\\colon4$\nC. $4\\colon3\\colon2$\nD. $3\\colon2\\colon1$", "choice": "A", "keypoints": "数列问题;和差倍比问题", "most_wrong": "C", "human_count": 17874, "human_acc": 81.3472082354, "source": "2009年四川省公务员录用考试《行测》题(上半年)第9题", "difficulty": 4, "formulas": 334}, {"id": 4814293, "material": "", "question": "一、二、三班的男女生人数之比分别为3:4、2:5和4:5,其中三班人数最多。已知三个班级男生总人数比女生总人数少38人,且一班女生与三班男生人数之和为56人,若按照一班、二班、三班的顺序,各班级人数恰好构成等差数列,则一班男生为多少人?", "type": "单选题", "options": "A. 21\nB. 24\nC. 27\nD. 33", "choice": "A", "keypoints": "数列问题;和差倍比问题", "most_wrong": "C", "human_count": 308955, "human_acc": 16.5172921623, "source": "2022上半年省考第十一季行测模考大赛(广东乡镇卷)第44题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 2724957, "material": "", "question": "小王购买了一本书,正文从1开始连续编号,他计划从3月10号开始每天按顺序看8页,到3月26号看完整本书。则这本书所有页码之和最小是多少?", "type": "单选题", "options": "A. 9316\nB. 8385\nC. 8256\nD. 7381", "choice": "B", "keypoints": "数列问题;非典型最值问题", "most_wrong": "C", "human_count": 147768, "human_acc": 39.6093876888, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第74题", "difficulty": 6, "formulas": 0, "history": [{"id": 1130055, "material": "", "question": "在连续奇数1,3,······,205,207中选取N个不同数,使得它们的和为2359,那么N的最大值是:", "type": "单选题", "options": "A. 47\nB. 48\nC. 50\nD. 51", "choice": "A", "keypoints": "数列问题;非典型最值问题", "most_wrong": "B", "human_count": 49664, "human_acc": 25.9181701031, "source": "2010年江苏省公务员录用考试《行测》题(C类)第28题", "difficulty": 5, "formulas": 0}, {"id": 412123, "material": "", "question": "某工厂某种产品每月的产能为8000个,1月的销量为5000个,且预计每月销量环比增加10%,则当年该产品库存最高的月份是:", "type": "单选题", "options": "A. 4月\nB. 5月\nC. 6月\nD. 7月", "choice": "B", "keypoints": "数列问题;非典型最值问题", "most_wrong": "C", "human_count": 197920, "human_acc": 42.9279506871, "source": "2014年上海市公务员录用考试《行测》题(B类)第70题", "difficulty": 5, "formulas": 0}, {"id": 2295567, "material": "", "question": "某游戏击中一次加1分,如果连续击中,从第二次击中开始是前一次得分的2倍。小明在游戏中共得到了74分,那么他最多连续击中______次。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "数列问题;非典型最值问题", "most_wrong": "B", "human_count": 213308, "human_acc": 69.4062107375, "source": "2019年上海市公务员录用考试《行测》题(A类)(网友回忆版)第75题", "difficulty": 4, "formulas": 0}, {"id": 2033108, "material": "", "question": "考场有16排座位,第一排有16个座位,以后各排都比前一排多一个座位,如果允许考生任意坐,但不能坐在其他考生的旁边,这考场最多能容纳________名考生。", "type": "单选题", "options": "A. 188\nB. 192\nC. 196\nD. 200", "choice": "B", "keypoints": "数列问题;非典型最值问题", "most_wrong": "C", "human_count": 151134, "human_acc": 51.6508528855, "source": "2015年上海市公务员录用考试《行测》题(B类)第74题", "difficulty": 5, "formulas": 0}, {"id": 5402567, "material": "", "question": "将若干个小球按1、2、3······依次编号,现将所有小球进行分组。若每组小球的数量各不相同且均不少于2个,则这些小球最多能分成6组,问所有小球编号加和最大为:", "type": "单选题", "options": "A. 561\nB. 595\nC. 105\nD. 378", "choice": "B", "keypoints": "数列问题;非典型最值问题", "most_wrong": "C", "human_count": 20529, "human_acc": 34.351405329, "source": "2022下半年省考第二十一季行测模考大赛(浙江C卷)第67题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 638487, "material": "", "question": "广州战略性新兴产业的产品有的是按国家标准生产,尚未与国际标准______,与国际同类相关产品技术不______,导致这些产品只能销往国内市场。\n\n依次填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 对接 兼容\nB. 接轨 兼容\nC. 接轨 融合\nD. 对接 融合", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 492754, "human_acc": 82.1647312858, "source": "2014年广州市公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14969, "material": "", "question": "创意产业的核心要素是创意人才和文化资源,这两个要素都具有______的地方个性特色,因此世界各国创意产业的发展具有______地域差异。依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鲜明 明显\nB. 浓郁 明显\nC. 浓郁 明确\nD. 鲜明 明确", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 133040, "human_acc": 78.6958809381, "source": "2010年深圳市公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 826747, "material": "", "question": "富有创造性的人总是孜孜不倦地_______知识,使自己_______渊博。从古代史到现代技术,从数学到插花,不精通各种知识就一事无成。因为这些知识随时都可能进行组合,形成新的________。", "type": "单选题", "options": "A. 汲取 才学 创造\nB. 汲取 学识 创意\nC. 吸收 才气 创建\nD. 吸收 学问 创造", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 216602, "human_acc": 86.7189591971, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第24题", "difficulty": 5, "formulas": 0}, {"id": 1758798, "material": "", "question": "古人早有“腹有诗书气自华”的__________,更直言过“士大夫三日不读书,则义理不交于胸中,对镜觉面目可憎,向人亦语言无味”。足见读书对人心善良与审美思维的__________价值。而且,不同的人生阶段赋予人不同的读书境界,这就更使人一生_____与书为伴。清人张潮就写过:“少年读书,如隙中窥月;中年读书,如庭中望月;老年读书,如台上玩月。”人生历练助读书得真意,而读书本身__________不是借他人之笔丰富自我的人生。\n\n依次填入画横线部分最恰当的是:", "type": "单选题", "options": "A. 感慨 培养 须 未尝\nB. 叹息 培育 需 如何\nC. 感叹 塑造 需 怎么\nD. 喟叹 养成 须 何尝", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 454952, "human_acc": 43.4250206615, "source": "2016年上海市公务员录用考试《行测》题(B类)第54题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2015506, "material": "", "question": "某市交通管理局曾经推出一个创意很巧妙的公益宣传片:电视画面中,现代都市的交通变成了按照丛林法则任意穿行的“动物世界”,满是超载、不走斑马线、翻越护栏等交通乱象。_____________,如果没有汽车文明,我们的城市表面上是现代文明和高科技的产物,实则无异于丛林法则下的弱肉强食和混乱无序。\n\n下列哪一项不是划横线部分“上面的问题”所指:", "type": "单选题", "options": "A. 如果没有汽车文明的话,汽车社会将是怎样的场景\nB. 如何杜绝“路怒”现象以及汽车“违法变道”现象\nC. 汽车文明滞后于汽车时代,汽车社会将是何等境况\nD. 汽车文明没有发育成熟,汽车社会将是怎样的场景", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 1055468, "human_acc": 48.8297134541, "source": "2016年重庆市公务员录用考试《行测》题(下半年)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 6021, "material": "", "question": "边长为1米的正方体525个,堆成了一个实心的长方体,它的高是5米,长、宽都大于高,则长方体的长与宽的和是多少米:", "type": "单选题", "options": "A. 21米\nB. 22米\nC. 23米\nD. 24米", "choice": "B", "keypoints": "公倍数与公约数问题;立体几何", "most_wrong": "C", "human_count": 24567, "human_acc": 68.9054422599, "source": "2008年云南省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0, "history": [{"id": 17551, "material": "", "question": "有一种红砖,长24厘米、宽12厘米、高5厘米,至少用多少块红砖才能拼成一个实心的正方体:", "type": "单选题", "options": "A. 600块\nB. 800块\nC. 1000块\nD. 1200块", "choice": "D", "keypoints": "公倍数与公约数问题;立体几何", "most_wrong": "B", "human_count": 177212, "human_acc": 50.7155271652, "source": "2011年安徽省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 15299, "material": "", "question": "有一种红砖,长24厘米、宽12厘米、高5厘米,问至少用多少块这种砖才能拼成一个实心的正方体:", "type": "单选题", "options": "A. 600块\nB. 1200块\nC. 1800块\nD. 2400块", "choice": "B", "keypoints": "公倍数与公约数问题;立体几何", "most_wrong": "C", "human_count": 12902, "human_acc": 65.431716013, "source": "2009年山西省公务员录用考试《行测》题第102题", "difficulty": 4, "formulas": 0}, {"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 1701922, "material": "", "question": "从根本上讲,一部电视剧是因为故事、人物与情境让观众在大呼过瘾的同时有所感悟,才能________人气甚至________为社会文化现象,而并非依赖IP热钱或是演员颜值的________。\n\n填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 提升 演变 比试\nB. 聚拢 发酵 比拼\nC. 增加 延伸 较量\nD. 积累 发展 拼争", "choice": "B", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "C", "human_count": 393178, "human_acc": 44.5531031746, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 249597, "material": "", "question": "他过多地使用安眠药,实在已经达到了________的地步,必须想办法制止他的行为。填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 滥用\nB. 适用\nC. 胡用\nD. 使用", "choice": "A", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "C", "human_count": 19908, "human_acc": 97.619047619, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第19题", "difficulty": 5, "formulas": 0}, {"id": 12145, "material": "", "question": "这些______党纪国法的人已经堕落为社会的蠹虫、人民的罪人,面临的将是严肃的法律______,怎么还会异想天开地要求保留党籍呢?", "type": "单选题", "options": "A. 违反 制裁\nB. 违犯 惩罚\nC. 违犯 制裁\nD. 违反 惩罚", "choice": "C", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "A", "human_count": 122503, "human_acc": 40.7516550615, "source": "2010年黑龙江省公务员录用考试《行测》题第29题", "difficulty": 6, "formulas": 0}, {"id": 3519, "material": "", "question": "这些______党纪国法的人已经堕落为社会的蠢虫,人民的罪人,面临的将是严肃的法律______,怎么还会异想天开地要求保留党籍呢?", "type": "单选题", "options": "A. 违反 制裁\nB. 违犯 惩罚\nC. 违犯 制裁\nD. 违反 惩罚", "choice": "C", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "A", "human_count": 93790, "human_acc": 37.6649962683, "source": "2008年广东省公务员录用考试《行测》题第23题", "difficulty": 6, "formulas": 0}, {"id": 48233, "material": "", "question": "天价粽子人为添加鲍鱼、海参、扇贝等昂贵成分,甚至在礼盒中配售其它商品而令粽子价格暴涨的做法,让好好的端午节变了味道,这是对节日的亵渎,更是国人_____消费心理在作怪。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 变态\nB. 畸形\nC. 阴暗\nD. 病态", "choice": "B", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "D", "human_count": 347067, "human_acc": 71.6533118966, "source": "2013年天津市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 2270578, "material": "", "question": "虽然做选择与以某种方式对待快乐________,但选择并不意味着要全然放弃快乐。在快乐问题上,亚里士多德显然________多数人的意见,即“快乐是一种善”,抱着尊重的态度。", "type": "单选题", "options": "A. 相似 基于\nB. 有关 基于\nC. 有关 对于\nD. 相似 对于", "choice": "C", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "B", "human_count": 9090, "human_acc": 31.804180418, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第25题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2377363, "material": "", "question": "导致眼前相声难出精品的核心问题,是艺术观念和审美把握的错位,一些表演仅仅________在逗笑娱乐的浅表层面,缺乏相声应有的审美智慧和____________的思想力量。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 停留 振聋发聩\nB. 流连 鞭辟入里\nC. 徘徊 发人深省\nD. 局限 义正辞严", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 1263275, "human_acc": 63.6608022798, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第27题", "difficulty": 5, "formulas": 0, "history": [{"id": 5665223, "material": "", "question": "药品过期就意味着失效,人一旦服用后,轻则________病情,重则________中毒。", "type": "单选题", "options": "A. 延误 导致\nB. 贻误 至于\nC. 耽搁 甚至\nD. 延宕 致使", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 275, "human_acc": 80.7272727273, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第3题", "difficulty": 3, "formulas": 0}, {"id": 826777, "material": "", "question": "王小波是当代较有影响的作家,他的杂文对社会时弊的______确是______。", "type": "单选题", "options": "A. 抨击 惟妙惟肖\nB. 议论 惟妙惟肖\nC. 针砭 一针见血\nD. 论述 一针见血", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 254563, "human_acc": 83.0800234127, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第28题", "difficulty": 5, "formulas": 0}, {"id": 18839, "material": "", "question": "医学家们______药补、食补______的中医理论研制新药,以缓解风湿病人的症状,减轻他们的痛苦。", "type": "单选题", "options": "A. 应用 齐头并进\nB. 采用 齐头并进\nC. 应用 双管齐下\nD. 采用 双管齐下", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 733611, "human_acc": 23.2199353608, "source": "2012年广东省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2185054, "material": "", "question": "党的十八大以来,中国人民的创造精神前所未有地(  )出来,推动我国(  )向前发展,大踏步走在世界前列。", "type": "单选题", "options": "A. 迸发 日新月异\nB. 激发 气象万千\nC. 涌现 千变万化\nD. 呈现 一日千里", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 1459752, "human_acc": 83.3241536919, "source": "2018年广东省公务员录用考试《行测》题(县级、乡镇统一卷)(网友回忆版)第2题", "difficulty": 5, "formulas": 0}, {"id": 2261919, "material": "", "question": "当前,党在新形势下的强军目标(  )确立,政治建军深入推进,练兵备战紧锣密鼓,改革攻坚大刀阔斧,正风肃纪(  )。", "type": "单选题", "options": "A. 鲜明 雷霆万钧\nB. 明显 雷霆万钧\nC. 鲜明 千钧一发\nD. 明显 千钧一发", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 481525, "human_acc": 73.1687866674, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第34题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2693093, "material": "", "question": "由于经营状况和现金流状况是反映公司质量的重要指标,因此,通过现金分红_________的上市公司首先是具备较好质地的企业,但要注意的是,_________上市公司质量的同时还需要考虑到其他指标,如资产负债、经营连续性、行业竞争格局和公司所处地位等,所以,在进行公司研究的时候,投资者还是要结合多项指标进行综合考量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 过滤 思量\nB. 修正 检验\nC. 筛选 考察\nD. 淘汰 评判", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 29854, "human_acc": 85.1879145173, "source": "2020年下半年省考第十三季行测模考大赛(陕西卷)第26题", "difficulty": 4, "formulas": 0, "history": [{"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}, {"id": 2270508, "material": "", "question": "由于供求关系不断变化,在房地产市场出现一些________不足为奇,进入市场经济的中国也不例外。\n\n填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 异常\nB. 涨价\nC. 反常\nD. 泡沫", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 1693, "human_acc": 48.1984642646, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第13题", "difficulty": 4, "formulas": 0}, {"id": 2748367, "material": "", "question": "正因为要依靠人民,所以更要_________人民的力量,这一点,恰恰也是改革开放取得成功的_________所在。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 激发 源泉\nB. 引领 原因\nC. 配合 关键\nD. 发挥 精髓", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 401500, "human_acc": 21.8259028643, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2654949, "material": "", "question": "由于新媒体信息传播渠道多元化,使用户能在短时间内获取海量信息。大量的碎片化信息容易麻痹用户的思想,从而使其产生惰性,逐渐________用户应有的观察和思考能力。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 破灭\nB. 磨灭\nC. 异化\nD. 消弭", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 34274, "human_acc": 58.992239015, "source": "2020年下半年省考第八季行测模考大赛(天津卷)第13题", "difficulty": 5, "formulas": 0}, {"id": 622217, "material": "", "question": "美国爆发金融危机,必然__________欧元国家的金融投资,使欧元区的金融机构蒙受重大损失,并在一段较长的时间逐渐暴露出来,引发一次次的金融___________。", "type": "单选题", "options": "A. 打击 风暴\nB. 重创 恐慌\nC. 影响 危机\nD. 波及 动荡", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 676398, "human_acc": 28.0479835836, "source": "2014年四川省公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 1129325, "material": "", "question": "作为互联网革命的产物,网络文化已经成为_______80后一代青年人的主流文化。我们这些印刷文化的过来人,对这一新崛起的网络文化,不管喜欢还是不喜欢,都_______认真对待。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 影响 不得不\nB. 支撑 不能不\nC. 控制 应该\nD. 支持 必须", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 94317, "human_acc": 82.0000636153, "source": "2010年江苏省公务员录用考试《行测》题(C类)第3题", "difficulty": 5, "formulas": 0, "history": [{"id": 3477, "material": "", "question": "俄罗斯近年来数次切断对邻国的天然气供应,在欧盟国家引起不小的______,认为欧盟的能源安全随时可能要受到威胁。", "type": "单选题", "options": "A. 震动\nB. 震惊\nC. 恐惧\nD. 麻烦", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 94772, "human_acc": 55.5280040518, "source": "2008年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 3541414, "material": "", "question": "曾几何时,各类名目的全国性竞赛过多过滥,此次教育部公布的白名单,无疑具有________的现实针对性,必将助力竞赛回归育人初衷。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 鲜明\nB. 明显\nC. 浓郁\nD. 丰富", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 15993, "human_acc": 61.8145438629, "source": "2021下半年省考第三季行测模考大赛(内蒙古卷)第23题", "difficulty": 6, "formulas": 0}, {"id": 18981, "material": "", "question": "有人总是把工作当成一种负担,得过且过,搪塞敷衍,这是很可怕的,因为慢慢地你的理想就会被______,志气就会被蚕食,最终难免迷失方向,沦为平庸之辈。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 磨灭\nB. 摧毁\nC. 丢弃\nD. 消磨", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "D", "human_count": 533924, "human_acc": 66.463204501, "source": "2012年浙江省公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5570592, "material": "", "question": "德国制造最值得信赖。他们制定的标准严谨,甚至________,他们对细节的固执早已成为习惯。即使一支铅笔、一把餐勺,也都彰显着细腻的心思、独到的创意和恒久的品质。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 周密\nB. 严格\nC. 优质\nD. 苛刻", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 4869, "human_acc": 92.7295132471, "source": "2023下半年省考第三季行测模考大赛(陕西卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 2261508, "material": "", "question": "历史上的许多变革往往不是一帆风顺的,会因为不被理解而引起一些人的非议甚至______,特别是当______到某些集团的利益时,还会受到猛烈的攻击。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抵制 触动\nB. 反抗 触动\nC. 抵制 触发\nD. 抵抗 触碰", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "D", "human_count": 112535, "human_acc": 62.1699915582, "source": "2017年重庆市选调优秀大学生到基层工作考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5352994, "material": "", "question": "近年来,在疫情的影响下,艰难求生的影院往往会选择在特定档期抬高票价以“回血”,这种____________的做法导致了观众观影需求的进一步降低,并引发恶性循环。于是,很多影院都开始走上自行策展或与其他策展机构合作的道路,以增加观众的黏性,来应对院线电影的匮乏。这些展映对于一线城市的观众来说无疑是利好,但从规模上讲还只能算是自救举措,对于整个院线体系,无异于____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 寅吃卯粮 九牛一毛\nB. 竭泽而渔 杯水车薪\nC. 剜肉补疮 蚍蜉撼树\nD. 抱薪救火 鞭长莫及", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 286692, "human_acc": 71.6420409359, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 1796534, "material": "", "question": "随着国际反腐合作深化,外逃腐败分子难逃________的命运。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 害群之马\nB. 瓮中之鳖\nC. 井底之蛙\nD. 涸辙之鲋", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 1101866, "human_acc": 77.179983773, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第20题", "difficulty": 4, "formulas": 0}, {"id": 49291, "material": "", "question": "“正人心而后正天下”这是南宋学者陈亮上书孝宗皇帝时所言,时隔八百多年,今天读来,依然___________。", "type": "单选题", "options": "A. 石破天惊\nB. 振聋发聩\nC. 醍醐灌顶\nD. 警钟长鸣", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 1232825, "human_acc": 49.6375397968, "source": "2013年江苏省公务员录用考试《行测》题(C类)第12题", "difficulty": 5, "formulas": 0}, {"id": 22109, "material": "", "question": "一方水土养一方人,一方人筑一方城,边地城市风貌的千姿百态,原本就是____________的事情。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 水到渠成\nB. 司空见惯\nC. 顺其自然\nD. 顺理成章", "choice": "D", "keypoints": "对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 175888, "human_acc": 45.6637178204, "source": "2009年国家公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 4344610, "material": "", "question": "专家提醒广大毕业生,要合理寻找符合条件的市场需求,更好实现自身价值,合理调整就业期待,不要一味____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 坐井观天\nB. 抱残守缺\nC. 好高骛远\nD. 纸上谈兵", "choice": "C", "keypoints": "对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 204401, "human_acc": 96.7152802579, "source": "2021下半年省考第二十三季行测模考大赛(广东乡镇卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 5424736, "material": "", "question": "媒体作为社会公器,在舆论场理应担负起____________的公共责任,要讲真话、讲实话,要善于揭穿“话题碰瓷者”的真面目,避免更多网友被用心不良者忽悠。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 针砭时弊\nB. 大浪淘沙\nC. 江心补漏\nD. 去伪存真", "choice": "D", "keypoints": "对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 254914, "human_acc": 83.0311399139, "source": "2022下半年省考第二十四季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2376733, "material": "", "question": "一项工程按计划将用20天完成,为提高效率,从第三天开始,每天都比前一天多完成1倍,则完成这个工程至少需要的时间是", "type": "单选题", "options": "A. 5天\nB. 6天\nC. 7天\nD. 8天", "choice": "B", "keypoints": "数列问题;给效率比例型", "most_wrong": "C", "human_count": 501696, "human_acc": 59.4029053451, "source": "2019年420联考《行测》题(吉林甲级)(网友回忆版)第91题", "difficulty": 5, "formulas": 0, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "工程问题", "给效率比例型"]]}, {"id": 2701677, "material": "", "question": "海洋中的塑料袋或钓鱼线会被海鸟和海龟误以为是食物而吞下肚去,然后造成内脏被堵塞的严重后果。这一点人们很容易理解,但对于微塑料如何影响海洋生态系统,人们还____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 知之甚少\nB. 不求甚解\nC. 不以为然\nD. 见仁见智", "choice": "A", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "B", "human_count": 247159, "human_acc": 88.7121245838, "source": "2021年国考终极行测模考大赛(副省级)第22题", "difficulty": 3, "formulas": 0, "history": [{"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 4837, "material": "", "question": "王大妈听到小李说他父母的不是,嘴上虽然没说什么,心里却 ______ 。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不可名状\nB. 不以为意\nC. 不以为然\nD. 不置可否", "choice": "C", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "A", "human_count": 64151, "human_acc": 45.0031955854, "source": "2009年上海市公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 1356911, "material": "", "question": "民生工作无小事,每一件看似____________的事情都可能产生巨大的影响。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不足挂齿\nB. 微不足道\nC. 谨小慎微\nD. 不容赘述", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "A", "human_count": 828012, "human_acc": 96.2615276107, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第4题", "difficulty": 5, "formulas": 0}, {"id": 2261979, "material": "", "question": "或许一个人的力量(    ),但如果全国人民同心同德、和衷共济,心往一处想、劲往一处使,那便能积沙成塔、集腋成裘,为民族复兴注入不竭动力。", "type": "单选题", "options": "A. 差强人意\nB. 沧海一粟\nC. 微不足道\nD. 轻如鸿毛", "choice": "C", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "B", "human_count": 121570, "human_acc": 86.2194620383, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第28题", "difficulty": 5, "formulas": 0}, {"id": 42991, "material": "", "question": "饱经20世纪沧桑的中国知识分子,不可能争取,也不必要妄想取得与当年歌德相当的成就,但是绝不应该因为自己难以望其项背而____________。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 愧疚不已\nB. 自惭形秽\nC. 捶胸顿足\nD. 痛悔不堪", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 182928, "human_acc": 87.1862153416, "source": "2011年江苏省公务员录用考试《行测》题(C类)第11题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 541153, "material": "", "question": "箱子里有大小相同的3种颜色玻璃珠各若干颗,每次从中摸出3颗为一组,问至少要摸出多少组,才能保证至少有2组玻璃珠的颜色组合是一样的?", "type": "单选题", "options": "A. 11\nB. 15\nC. 18\nD. 21", "choice": "A", "keypoints": "最不利构造;基础排列组合", "most_wrong": "C", "human_count": 747514, "human_acc": 38.3562046998, "source": "2014年412联考《行测》题(宁夏卷)第63题", "difficulty": 6, "formulas": 0, "history": [{"id": 2139470, "material": "", "question": "有四种颜色的文件夹若干,每人可任取1~2个,如果要保证有3人取到完全一样的文件夹,则至少应该有______人去取。", "type": "单选题", "options": "A. 18\nB. 20\nC. 11\nD. 21", "choice": "D", "keypoints": "最不利构造;基础排列组合", "most_wrong": "C", "human_count": 33707, "human_acc": 37.6360993265, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第8题", "difficulty": 5, "formulas": 0}, {"id": 3555640, "material": "", "question": "幼儿园老师准备了五种颜色的积木各若干块,每名小朋友可从中选择1-2块,则至少多少个小朋友去拿积木,才能保证有3个小朋友所拿的积木颜色与数量完全一致?", "type": "单选题", "options": "A. 21\nB. 26\nC. 31\nD. 41", "choice": "D", "keypoints": "最不利构造;基础排列组合", "most_wrong": "C", "human_count": 74132, "human_acc": 11.814061404, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第38题", "difficulty": 7, "formulas": 0}, {"id": 2555823, "material": "", "question": "一个箱子里有苹果、梨、杨桃、桔子四种水果,每种水果的数量足够多。每个人都从箱子中任意拿两个水果,问至少有多少人,才能保证有7个人拿到的水果完全一样?", "type": "单选题", "options": "A. 37\nB. 42\nC. 61\nD. 70", "choice": "C", "keypoints": "最不利构造;基础排列组合", "most_wrong": "B", "human_count": 386194, "human_acc": 44.3536150225, "source": "2021年国考第六季行测模考大赛(副省级)第65题", "difficulty": 6, "formulas": 0}, {"id": 3716071, "material": "", "question": "某公司打算为山区学生捐赠6种不同的课外书,考察后发现若每名学生分到课外书的种类不超过4种,恰好保证有两名学生分到的课外书的种类完全一致,则至少有多少名学生?", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "最不利构造;基础排列组合", "most_wrong": "C", "human_count": 80030, "human_acc": 44.8294389604, "source": "2021下半年省考第十季行测模考大赛(四川卷)第55题", "difficulty": 6, "formulas": 0}, {"id": 3536136, "material": "", "question": "在一次“冒险王挑战”活动中,共设置3个关卡,选手至少选择其中一个关卡并可自行决定挑战顺序。至少有多少名选手,可以保证有3名选手选择挑战的关卡和顺序是完全相同的?", "type": "单选题", "options": "A. 20\nB. 21\nC. 30\nD. 31", "choice": "D", "keypoints": "最不利构造;基础排列组合", "most_wrong": "B", "human_count": 54252, "human_acc": 23.9475042395, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第62题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 2391821, "material": "", "question": "博物馆是一个为社会发展提供服务的非营利教育机构,但不是所有的孩子都喜欢参观博物馆,也不是所有的孩子在参观博物馆时都喜欢听讲解,但是所有喜欢听讲解的孩子都喜欢参观博物馆。\n\n根据以上信息,可以得出以下哪项?", "type": "单选题", "options": "A. 所有喜欢参观博物馆的孩子都喜欢听讲解\nB. 不喜欢听讲解的孩子也不喜欢参观博物馆\nC. 所有的孩子都不喜欢参观博物馆\nD. 有的孩子在参观博物馆时不喜欢听讲解", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 20064, "human_acc": 89.0550239234, "source": "2016年黑龙江省公务员录用考试《行测》题(县乡卷)第74题", "difficulty": 5, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 2645678, "material": "", "question": "某电商平台对1000名客户进行调查,其中有644名购买了服装类商品,有513名购买了食品类商品,有422名购买了化妆品类商品。其中,有405人同时购买了服装类与食品类商品,有318人同时购买了服装类与化妆品类商品,有277人同时购买了食品类与化妆品类商品,则至少有多少人未购买以上三类商品?", "type": "单选题", "options": "A. 125\nB. 144\nC. 168\nD. 185", "choice": "B", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 35432, "human_acc": 40.7174305712, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第70题", "difficulty": 7, "formulas": 0, "history": [{"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 5115455, "material": "", "question": "某班级有学生30人,自愿参加田径运动会,报名长跑的有3人,报名短跑的有8人,报名跳高的有5人,且有18人没有报名任何项目,则只报名两个项目的最多有多少人?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 86911, "human_acc": 34.7033171865, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 49631, "material": "", "question": "有100人参加运动会的三个项目,每人至少参加一项,其中未参加跳远的有50人,未参加跳高的有60人,未参加赛跑的有70人,问至少有多少人参加了不止一项活动:", "type": "单选题", "options": "A. 7\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "非典型最值问题;三集合", "most_wrong": "D", "human_count": 1141903, "human_acc": 33.7131963048, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第77题", "difficulty": 5, "formulas": 0}, {"id": 2724950, "material": "", "question": "一次期末考试中,某班同学语文满分的有35人,数学满分的有37人,英语满分的有33人,三门都取得满分的有12人,三门都没取得满分的有4人,问该班最少有多少人?", "type": "单选题", "options": "A. 49\nB. 51\nC. 53\nD. 55", "choice": "B", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 149265, "human_acc": 43.6197367099, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 0}, {"id": 14813, "material": "", "question": "公司某部门80%的员工有本科以上学历,70%有销售经验,60%在生产一线工作过。该部门既有本科以上学历,又有销售经历,还在生产一线工作过的员工至少占员工的:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 10%\nD. 5%", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "B", "human_count": 306018, "human_acc": 68.0858642302, "source": "2010年深圳市公务员录用考试《行测》题第7题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 2188365, "material": "", "question": "烈士墓前的苍松翠柏显得_______________ 。同学们一起列队,怀着_________的心情,站立在烈士墓前,开始进行祭奠扫墓活动。学校领导宣布全体_________,向革命烈士默哀,少先队员代表向革命烈士墓敬献花圈。", "type": "单选题", "options": "A. 苍翠巍峨 庄重 肃立\nB. 庄严肃穆 庄重 肃立\nC. 苍翠巍峨 沉重 立正\nD. 庄严肃穆 沉重 起立", "choice": "B", "keypoints": "词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 1228229, "human_acc": 56.8564982589, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 11015, "material": "", "question": "它 ______ 也会回家来看看,走时眼睛里会 ______ 出些许的留恋与不舍。", "type": "单选题", "options": "A. 偶然 透露\nB. 偶尔 透露\nC. 偶然 流露\nD. 偶尔 流露", "choice": "D", "keypoints": "词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 49361, "human_acc": 93.3793885861, "source": "2008年湖北省公务员录用考试《行测》题(B类)第2题", "difficulty": 3, "formulas": 0}, {"id": 2452995, "material": "", "question": "全国两会________,来自社会各界的代表、委员,齐聚北京,____________ 。", "type": "单选题", "options": "A. 前夕,共商国是\nB. 前昔,共商国是\nC. 前夕,共商国事\nD. 前昔,共商国事", "choice": "A", "keypoints": "词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 1298288, "human_acc": 33.4998860037, "source": "2020年上海市公务员录用考试《行测》题(B类)(网友回忆版)第1题", "difficulty": 5, "formulas": 0}, {"id": 2185063, "material": "", "question": "经过五年的不懈努力,群众反映强烈的突出问题得到有效(  ),不正之风得以扭转,可以说作风建设改变了中国,在全面从严治党历史进程中写下了(  )的一笔。", "type": "单选题", "options": "A. 遏制 铿锵有力\nB. 遏止 入木三分\nC. 遏止 掷地有声\nD. 遏制 浓墨重彩", "choice": "D", "keypoints": "词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 1648615, "human_acc": 68.6445895494, "source": "2018年广东省公务员录用考试《行测》题(县级、乡镇统一卷)(网友回忆版)第4题", "difficulty": 5, "formulas": 0}, {"id": 50485, "material": "", "question": "全球页岩气储量丰富,开发潜力巨大,在资源日益____、能源需求增长、价格____的大背景下,其作为常规天然气的有益补充,重要性____。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 匮乏 高涨 不可小觑\nB. 匮乏 高企 不言而喻\nC. 缺乏 高企 不言而喻\nD. 缺乏 高涨 不可小觑", "choice": "B", "keypoints": "词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 849802, "human_acc": 46.6455715567, "source": "2013年广东省公务员录用考试《行测》题(三)第25题", "difficulty": 5, "formulas": 0}, {"id": 3659, "material": "", "question": "自张爱玲在大洋彼岸以自己独特的方式________告别人世至今,张爱玲研究已经_________,海峡两岸三地出版的张爱玲传记、张爱玲研究专著和张爱玲评论汇编接连不断。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 悄然 蔚为大观\nB. 悄悄 汗牛充栋\nC. 悄然 汗牛充栋\nD. 悄悄 蔚为大观", "choice": "A", "keypoints": "词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 98440, "human_acc": 63.8673303535, "source": "2008年浙江省公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2060402, "material": "", "question": "(1)2013年3月19日,习近平______国家主席不久,在接受金砖国家媒体联合采访时,他提到“最大的爱好是读书”。\n\n(2)当代美国精英与大众的严重______,是无法通过福利政策消除的。\n\n(3)老人的家属要求孩子家长赔偿医疗费,但双方______,僵持着直到岁末年终。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 履新 隔阂 各执己见\nB. 履新 暌隔 各执一词\nC. 履行 隔阂 各执一词\nD. 履行 暌隔 各执己见", "choice": "A", "keypoints": "词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 702994, "human_acc": 33.280084894, "source": "2017年深圳市公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0, "history": [{"id": 11027, "material": "", "question": "______ 上次的惨痛教训,他们这次将 ______ 的重点放在岛上的两个机场。", "type": "单选题", "options": "A. 基于 防御\nB. 鉴于 防御\nC. 基于 防范\nD. 鉴于 防范", "choice": "B", "keypoints": "词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 48443, "human_acc": 56.1009846624, "source": "2008年湖北省公务员录用考试《行测》题(B类)第3题", "difficulty": 5, "formulas": 0}, {"id": 3529, "material": "", "question": "改革开放以来,中国农学会______“献身、创新、求实、协作”的宗旨,始终不渝地坚持以推动农业科技进步、促进农村发展为己任,大力开展学术交流和科技普及,积极______和举荐人才,为提高广大农民科技素质、加快农业科技进步作出了重要贡献。", "type": "单选题", "options": "A. 继承 出谋划策\nB. 继承 建言献策\nC. 秉承 建言献策\nD. 秉承 出谋划策", "choice": "C", "keypoints": "词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 88775, "human_acc": 85.5578710222, "source": "2008年广东省公务员录用考试《行测》题第24题", "difficulty": 5, "formulas": 0}, {"id": 3522429, "material": "", "question": "实际上普通话和方言不是同一层次上的交际工具,普通话是全民共同语,是官方语言,而方言是区域性的,是民间语言。通过明确________,普通话和方言可以做到并行不悖,甚至____________,相得益彰。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 规定 齐头并进\nB. 划分 互为表里\nC. 区分 珠联璧合\nD. 界定 相辅相成", "choice": "D", "keypoints": "词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 2651272, "human_acc": 72.2371752125, "source": "2021年云南公务员录用考试《行测》题(网友回忆版)第25题", "difficulty": 4, "formulas": 0}, {"id": 2307778, "material": "", "question": "40年改革开放创造了________的中国,中国愿意与世界共享“经济发展红利”和“思想理念红利”。中国不“输入”外国模式,也不“输出”中国模式,而是通过深化自身实践探索人类社会发展规律,________________为世界和平安宁、共同发展、文化交流作贡献。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 奇迹 一如既往\nB. 神奇 一成不变\nC. 奇特 一往无前\nD. 独特 坚定不移", "choice": "A", "keypoints": "词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 676789, "human_acc": 38.4212804877, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第33题", "difficulty": 5, "formulas": 0}, {"id": 2524637, "material": "", "question": "打开电视,点开手机,走在路上,甚至进入任何一个场所,我们几乎都能发现广告的影子。看个电视剧,各种植入广告从之前的遮遮掩掩变成了现在的____________。不得不说,正因为广告这种无法阻挡的快速覆盖,无缝隙地________到人们生活的点点滴滴,更加凸显了广告导向的重要性。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 堂而皇之 渗透\nB. 明火执仗 融入\nC. 肆无忌惮 侵袭\nD. 理直气壮 掺杂", "choice": "A", "keypoints": "词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 332468, "human_acc": 83.6883549695, "source": "2020年上半年省考第二十六季行测模考大赛(浙江卷)第24题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 218309, "material": "", "question": "最近一段时期,有关要发生地震的传言很多,小明问在院里乘凉的爷爷:“爷爷,他们都说明天要地震了。”爷爷说:“根据我的观察,明天不必然地震。”小明说:“那您的意思是明天肯定不会地震了?”爷爷说不对,小明陷入迷惑。\n\n以下哪句话与爷爷的意思最为接近?", "type": "单选题", "options": "A. 明天必然不地震\nB. 明天可能地震\nC. 明天可能不地震\nD. 明天不可能地震", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 164188, "human_acc": 79.3608546301, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第32题", "difficulty": 4, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 24251, "material": "", "question": "语言在代代相传的过程中会发生改变。在人口众多的族群中,语言倾向于保持______,原因很简单,因为有更多的人能记住上一辈说话的方式,然而在规模较小的族群中,语言有可能更快地发生变化,在世代交替中有些将会______。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 稳定 流失\nB. 传统 异化\nC. 活力 消亡\nD. 原貌 式微", "choice": "A", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "D", "human_count": 880240, "human_acc": 54.7588157775, "source": "2012年国家公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 455559, "material": "", "question": "对诚实的否定固然令人遗憾,但人们尚可从精神上、道德上的肯定中得到_______。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 偿还\nB. 回报\nC. 弥补\nD. 欣慰", "choice": "C", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "D", "human_count": 540644, "human_acc": 69.6744993008, "source": "2014年天津市公务员录用考试《行测》题第16题", "difficulty": 4, "formulas": 0}, {"id": 455859, "material": "", "question": "我们尊重个体差异,倡导个性化发展,但我们更希望孩子们能得到与自身资质相_______的全面发展。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 适应\nB. 匹配\nC. 一致\nD. 符合", "choice": "B", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "A", "human_count": 459174, "human_acc": 68.0543759011, "source": "2014年天津市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 1796522, "material": "", "question": "个人成长进步靠什么?有人说靠组织培养,有人说靠自身努力。实际上,二者并不(    )。在现实生活中,绝大多数人的成长进步既离不开组织培养,也离不开自身努力。\n\n填入括号处最恰当的一项是:", "type": "单选题", "options": "A. 相关\nB. 统一\nC. 重复\nD. 矛盾", "choice": "D", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "C", "human_count": 840857, "human_acc": 97.4028877681, "source": "2016年广东省公务员录用考试《行测》题(乡镇)第3题", "difficulty": 3, "formulas": 0}, {"id": 18987, "material": "", "question": "音乐剧是欧美兴起的一种艺术形式,《鹰》的创作是对这种艺术形式的______ 。但作者又不是简单的拿来,而是在______方面做了大胆的探索并取得了很好的成绩。", "type": "单选题", "options": "A. 改良 本土化\nB. 创新 国际化\nC. 发展 市场化\nD. 借鉴 民族化", "choice": "D", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "A", "human_count": 146903, "human_acc": 57.7415028965, "source": "2011年内蒙古自治区公务员录用考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 21721, "material": "", "question": "与先辈不同,新生代的中国研究人员不愿意_______接受古籍中的描写,在希冀精确追溯中国历史的尝试中,他们所_______的是实物、数据以及更为“西式”的方法。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 被动 依靠\nB. 全盘 倚重\nC. 直接 擅长\nD. 无端 强调", "choice": "B", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "A", "human_count": 372454, "human_acc": 62.7881563898, "source": "2010年国家公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 19995, "material": "", "question": "二次污染,指的是污染物由污染源排入环境后,在物理、化学或生物作用下生成新的污染物,而对环境产生的再次污染。\n\n以下属于二次污染的是:", "type": "单选题", "options": "A. 汽车尾气中的有害化合物,在阳光作用下发生光化学反应,生成以臭氧为主的多种强氧化剂,危害人类健康\nB. 房屋装修时,施工机械发出强烈噪声,严重影响周边居民休息与生活\nC. 农药残留在棉花、麻纤维之中,制成服装后虽残留量甚微,但经常与皮肤接触也会对人体造成伤害\nD. 人们在公共场所吸入了二手烟", "choice": "A", "keypoints": "拆词", "most_wrong": "C", "human_count": 174315, "human_acc": 94.1347560451, "source": "2012年北京市公务员录用考试《行测》题第108题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 10177, "material": "", "question": "崛起最本质的意义,是在________体系中相对力量的快速增强。有力量________是一件好事,但也可以是一件坏事。崛起带给中国决策层和知识分子最________的议题之一:如何看待中国力量的快速增长?更进一步,中国应该如何运用已经或即将获得的力量?\n\n依次填入横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 既定 多半 迫切\nB. 现在 自然 现实\nC. 当前 也许 棘手\nD. 固有 通常 严峻", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 67558, "human_acc": 25.8814648154, "source": "2009年913联考《行测》题(辽宁/海南/重庆/福建)第29题", "difficulty": 7, "formulas": 0, "history": [{"id": 14915, "material": "", "question": "人民富起来了,但如果教育不能及时跟上,伦理道德的________,会成为新的社会问题。填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 沦丧\nB. 失范\nC. 缺失\nD. 丧失", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 121846, "human_acc": 32.2103310737, "source": "2010年深圳市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2050578, "material": "", "question": "青山隐隐,芳草萋萋,春天的脚步总是来去匆匆。“二月里来好春光”的余音还在耳畔____,____之间便到了细雨纷纷、祭扫亲人的清明时节。\n\n依次填入画横线部分最恰当的一组是:", "type": "单选题", "options": "A. 缭绕 蓦然\nB. 回响 忽然\nC. 飘荡 遽然\nD. 萦绕 倏忽", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 813566, "human_acc": 55.9418658105, "source": "2017年422联考《行测》题(吉林卷乙级)第38题", "difficulty": 5, "formulas": 0}, {"id": 1746714, "material": "", "question": "关于枕头,现代人比前人的认识和经验都要多得多,但是人们记得最______的话,却是古人说的“高枕无忧”,现在被______最多的,恰恰也是这句话,“高枕”被认为是颈椎问题的诱因之一。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深刻 指责\nB. 清楚 批评\nC. 牢固 谴责\nD. 广泛 批判", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 2874532, "human_acc": 43.3173121746, "source": "2016年国家公务员录用考试《行测》题(副省级)第31题", "difficulty": 5, "formulas": 0}, {"id": 4658475, "material": "", "question": "媒体一直被认为是社会的________,通过新闻事实选择、新闻价值判断等新闻生产机制,对大千世界的变动进行舆论监督,进而________公众对大部分人所无法亲身经历和体验的事实的了解和认知,发挥着议程设置和社会协调的功能。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 守望者 影响\nB. 掌控者 引导\nC. 巡夜人 激发\nD. 代言人 左右", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 1691689, "human_acc": 48.9254230535, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第18题", "difficulty": 5, "formulas": 0}, {"id": 4702300, "material": "", "question": "头顶发髻,腰间悬“葫”,“行走的小针灸铜人”——中医药小使者“灸童”来了!设计团队负责人表示,希望借助“灸童”拟人化后的__________,拉近民众与中医药文化的距离,使中医药文化所蕴含的深刻理念在潜移默化中________到人们的日常生活中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 表现力 融入\nB. 影响力 贯穿\nC. 感染力 贯彻\nD. 亲和力 渗透", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 216454, "human_acc": 87.4444454711, "source": "2022上半年省考第六季行测模考大赛(四川卷)第22题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2627681, "material": "", "question": "甲和乙两名选手打羽毛球,已知在每一局中甲获胜的概率都是乙的1.5倍,且不存在平局。若某人连胜三局,则为该选手获胜,请问甲在打完第三局获胜的概率是在打完第五局获胜的概率的多少倍?", "type": "单选题", "options": "A. 6.25\nB. 1.5\nC. $\\frac{5}{8}$\nD. 2.5", "choice": "D", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 95271, "human_acc": 15.17985536, "source": "2020年下半年省考第四季行测模考大赛(新疆卷)第65题", "difficulty": 7, "formulas": 104, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 4212279, "material": "", "question": "某地区自2012年起开展“农村义务教育学生营养改善计划”,并对参与计划的学生进行监测。2015年,由该地区疾病预防控制中心提供的监测数据发现,该批学生的生长迟缓率明显下降,从2012年的6.37%降低到2.07%。因此,专家认为该计划对学生的成长起到了积极作用。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 该地区附近的城市中仍有许多义务教育阶段的学生吃得没有营养\nB. 该计划实现农牧区中小学全覆盖,该地区每年有38万农牧区的学生享受补助\nC. 被监测学生的肥胖率自2012年起逐年上升,超重比例持续增长\nD. 通过监测数据发现,被监测学生的贫血率比2012年下降了2.35%", "choice": "C", "keypoints": "削弱论点", "most_wrong": "A", "human_count": 80194, "human_acc": 80.4723545402, "source": "2021下半年省考第二十一季行测模考大赛(四川卷)第83题", "difficulty": 4, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 586205, "material": "", "question": "一个老人告诉医生,说他的右腿疼,医生说:“这是上了年纪的缘故。”\n\n以下最能反驳医生说法的是:", "type": "单选题", "options": "A. 老人年轻的时候右腿也疼\nB. 比老人年纪小的人腿也疼\nC. 比老人年纪大的人腿不疼\nD. 老人现在左腿不疼", "choice": "A", "keypoints": "削弱论点", "most_wrong": "C", "human_count": 304321, "human_acc": 75.76210646, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第85题", "difficulty": 5, "formulas": 0}, {"id": 1324939, "material": "", "question": "海水经过海水淡化技术的处理可变成淡水,而海水的量是极其巨大的。因此,无须节约使用淡水资源。最能质疑上述结论的是:", "type": "单选题", "options": "A. 近海海水的污染比较严重\nB. 海水淡化成本高昂\nC. 冰川水储量巨大,可替代海水淡化\nD. 地球上的水资源总量是恒定的", "choice": "B", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 642943, "human_acc": 59.8899124806, "source": "2015年广东省公务员录用考试《行测》题(县级以上)第58题", "difficulty": 5, "formulas": 0}, {"id": 1324965, "material": "", "question": "据统计,和去年相比,今年1月以来流感患者的数量有明显的下降。这得益于新型特效药的发明和投入使用。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 2月份为流感的高发期\nB. 流感患者很少到医院去治疗\nC. 流感病毒具有抗药性\nD. 新型特效药定价高,患者使用少", "choice": "D", "keypoints": "削弱论点", "most_wrong": "A", "human_count": 712250, "human_acc": 66.1293085293, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第56题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 21569, "material": "", "question": "一件商品相继两次分别按折扣率为10%和20%进行折扣,已知折扣后的售价为540元,那么折扣前的售价为:", "type": "单选题", "options": "A. 600元\nB. 680元\nC. 720元\nD. 750元", "choice": "D", "keypoints": "经济利润问题;和差倍比问题", "most_wrong": "C", "human_count": 274660, "human_acc": 69.4615160562, "source": "2012年安徽省公务员录用考试《行测》题第65题", "difficulty": 4, "formulas": 0, "history": [{"id": 2604356, "material": "", "question": "办公室按零售价花费360元购买了一批笔记本。如果按批发价购买,则每个笔记本能便宜3元,且恰好能多购买20个。则该笔记本零售价为(    )元。", "type": "单选题", "options": "A. 3\nB. 4\nC. 6\nD. 9", "choice": "D", "keypoints": "经济利润问题;和差倍比问题", "most_wrong": "C", "human_count": 611159, "human_acc": 70.3983742365, "source": "2020年广东省公务员录用考试《行测》试题(乡镇卷)(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 16007, "material": "", "question": "甲商品8折后的价格是乙商品原价的4倍,小王分别以8折和7折的价格买下了甲、乙两种商品,支出总额比甲商品原价少6元,问乙商品的实际销售价格是多少元:", "type": "单选题", "options": "A. 10\nB. 14\nC. 21\nD. 28", "choice": "B", "keypoints": "经济利润问题;和差倍比问题", "most_wrong": "C", "human_count": 32976, "human_acc": 57.1445900049, "source": "2011年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 5, "formulas": 0}, {"id": 2423349, "material": "", "question": "某点心铺的糕点按每斤24元销售,周六店庆时按每斤20元销售。如果某单位为举办茶话会在周五、周六共买了33斤的糕点,且两次花的钱相等,那么该单位周五买了多少斤糕点?", "type": "单选题", "options": "A. 15\nB. 17\nC. 19\nD. 21", "choice": "A", "keypoints": "经济利润问题;和差倍比问题", "most_wrong": "C", "human_count": 35361, "human_acc": 46.4947258279, "source": "2019年重庆市法检系统招录考试《行测》题(网友回忆版)第63题", "difficulty": 6, "formulas": 0}, {"id": 4933224, "material": "", "question": "某企业2020年的利润为120万元,比去年增长了20%,成本比去年增长了25%。已知该企业2020年的利润率比去年低4个百分点,则2019年该企业的成本是多少万元?", "type": "单选题", "options": "A. 125\nB. 115\nC. 110\nD. 100", "choice": "D", "keypoints": "经济利润问题;和差倍比问题", "most_wrong": "C", "human_count": 273381, "human_acc": 25.5650538991, "source": "2022上半年省考第十七季行测模考大赛(陕西卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 5102591, "material": "", "question": "某水果采摘园门票为每人x元,采摘水果20元/斤,采摘满3斤可免除一半门票费用,采摘满5斤可免除全部门票费用。已知采摘6斤的价格是采摘2斤价格的2倍。问采摘8斤的价格比采摘4斤多多少元?", "type": "单选题", "options": "A. 70\nB. 80\nC. 90\nD. 100", "choice": "A", "keypoints": "经济利润问题;和差倍比问题", "most_wrong": "B", "human_count": 404928, "human_acc": 52.9792950846, "source": "2022年天津市公务员录用考试《行测》试题(网友回忆版)第5题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 2010228, "material": "", "question": "人生的奥妙就在于与人相处,和聪明的人在一起,你才会更加睿智;和优秀的人在一起,你才会________。", "type": "单选题", "options": "A. 一鸣惊人\nB. 脱颖而出\nC. 出人头地\nD. 出类拔萃", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 2525, "human_acc": 87.2871287129, "source": "2013年上海市公务员录用考试《行测》题(A类)第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 4988442, "material": "", "question": "中国夜间经济____________,正在成为灯火下城市发展的新风口。夜间经济是城市竞争的新赛道,是城市活力的新标志,也是打造城市品牌、推动消费升级的新引擎。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 方兴未艾\nB. 如火如荼\nC. 如日中天\nD. 深入人心", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 300057, "human_acc": 55.2731647654, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第21题", "difficulty": 6, "formulas": 0}, {"id": 4454568, "material": "", "question": "毋庸讳言,现实中存在大量课题式理论研究、捧脚式评论文字,其典型特征是,用西方文学理论剪裁中国文艺审美,以____________的方式在中国文艺园地放马狂欢,貌似头头是道,实则南辕北辙。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 矫枉过正\nB. 名存实亡\nC. 削足适履\nD. 沽名钓誉", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 161552, "human_acc": 79.934015054, "source": "2021下半年省考第二十五季行测模考大赛(陕西卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 5368041, "material": "", "question": "历史精神是历史的产物,离开了基本历史事实,就不可能展现真正的历史精神。以艺术虚构的名义随意化用、跟风模仿外国风格样式,矮化中国历史,那就与古装剧弘扬中华民族优秀传统文化的根本目的____________了。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 渐行渐远\nB. 分庭抗礼\nC. 背道而驰\nD. 分道扬镳", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 328673, "human_acc": 94.6457421206, "source": "2022下半年省考第十八季行测模考大赛(浙江A卷)第23题", "difficulty": 3, "formulas": 0}, {"id": 5300076, "material": "", "question": "从立法经验看,“约束+激励”是社会信用立法的总体方向。在约束层面,应当重点打击各类严重失信行为,采取限制从事特定行业或项目、限制融资信贷等惩戒措施,让严重失信者____________;在激励层面,应当给予守信者优惠便利,让诚信成为市场经济的“黄金法则”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 进退维谷\nB. 寸步难行\nC. 步履维艰\nD. 如履薄冰", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 141396, "human_acc": 87.9098418626, "source": "2022下半年省考第十二季行测模考大赛(新疆兵团卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 4772033, "material": "", "question": "过去国际体育赛事赞助商一直被国外品牌垄断,如今在各大赛场,越来越多的中国运动品牌____________。但同时,更要清醒认识到,市场对品牌的认可最终会回归产品本身。好的产品跟不上,过快提价反而适得其反。要想在高端市场竞争中____________,深耕科技、专注产品是不二法门。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 脱颖而出 鹤立鸡群\nB. 崭露头角 行稳致远\nC. 独当一面 蒸蒸日上\nD. 独占鳌头 千帆竞发", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 281454, "human_acc": 91.1040525272, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第30题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2374701, "material": "", "question": "构建人类命运共同体,需要世界各国人民努力建设一个远离(  )、普遍安全的世界;一个远离(  )、共同繁荣的世界;一个远离封闭、开放包容的世界。", "type": "单选题", "options": "A. 战乱 争端\nB. 战乱 贫困\nC. 纷扰 争端\nD. 纷扰 贫困", "choice": "B", "keypoints": "关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 819450, "human_acc": 86.2294221734, "source": "2019年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 455, "material": "", "question": "一个人要有所敬畏,在自己心目中总有一些东西属于做人的根本,是_________不得的。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 张扬\nB. 亵渎\nC. 诋毁\nD. 冒犯", "choice": "B", "keypoints": "关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 113250, "human_acc": 73.1646799117, "source": "2008年山西省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2188351, "material": "", "question": "马克思曾说,文明如果是________地发展,而不是________地发展,则留给自己的是荒漠。", "type": "单选题", "options": "A. 自由 自觉\nB. 自发 自觉\nC. 自由 自发\nD. 自发 自然", "choice": "B", "keypoints": "关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 1269666, "human_acc": 18.0261580605, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第10题", "difficulty": 5, "formulas": 0}, {"id": 529, "material": "", "question": "放眼世界、海纳百川,通过___、消化、___,努力推动我国科学技术跨越式发展。\n\n上面划线处填入词语,最恰当的是:", "type": "单选题", "options": "A. 引进 吸收\nB. 引进 改造\nC. 学习 创新\nD. 学习 改造", "choice": "A", "keypoints": "关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 92957, "human_acc": 45.2424239164, "source": "2008年江西省公务员录用考试《行测》题第18题", "difficulty": 6, "formulas": 0}, {"id": 2270569, "material": "", "question": "世界永远充满着龌龊与清洁的________,而清清世界、朗朗乾坤不仅是中国人的社会________,也是一种审美追求。", "type": "单选题", "options": "A. 角逐 理想\nB. 追逐 梦想\nC. 角逐 梦想\nD. 追逐 理想", "choice": "A", "keypoints": "关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 9159, "human_acc": 83.4152200022, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第17题", "difficulty": 4, "formulas": 0}, {"id": 467, "material": "", "question": "“为政不在多言”,这是中国自古以来的政治_________。这既是一种政治_________,更是做人的诚信。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 训诫 诚信\nB. 劝诫 精诚\nC. 训诲 至诚\nD. 训示 诚意", "choice": "A", "keypoints": "关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 113366, "human_acc": 65.1738616516, "source": "2008年山西省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5008323, "material": "", "question": "日前,中办、国办印发《关于深化生态保护补偿制度改革的意见》(以下简称《意见》),这是该领域出台的又一个中央层面重要文件。应对当前生态保护工作中存在的补偿缺乏标准、难以调动各方积极性等难题,《意见》的出台____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 刻不容缓\nB. 功不可没\nC. 任重道远\nD. 恰逢其时", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 339470, "human_acc": 82.0596812679, "source": "2022上半年省考第二十一季行测模考大赛(陕西卷)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 2012196, "material": "", "question": "这一套百科全书,内容涉及各个领域、各门学科,真是______,丰富多彩。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 洋洋大观\nB. 蔚为大观\nC. 汗牛充栋\nD. 包罗万象", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 5210, "human_acc": 92.9750479846, "source": "2009年河北省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4626505, "material": "", "question": "很多新闻人物平凡而普通,但他们身上有面对挫折____________的坚毅,有面对艰险____________的顽强,只有带着感情,走进他们的生活,走进他们的心灵,才能发掘出这些平凡人物的不平凡故事。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 锲而不舍 百折不挠\nB. 厚积薄发 勇往直前\nC. 首当其冲 不屈不挠\nD. 持之以恒 披坚执锐", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 35276, "human_acc": 93.360925275, "source": "2021下半年省考第三十五季行测模考大赛(西藏卷)第3题", "difficulty": 3, "formulas": 0}, {"id": 4925412, "material": "", "question": "欧洲的古老岩画多为洞穴岩画,为了保护史前的艺术品,很多岩洞都采取了封闭措施,以保护史前的洞穴岩画不受游客呼吸和汗水的腐蚀。塞拉尼亚·拉林多萨岩画全部暴露在外,在南美热带雨林的湿热气候中竟保持万年不变色,堪称奇迹。塞拉尼亚·拉林多萨岩画无论是规模、内容、艺术水准还是保存状态,都令人____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 瞠目结舌\nB. 叹为观止\nC. 大开眼界\nD. 拍案叫绝", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 991083, "human_acc": 79.8279256127, "source": "2022年重庆市选调优秀大学生到基层工作考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 5305236, "material": "", "question": "在国家博物馆举办的“受赠礼品展”中,可以看到各种异域风情的工艺品、民族服装和乐器等,可谓____________。展览中来自世界各地的珍贵瓷器____________,除了有内容上反映当地的风土人情之外,还有一些瓷器在造型上____________,非常特别。比如,来自罗马尼亚的“收获葡萄人物图瓷壶”,壶腹微鼓、口颈细长、壶底收缩,给人秀丽圆润、浑然一体的感觉。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 应接不暇 风格迥异 姿态万千\nB. 不绝如缕 匠心独运 形态各异\nC. 包罗万象 异彩纷呈 千姿百态\nD. 洋洋大观 丰富多彩 绰约多姿", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 7881, "human_acc": 49.9555893922, "source": "2022下半年省考第十三季行测模考大赛(通用卷)第37题", "difficulty": 6, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4753528, "material": "", "question": "高度敏感者,其内心独白常常是:我拥有比常人更________的神经系统,能感知事物的细微差别,能察觉到他人对我的看法与评价。而这些看法与评价会随时触发高度敏感者超强的想象力,与他们内在的认知进行深度整合,形成强大的负能量流,________他们脆弱的神经。这种感觉会反反复复,不断________,让他们不堪重负。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 发达 冲击 循环\nB. 敏锐 触碰 失衡\nC. 先进 颠覆 加剧\nD. 精密 挤压 恶化", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 352235, "human_acc": 71.561315599, "source": "2022上半年省考第九季行测模考大赛(陕西卷)第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 2661760, "material": "", "question": "乡村干部逐渐从以前的催种催收的“四季歌”中________出来,开始思考自己今后的作为。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 解脱\nB. 释放\nC. 解放\nD. 脱离", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 6593, "human_acc": 30.8205672683, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第13题", "difficulty": 5, "formulas": 0}, {"id": 24243, "material": "", "question": "好莱坞商业大片宣传的是一种普世价值,它往往故事简单,________的道理也很浅显,这一点常常为西方的知识分子所________。但不可否认的是,正是这种浅显的东西,往往才可能被普遍的大众接受。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蕴含 不屑\nB. 包含 轻视\nC. 渗透 鄙夷\nD. 传达 唾弃", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 53869, "human_acc": 81.7149009634, "source": "2009年426联考《行测》题(天津/陕西/湖北)第26题", "difficulty": 5, "formulas": 0}, {"id": 5095631, "material": "", "question": "知识为我们提供了便利,反过来也成为控制我们的________。今天,信息技术、人工智能、生命科学等科学技术突飞猛进,而人类正在一步步成为自己制造的智慧城市中的智障婴儿,被奔涌而来的科技力量所________,对周围的世界失去掌控力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 桎梏 吞没\nB. 钳制 包围\nC. 牢笼 蚕食\nD. 枷锁 洗礼", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 4245, "human_acc": 68.1036513545, "source": "2022下半年省考第二季行测模考大赛(青海卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 4344672, "material": "", "question": "随着全球化和城市化的加速推进,在主张“共同语言”的现代社会,方言及其对应的文艺形式慢慢________,“故乡”的缩影也日渐淡去。实际上,方言不仅是告别故乡的人________乡愁的出口,也是城市生活的人对地域风情和乡村生活的想象。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消亡 释放\nB. 凋敝 纾解\nC. 式微 逃避\nD. 虚掷 慰藉", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 217341, "human_acc": 77.5371420947, "source": "2021下半年省考第二十三季行测模考大赛(广东乡镇卷)第4题", "difficulty": 4, "formulas": 0}, {"id": 4737357, "material": "", "question": "一些地方为遏制高耗能行业能耗的过快增长,纷纷采取限电、限产甚至关停等措施。各地区节能形势严峻,________出的是多年来有关地区产业结构偏重、能效利用偏低、转型升级偏慢等深层次问题。对于以上痼疾,如果只是“头痛医头、脚痛医脚”,则不可能________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 折射 根治\nB. 反应 清除\nC. 彰显 祛除\nD. 反映 缓解", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 460225, "human_acc": 95.2770927264, "source": "2022上半年省考第八季行测模考大赛(广东县级卷)第3题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 1541947, "material": "", "question": "亲子班上5对母子坐成一圈,孩子都挨着自己的母亲就坐。问所有孩子均不相邻的概率在以下哪个范围内?", "type": "单选题", "options": "A. 小于5%\nB. 5%-10%\nC. 10%-15%\nD. 大于15%", "choice": "B", "keypoints": "环形排列问题;给情况求概率", "most_wrong": "C", "human_count": 473149, "human_acc": 43.6490407884, "source": "2015年山东省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 3589123, "material": "", "question": "10个小朋友玩“丢手绢”的游戏,即选一个小朋友作为丢手绢的人,其他小朋友围成一圈蹲下,被选中的小朋友沿着圆圈外行走并偷偷将手绢丢在某个小朋友身后,再通过追逐来占领被丢手绢小朋友的位置。在这场游戏中,小宝和小贝挨在一起且手绢被丢在他们其中一人身后的概率是多少?", "type": "单选题", "options": "A. $\\frac{1}{2}$\nB. $\\frac{2}{45}$\nC. $\\frac{16}{45}$\nD. $\\frac{4}{9}$", "choice": "B", "keypoints": "环形排列问题;给情况求概率", "most_wrong": "C", "human_count": 27089, "human_acc": 41.8472442689, "source": "2021下半年省考第五季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 418}, {"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 826835, "material": "", "question": "有甲、乙、丙、丁4人,每3个人的平均年龄加上余下一人的年龄分别为29、23、21和17,这4个人中最大年龄与最小年龄的差是:", "type": "单选题", "options": "A. 14\nB. 16\nC. 18\nD. 20", "choice": "C", "keypoints": "和差倍比问题;年龄问题", "most_wrong": "B", "human_count": 77844, "human_acc": 51.7123991573, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第55题", "difficulty": 5, "formulas": 0, "history": [{"id": 1392541, "material": "", "question": "若销售团队有5个人,每个人把其他四个人的年龄相加,所得到的和分别为95、102、100、99、104,则这五个人中年龄最大的人为多少岁:", "type": "单选题", "options": "A. 25\nB. 26\nC. 27\nD. 28\nE. 29\nF. 30\nG. 31\nH. 32", "choice": "F", "keypoints": "和差倍比问题;年龄问题", "most_wrong": "C", "human_count": 150042, "human_acc": 40.9485344104, "source": "2015年425联考《行测》题(陕西卷)第64题", "difficulty": 6, "formulas": 0}, {"id": 220569, "material": "", "question": "某疗养院同一个房间的四位病友,把他们的年龄(均为整数)两两相加得到6个不同的数,已知其中5个数为:99,113,125,130,144,四人中年龄最大者与年龄最小者岁数之和为多少岁:", "type": "单选题", "options": "A. 113\nB. 118\nC. 121\nD. 125", "choice": "D", "keypoints": "和差倍比问题;年龄问题", "most_wrong": "B", "human_count": 26401, "human_acc": 27.6239536381, "source": "2011年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 2051968, "material": "", "question": "古希腊数学家丢番图(Diophantus)的墓志铭:过路人,这儿埋葬着丢番图,他生命的六分之一是童年;再过了一生的十二分之一后,他开始长胡须,又过了一生的七分之一后他结了婚;婚后五年他有了儿子,但可惜儿子的寿命只有父亲的一半,儿子死后,老人再活了四年就结束了余生。根据这个墓志铭,丢番图的寿命为:", "type": "单选题", "options": "A. 60\nB. 84\nC. 77\nD. 63", "choice": "B", "keypoints": "和差倍比问题;年龄问题", "most_wrong": "C", "human_count": 287763, "human_acc": 79.493194052, "source": "2017年422联考《行测》题(吉林卷甲级)第62题", "difficulty": 4, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "年龄问题"]]}, {"id": 927, "material": "", "question": "一只船沿河顺水而行的航速为30千米/小时,已知按同样的航速在该河上顺水航行3小时和逆水航行5小时的航程相等,则此船在该河上顺水漂流半小时的航程为:", "type": "单选题", "options": "A. 1千米\nB. 2千米\nC. 3千米\nD. 6千米", "choice": "C", "keypoints": "流水行船", "most_wrong": "D", "human_count": 45289, "human_acc": 68.177703195, "source": "2008年山东省公务员录用考试《行测》题第48题", "difficulty": 4, "formulas": 0, "history": [{"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1679372, "material": "", "question": "两艘船相对划行,一船从A到B顺水,一船从B到A逆水,结果所用时间相同(假设水流速、行船速恒定,快船速是慢船速2倍)。则慢船速是水流速的几倍?", "type": "单选题", "options": "A. 1\nB. 4\nC. 3\nD. 2​", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 307203, "human_acc": 65.1679833856, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第92题", "difficulty": 5, "formulas": 0}, {"id": 44089, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要几天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 93842, "human_acc": 76.8600413461, "source": "2012年上海市公务员录用考试《行测》题(A类)第60题", "difficulty": 5, "formulas": 0}, {"id": 43449, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要多少天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 73831, "human_acc": 77.2223049938, "source": "2012年上海市公务员录用考试《行测》题(B类)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 5392926, "material": "", "question": "言人人殊:众说纷纭:众口一词", "type": "单选题", "options": "A. 坐井观天:管窥蠡测:见多识广\nB. 差强人意:出其不意:称心如意\nC. 不计其数:恒河沙数:寥若晨星\nD. 瓜田李下:世外桃源:穷乡僻壤", "choice": "C", "keypoints": "语义关系-反义关系;语义关系-近义关系;语义-其他", "most_wrong": "A", "human_count": 332696, "human_acc": 53.6189193738, "source": "2022下半年省考第二十季行测模考大赛(浙江A卷)第103题", "difficulty": 6, "formulas": 0, "history": [{"id": 3019155, "material": "", "question": "开:关", "type": "单选题", "options": "A. 听:闻\nB. 念:想\nC. 推:拉\nD. 聚:合", "choice": "C", "keypoints": "语义关系-反义关系", "most_wrong": "D", "human_count": 1603035, "human_acc": 90.1217378286, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}, {"id": 50701, "material": "", "question": "观:看", "type": "单选题", "options": "A. 火:暖\nB. 水:船\nC. 近:远\nD. 叫:喊", "choice": "D", "keypoints": "语义关系-近义关系", "most_wrong": "A", "human_count": 1052197, "human_acc": 98.4512405947, "source": "2013年广东省公务员录用考试《行测》题(一)第46题", "difficulty": 5, "formulas": 0}, {"id": 2402428, "material": "", "question": "咸:淡", "type": "单选题", "options": "A. 香:臭\nB. 痛:痒\nC. 麻:辣\nD. 肥:瘦", "choice": "A", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 582694, "human_acc": 71.6681482905, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 5, "formulas": 0}, {"id": 3699004, "material": "", "question": "巨大:微小", "type": "单选题", "options": "A. 哭泣:安静\nB. 虚假:真诚\nC. 进退:得失\nD. 朋友:敌人", "choice": "B", "keypoints": "语义关系-反义关系;语义关系-近义关系;拆分思维", "most_wrong": "D", "human_count": 102437, "human_acc": 90.4145962885, "source": "2021下半年省考第九季行测模考大赛(广东乡镇卷)第56题", "difficulty": 3, "formulas": 0}, {"id": 5358502, "material": "", "question": "追本:溯源", "type": "单选题", "options": "A. 偃旗:息鼓\nB. 偷梁:换柱\nC. 循规:蹈矩\nD. 察言:观色", "choice": "C", "keypoints": "语义关系-近义关系;拆分思维", "most_wrong": "B", "human_count": 328185, "human_acc": 59.0133613663, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第88题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-反义关系"], ["判断推理", "类比推理", "语义关系", "语义关系-近义关系"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 2270750, "material": "", "question": "下列案件一审不属于中级人民法院管辖的是:", "type": "单选题", "options": "A. 重大涉外民事案件\nB. 确认发明专利权的案件\nC. 可能判处十年以上有期徒刑的案件\nD. 被告为某县级人民政府的行政许可案件", "choice": "C", "keypoints": "行政法;民事诉讼法;其他法律法规", "most_wrong": "A", "human_count": 1026, "human_acc": 16.9590643275, "source": "2015年浙江省选调村官考试 行政职业能力测验试卷(精选)第82题", "difficulty": 5, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"], ["常识判断", "法律常识", "民事诉讼法"], ["常识判断", "法律常识", "其他法律法规"]]}, {"id": 2444764, "material": "", "question": "最早对莫高窟进行保护的前辈们,大都是从事绘画、雕塑方面的艺术家,而非文物保护专家。面对破败凋敝的石窟、岌岌可危的壁画,他们意识到保护文物是____________的任务。当时国内还没有形成________的保护理念,而常书鸿等艺术家们从一开始就确立了原状保护的原则,这与西方的文物保护理念____________,之后的修缮工作都是在这一原则的指导下进行的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迫在眉睫 明晰 别无二致\nB. 刻不容缓 先进 殊途同归\nC. 举足轻重 系统 如出一辙\nD. 首当其冲 成熟 不谋而合", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 705712, "human_acc": 50.3086244814, "source": "2019年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第25题", "difficulty": 5, "formulas": 0, "history": [{"id": 4933, "material": "", "question": "即席发言,要力求说到点子上,______地表明自己的看法,褒贬______,毫不含糊。", "type": "单选题", "options": "A. 直截了当 得体\nB. 旗帜鲜明 得体\nC. 直截了当 分明\nD. 旗帜鲜明 分明", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 69167, "human_acc": 32.2147845071, "source": "2008年湖北省公务员录用考试《行测》题(A类)第2题", "difficulty": 5, "formulas": 0}, {"id": 2776120, "material": "", "question": "面对高端芯片“卡脖子”问题,有紧迫感是好事,但不能____________,捡到篮里都是菜。________产业规律才能保证产业健康有序发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 囫囵吞枣 遵循\nB. 化繁为简 敬畏\nC. 泥沙俱下 尊重\nD. 鱼龙混杂 遵守", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 2139422, "human_acc": 21.6665061872, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 16389, "material": "", "question": "一般而言,一幅大画不可能(  ),艺术家应该有一段时间收集资料、深入实地、写生采风,进而精心(  )、反复(  ),甚至数易其稿,从而成就一件佳作。", "type": "单选题", "options": "A. 一蹴而就 准备 修改\nB. 一挥而就 构思 推敲\nC. 一气呵成 设计 研讨\nD. 唾手可得 筹划 揣摩", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 389421, "human_acc": 63.2169297496, "source": "2010年贵州省公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 2049462, "material": "", "question": "人世间所有长久的关系都是________的,就像拉开木门,面对一碗拉面,对旁边的人微笑着点一点头,说一句:“我开动了。”___________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 凉薄 不过如此\nB. 冷漠 原来如此\nC. 寡淡 仅此而已\nD. 凄清 如是而已", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 1468017, "human_acc": 83.6195357411, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 163317, "material": "", "question": "如果政府的主导和介入过强,就容易________甚至打破政府与社会组织的职责边界,甚至出现政府____________的现象,挤占社会组织自主发展的空间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 淡化 颐指气使\nB. 模糊 越俎代庖\nC. 筛选 鸠占鹊巢\nD. 迷失 独断专行", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 547753, "human_acc": 89.8702517376, "source": "2013年四川公务员录用考试《行测》题(下半年)第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2633439, "material": "", "question": "甲乙两棋手对弈,每局两人获胜的概率相同,规定5局3胜,获胜者得奖金1000元。下了3局后因故停止比赛,其中甲赢了2局,乙赢了1局。那么1000元奖金按照(    )分配才算合理。", "type": "单选题", "options": "A. 甲$\\frac{2000}{3}$元,乙$\\frac{1000}{3}$元\nB. 甲$\\frac{3000}{4}$元,乙$\\frac{1000}{4}$元\nC. 甲$\\frac{4000}{5}$元,乙$\\frac{1000}{5}$元\nD. 甲$\\frac{5000}{6}$元,乙$\\frac{1000}{6}$元", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "A", "human_count": 6770, "human_acc": 50.576070901, "source": "2016年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第66题", "difficulty": 4, "formulas": 835, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 2049632, "material": "", "question": "小张的孩子出生的月份乘以29,出生的日期乘以24,所得的两个乘积加起来刚好等于900。问孩子出生在哪一个季度?", "type": "单选题", "options": "A. 第一季度\nB. 第二季度\nC. 第三季度\nD. 第四季度", "choice": "D", "keypoints": "普通不定方程;年龄问题", "most_wrong": "C", "human_count": 661433, "human_acc": 42.5559353706, "source": "2017年422联考《行测》题(山东卷)第51题", "difficulty": 6, "formulas": 0, "history": [{"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 18309, "material": "", "question": "一个质数的3倍与另一个质数的2倍之和等于20,那么这两个质数的和是:", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "A", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "C", "human_count": 200614, "human_acc": 72.4650323507, "source": "2011年吉林省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "年龄问题"]]}, {"id": 12285, "material": "", "question": "诽谤罪是指故意捏造并散布某种事实,损坏他人人格,破坏他人名誉,情节严重的行为。\n\n下列行为构成诽谤罪的是:", "type": "单选题", "options": "A. 甲因公司经理对其进行批评而心怀不满,认为这是由于自己在言行方面得罪了经理的缘故,于是多次在同事面前表述这种想法,给经理的声誉造成了很坏的影响。\nB. 乙与邻居王某素来不睦,在王某想要卖房搬家之际,乙多次向周围住户宣称王某家的房屋风水不好,致使王某因房价下跌遭受严重的经济损失。\nC. 丙听说同学小张在校外参与打架斗殴,在消息未经证实的情况下,丙到处向同学诉说小张因带头聚众斗殴而被拘留,致使小张因压力过大而自杀。\nD. 丁为某公司财务部门主管领导,因一笔巨款不翼而飞,认为是会计小刘私吞,因而多次找小刘谈话,并在部门会议上表示小刘有作案嫌疑,致使小刘声誉受损。", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 38086, "human_acc": 63.1754450454, "source": "2009年913联考《行测》题(辽宁/海南/重庆/福建)第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 53017, "material": "", "question": "有的工作,难度极大,却能够马到成功;有的事情,举手之劳,却办得一塌糊涂。一个重要原因在于,干事情的人是临事而惧、周密_____________,还是临事不备、_____________上阵。态度不同,结果迥异。 \n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 筹措 仓忙\nB. 筹备 轻装\nC. 策划 赤膊\nD. 筹划 仓促", "choice": "D", "keypoints": "关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 625234, "human_acc": 71.9946452048, "source": "2013年921联考《行测》题(河南卷)第4题", "difficulty": 4, "formulas": 0, "history": [{"id": 2981, "material": "", "question": "潮州地区在几年的发展过程中,既造就了一批有作为的弄潮儿,也________了一些意志薄弱者。\n\n上面划线处填入词语,最恰当的是:", "type": "单选题", "options": "A. 暴露\nB. 出现\nC. 清除\nD. 淘汰", "choice": "D", "keypoints": "关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 50341, "human_acc": 72.3167994279, "source": "2008年贵州省公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 16769, "material": "", "question": "中华文明之所以绵延数千年而不绝,中国社会之所以会有超________结构的历史,就是因为它一直有一套________的,为多数民众所接受的主流价值观念,即所谓的儒家价值观。", "type": "单选题", "options": "A. 稳定 完整\nB. 平衡 悠久\nC. 严谨 通俗\nD. 系统 平和", "choice": "A", "keypoints": "关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 247328, "human_acc": 64.6570545996, "source": "2010年湖北省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 8789, "material": "", "question": "社会生活的变化多样,使得任何一种规则体系都不能够不加变化地(    );反过来,文明社会的错综复杂,也不能仅靠抽象原则与模糊观念来(    )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 实施 维护\nB. 调适 继续\nC. 应用 维持\nD. 适用 维系", "choice": "D", "keypoints": "关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 56224, "human_acc": 56.125498008, "source": "2009年浙江省公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0}, {"id": 1687266, "material": "", "question": "党员干部要始终严于律己,做到慎独、慎微、慎交友,才能经受住各种______与考验;清廉、清明、清正,既是对领导干部自律的要求,也是他律的______方向。\n\n依次填入画横线处最恰当的一项是(    )。", "type": "单选题", "options": "A. 诱惑 着力\nB. 挫折 着手\nC. 奉承 着眼\nD. 攻讦 着意", "choice": "A", "keypoints": "关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 433136, "human_acc": 90.3896235824, "source": "2015年江苏省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}, {"id": 1688526, "material": "", "question": "网络虚拟社会是现实社会在计算机网络上的________和延伸,现实生活中的违法犯罪以及社会治安问题已经开始向网络虚拟社会________,大大增加了政府管理的复杂性。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 映衬 蔓生\nB. 映照 蔓引\nC. 映射 蔓延\nD. 映带 蔓连", "choice": "C", "keypoints": "关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 284954, "human_acc": 95.867052226, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 51961, "material": "", "question": "1970年,伦敦的一本消费者杂志突发奇想,测试一下钻石的投资价值,它花了400镑在一家珠宝商家买了两颗1.5克拉的钻石。1978年,当杂志的主编戴夫·瓦茨打算出售这两颗钻石时,大多数商店都拒付现金,瓦茨收到的最高的报价是500镑,如果考虑到当时的通货膨胀率,这个报价相当于1970年的167镑。\n\n上述文字的主要观点是:", "type": "单选题", "options": "A. 钻石的价值相对稳定\nB. 1970年至1978年间英国的通货膨胀率较高\nC. 钻石并不保值\nD. 通货膨胀是影响钻石保值的最主要原因", "choice": "C", "keypoints": "主题词", "most_wrong": "D", "human_count": 288294, "human_acc": 70.4829098073, "source": "2013年陕西省公务员录用考试《行测》题第64题", "difficulty": 5, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 1758812, "material": "", "question": "下列四句话中,主题思想不同于其他三句的是(  )。", "type": "单选题", "options": "A. 法不察民情而立之,则不威\nB. 公则四通八达,私则一偏而隅\nC. 一言得而天下服,一言定而天下听,公之谓也\nD. 吏不畏吾严而畏吾廉,民不服吾能而服吾公;公则民不敢慢,廉则吏不敢欺;公生明,廉生威", "choice": "A", "keypoints": "主题词", "most_wrong": "C", "human_count": 263038, "human_acc": 62.7939689322, "source": "2016年上海市公务员录用考试《行测》题(B类)第61题", "difficulty": 5, "formulas": 0}, {"id": 2270526, "material": "", "question": "文化中心的嬗变和逆转是一个发人深省的话题,成为一个难解的文化之谜。\n\n下列理解最恰当的一项是(  )。", "type": "单选题", "options": "A. 发人深省的话题就会成为文化之谜\nB. 文化中心的嬗变和逆转往往成为一个难解的文化之谜\nC. 表明了关于文化中心的建设问题\nD. 说明了当前文化的困惑", "choice": "B", "keypoints": "主题词", "most_wrong": "D", "human_count": 1469, "human_acc": 79.2375765827, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第24题", "difficulty": 5, "formulas": 0}, {"id": 2166008, "material": "", "question": "文化中心的嬗变和逆转是一个发人深省的话题,成为一个难解的文化之谜。\n\n下列理解最恰当的一项是:", "type": "单选题", "options": "A. 发人深省的话题就会变成为文化之谜。\nB. 文化中心的嬗变和逆转往往成为一个难解的文化之谜。\nC. 表明了关于文化中心的建设问题。\nD. 说明了当前文化的困惑。", "choice": "B", "keypoints": "主题词", "most_wrong": "D", "human_count": 957679, "human_acc": 60.6577986987, "source": "天津市选调2018年应届优秀大学毕业生到基层培养锻炼考试题(网友回忆版)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"]]}, {"id": 5037, "material": "", "question": "从心理学的角度来说,______地表达自己想法的人更加具有领导者的______。", "type": "单选题", "options": "A. 无所顾忌 气质\nB. 肆无忌惮 潜质\nC. 无所顾忌 潜质\nD. 肆无忌惮 气质", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 70353, "human_acc": 78.9461714497, "source": "2008年湖北省公务员录用考试《行测》题(A类)第8题", "difficulty": 5, "formulas": 0, "history": [{"id": 2579817, "material": "", "question": "天下熙熙攘攘,为稀土而来,为稀土而往。各种黑科技产品________离不开的稀土一直都是“香饽饽”,各国都为寻找掌握更多稀土资源而____________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 根本 挖空心思\nB. 完全 殚思竭虑\nC. 须臾 绞尽脑汁\nD. 片刻 尽心竭力", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 1398721, "human_acc": 43.1642193118, "source": "2020年浙江公务员考试《行测》(B类)试题(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 3879, "material": "", "question": "都说眼下属于图像时代。且不说电视、电影、光盘等_________着文化消费和阅读走向,单单老照片、老漫画、老插图等等历史陈迹的________,便足以表明人们已不再满足于在文字里感受生活,感受历史了。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 引领 席卷而来\nB. 引导 沉渣泛起\nC. 主导 异军突起\nD. 引领 纷至沓来", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 89375, "human_acc": 19.7303496503, "source": "2008年浙江省公务员录用考试《行测》题第52题", "difficulty": 7, "formulas": 0}, {"id": 12479, "material": "", "question": "依次填入下列各横线处的词语,最恰当的一组是:\n\n①杭州要解决交通拥堵问题难度非常大,但各有关部门仍要______为之。\n\n②要落实西部大开发战略,就必须加强东部沿海经济发达地区和西部地区的______。\n\n③形势发展非常快,______使许多人出乎意料。", "type": "单选题", "options": "A. 勉力 沟通 以至\nB. 勉励 沟通 以致\nC. 勉力 勾通 以致\nD. 勉励 勾通 以至", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 120324, "human_acc": 52.8872045477, "source": "2010年黑龙江省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2262765, "material": "", "question": "经济全球化的背后是不同文化的冲撞和交融,是不同思想的__________与扬弃,是不同文明的竞争和共存。从历史进化的角度来看,交融、扬弃、共存是大趋势,一个民族、一个国家总是在坚持自我__________的同时,向其他民族、其他国家吸取异质文化的养分,从而与时俱进,发展壮大。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 激荡 特质\nB. 交流 特点\nC. 较量 形象\nD. 冲突 品质", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 25327, "human_acc": 56.0469064635, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 8195, "material": "", "question": "人生是一个容器,可这个容器的容量实在是非常________。愁苦和畏惧多了,欢乐与________就少了。", "type": "单选题", "options": "A. 庞大 胆量\nB. 可观 轻松\nC. 有限 勇气\nD. 莫测 勇敢", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 73027, "human_acc": 95.9179481562, "source": "2009年广东省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 2270570, "material": "", "question": "千万年来,狗一直是人类最忠诚的朋友。但无论如何,爱狗与吃狗,这是且只是一个________之争,不该是________之争。这里不存在道德水准的高下,不能有丝毫强制。", "type": "单选题", "options": "A. 制度 文化\nB. 文化 制度\nC. 风尚 观念\nD. 观念 风尚", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 9226, "human_acc": 31.7363971385, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第18题", "difficulty": 6, "formulas": 0}, {"id": 9643, "material": "", "question": "每一届《感动中国》的感动点,实际上都和当年中国特定的大背景相关联,触动了中国公众最敏感的神经,代表了当年最能________公众________,最能感动中国的力量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 引起 共鸣\nB. 打动 心灵\nC. 拨动 心弦\nD. 震撼 内心", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 57204, "human_acc": 35.7929515419, "source": "2009年山东省公务员录用考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 8209, "material": "", "question": "究竟国家与个人对个人的医疗健康应分别承担多大比例,是一个________选择问题,而不是政府可以任意决定的事项。要让民众有机会参与这一重大财政决策,透过人大的审议机制,将自己的意愿________到长期的财政安排中。", "type": "单选题", "options": "A. 公共 体现\nB. 公众 融合\nC. 大众 反映\nD. 集体 表达", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 71791, "human_acc": 32.3703528297, "source": "2009年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2758015, "material": "", "question": "区块链是数字金融技术体系的核心技术,但不能被________,不是所有项目都需要区块链,也不是所有数据都需要上链,不能“为区块链而区块链”,要________务实看待和推动区块链技术创新发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 泛化 理性\nB. 异化 客观\nC. 神化 冷静\nD. 孵化 清醒", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 176718, "human_acc": 85.4270645888, "source": "2021上半年省考第四季行测模考大赛(广东卷)第4题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3788447, "material": "", "question": "“新文科”建设要________媒体融合与智能化、大数据的发展,还要主动引导师生接纳新的思维、学习和生活方式。“新文科”建设有效促进文科内部及文科与其他学科门类的深度融合,切实促进各学科门类发展和研究的深化,________出我国高等教育的美好未来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 响应 描摹\nB. 满足 勾勒\nC. 迎合 描绘\nD. 顺应 擘画", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 123092, "human_acc": 61.2809930783, "source": "2021下半年省考第十四季行测模考大赛(四川卷)第22题", "difficulty": 6, "formulas": 0, "history": [{"id": 2660977, "material": "", "question": "通俗文学是高度重视读者的文学,但这不意味着一味________读者,为通俗而通俗,为娱乐而娱乐。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 纵容\nB. 迁就\nC. 顾及\nD. 满足", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 40801, "human_acc": 83.3876620671, "source": "2020年下半年省考第九季行测模考大赛(天津卷)第11题", "difficulty": 4, "formulas": 0}, {"id": 2563317, "material": "", "question": "从长远而言,即使台积电拿到许可证,暂时维持为华为代工,我们也必须丢掉________,下决心建立起自己的整个芯片产业链。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 憧憬\nB. 期盼\nC. 妄想\nD. 幻想", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 88116, "human_acc": 59.8393027373, "source": "2020年上半年省考第三十一季行测模考大赛(湖南卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 1661, "material": "", "question": "美国国家情报局局长上周在一次公共会议上________,美国年度情报总预算为440多亿美元。多年来,美国政府对这个数字一直采取守口如瓶的态度,外人对此不得而知。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 揭露\nB. 披露\nC. 指出\nD. 表示", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 28737, "human_acc": 75.8395100393, "source": "2008年黑龙江省公务员录用考试《行测》题第43题", "difficulty": 5, "formulas": 0}, {"id": 3692226, "material": "", "question": "当慈善成为一种生活方式,我们在行善时,就不会生出道德上的__________,更不会苛求受助者有所回报;就能认识到,行善不是单纯的给予,而是在帮助别人的同时收获内心的________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 满足感 从容\nB. 自豪感 涤荡\nC. 负罪感 静谧\nD. 优越感 丰盈", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 109183, "human_acc": 89.5725525036, "source": "2021下半年省考第九季行测模考大赛(广东乡镇卷)第4题", "difficulty": 3, "formulas": 0}, {"id": 2261914, "material": "", "question": "文化类综艺节目要走出同质化、低收视的(  ),首先还是要在内容和形式创新上有所突破,让人们印象中“高冷”的文化真正具有观赏(  ),让观众产生共鸣和参与感。比如,《国家宝藏》就用大众喜闻乐见的形式解读国宝,做到了既有史有据,又生动有趣。", "type": "单选题", "options": "A. 光环 乐趣\nB. 怪圈 价值\nC. 窘境 价值\nD. 困境 乐趣", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 229170, "human_acc": 49.4986254745, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第33题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2047702, "material": "", "question": "实现中华民族伟大复兴的中国梦,不是当代青年_______的额外任务,而是其_______的神圣使命。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无足轻重 责无旁贷\nB. 坚辞不受 当仁不让\nC. 理所当然 义无反顾\nD. 可有可无 义不容辞", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 1265730, "human_acc": 61.6967283702, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第9题", "difficulty": 5, "formulas": 0, "history": [{"id": 5701804, "material": "", "question": "行政审批制度还是有不尽如人意之处,必须以____________的锐气继续全面推进改革,这已成为两会代表委员的共识。", "type": "单选题", "options": "A. 直捣黄龙\nB. 锲而不舍\nC. 分而治之\nD. 革故鼎新", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 127, "human_acc": 47.2440944882, "source": "2016年上海市行政执法类考试《行测》试题(网友回忆版)第2题", "difficulty": 5, "formulas": 0}, {"id": 21595, "material": "", "question": "中国的一年四季,季季都令人神往,春日____________,夏天绿荫满枝,秋时____________,冬季银装素裹。", "type": "单选题", "options": "A. 姹紫嫣红 硕果累累\nB. 风光旖旎 充实丰盈\nC. 生机勃勃 琳琅满目\nD. 婀娜多姿 五谷丰登", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 332285, "human_acc": 80.1763546353, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第1题", "difficulty": 5, "formulas": 0}, {"id": 1324133, "material": "", "question": "只有从根本上解决农民问题,调动农民生产积极性,培养一代新型职业农民,农业问题才能_________,国民经济的基础才会更加牢固。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迎刃而解\nB. 水到渠成\nC. 立竿见影\nD. 知难而进", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 955898, "human_acc": 95.1280366734, "source": "2015年广东省公务员录用考试《行测》题(县级以上)第4题", "difficulty": 5, "formulas": 0}, {"id": 2610520, "material": "", "question": "和新鲜食物相比,速冻食品在口感、风味上会差很多,在储存过程中食物所含脂肪会缓慢氧化,维生素也会缓慢分解,营养价值将____________。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 不尽人意\nB. 差强人意\nC. 一落千丈\nD. 大打折扣", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 58189, "human_acc": 97.5699874547, "source": "2021年国考第十一季行测模考大赛(地市级)第23题", "difficulty": 3, "formulas": 0}, {"id": 2136506, "material": "", "question": "在上海工作和生活的外国人,已不满足仅仅看灯会、逛庙会,从“________________”到“身临其境”,他们中越来越多人开始与中国朋友一起聚会,体会春节时那浓浓的年味。", "type": "单选题", "options": "A. 浅尝辄止\nB. 走马观花\nC. 入境问俗\nD. 浮光掠影", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 814413, "human_acc": 17.9400377941, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第2题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2253326, "material": "", "question": "6个小朋友围成一圈做游戏,小华和小明需要挨在一起,问有多少种安排方法?", "type": "单选题", "options": "A. 720\nB. 180\nC. 560\nD. 480\nE. 360\nF. 240\nG. 120\nH. 48", "choice": "H", "keypoints": "环形排列问题;相邻问题", "most_wrong": "F", "human_count": 172478, "human_acc": 29.3364950892, "source": "2016年423联考《行测》题(陕西卷)第68题", "difficulty": 7, "formulas": 0, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 8099, "material": "", "question": "3名学生和2名老师站成一排照相,2名老师必须站在一起且不在边上的不同排法共有:", "type": "单选题", "options": "A. 12种\nB. 24种\nC. 36种\nD. 48种", "choice": "B", "keypoints": "相邻问题", "most_wrong": "A", "human_count": 142697, "human_acc": 66.8682593187, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第8题", "difficulty": 5, "formulas": 0}, {"id": 25299, "material": "", "question": "有5对夫妇参加一场婚宴,他们被安排在一张10个座位的圆桌就餐,但是婚礼操办者并不知道他们彼此之间的关系,只是随机安排座位。问5对夫妇恰好都被安排在一起相邻而坐的概率是多少:", "type": "单选题", "options": "A. 在1‰到5‰之间\nB. 在5‰到1%之间\nC. 超过1%\nD. 不超过1‰", "choice": "A", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 510557, "human_acc": 28.9239007594, "source": "2012年国家公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "排列组合问题", "相邻问题"]]}, {"id": 21659, "material": "", "question": "明代工艺品的名字大都先强调年号,然后再强调东西本身。但景泰蓝不是在景泰年间出现,而是在元代就出现了。到了景泰年间,皇家的重视使它_______,因此有了今天这样一个通俗易懂且带有文学色彩的名字——景泰蓝。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 声名鹊起\nB. 如日中天\nC. 声名大噪\nD. 享誉中外", "choice": "A", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 416187, "human_acc": 16.586774695, "source": "2010年国家公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 18977, "material": "", "question": "我国还处于社会主义初级阶段,民主建设的起点比较低,社会主义民主建设受到几个条件的制约,因此绝不是______的事情。", "type": "单选题", "options": "A. 一朝一夕\nB. 操之过急\nC. 一蹴而就\nD. 轻而易举", "choice": "C", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 214759, "human_acc": 58.3765988853, "source": "2011年内蒙古自治区公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 24257, "material": "", "question": "对于如何维持在孩子面前的权威性有很多不同观点,这使得父母有点儿____________。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独断专行\nB. 不知所措\nC. 无所适从\nD. 顾此失彼", "choice": "C", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 57383, "human_acc": 55.5931199136, "source": "2009年426联考《行测》题(天津/陕西/湖北)第27题", "difficulty": 5, "formulas": 0}, {"id": 16687, "material": "", "question": "一旦我们把某种东西认为是____________的,对于那些熟悉的事物,我们就很难看清它们的真面目,正所谓“只缘身在此山中”。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 理所当然\nB. 平淡无奇\nC. 司空见惯\nD. 由来已久", "choice": "A", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 363473, "human_acc": 43.0133737582, "source": "2010年湖北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 24211, "material": "", "question": "煤炭与石油、天然气相比价格低廉,以同等发热量计算,目前石油价格是煤炭的5倍,天然气价格是煤炭的3倍,所以,在石油价格居高不下的背景下,煤炭价格必然____________。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 水涨船高\nB. 相形见绌\nC. 如影随形\nD. 随波逐流", "choice": "A", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 57585, "human_acc": 88.9155161935, "source": "2009年426联考《行测》题(天津/陕西/湖北)第22题", "difficulty": 5, "formulas": 0}, {"id": 21187, "material": "", "question": "好的小说应该是可读性、艺术性和思想性的完美结合,比如大仲马的小说,之所以流行百年而不衰,就是因为有着____________的故事情节和高超的写作技巧以及深刻的思想内容。\n\n 填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 完美无瑕\nB. 津津有味\nC. 引人入胜\nD. 意犹未尽", "choice": "C", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 743923, "human_acc": 82.7666304174, "source": "2012年安徽省公务员录用考试《行测》题第33题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2776095, "material": "", "question": "一块长方形土地的周长为260米,面积为3600平方米。将该土地划分成边长10米的小正方形土地。现从中选取3块,使得任意两块既不同行也不同列。问有多少种不同的选取方式?", "type": "单选题", "options": "A. 不到200种\nB. 200—400种\nC. 400—800种\nD. 超过800种", "choice": "D", "keypoints": "平面几何;基础排列组合", "most_wrong": "B", "human_count": 786126, "human_acc": 25.1754807753, "source": "2021年浙江省公务员录用考试《行测》题(B类)(网友回忆版)第43题", "difficulty": 5, "formulas": 0, "history": [{"id": 5483994, "material": "", "question": "现有6根钢筋,长度分别为4尺、7尺、8尺、9尺、10尺和12尺。现每次抽取3根首尾相连组成一个三角形,则一共能组成多少个不同的三角形?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "平面几何;基础排列组合", "most_wrong": "B", "human_count": 146353, "human_acc": 49.3498595861, "source": "2023年北京市公务员录用考试《行测》题(网友回忆版)第76题", "difficulty": 4, "formulas": 0}, {"id": 2387435, "material": "", "question": "有一块圆形花圃,花匠计划在圆形花圃中用花盆摆设图案进行装饰。现在花匠在圆形上设七个等分点,构思以这些点中的三个顶点连成一个等腰三角形,并在三角形内摆放花盆。问共有多少种不同的构图方案?", "type": "单选题", "options": "A. 21\nB. 28\nC. 35\nD. 42", "choice": "A", "keypoints": "平面几何;基础排列组合", "most_wrong": "C", "human_count": 21985, "human_acc": 18.2988401183, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第64题", "difficulty": 4, "formulas": 0}, {"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 7325, "material": "", "question": "一个四边形去掉一个角,还剩几个角?下列不可能的是:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "D", "keypoints": "平面几何", "most_wrong": "B", "human_count": 18944, "human_acc": 65.5563766892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第9题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 5461853, "material": "", "question": "一道残阳铺水中:半江瑟瑟半江红", "type": "单选题", "options": "A. 少年易老学难成:一寸光阴不可轻\nB. 日出江花红胜火:春来江水绿如蓝\nC. 兰溪三日桃花雨:半夜鲤鱼来上滩\nD. 乡村四月闲人少:才了蚕桑又插田", "choice": "C", "keypoints": "拆分思维;语义-其他;逻辑关系-对应关系", "most_wrong": "B", "human_count": 382415, "human_acc": 52.9997515788, "source": "2023上半年省考第六季行测模考大赛(广东县级卷)第53题", "difficulty": 6, "formulas": 0, "history": [{"id": 5411624, "material": "", "question": "酸:奶", "type": "单选题", "options": "A. 青:草\nB. 蜂:蜜\nC. 蔗:糖\nD. 徽:墨", "choice": "A", "keypoints": "拆分思维;逻辑关系-对应关系", "most_wrong": "C", "human_count": 302599, "human_acc": 83.5128338164, "source": "2023年国考第四十八季行测模考大赛(副省级)第97题", "difficulty": 3, "formulas": 0}, {"id": 2402428, "material": "", "question": "咸:淡", "type": "单选题", "options": "A. 香:臭\nB. 痛:痒\nC. 麻:辣\nD. 肥:瘦", "choice": "A", "keypoints": "语义关系-反义关系;语义-其他", "most_wrong": "D", "human_count": 582694, "human_acc": 71.6681482905, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第86题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 48973, "material": "", "question": "嫦娥奔月", "type": "单选题", "options": "A. 后羿射日\nB. 鸡鸣起舞\nC. 欢呼雀跃\nD. 海纳百川", "choice": "A", "keypoints": "拆分思维", "most_wrong": "B", "human_count": 492588, "human_acc": 98.5695956865, "source": "2013年江苏省公务员录用考试《行测》题(B类)第96题", "difficulty": 5, "formulas": 0}, {"id": 15387, "material": "", "question": "选择:抉择", "type": "单选题", "options": "A. 爱好:嗜好\nB. 决定:决策\nC. 按时:准时\nD. 参加:参与", "choice": "B", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 217958, "human_acc": 41.2854770185, "source": "2010年深圳市公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "类比推理", "拆分思维"], ["判断推理", "类比推理", "语义关系", "语义-其他"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-对应关系"]]}, {"id": 541185, "material": "", "question": "工厂需要加工一批零件,甲单干工作需要96个小时完成,乙需要90个小时、丙需要80个小时。现在按照第一天甲乙合作,第二天甲丙合作,第三天乙丙合作的顺序轮班工作,每天工作8小时,当全部零件完成时,甲工作了多少小时:", "type": "单选题", "options": "A. 16\nB. 24\nC. 44\nD. 32", "choice": "D", "keypoints": "周期余数问题;给完工时间型", "most_wrong": "B", "human_count": 442283, "human_acc": 35.0800279459, "source": "2014年412联考《行测》题(重庆卷)第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 2262556, "material": "", "question": "一项工程,甲单独完成需要60天,乙单独完成需要30天,丙单独完成需要15天,如果按照甲、乙、丙的顺序交替进行,那么需要多少天才能完成?", "type": "单选题", "options": "A. 25\nB. 26\nC. 27\nD. 28", "choice": "C", "keypoints": "周期余数问题;给完工时间型", "most_wrong": "B", "human_count": 53971, "human_acc": 68.7813825944, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第56题", "difficulty": 4, "formulas": 0}, {"id": 2388057, "material": "", "question": "甲、乙两队单独完成某项工程分别需要10天、17天。甲队与乙队按天轮流做这项工程,甲队先做,最后是哪队第几天完工?", "type": "单选题", "options": "A. 甲队第11天\nB. 甲队第13天\nC. 乙队第12天\nD. 乙队第14天", "choice": "B", "keypoints": "周期余数问题;给完工时间型", "most_wrong": "C", "human_count": 735965, "human_acc": 76.2863723139, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 2255653, "material": "", "question": "某项工作,甲单独做需10天完成,乙单独做需6天完成。如果甲先做2天,然后乙接着甲做2天,再由甲接替乙做2天……两人如此交替工作,那么,完成此项工作共用多少天?", "type": "单选题", "options": "A. 6\nB. 7\nC. 8\nD. 9", "choice": "C", "keypoints": "周期余数问题;给完工时间型", "most_wrong": "B", "human_count": 3897, "human_acc": 76.7770079548, "source": "2014年江西省法检系统招录考试《行测》题第66题", "difficulty": 4, "formulas": 0}, {"id": 5380461, "material": "", "question": "现有一个粮仓,甲填满它需要5天,乙全部运出需要8天。若按照甲、乙、甲、乙······的顺序,每人工作一天,则该粮仓多少天才能填满?(不足一天按一天计算)", "type": "单选题", "options": "A. 23\nB. 22\nC. 27\nD. 26", "choice": "A", "keypoints": "周期余数问题;给完工时间型", "most_wrong": "C", "human_count": 343948, "human_acc": 14.024503704, "source": "2022下半年省考第十九季行测模考大赛(深圳卷)第53题", "difficulty": 7, "formulas": 0}, {"id": 10127, "material": "", "question": "一条隧道,甲用20天时间可以挖完,乙用10天时间可以挖完,现在按照甲挖完一天,乙再接替一天,然后甲再接替乙挖一天······如此循环,挖完整个隧道需要多少天?", "type": "单选题", "options": "A. 16\nB. 15\nC. 14\nD. 13", "choice": "C", "keypoints": "周期余数问题;给完工时间型", "most_wrong": "B", "human_count": 20127, "human_acc": 72.4350375118, "source": "2009年甘肃省公务员录用考试《行测》题第11题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "工程问题", "给完工时间型"]]}, {"id": 2047670, "material": "", "question": "一个人的成长成才,并不完全由其起点决定,而是看在这个过程之中个人所付出的努力。如果一味________“出生在农村,注定样样落后”,不仅是对一些客观事实选择性地无视,而且________了个人奋斗的价值。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鼓吹 漠视\nB. 宣扬 肯定\nC. 渲染 抹杀\nD. 鼓励 否定", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 1433391, "human_acc": 61.8698596545, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第4题", "difficulty": 4, "formulas": 0, "history": [{"id": 1681, "material": "", "question": "地下短信群发公司是目前垃圾短信泛滥的主要________,而目前的监管措施还不能有效地约束他们的行为。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 来源\nB. 源泉\nC. 祸根\nD. 根源", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 28354, "human_acc": 58.150525499, "source": "2008年黑龙江省公务员录用考试《行测》题第44题", "difficulty": 5, "formulas": 0}, {"id": 8711, "material": "", "question": "从下列四个选项中选择最合适的词语填入横线中:\n\n他_________在色彩与线条的世界中,一个星期没有离开过设计室,终于出色的完成了任务。", "type": "单选题", "options": "A. 沉溺\nB. 沉沦\nC. 沉陷\nD. 沉浸", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 51806, "human_acc": 89.5571941474, "source": "2009年河南省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 5651783, "material": "", "question": "对于贷款买房的购房者,房贷利率是其购房决策中的重要考量因素。还贷年限多长、房贷利率多高,一定程度上________着购房者的购买意愿。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 支配\nB. 控制\nC. 影响\nD. 削弱", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;实词填空", "most_wrong": "D", "human_count": 5001, "human_acc": 82.0035992801, "source": "2023下半年省考第十二季行测模考大赛(陕西卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 3010014, "material": "", "question": "十年前出现在纽约时代广场的面孔是姚明、袁隆平和杨利伟,十年之后出现在全球互联网用户面前的是李子柒、办公室小野和滇西小哥。“主角”变化的背后,________了数字媒体兴起所带来的对外传播话语方式的转型。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 吻合\nB. 暗合\nC. 迎合\nD. 配合", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;实词填空", "most_wrong": "C", "human_count": 357638, "human_acc": 64.1875304078, "source": "2021年上半年省考终极行测模考大赛(四川卷)第18题", "difficulty": 4, "formulas": 0}, {"id": 1688548, "material": "", "question": "在一个多元化的时代,不能说服对方实属________,真正能相互理解更是________。不能理解他人的行为就得________他人的选择,只要他人没妨碍你的自由。这就是陌生人社会的交往规则。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 必然 偶然 尊重\nB. 常态 意外 包容\nC. 遗憾 满意 忍受\nD. 寻常 稀罕 容忍", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 255111, "human_acc": 34.2047187303, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第34题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2718316, "material": "", "question": "风景名胜________能吸引眼球,________持久打动人心的是这个地方的文化气息和生活味道,这也是“微旅行”的核心吸引力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如果 那么\nB. 固然 但\nC. 因为 所以\nD. 只要 且", "choice": "B", "keypoints": "关联关系-转折关系", "most_wrong": "A", "human_count": 13057, "human_acc": 92.6476219652, "source": "2020年下半年省考第十五季行测模考大赛(广东卷)第5题", "difficulty": 3, "formulas": 0, "history": [{"id": 5665264, "material": "", "question": "一个人要在学习上有所成效,________要有一定的客观条件,________,起决定作用的还是个人的勤勉努力。", "type": "单选题", "options": "A. 虽然 只是\nB. 即使 只是\nC. 要么 要么\nD. 固然 但是", "choice": "D", "keypoints": "关联关系-转折关系", "most_wrong": "A", "human_count": 272, "human_acc": 97.7941176471, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第4题", "difficulty": 4, "formulas": 0}, {"id": 16445, "material": "", "question": "抗生素拯救了无数的生命,但今天,________滥用严重,它________成为致命的药品。\n\n填入横线上最恰当的一项是:", "type": "单选题", "options": "A. 因为 所以\nB. 由于 竟\nC. 因为 也\nD. 由于 又", "choice": "B", "keypoints": "关联关系-转折关系", "most_wrong": "D", "human_count": 53963, "human_acc": 78.2777088005, "source": "2009年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2701812, "material": "", "question": "工业互联网________可以帮助单个企业提质增效,________可以带动整个产业链的智能化升级,从而提高制造业竞争力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如果 那么\nB. 虽然 甚至\nC. 不仅 更\nD. 即使 也", "choice": "C", "keypoints": "关联关系-转折关系", "most_wrong": "A", "human_count": 10556, "human_acc": 97.3285335354, "source": "2020年下半年省考第十四季行测模考大赛(广东卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 5444930, "material": "", "question": "当一幅幅表现中国历史和文化的“画卷”在电视屏幕上展开,________金发碧眼的“老外们”对这些似乎有些陌生,________依然看得津津有味。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽管 但\nB. 即便 也\nC. 纵使 甚至\nD. 无论 都", "choice": "A", "keypoints": "关联关系-转折关系", "most_wrong": "B", "human_count": 42415, "human_acc": 64.3027230932, "source": "2023上半年省考第四季行测模考大赛(广东县级卷)第5题", "difficulty": 4, "formulas": 0}, {"id": 2731007, "material": "", "question": "多年以后,________我已身处另一座城市。________,每当回忆起那个生活多年之地,________能想起萍水相逢之人带我见识瓷器之美的那个遥远的下午。", "type": "单选题", "options": "A. 尽管,甚至,总是\nB. 哪怕,只要,就\nC. 也许,可是,还是\nD. 虽然,但是,仍然", "choice": "C", "keypoints": "关联关系-转折关系", "most_wrong": "D", "human_count": 463901, "human_acc": 32.6091127202, "source": "2021年上海市公务员录用考试《行测》题(A类)(网友回忆版)第3题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"]]}, {"id": 2679188, "material": "", "question": "食物,恰似存贮于街头巷尾的旧时光,____________却不可或缺。贴近生活的叙述是美食纪录片近年来的创作趋势,这在《舌尖上的中国》《早餐中国》《人生一串》等中均有体现。这种生活化叙事来自于对焦“一箪食一瓢饮”的片刻琐事,____________地将影像、美食与人生联系在一起。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 平淡无奇 以小见大\nB. 随处可见 不偏不倚\nC. 微不足道 触类旁通\nD. 一文不名 情真意切", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;成语填空", "most_wrong": "C", "human_count": 173244, "human_acc": 71.9655514765, "source": "2021年国考第二十一季行测模考大赛(副省级)第27题", "difficulty": 4, "formulas": 0, "history": [{"id": 16803, "material": "", "question": "在全球金融危机的影响下,国内许多地方企业成批停产,倒闭,但国家高新区却____________,依然保持着较高的增长率。", "type": "单选题", "options": "A. 迎难而上\nB. 因势利导\nC. 另辟蹊径\nD. 逆风飞扬", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 299843, "human_acc": 55.8358874478, "source": "2010年湖北省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 3009999, "material": "", "question": "在众多仿生机器人中,爬行仿生机器人体形虽略显笨重,运输能力和移动速度却____________。其具有稳定的平衡系统,能在负重情况下行走、奔跑,还可跨越一定高度的障碍物。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 蔚为壮观\nB. 令人咋舌\nC. 引人入胜\nD. 叹为观止", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 360040, "human_acc": 75.0533274081, "source": "2022年国考第六季行测模考大赛(副省级)第22题", "difficulty": 4, "formulas": 0}, {"id": 2036554, "material": "", "question": "物质消费__________,但违背公序良俗和高尚生活的畸形消费则应抵制,树立科学、文明的消费观__________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无可厚非 迫在眉睫\nB. 无可厚非 急不可待\nC. 无可置疑 急不可待\nD. 无可置疑 迫在眉睫", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 31471, "human_acc": 79.3841949731, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第20题", "difficulty": 5, "formulas": 0}, {"id": 19879, "material": "", "question": "药品招标制度本应是对平抑药价起到____________的作用,但在“芦笋片事件”中,我们看到,它对推高药价起到了____________的作用。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 约束监管 推波助澜\nB. 控制打压 助纣为虐\nC. 调控监督 出尔反尔\nD. 监督操纵 适得其反", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 542872, "human_acc": 87.9682503426, "source": "2012年江苏省公务员录用考试《行测》题(A类)第14题", "difficulty": 5, "formulas": 0}, {"id": 2387706, "material": "", "question": "历史有改朝换代,权力有交接更替,但夫子庙的繁华却是超越时代的。中国人素有“北有天桥,南有夫子庙”之说,在北京的天桥已然没落的今日,夫子庙却是一年比一年____________,秦淮河畔的盛景较之当年也____________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 渐入佳境 不遑多让\nB. 美轮美奂 各有千秋\nC. 富丽堂皇 旗鼓相当\nD. 光彩夺目 毫不逊色", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 1659450, "human_acc": 81.7153876284, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第31题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2376872, "material": "", "question": "集装箱内部空间的长、宽和高分别为20英尺、7英尺和7英尺。某种货物的包装箱尺寸为$2\\times3\\times5$英尺,问一个集装箱内最多可以装多少箱这种货物?", "type": "单选题", "options": "A. 29\nB. 30\nC. 31\nD. 32", "choice": "D", "keypoints": "统筹规划问题;立体几何", "most_wrong": "B", "human_count": 560291, "human_acc": 29.8405649921, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第53题", "difficulty": 7, "formulas": 1, "history": [{"id": 50465, "material": "", "question": "有一批商品需要装箱运输。商品每件均为10厘米*40厘米*80厘米的长方体。包装箱为边长为1.2米的立方体,一个包装箱最多能装多少件商品?", "type": "单选题", "options": "A. 54\nB. 53\nC. 52\nD. 51", "choice": "C", "keypoints": "统筹规划问题;立体几何", "most_wrong": "A", "human_count": 325317, "human_acc": 42.7629051049, "source": "2013年广东省公务员录用考试《行测》题(三)第15题", "difficulty": 5, "formulas": 0}, {"id": 2066266, "material": "", "question": "一辆卡车车厢底面为$4.8$平方米,运送一种长方形包装箱,包装箱的棱长分别为$0.5$米、$0.4$米、$0.3$米。如果放三层,这辆卡车最多可装(  )个包装箱。", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 200", "choice": "B", "keypoints": "统筹规划问题;立体几何", "most_wrong": "C", "human_count": 177276, "human_acc": 69.8769150928, "source": "2015年深圳市公务员录用考试《行测》题第51题", "difficulty": 3, "formulas": 4}, {"id": 2295333, "material": "", "question": "用一辆小型箱式货车运送荔枝干,该货车货箱长4.2米、宽1.9米、高1.8米。600克装荔枝干的外包装长20厘米,宽和高都是14厘米。那么一次最多可以运送约______吨荔枝干。", "type": "单选题", "options": "A. 2.1\nB. 2.0\nC. 1.9\nD. 1.8", "choice": "A", "keypoints": "统筹规划问题;立体几何", "most_wrong": "C", "human_count": 28751, "human_acc": 28.9555145908, "source": "2019年上海市公务员录用考试《行测》题(A类)(网友回忆版)第70题", "difficulty": 7, "formulas": 0}, {"id": 4817784, "material": "", "question": "石雕厂有48个石质圆柱要发往外地。这些圆柱的底面直径均为1.5米,其中30个石柱高0.8米,18个石柱高0.6米。该厂租用的运输车辆除去固定桩之后,可用的空间长3米,宽1.5米。为保证安全,圆柱只能底面朝下堆放,且堆叠高度不得超过2米。问一次性运完这些圆柱,至少需要租用几辆运输车辆?", "type": "单选题", "options": "A. 9\nB. 10\nC. 11\nD. 12", "choice": "B", "keypoints": "统筹规划问题;立体几何", "most_wrong": "C", "human_count": 605035, "human_acc": 52.5686943731, "source": "2022年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "统筹规划问题"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 5075027, "material": "", "question": "2022年爷爷、爸爸和孙子三人年龄呈等差数列,年龄之和为93岁。在未来十年内,恰好有一年爷爷的年龄是孙子年龄的平方,则该年孙子的年龄为多少岁?", "type": "单选题", "options": "A. 10\nB. 9\nC. 8\nD. 7", "choice": "C", "keypoints": "数列问题;年龄问题", "most_wrong": "B", "human_count": 86176, "human_acc": 55.5154567397, "source": "2022下半年省考第一季行测模考大赛(安徽卷)第27题", "difficulty": 6, "formulas": 0, "history": [{"id": 5535612, "material": "", "question": "一个家庭中三个孩子的年龄刚好是公差为3的等差数列。今年大哥与三妹年龄和的3倍刚好与爸爸的年龄相等,大哥与二妹年龄和的2倍刚好与妈妈的年龄相等。已知三个孩子今年的年龄均不足10岁,则爸爸和妈妈最多相差多少岁?(出生即为1岁)", "type": "单选题", "options": "A. 2\nB. 4\nC. 6\nD. 8", "choice": "C", "keypoints": "数列问题;年龄问题", "most_wrong": "B", "human_count": 33642, "human_acc": 61.2270376315, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第44题", "difficulty": 5, "formulas": 0}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "年龄问题"]]}, {"id": 2187518, "material": "", "question": "A、B两种规格的产品需要在甲、乙两台机器上各自加工一道工序才能成为成品。已知A产品需要在甲机器上加工3小时,在乙机器上加工1小时;B产品需要在甲机器上加工1小时,在乙机器上加工3小时。在一个工作日内,甲机器至多只能使用11小时,乙机器至多只能使用9小时。A产品每件利润300元,B产品每件利润400元。据此可知,若这两台机器只加工A、B这两种产品,那么它们在一个工作日内能创造的最大利润为:", "type": "单选题", "options": "A. 1600元\nB. 1700元\nC. 1800元\nD. 2000元", "choice": "B", "keypoints": "经济利润问题;非典型最值问题", "most_wrong": "C", "human_count": 731110, "human_acc": 53.4550204484, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第60题", "difficulty": 5, "formulas": 0, "history": [{"id": 1688884, "material": "", "question": "已知某商品对价格的需求函数$x=12-0.5p$,成本函数$C(x)=10+x^{2}$,若生产的产品都能全部输出,则该商家的最大利润是:", "type": "单选题", "options": "A. 18\nB. 25\nC. 30\nD. 38", "choice": "D", "keypoints": "经济利润问题;非典型最值问题", "most_wrong": "C", "human_count": 12786, "human_acc": 13.0611606445, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第56题", "difficulty": 5, "formulas": 2}, {"id": 12903, "material": "", "question": "某商店实行促销手段,凡购买价值200元以上的商品可以优惠$20\\%$,那么用300元钱在该商店最多可买下价值多少元的商品:", "type": "单选题", "options": "A. 350元\nB. 384元\nC. 375元\nD. 420元", "choice": "C", "keypoints": "经济利润问题;非典型最值问题", "most_wrong": "B", "human_count": 36549, "human_acc": 70.9567977236, "source": "2009年913联考《行测》题(辽宁/海南/重庆/福建)第94题", "difficulty": 3, "formulas": 1}, {"id": 2453169, "material": "", "question": "A公园规定,个人票每张10元,团体票每张60元(可供10人参观),无其他票价优惠政策。五年级二班共有58人逛A公园,则最少应付多少元?", "type": "单选题", "options": "A. 350\nB. 360\nC. 380\nD. 390", "choice": "B", "keypoints": "经济利润问题;非典型最值问题", "most_wrong": "C", "human_count": 555830, "human_acc": 71.074429232, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第71题", "difficulty": 4, "formulas": 0}, {"id": 2051104, "material": "", "question": "商场以每件80元的价格购进了某品牌衬衫500件,并以每件120元的价格销售了400件,要达到盈利$45\\%$的预期目标,剩下的衬衫最多可以降价:", "type": "单选题", "options": "A. 15元\nB. 16元\nC. 18元\nD. 20元", "choice": "D", "keypoints": "经济利润问题;非典型最值问题", "most_wrong": "C", "human_count": 561308, "human_acc": 61.589537295, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第38题", "difficulty": 5, "formulas": 1}, {"id": 2742292, "material": "", "question": "一种设备打九折出售,销售12件与原价出售销售10件时获利相同。已知这种设备的进价为50元/件,其他成本为10元/件。问如打八折出售,1万元最多可以买多少件?", "type": "单选题", "options": "A. 80\nB. 83\nC. 86\nD. 90", "choice": "B", "keypoints": "经济利润问题;非典型最值问题", "most_wrong": "C", "human_count": 405257, "human_acc": 67.0201871899, "source": "2021年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第79题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 4768460, "material": "", "question": "在今年的“世界穿山甲日”即将来临之际,食用穿山甲事件在我国网络上闹得____________。穿山甲是我国重点保护野生动物。目前在我国几近灭绝,比大熊猫还要________。但是,我国食用、药用穿山甲的历史悠久,对穿山甲有巨大的市场需求,这种需求还导致穿山甲国际走私严重。要想________这种需求,除了法律,还需要我们每一个人在思想和行动上的转变。\n\n填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 沸沸扬扬 珍稀 遏制\nB. 轰轰烈烈 宝贵 抵制\nC. 人声鼎沸 稀有 限制\nD. 不可开交 珍贵 抑制", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 162253, "human_acc": 93.5723838696, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 16695, "material": "", "question": "在金融危机下,税务人员并不知道每个企业的资金链到底有多(    ),能够承受起多大的(    )。", "type": "单选题", "options": "A. 脆弱 风吹草动\nB. 牢固 大起大落\nC. 强韧 风吹草动\nD. 稳固 暴风骤雨", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 355225, "human_acc": 22.8210289253, "source": "2010年四川省公务员录用考试《行测》题(下半年)第21题", "difficulty": 5, "formulas": 0}, {"id": 2578998, "material": "", "question": "每个人的需求都是不同的,真正的大学生活,根本就没有什么“标配”。所谓的“标配”其实是一种________印象,其中甚至可能有商家为了促销而____________的影子。\n\n依次填入画线部分最恰当的一项是:", "type": "单选题", "options": "A. 偏执 趁火打劫\nB. 刻板 推波助澜\nC. 虚假 顺水推舟\nD. 从众 添油加醋", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 457580, "human_acc": 58.3152672757, "source": "2022年青海省公务员录用考试《行测》题(网友回忆版)第29题", "difficulty": 4, "formulas": 0}, {"id": 49543, "material": "", "question": "在多元化语境下,出现_______的情感价值取向实属正常现象,我们充分尊重个人的情感选择。但是,过度________情感的极端自由、极端物欲,其实会给个人的幸福带来许多内伤。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 林林总总 鼓吹\nB. 琳琅满目 渲染\nC. 纷繁芜杂 追逐\nD. 标新立异 强调", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 2497041, "human_acc": 25.4551687377, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第33题", "difficulty": 5, "formulas": 0}, {"id": 4525839, "material": "", "question": "对待社会焦点,研究者应该保持________,不能凭一时的热情解释,而要作出理性的分析。媒体不能为了流量,故意用____________的笔调渲染它,小题大作、哗众取宠,以制造虚假的轰动效应。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 客观 骇人听闻\nB. 冷静 耸人听闻\nC. 乐观 危言耸听\nD. 清醒 振聋发聩", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 337654, "human_acc": 70.4875405, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第29题", "difficulty": 4, "formulas": 0}, {"id": 2563316, "material": "", "question": "小到苏州园林私家花园的________雅致,大到两京宫殿楼阁的雄伟磅礴,从古至今,中国人民也曾为人们为建筑____________,无数心血让建筑不仅给人们提供物质上的庇护所,更给人们提供了精神上的栖息地。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 精妙 废寝忘食\nB. 精巧 殚精竭虑\nC. 精美 处心积虑\nD. 精湛 呕心沥血", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 19918, "human_acc": 60.0210864545, "source": "2020年上半年省考第三十一季行测模考大赛(海南卷)第41题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2377117, "material": "", "question": "现在的诗词普及,还有许多需要留心和甄别的地方。如今市面上诗词普及的图书尤其多,也尤为__________。有不少普及读物,其中文字错漏百出,采用的故事也都是__________,甚至杜撰而来。作为读者,应该加以甄别,尽量选择学者编写的图书,他们的材料、解读都较为严谨扎实,采用的故事也都有正史作为依据。", "type": "单选题", "options": "A. 鱼目混珠 稗官野史\nB. 滥竽充数 逸闻轶事\nC. 鱼龙混杂 道听途说\nD. 龙蛇混杂 胡编乱造", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 2165265, "human_acc": 73.4183575682, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第9题", "difficulty": 4, "formulas": 0, "history": [{"id": 16053, "material": "", "question": "我国古塔的建造,其规模之大,分布之广,数量之多,在古代建筑中是____________的。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 首屈一指\nB. 屈指可数\nC. 空前绝后\nD. 沧海一粟", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 144176, "human_acc": 69.3333148374, "source": "2010年吉林省公务员录用考试《行测》题第14题", "difficulty": 4, "formulas": 0}, {"id": 3556954, "material": "", "question": "治理荒漠化犹如____________。现在,荒漠化防治进入“啃硬骨头”的阶段,治理难度更大,治理成本更高,任务更加繁重。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 反戈一击\nB. 拨云见日\nC. 困兽犹斗\nD. 逆水行舟", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 94128, "human_acc": 81.7525072242, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第1题", "difficulty": 4, "formulas": 0}, {"id": 3788409, "material": "", "question": "引力波探测器所能提供的典型定位误差有几百平方度,这使观测受到极大影响。即便对引力波事件发生的距离进行一定程度的限制,在这么大的范围内寻找与之对应的电磁信号源也无异于____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 盲人摸象\nB. 大海捞针\nC. 缘木求鱼\nD. 水中捞月", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 122227, "human_acc": 97.6339106744, "source": "2021下半年省考第十四季行测模考大赛(广东县级卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 4197898, "material": "", "question": "数十年以来,科学家一直在借助一系列全球性气候模型来预测北极海冰的未来。但这些模型的预测结果却____________。有些模型显示,2026年北极将出现无冰的9月,其他模型则认为这一现象于2132年才会出现。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 大相径庭\nB. 大同小异\nC. 毫无二致\nD. 截然不同", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 161041, "human_acc": 65.7652399078, "source": "2021下半年省考第二十一季行测模考大赛(四川卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 49533, "material": "", "question": "拉丁美洲曾深受西方殖民主义之害,这形成了拉美人民在苦难中反思和抗争的传统,并铸就了_________的精神,正是这种精神气质使拉美电影在世界影坛__________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 百折不挠 独树一帜\nB. 坚忍不拔 长盛不衰\nC. 矢志不渝 别具一格\nD. 奋发图强 独具匠心", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 2074083, "human_acc": 63.8177932127, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2564011, "material": "", "question": "为了加强事中事后监管,________游戏对社会特别是青少年的负面影响,北京将加强对已批准上线运营游戏的内容监管,对发现问题的产品坚决下架,同时加强游戏内容把关,坚决________和清除涉黄涉赌涉暴、任意篡改历史、调侃英雄先贤、传播错误价值导向等违法违规行为,________创作生产中的“打擦边球”等不良倾向。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 降低 打击 改善\nB. 减少 抵制 纠正\nC. 削弱 反对 铲除\nD. 杜绝 查处 制止", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 264399, "human_acc": 60.1927390043, "source": "2021年国考第七季行测模考大赛(地市级)第38题", "difficulty": 6, "formulas": 0, "history": [{"id": 3541413, "material": "", "question": "无论从商业伦理上看,还是从法律角度来说,自动续费既破坏了诚信经营的原则,也________了用户的合法利益。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 侵犯\nB. 骚扰\nC. 威逼\nD. 践踏", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 17364, "human_acc": 99.0555171619, "source": "2021下半年省考第三季行测模考大赛(内蒙古卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 5428287, "material": "", "question": "数字化引发的新浪潮正席卷而来,颠覆、________我们的生产、生活,这是今天数字化对我们最大的影响。如今,我们正向着数字原生迈进,物理世界和数字世界不再毫不相关,而将更加紧密________,数字经济将步入从量变到质变的新阶段。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 革新 接洽\nB. 重构 耦合\nC. 改善 连接\nD. 瓦解 交织", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 118059, "human_acc": 63.8917829221, "source": "2023上半年省考第一季行测模考大赛(深圳卷)第65题", "difficulty": 5, "formulas": 0}, {"id": 5507556, "material": "", "question": "柔性执法的本质是以退为进,以不走寻常路的方式进行法治教育,提醒和________人们认同和遵循社会规范。更进一步说,柔性执法非但没有________法律的严肃性与权威性,反而增强了法律的使用价值,让法律以一种更有温度的方式呈现出来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 告诫 打消\nB. 震慑 破坏\nC. 敦促 损伤\nD. 监控 削弱", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 39931, "human_acc": 60.6421076357, "source": "2023上半年省考第十季行测模考大赛(西藏卷)第9题", "difficulty": 5, "formulas": 0}, {"id": 4702311, "material": "", "question": "“一把手”和领导班子对一个单位、一个地区的工作起着________作用。只有主要领导干部和领导班子都受到监督,权力受到制约和________,始终在正确的________上运行,领导干部才能以上率下,形成好的带动作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 统领 规范 轨道\nB. 引领 管控 框架\nC. 主导 量化 道路\nD. 示范 钳制 架构", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 237108, "human_acc": 75.7047421428, "source": "2022上半年省考第六季行测模考大赛(陕西卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 5738523, "material": "", "question": "婚俗领域的陈规陋习,背后交织着家庭观念、社会风俗、婚姻关系等复杂因素,难以靠一纸禁令________,治理也不可能一步到位。推进移风易俗,不是要“一刀切”地________传统习俗及其社会功能,而是要改变“讲排场比阔气”的盲目攀比之风、庸俗低俗之气,是要取其精华、去其糟粕。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 更正 治理\nB. 扭转 否定\nC. 革除 削弱\nD. 缓解 摒弃", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 5039, "human_acc": 74.260766025, "source": "2023下半年省考第二十季行测模考大赛(陕西卷)第29题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5344158, "material": "", "question": "著名历史学家狄奥多·毛姆森是古希腊罗马史领域的权威。然而,就是这位对古希腊____________的学者,对他自己居住的城市威廉敏娜却一无所知,没有仆人的陪伴与指引,他甚至找不到回家的路。许多在自己的专业领域如鱼得水的学者,置身社会往往____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 耳熟能详 难以为继\nB. 烂熟于心 挂一漏万\nC. 了如指掌 不知所措\nD. 驾轻就熟 茫然若失", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 217110, "human_acc": 88.9599742066, "source": "2022下半年省考第十六季行测模考大赛(深圳卷)第67题", "difficulty": 3, "formulas": 0, "history": [{"id": 2187766, "material": "", "question": "数字世界的革命固然玄妙,但其经济规模和在人们生活中的重要程度,直到今天,仍旧不能与实体世界________________。", "type": "单选题", "options": "A. 同日而语\nB. 旗鼓相当\nC. 一决高下\nD. 平分秋色", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 996515, "human_acc": 50.0703953277, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第4题", "difficulty": 5, "formulas": 0}, {"id": 2259159, "material": "", "question": "纸质书信,已是____________。然而各人用富有个性的字体写出来的这些书信,____________,充满温馨,泛黄而不褪色。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 时过境迁 字字珠玑\nB. 明日黄花 面字如人\nC. 昨日黄花 字如其人\nD. 陈年往事 饱含深情", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 7808, "human_acc": 29.9692622951, "source": "2015年江西省法检系统招录考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 43759, "material": "", "question": "尽管诗歌绝无翻译的可能,却大有翻译介绍的必要。有多位前辈时贤对诗歌翻译理论不乏鞭辟入里的__________。然而,何谓诗歌翻译的理想形式却__________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 真知灼见 各执一端\nB. 不刊之论 见仁见智\nC. 不易之论 各持己见\nD. 远见卓识 众说纷纭", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 1837090, "human_acc": 24.362660512, "source": "2013年国家公务员录用考试《行测》题第33题", "difficulty": 5, "formulas": 0}, {"id": 2262743, "material": "", "question": "科研和科普虽然都以“科”为基础,但它们从思维方式到呈现方式都有___________。事实上,放眼人类科技史,能兼为科学大师和科普大师者,也是 _____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 天壤之别 凤毛麟角\nB. 千差万别 寥寥无几\nC. 云泥之别 百里挑一\nD. 汇分类别 屈指可数", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 35567, "human_acc": 59.4005679422, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第19题", "difficulty": 5, "formulas": 0}, {"id": 2595658, "material": "", "question": "在新的时代条件下,高校“思政课”改革创新中存在着诸多问题,涉及学校、社会等方方面面,看似没有关联,实则____________,往往牵一发而动全身。因此,推进高校“思政课”改革,亟需提升问题意识、前瞻性意识和系统性思维。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 根深蒂固\nB. 盘根错节\nC. 蛇蟠蚓结\nD. 扑朔迷离", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 331510, "human_acc": 86.1503423728, "source": "2021年国考第九季行测模考大赛(副省级)第21题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 14029, "material": "", "question": "波士顿城中的旧书店常常让我(    )。那里有两家。一家在老教堂的地下室,还有一家旧书店靠近波士顿绿地,规模更大,上下两层。", "type": "单选题", "options": "A. 乐不思蜀\nB. 流连忘返\nC. 沉溺其中\nD. 大开眼界", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;成语填空", "most_wrong": "C", "human_count": 47668, "human_acc": 71.5406562054, "source": "2009年四川省公务员录用考试《行测》题(上半年)第19题", "difficulty": 5, "formulas": 0, "history": [{"id": 2603838, "material": "", "question": "比起营收规模,对企业更要紧的是盈利能力:发达国家企业的平均利润是中国的近3倍。面对如此明显的差距,我们切不可因500强数量反超而沾沾自喜,甚至____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 洋洋得意\nB. 志得意满\nC. 见利忘义\nD. 妄自尊大", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;成语填空", "most_wrong": "B", "human_count": 18794, "human_acc": 89.0763009471, "source": "2020年上半年省考终极行测模考大赛(海南卷)第41题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2144717, "material": "", "question": "香龙血树又名巴西木,为天门冬科龙血树属下的一个种,是一种原生于非洲的开花植物,生长于海拔600-2250m的高地。巴西木株形整齐优美,叶片宽大,富有光泽,苍翠欲滴,是著名的新一代室内观叶植物。它可以中小盆点缀书房、客厅和卧室等,显得清雅别致;大中型植株布置于厅堂、会议室、办公室等处,可较长期欣赏,颇具异国情调;尤其是高低错落种植的巴西木,枝叶生长层次分明,还可给人以“步步高升”之寓意。从这段文字中无法得知的信息是(  )。", "type": "单选题", "options": "A. 香龙血树的地理分布\nB. 香龙血树的形态特征\nC. 香龙血树的观赏作用\nD. 香龙血树的名称来源", "choice": "D", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 12664, "human_acc": 92.8063802906, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第53题", "difficulty": 4, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 3519053, "material": "", "question": "统观近些年文学界的发展变化,曾经看似____________的严肃文学、网络文学、公众号写作等,正在逐渐打破单一“部落”的边界,从曾经的“敌视”走向现在的“取经”,不同文学之间,文学与写作之间加速融合。在这样的背景下,文学是否会出现一片“无界”的、广阔的天空?\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 四分五裂\nB. 针锋相对\nC. 大同小异\nD. 泾渭分明", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 57704, "human_acc": 69.2170386802, "source": "2021下半年省考第一季行测模考大赛(通用卷)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 11087, "material": "", "question": "世界上最累的人莫过于平俗之辈去 ______ ,无才之人却要 ______ 。", "type": "单选题", "options": "A. 依附权贵 日理万机\nB. 附庸风雅 日理万机\nC. 依附权贵 跑官要官\nD. 附庸风雅 跑官要官", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 51212, "human_acc": 56.0903694447, "source": "2008年湖北省公务员录用考试《行测》题(B类)第7题", "difficulty": 5, "formulas": 0}, {"id": 2748365, "material": "", "question": "当前,中国粮食安全形势持续稳定好转,但也要____________。粮食事关国计民生,粮食安全这根弦片刻不能放松。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 严阵以待\nB. 居安思危\nC. 持之以恒\nD. 高瞻远瞩", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 439525, "human_acc": 80.9548944884, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第42题", "difficulty": 4, "formulas": 0}, {"id": 47701, "material": "", "question": "古人提倡“吾日三省吾身”,______,而今天有些人则不然,总是______,对比之下,实在不应该。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 修身养性 瑕不掩瑜\nB. 兢兢业业 好大喜功\nC. 闻过则喜 讳疾忌医\nD. 博采众长 刚愎自用", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 669994, "human_acc": 44.9611489058, "source": "2013年浙江省公务员录用考试《行测》题(B类)第2题", "difficulty": 5, "formulas": 0}, {"id": 22125, "material": "", "question": "很多大学生希望毕业后找到一份工作,稳步发展,可是也有许多人不愿____________,他们有相对稳定的家庭背景,有工作能力,却在寻找生活的另一种可能性。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 按部就班\nB. 墨守成规\nC. 人云亦云\nD. 步入后尘", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 171610, "human_acc": 77.6551483014, "source": "2009年国家公务员录用考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 3636422, "material": "", "question": "无论哪种成功的扶贫模式,都有一个最基本的共同特征,就是因地制宜。推广已被实践检验过的成功模式是条捷径,但不能____________。精准扶贫既要找到普遍规律,更要深刻分析个性化差异。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 照猫画虎\nB. 投机取巧\nC. 以逸待劳\nD. 贪大求快", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 95146, "human_acc": 87.6179765834, "source": "2021下半年省考第七季行测模考大赛(广东乡镇卷)第1题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2694990, "material": "", "question": "桌子上有边长分别为1cm、2cm和3cm的正方体积木共39块,用它们恰好可以拼成一个边长为6cm的大正方体。则其中边长为2cm的小正方体积木有多少块?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "不定方程组;立体几何", "most_wrong": "C", "human_count": 57570, "human_acc": 36.94285218, "source": "2021年国考第二十三季行测模考大赛(副省级)第73题", "difficulty": 7, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 2262010, "material": "", "question": "一项考试共有35道试题,答对一题得2分,答错一题扣1分,不答则不得分。一名考生一共得了47分,那么,他最多答对(    )题。", "type": "单选题", "options": "A. 26\nB. 27\nC. 29\nD. 30", "choice": "B", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 130292, "human_acc": 79.9389064563, "source": "广东省2019年选调优秀大学毕业生笔试 思维能力测验(网友回忆版)第59题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 4637227, "material": "", "question": "李某骑车从甲地出发前往乙地,出发时的速度为15千米/小时,此后均匀加速,骑行25%的路程后速度达到21千米/小时。剩余路段保持此速度骑行,总行程前半段比后半段多用时3分钟。问甲、乙两地之间的距离在以下哪个范围内?", "type": "单选题", "options": "A. 不到23千米\nB. 在23~24千米之间\nC. 在24~25千米之间\nD. 超过25千米", "choice": "D", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 1248384, "human_acc": 15.5418525069, "source": "2022年国家公务员录用考试《行测》题(副省级网友回忆版)第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 9705, "material": "", "question": "有一批长度分别为3、4、5、6和7厘米的细木条,它们的数量足够多,从中适当选取3根木条作为三角形的三条边,可能围成多少个不同的三角形?", "type": "单选题", "options": "A. 25个\nB. 28个\nC. 30个\nD. 32个", "choice": "D", "keypoints": "排列组合问题-其他;平面几何", "most_wrong": "B", "human_count": 21745, "human_acc": 29.9793055875, "source": "2009年浙江省公务员录用考试《行测》题第45题", "difficulty": 4, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 7325, "material": "", "question": "一个四边形去掉一个角,还剩几个角?下列不可能的是:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "D", "keypoints": "平面几何", "most_wrong": "B", "human_count": 18944, "human_acc": 65.5563766892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第9题", "difficulty": 5, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"], ["数量关系", "数学运算", "几何问题", "平面几何"]]}, {"id": 20105, "material": "", "question": "气候变暖将使我国主要作物品种的布局发生变化,并影响到种植制度,种植界限北移西移的风险加大。据估算,到2030年前我国种植业产量在总体上因全球变暖可能会减少5%到10%左右,其中小麦、水稻和玉米三大作物均以减产为主。此外,全球变暖有利于农业病虫的越冬和繁殖,导致更严重的农业病虫与杂草危害。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 我国应根据气候变暖趋势调整农业生产布局。\nB. 气候变暖将影响我国农业生产布局。\nC. 气候变暖将影响我国农业生产安全。\nD. 气候变暖将有利于农业病虫害的发生。", "choice": "C", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 425690, "human_acc": 46.1692781132, "source": "2012年江西省公务员录用考试《行测》题第77题", "difficulty": 6, "formulas": 0, "history": [{"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2647, "material": "", "question": "解放初期,有一次毛泽东和周谷城谈话。毛泽东说:“失败是成功之母。”周谷城回答说:“成功也是失败之母。”毛泽东思索了一下说:“你讲得好。”\n\n上述文字所要强调的内容是:", "type": "单选题", "options": "A. 戒骄戒躁\nB. 毫不气馁\nC. 忍辱负重\nD. 持之以恒", "choice": "A", "keypoints": "关联词-并列", "most_wrong": "D", "human_count": 30289, "human_acc": 85.0341708211, "source": "2008年江苏省公务员录用考试《行测》题(C类)第69题", "difficulty": 4, "formulas": 0}, {"id": 4559, "material": "", "question": "记忆没有体积,它却既可以让人敞开襟怀去拥抱整个世界,又可以使人的心眼儿狭窄得芥蒂难容。\n\n这段话的意思是:", "type": "单选题", "options": "A. 记忆的作用巨大,无所不包\nB. 记忆可让人宽容,也可让人妒忌\nC. 记忆的作用无法把握,可大可小\nD. 记忆提醒人们做事不可太死板", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 39752, "human_acc": 84.360535319, "source": "2008年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 12007, "material": "", "question": "旧历二月初二龙抬头,名人刘侗的《帝京景物略》中说“二月二日,龙抬头”,俗话说“龙不抬头天不下雨”,龙是祥瑞之物,和风化雨的主宰。\n\n这段话的主要目的是告诉我们:", "type": "单选题", "options": "A. 龙抬头的历史记载\nB. 龙抬头的祭祀活动\nC. 龙抬头的来历\nD. 龙抬头的节令", "choice": "C", "keypoints": "关联词-并列", "most_wrong": "D", "human_count": 26939, "human_acc": 38.264226586, "source": "2009年湖南省公务员录用考试《行测》题第63题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"]]}, {"id": 3543178, "material": "", "question": "下列各组国内外历史事件在发生时间上最接近的是(    )。", "type": "单选题", "options": "A. 洋务运动 日本明治维新\nB. 牧野之战 古巴比伦王国建立\nC. 焚书坑儒 基督教诞生\nD. 三藩之乱 麦哲伦环球航行", "choice": "A", "keypoints": "世界历史;中国历史", "most_wrong": "B", "human_count": 13654, "human_acc": 60.2607294566, "source": "2021下半年省考第三季行测模考大赛(广东乡镇卷)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"], ["常识判断", "人文常识", "中国历史"]]}, {"id": 163477, "material": "", "question": "用一个饼铛烙煎饼,每次饼铛上最多只能同时放两个煎饼,煎熟一个煎饼需要2分钟的时间,其中每煎熟一面需要一分钟。如果需要煎熟15个煎饼,至少需要多少分钟?", "type": "单选题", "options": "A. 14\nB. 15\nC. 16\nD. 30", "choice": "B", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 187509, "human_acc": 43.9898884854, "source": "2014年北京市公务员录用考试《行测》题第83题", "difficulty": 6, "formulas": 0, "history": [{"id": 2730470, "material": "", "question": "某喷绘机每次同时单面印刷2张广告布,每印1面需要1分钟,广告布印后需晾干2分钟,现需双面印刷15张广告布,则至少需(    )分钟的印刷时间。", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 19", "choice": "A", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 187738, "human_acc": 24.2492196572, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 2188498, "material": "", "question": "甲、乙、丙三个网站定期更新,甲网站每隔48小时,乙网站每隔72小时,丙网站每隔96小时更新一次内容。问在一个星期内至多有几天,三个网站中至少有一个更新内容?", "type": "单选题", "options": "A. 4天\nB. 5天\nC. 6天\nD. 7天", "choice": "D", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 733122, "human_acc": 15.7419911011, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第62题", "difficulty": 7, "formulas": 0}, {"id": 2365991, "material": "", "question": "某工厂加工零件,每个零件有正反两面,每台机床每次能同时加工两个零件,每次只能加工零件的一面,加工一次需要1.5分钟,则每台机床加工9个零件最少需要多少时间?", "type": "单选题", "options": "A. 13.5分钟\nB. 14分钟\nC. 14.5分钟\nD. 15分钟", "choice": "A", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "D", "human_count": 12686, "human_acc": 42.0305848967, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第92题", "difficulty": 6, "formulas": 0}, {"id": 2731350, "material": "", "question": "办公楼高24层,小王在底楼,他有一个文件急需交给在顶楼的小李。大楼只有一个电梯,正停在底楼待命,电梯每上升或下降一层需要10秒,小李走楼梯下楼每层需要走15秒,小王走楼梯上楼每层需要走20秒,他们约在(    )楼碰面最节约时间。", "type": "单选题", "options": "A. 12\nB. 13\nC. 14\nD. 15", "choice": "D", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 212644, "human_acc": 37.5030567521, "source": "2021年上海市公务员录用考试《行测》题(A类)(网友回忆版)第67题", "difficulty": 4, "formulas": 0}, {"id": 23181, "material": "", "question": "某洗车店洗车分外部清洁和内部清洁,两道工序时间均不少于30分钟,而且同一辆车两道工序不能同时进行,洗车间同一时间只能容下2辆车。现有9辆车需要清洗,汽车进出洗车间的时间可忽略不计,则洗完9辆车至少需要的时间为:", "type": "单选题", "options": "A. 330分钟\nB. 300分钟\nC. 270分钟\nD. 250分钟", "choice": "C", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "B", "human_count": 323784, "human_acc": 47.1054777259, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第68题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 2188296, "material": "", "question": "将一长度为$l$的线段任意截成三段,设$p_{1}$为所截的三线段能构成三角形的概率,$p_{2}$为所截的三线段不能构成三角形的概率,则下列选项正确的是:", "type": "单选题", "options": "A. $p_{1}=p_{2}$\nB. $p_{1}\\gt p_{2}$\nC. $p_{1}\\lt p_{2}$\nD. $不能确定p_1与p_2的大小关系$", "choice": "C", "keypoints": "平面几何;概率问题-其他", "most_wrong": "B", "human_count": 498588, "human_acc": 38.9399664653, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第67题", "difficulty": 6, "formulas": 380, "history": [{"id": 2367926, "material": "", "question": "将一根绳子任意分成三段,则此三段能构成一个三角形的概率是", "type": "单选题", "options": "A. $\\frac{1}{4}$\nB. $\\frac{1}{3}$\nC. $\\frac{1}{2}$\nD. $\\frac{3}{4}$", "choice": "A", "keypoints": "平面几何;概率问题-其他", "most_wrong": "C", "human_count": 589981, "human_acc": 15.3749019036, "source": "2019年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第64题", "difficulty": 8, "formulas": 417}, {"id": 2187538, "material": "", "question": "小波通过往圆圈里投掷米粒(米粒本身长度不计,视为一个点)的方式决定自己的周末活动。经过试验,他将米粒投进圆圈内的成功率达到$100\\%$,但投掷在圆内的位置随机。如果米粒到圆心的距离大于圆半径的一半,那么他周末去看电影;若米粒到圆心的距离小于半径的$\\frac{1}{4}$,他会去打篮球;否则,他将在家看书。据此可知小波周末不在家看书的概率为:", "type": "单选题", "options": "A. $\\frac{13}{16}$\nB. $\\frac{2}{5}$\nC. $\\frac{3}{5}$\nD. $\\frac{1}{16}$", "choice": "A", "keypoints": "平面几何;概率问题-其他", "most_wrong": "C", "human_count": 720140, "human_acc": 43.9733940623, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第65题", "difficulty": 6, "formulas": 420}, {"id": 4689749, "material": "", "question": "某公司举办掷飞镖获大奖活动,圆形飞镖板共分为10环,圆心设置为10环,最外圈圆环为1环。为提高中奖率,每一圆环的宽度相同,圆心的半径大于圆环的宽度。假设老李掷出的飞镖均扎在飞镖板上(不考虑扎在分界线上的情况),且位置完全随机,已知9环的面积为$20\\pi cm^{2}$,连掷两次6环的概率为$\\frac{1}{121}$,则此飞镖板的总面积为多少?", "type": "单选题", "options": "A. $225\\pi cm^{2}$\nB. $484\\pi cm^{2}$\nC. $450\\pi cm^{2}$\nD. $625\\pi cm^{2}$", "choice": "B", "keypoints": "平面几何;概率问题-其他", "most_wrong": "C", "human_count": 15263, "human_acc": 45.2204677979, "source": "2022上半年省考第四季行测模考大赛(浙江卷)第75题", "difficulty": 6, "formulas": 420}, {"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 5028957, "material": "", "question": "长征,是一条____________之路,也是一条通往胜利之路;是一条荆棘遍布之路,也是一条开创新局之路。万里长征路,红军一次又一次杀开血路、突出重围,前赴后继、____________。是信仰,让他们顾全大局、严守纪律、紧密团结,意志愈发坚定、力量愈发强大,跃过重重艰险,蹚出胜利之路。新时代的长征路上,红军将士的信仰之光、信念之火、信心之歌,必将____________、一直传递。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 栉风沐雨 势不可挡 继往开来\nB. 披坚执锐 视死如归 薪火相传\nC. 乘风破浪 砥节砺行 历久弥新\nD. 筚路蓝缕 一往无前 生生不息", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 305797, "human_acc": 55.4200989545, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第33题", "difficulty": 6, "formulas": 0, "history": [{"id": 2139526, "material": "", "question": "意志力特训是训练孩子以坚强的意志,带领自己的团队,百折不挠、_______、勇敢地克服困难。\n\n下列选项中,最适合填入横线的是:", "type": "单选题", "options": "A. 坚若磐石\nB. 固若金汤\nC. 坚不可摧\nD. 稳如泰山", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 34747, "human_acc": 46.4817106513, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第22题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2256375, "material": "", "question": "一些不顾现实情况的______取悦他人,看似长袖善舞,实则急功近利。这些矫揉与______长此以往,侵蚀的是一个民族的独立人格。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 特意 粉饰\nB. 刻意 掩饰\nC. 特意 掩饰\nD. 刻意 粉饰", "choice": "D", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 36039, "human_acc": 72.2689308804, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第15题", "difficulty": 5, "formulas": 0, "history": [{"id": 1191, "material": "", "question": "作为领导者,要心胸宽广,对于不同的人和不同的意见,要既能坚持原则又能____________。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 打击报复\nB. 听之任之\nC. 同情怜悯\nD. 灵活处理", "choice": "D", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 71794, "human_acc": 96.8409616402, "source": "2008年陕西省公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 2616125, "material": "", "question": "文化是“人化”,同时又要“化人”。城市中的人一方面是文化形象的________和代言人,人们的精神面貌、道德修养、行为举止诸方面都反映出城市的文化形象;另一方面其行为方式又受到城市文化形象的影响,良好的文化形象会对人产生引导、规范和________作用。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 载体 激励\nB. 体现 训诫\nC. 内涵 塑造\nD. 象征 制约", "choice": "A", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 2597707, "human_acc": 62.1637467197, "source": "2020年海南公务员录用考试《行测》试题(网友回忆版)第42题", "difficulty": 4, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 769161, "material": "", "question": "法律的生命力在于(    ),如果不遵守,再好的法律也是(    )。\n在空格处选填最恰当的字是:", "type": "单选题", "options": "A. 实行 一纸空文\nB. 施行 一纸空文\nC. 实行 纸上谈兵\nD. 施行 纸上谈兵", "choice": "B", "keypoints": "对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 167894, "human_acc": 58.3665884427, "source": "2011年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0, "history": [{"id": 11701, "material": "", "question": "一帆风顺的旅途只能酿就____的思维,而人生中的___从来都是经历了颠簸与坎坷之后才赫然出现。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 墨守成规 捷径\nB. 一成不变 捷径\nC. 画地为牢 道路\nD. 中规中矩 道路", "choice": "A", "keypoints": "对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 135385, "human_acc": 37.5337001884, "source": "2010年江西省公务员录用考试《行测》题第11题", "difficulty": 6, "formulas": 0}, {"id": 22465, "material": "", "question": "名校办分校是近年来冒出来的新生事物,这项举措受到各方意见的________:“名校连锁”是否________,是否与义务教育均衡发展________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 质疑 有名无实 背道而驰\nB. 质询 名实不符 不谋而合\nC. 质疑 名存实亡 分道扬镳\nD. 质询 名不副实 南辕北辙", "choice": "A", "keypoints": "对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 964404, "human_acc": 85.2852124214, "source": "2012年421联考《行测》题(山西/辽宁/黑龙江/福建/湖北/ 湖南/广西/海南/四川/重庆/ 云南/ 西藏/陕西/青海/宁夏/ 新疆兵团)第25题", "difficulty": 4, "formulas": 0}, {"id": 21605, "material": "", "question": "民间文化同以官方为代表的正统文化和以知识分子为代表的精英文化并非____________的。举例来说,它像无垠无际的沃土,________着正统文化和精英文化,而衰落了的正统文化和精英文化又如枯枝败叶一样,流落于民间,丰厚了它的土层。", "type": "单选题", "options": "A. 相依相伴 培育\nB. 全然隔绝 滋养\nC. 此消彼长 维系\nD. 泾渭分明 培养", "choice": "B", "keypoints": "对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 296184, "human_acc": 80.2828647057, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第3题", "difficulty": 5, "formulas": 0}, {"id": 2097074, "material": "", "question": "《题西林壁》《和子由渑池怀旧》是苏轼的哲理诗,其________________的诗句如“不识庐山真面目,只缘身在此山中”和“人生到处知何似,应似飞鸿踏雪泥”等早已________于人们的日常生活中,成为表达思想和情感的生动话语。", "type": "单选题", "options": "A. 脍炙人口 渗透\nB. 口碑载道 渗入\nC. 妇孺皆知 浸润\nD. 家喻户晓 浸透", "choice": "A", "keypoints": "对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 306619, "human_acc": 73.2394274327, "source": "2017年四川省公务员录用考试《行测》题(下半年)第14题", "difficulty": 5, "formulas": 0}, {"id": 14815, "material": "", "question": "至少在中文世界,将儒家传统定性为一种“人文主义”,已经成为学界的__________,而视儒家传统为一种“宗教”,或者认为儒家传统具有一种宗教性,自清末民初以来一直聚讼不已,至今__________。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 公认 尚无定论\nB. 共鸣 未置可否\nC. 共识 莫衷一是\nD. 惯例 前途未卜", "choice": "C", "keypoints": "对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 150029, "human_acc": 72.6432889641, "source": "2010年浙江省公务员录用考试《行测》题(A类)第6题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3765220, "material": "", "question": "研究人员发现,每天果糖能量占比每增加5%(约合35g果糖),患结直肠腺瘤的风险就升高17%。但水果中含有丰富的维生素、膳食纤维和果胶等营养物质,如果每天用2份(160g)水果替代2份(710ml)含糖饮料可使近端结肠和直肠腺瘤的发病风险分别降低25%和39%。因此有人认为,用果汁替代水果有同样的功效。但专家却认为事实恰恰相反。\n\n以下各项如果为真,最能加强专家观点的是:", "type": "单选题", "options": "A. 水果榨成汁后,它的膳食纤维、果胶等营养物质不会流失\nB. 很多果味饮料中都添加了人工甜味剂,该饮料的摄入量与患结直肠腺瘤的风险无关\nC. 榨汁的挤压使水果中的维生素还没到身体里发挥抗癌作用,就在榨汁过程中被损害掉了\nD. 鲜榨果汁是“浓缩萃取水果的精华”,人们可非常便捷地一次喝下3个橙子榨出来的汁", "choice": "C", "keypoints": "补充论据", "most_wrong": "B", "human_count": 54567, "human_acc": 93.6884930452, "source": "2021下半年省考第十三季行测模考大赛(四川卷)第83题", "difficulty": 3, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 2145060, "material": "", "question": "某大学法学院72名研究生当中有36人是中国法律援助网志愿者,有28人是广东省法律援助中心志愿者,还有一些同学是学校法律援助协会会员。已知参加学校法律援助协会的人数是既是中国法律援助网志愿者又参加学校法律援助协会人数的3倍,是三种组织均参加了的人数的6倍;既参加了学校法律援助协会又是广东省法律援助中心志愿者的人数是三种组织都参加了的人数的2倍;既是中国法律援助网志愿者又是广东省法律援助中心志愿者的人数有10人,则参加了学校法律援助协会的有(  )人。", "type": "单选题", "options": "A. 24\nB. 28\nC. 36\nD. 48", "choice": "C", "keypoints": "三集合", "most_wrong": "B", "human_count": 232209, "human_acc": 55.801454724, "source": "2015年深圳市公务员录用考试《行测》题第54题", "difficulty": 6, "formulas": 0, "history": [{"id": 2388060, "material": "", "question": "某班参加学科竞赛人数40人,其中参加数学竞赛的有22人,参加物理竞赛的有27人,参加化学竞赛的有25人,只参加两科竞赛的有24人,参加三科竞赛的有多少人?", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "C", "keypoints": "三集合", "most_wrong": "B", "human_count": 672999, "human_acc": 76.1042735576, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第68题", "difficulty": 5, "formulas": 0}, {"id": 1756318, "material": "", "question": "某出版社新招了10名英文、法文和日文方向的外文编辑,其中既会英文又会日文的小李是唯一掌握一种以上外语的人。在这10人中,会法文的比会英文的多4人,是会日文人数的两倍。问只会英文的有几人?", "type": "单选题", "options": "A. 2\nB. 0\nC. 3\nD. 1", "choice": "D", "keypoints": "三集合", "most_wrong": "A", "human_count": 1384686, "human_acc": 39.5332949131, "source": "2016年国家公务员录用考试《行测》题(副省级)第73题", "difficulty": 6, "formulas": 0}, {"id": 51989, "material": "", "question": "五年级一班共有55个学生,在暑假期间都参加了特长培训班,35人参加书法班,28人参加美术班,31人参加舞蹈班,其中以上三种特长培训班都参加的有6人,则有多少人只参加了一种特长培训班:", "type": "单选题", "options": "A. 45\nB. 33\nC. 29\nD. 22", "choice": "D", "keypoints": "三集合", "most_wrong": "B", "human_count": 276942, "human_acc": 54.2236280521, "source": "2013年陕西省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2255707, "material": "", "question": "某单位派出80名职工参加三个项目的比赛:篮球、乒乓球、排球。其中有8个人只能参加乒乓球比赛,有52人能参加篮球比赛,62人能参加排球比赛。那么既能参加篮球比赛又能参加排球比赛的有多少人?", "type": "单选题", "options": "A. 42\nB. 28\nC. 78\nD. 34", "choice": "A", "keypoints": "三集合", "most_wrong": "B", "human_count": 266623, "human_acc": 66.3967474674, "source": "2016年江西省法检系统招录考试《行测》题第63题", "difficulty": 5, "formulas": 0}, {"id": 163469, "material": "", "question": "某旅行团共有48名游客,都报名参观了三个景点中的至少一个。其中,只参观了一个景点的人数与至少参观了两个景点的人数相同,是参观了三个景点的人数的4倍。\n\n则需要为这些游客购买多少张景点门票:", "type": "单选题", "options": "A. 48\nB. 72\nC. 78\nD. 84", "choice": "C", "keypoints": "三集合", "most_wrong": "B", "human_count": 217109, "human_acc": 59.7294446568, "source": "2014年北京市公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 1002777, "material": "", "question": "在嘈杂环境下,大脑会自动_______不熟悉的人的声音,只_______身边熟人所发出的声音。在这种情况下,那些不熟悉的话语声只好面对_______的命运。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 筛选 保留 置若罔闻\nB. 过滤 接收 充耳不闻\nC. 淘汰 选择 灰飞烟灭\nD. 排除 存储 烟消云散", "choice": "B", "keypoints": "对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 2531498, "human_acc": 82.9879778692, "source": "2015年国家公务员录用考试《行测》题(省部级)第39题", "difficulty": 5, "formulas": 0, "history": [{"id": 45853, "material": "", "question": "在各种利益的_________下,一批_________的企业家把目光盯在了高科技产业上,看准了就一掷千金。", "type": "单选题", "options": "A. 驱动 深谋远虑\nB. 诱惑 深谋远虑\nC. 驱动 深思熟虑\nD. 诱惑 深思熟虑", "choice": "A", "keypoints": "对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 673763, "human_acc": 73.5447034046, "source": "2012年广东省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}, {"id": 1687384, "material": "", "question": "世界上的树____________,有的像白杨一样________,有的像垂柳一样飘逸,有的像油松一样坚韧。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 千变万化 挺立\nB. 千差万别 挺括\nC. 千奇百怪 挺进\nD. 千姿百态 挺拔", "choice": "D", "keypoints": "对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 586815, "human_acc": 95.5319819705, "source": "2015年江苏省公务员录用考试《行测》题(C类)第18题", "difficulty": 5, "formulas": 0}, {"id": 2693068, "material": "", "question": "新冠肺炎疫情为滥捕滥食野生动物敲响的警钟,可谓____________。修法严格保护野生动物,________野生动物非法交易,势在必行。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 惊世骇俗 抑制\nB. 发人深省 遏制\nC. 骇人听闻 阻止\nD. 振聋发聩 遏止", "choice": "D", "keypoints": "对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 28694, "human_acc": 51.8331358472, "source": "2020年下半年省考第十三季行测模考大赛(浙江卷)第30题", "difficulty": 6, "formulas": 0}, {"id": 49143, "material": "", "question": "一般而言,史学家对史料有兴趣,文学家对铺张场景、______气氛有兴趣,司马光的《资治通鉴》,爱好文学的人读不下去;太史公写的《鸿门宴》,史学家认为______。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 烘托 有失偏颇\nB. 制造 不忍卒读\nC. 描绘 堪为典范\nD. 渲染 不足奉法", "choice": "D", "keypoints": "对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 589801, "human_acc": 37.2969866107, "source": "2013年江苏省公务员录用考试《行测》题(A类)第14题", "difficulty": 5, "formulas": 0}, {"id": 18861, "material": "", "question": "从各级政府对“网络问政”的______来看,这并非是一时的______,而是______地______了党和政府探索扩大社会主义民主的决心。", "type": "单选题", "options": "A. 反映 权宜之计 真真切切 体现\nB. 反映 缓兵之计 实实在在 反应\nC. 反应 权宜之计 实实在在 反映\nD. 反应 缓兵之计 真真切切 表现", "choice": "C", "keypoints": "对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 734000, "human_acc": 53.0295640327, "source": "2012年广东省公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 44741, "material": "", "question": "随着国际文化交流的日益频繁,各国文学读物大量涌现,使人__________,其中不乏各种文化珍品的翻译精编,但也有选材不严的__________现象,为读者所诟病。\n\n依次填入画横线中最恰当的一项是:", "type": "单选题", "options": "A. 目不暇接 鱼目混珠\nB. 叹为观止 哗众取宠\nC. 琳琅满目 鱼龙混杂\nD. 招架不住 泥沙俱下", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 441291, "human_acc": 85.7663083997, "source": "2012年江苏省公务员录用考试《行测》题(C类)第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 2742295, "material": "", "question": "语言是民族认同最重要的标志,因此,大力开展历史汉语、现代汉语研究的重要性____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 有目共睹\nB. 不言而喻\nC. 不置可否\nD. 众口一词", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 527671, "human_acc": 93.9210227585, "source": "2021年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 748671, "material": "", "question": "国学内容浩如烟海、博大精深,即使皓首穷经、焚膏继晷也无法______。同时,国学本身毕竟是古代社会留下来的历史文化遗产,精华与糟粕并存。因此,国学研究应有一个______的过程。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 曲尽其妙 去伪存真\nB. 一应俱全 披沙拣金\nC. 兼容并包 大浪淘沙\nD. 博古通今 千锤百炼", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 437049, "human_acc": 39.6644312194, "source": "2014年青海省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}, {"id": 5509832, "material": "", "question": "杂技天生具有惊险、高难、奇巧的审美特征,擅长刻画英雄气概,表现勇于征服困难的英雄主义精神。从这个角度来说,找到最能凸显杂技“险”“难”特质的题材,往往能使杂技剧的出新出彩____________。军事题材、公安题材、工业题材,都是杂技剧可以____________的领域。\n\n填入画横线部分最恰当的一组是:", "type": "单选题", "options": "A. 事半功倍 大显身手\nB. 叹为观止 脱颖而出\nC. 别具匠心 出奇制胜\nD. 技高一筹 精耕细作", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 840142, "human_acc": 71.6552678, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第28题", "difficulty": 5, "formulas": 0}, {"id": 5188157, "material": "", "question": "创新精神是中华民族最鲜明的禀赋。在5000多年文明发展进程中,中华民族为世界贡献了无数科技创新成果,对世界文明进步影响深远、贡献巨大,也使中国长期居于世界强国之列。然而,明代以后,由于封建统治者____________,下令闭关锁国,中国同世界科技发展潮流____________,屡次错失富民强国的历史机遇。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 夜郎自大 渐行渐远\nB. 固步自封 各行其是\nC. 孤芳自赏 南辕北辙\nD. 敝帚自珍 背道而驰", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 110214, "human_acc": 75.2780953418, "source": "2022下半年省考第六季行测模考大赛(深圳卷)第67题", "difficulty": 4, "formulas": 0}, {"id": 5389862, "material": "", "question": "由于网络经济瞬息万变,新技术、新业态、新模式____________,因而《最高人民法院关于适用〈中华人民共和国反不正当竞争法〉若干问题的解释》并未详尽列举新型网络不正当竞争行为的表现形态与认定标准。这一规范设计有利于鼓励经营者进行契合商业道德的突破式、颠覆式创新,避免经营者在争夺动态竞争利益中____________,为市场自我演化与技术迭代创新预留空间。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 比比皆是 进退失据\nB. 层出不穷 动辄得咎\nC. 屡见不鲜 功败垂成\nD. 此起彼伏 投鼠忌器", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 260388, "human_acc": 69.0454245203, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第67题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4651777, "material": "", "question": "中亚探险史,罗布泊是一个____________的话题。我们所面对的“丝绸之路热”,是对罗布泊探险的接续。在一百多年的时间长河里,她绚丽的颜色一直没有褪去。当人们读到这本书的最后一页时,会为罗布荒原的大地早就面目全非而____________,也会为作家从容穿越于时间壁垒间的气魄____________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 历久弥新 痛心疾首 自愧弗如\nB. 经久不衰 怅然若失 拍案叫绝\nC. 讳莫如深 喟然长叹 击节赞叹\nD. 众说纷纭 抱恨终天 赞不绝口", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 1035230, "human_acc": 60.3674545753, "source": "2022年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 2045572, "material": "", "question": "中国是文明古国,礼仪教化之邦。如果有人在大庭广众之下喧哗不止,则不免让人__________。\n\n填入横线处的词语,最恰当的一项是:", "type": "单选题", "options": "A. 侧目而视\nB. 恨之入骨\nC. 置若罔闻\nD. 不以为然", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 962874, "human_acc": 92.0198281395, "source": "2017年广州市公务员录用考试《行测》题(单考区卷)第5题", "difficulty": 5, "formulas": 0}, {"id": 2679183, "material": "", "question": "立足国内超大规模市场,通过繁荣国内经济,畅通国内大循环,国内市场主体会____________,率先展开新一轮的产业升级,推动新一轮产业布局,带动经济实现更好发展。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 继往开来\nB. 捷足先登\nC. 蓄势待发\nD. 首当其冲", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 144293, "human_acc": 43.8593694774, "source": "2021年国考第二十一季行测模考大赛(地市级)第23题", "difficulty": 7, "formulas": 0}, {"id": 5607575, "material": "", "question": "大脑复杂的神经信息处理与认知,即便是超级计算机也____________。因此,脑科学研究被视为自然科学研究的“终极疆域”,国际脑研究组织认为21世纪是“脑科学时代”。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 略逊一筹\nB. 相形见绌\nC. 无计可施\nD. 爱莫能助", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 51133, "human_acc": 49.3849373203, "source": "2023下半年省考第八季行测模考大赛(广东县级卷)第16题", "difficulty": 6, "formulas": 0}, {"id": 49295, "material": "", "question": "如今在地铁或公交汽车上,人们手持智能手机或者电子阅读器等终端设备__________看小说的情景已__________,其中最流行的莫过于玄幻、仙侠以及女生言情小说。", "type": "单选题", "options": "A. 屏气凝神 司空见惯\nB. 目不转睛 层出不穷\nC. 专心致志 多如牛毛\nD. 全神贯注 屡见不鲜", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 1154774, "human_acc": 81.1487788953, "source": "2013年江苏省公务员录用考试《行测》题(C类)第14题", "difficulty": 5, "formulas": 0}, {"id": 4022427, "material": "", "question": "量子科技是事关国家安全和社会经济高质量发展的战略性领域,是对传统技术体系产生冲击、进行重构的重大颠覆性技术创新,将引领新一轮科技革命和产业变革,可谓“____________”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独占鳌头\nB. 举足轻重\nC. 前途无量\nD. 举重若轻", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 168438, "human_acc": 57.6841330341, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第1题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2524933, "material": "", "question": "甲、乙两厂加班加点生产医用防护用品。已知甲厂每天生产医用口罩和防护服的效率分别是乙厂的$\\frac{3}{4}$和$\\frac{2}{3}$,且两厂每天最多生产医用口罩21000只或防护服1200套。现甲、乙两厂需要生产医用口罩15万只和防护服3600套,问至少需要多少天?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "A", "keypoints": "统筹规划问题;工程问题-其他", "most_wrong": "C", "human_count": 265403, "human_acc": 13.9987113936, "source": "2020年上半年省考第二十六季行测模考大赛(浙江卷)第58题", "difficulty": 7, "formulas": 2, "history": [{"id": 2452732, "material": "", "question": "梳理甲、乙两个案件的资料,张警官单独完成,分别需要2小时、8小时;王警官单独完成,分别需要1小时、6小时。若两人合作完成,则需要的时间至少是", "type": "单选题", "options": "A. 3小时\nB. 4小时\nC. 5小时\nD. 6小时", "choice": "B", "keypoints": "统筹规划问题;工程问题-其他", "most_wrong": "C", "human_count": 636756, "human_acc": 51.2491440992, "source": "2020年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第51题", "difficulty": 5, "formulas": 0}, {"id": 15749, "material": "", "question": "有甲、乙两项工程,张师傅单独完成甲工程需6天,单独完成乙工程需30天,李师傅单独完成甲工程需18天,单独完成乙工程需24天,若两人合作完成这两项工程,则最少需要的天数为:", "type": "单选题", "options": "A. 16\nB. 15\nC. 12\nD. 10", "choice": "A", "keypoints": "统筹规划问题;工程问题-其他", "most_wrong": "C", "human_count": 60419, "human_acc": 60.3386351975, "source": "2010年江苏省公务员录用考试《行测》题(A类)第34题", "difficulty": 5, "formulas": 0}, {"id": 2660808, "material": "", "question": "设有A、B两项工程,甲队单独完成A工程需要15天,单独完成B工程需要10天;乙队单独完成A工程需要5天,单独完成B工程需要15天。统筹安排甲、乙两队分工协作,以有效方式完成这两项工程,最少需要多少天?", "type": "单选题", "options": "A. 7\nB. 7.5\nC. 8\nD. 9", "choice": "C", "keypoints": "统筹规划问题;工程问题-其他", "most_wrong": "B", "human_count": 36473, "human_acc": 56.7433443917, "source": "2018年山东省选调应届优秀高校毕业生到基层工作笔试行政职业能力测验第44题", "difficulty": 4, "formulas": 0}, {"id": 2273196, "material": "", "question": "有A、B两项工程,甲队单独完成A工程需要15天,单独完成B工程需要10天。乙队单独完成A工程需要5天,单独完成B工程需要15天,请你统筹安排甲乙两队分工协作,以有效方式完成这两项工程,最少需要(    )天。", "type": "单选题", "options": "A. 8\nB. 7.5\nC. 15\nD. 11.25", "choice": "A", "keypoints": "统筹规划问题;工程问题-其他", "most_wrong": "B", "human_count": 728, "human_acc": 61.9505494505, "source": "2014年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第68题", "difficulty": 4, "formulas": 0}, {"id": 2620219, "material": "", "question": "一个组件需要1个甲零件、2个乙零件、2个丙零件组合而成。现在要加工20个组件,工人小刘加工这三种零件时每个零件均需2小时,小张加工这三种零件时每个零件分别需要3小时、2小时、1小时。则完成这批任务两人至少需要多少小时?", "type": "单选题", "options": "A. 60\nB. 40\nC. 120\nD. 80", "choice": "D", "keypoints": "统筹规划问题;工程问题-其他", "most_wrong": "C", "human_count": 90031, "human_acc": 23.3341848919, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第58题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "统筹规划问题"], ["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 1796192, "material": "", "question": "对互联网企业来讲,从用户那里收集到的信息主要包括消费习惯、行为特征、个人数据等。企业可以通过收集这些信息去开展大数据分析,进一步挖掘用户的潜在消费能力和更__________的价值,从而为用户提供更具________的服务。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 市场化 独创性\nB. 多元化 针对性\nC. 智能化 实用性\nD. 规模化 多样性", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 1276680, "human_acc": 89.8107591566, "source": "2016年423联考《行测》题(广西卷)第32题", "difficulty": 5, "formulas": 0, "history": [{"id": 163315, "material": "", "question": "少年儿童好奇心强,但对是非的判断能力弱,他们很难对消极不良的作品进行理性________,因而正确的________很重要。", "type": "单选题", "options": "A. 区分 引领\nB. 分析 说服\nC. 筛选 训练\nD. 鉴别 教育", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 460431, "human_acc": 69.1995108931, "source": "2013年四川公务员录用考试《行测》题(下半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 497, "material": "", "question": "理论与创作恰如一辆车的两个轮子,失去一个,另一个就难以_________地前行了,理论是支点,失去支点,也就失去了_________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 稳健 平衡\nB. 正常 根基\nC. 平衡 力量\nD. 自如 重心", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 106129, "human_acc": 46.439710164, "source": "2008年山西省公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 2262740, "material": "", "question": "描述新物种是生物学从诞生至今的几百年时间里最为_________的工作。即便是在今天,使用多种研究手段的现代分类学仍然是一项重要的科学研究,因为它记录了地球的生物__________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 前沿 特异性\nB. 综合 复杂性\nC. 长久 遗传性\nD. 基础 多样性", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 28698, "human_acc": 79.6187887658, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第18题", "difficulty": 4, "formulas": 0}, {"id": 820221, "material": "", "question": "体育竞赛这种特殊形式的商品不能进行_____,在比赛结束时,对它的消费也就结束,不能再用做交易,也就是说这种商品的买卖只有唯一的机会,这种唯一性相对于体育竞赛由过程到结果的不可重复性,就使得体育竞赛商品成为了市场上的“_____”,因此更加凸显了这种商品的魅力与价值。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 加工 真品\nB. 储存 孤品\nC. 回收 藏品\nD. 收藏 珍品", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 428555, "human_acc": 59.9222970214, "source": "2014年黑龙江省政法干警考试《行政职业能力测验》试卷(专科)第32题", "difficulty": 5, "formulas": 0}, {"id": 1796200, "material": "", "question": "当企业的业务都实现计算机化后,那些从事计算机业务的企业却遭遇了_______。如果需要计算机化的业务流程没有增加,顾客对性能没有特别需求,他们就无法继续______自己的产品。所以,所有与计算机相关的企业,都必须为已经得到满足的顾客们,提供一个购买他们更新技术的_______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 瓶颈 销售 理由\nB. 阻碍 生产 方法\nC. 困境 改进 渠道\nD. 障碍 推广 优惠", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 1291308, "human_acc": 77.8081604079, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第28题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2188652, "material": "", "question": "改革开放以来,我国文艺创作迎来了新的春天,产生了大量________________的优秀作品。同时,也不能否认,在文艺创作方面也存在着有数量缺质量、有“高原”缺“高峰”的现象,存在着抄袭模仿、________________的问题。精品之所以“精”,就在于其思想精深、艺术精湛、制作精良。文艺工作者要________________,随着时代生活创新,以自己的艺术个性进行创新。\n\n依次填入划线部分最恰当的一项是:", "type": "单选题", "options": "A. 脍炙人口 千篇一律 志存高远\nB. 家喻户晓 泥沙俱下 标新立异\nC. 良莠不齐 照猫画虎 精耕细作\nD. 喜闻乐见 因循守旧 与时俱进", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 1601982, "human_acc": 43.9910685638, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 2270511, "material": "", "question": "________________的东西,可能我们最缺乏了解;平平常常的东西,可能最富有魅力。\n\n填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 鲜为人知\nB. 稀奇古怪\nC. 习以为常\nD. 司空见惯", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1716, "human_acc": 58.7412587413, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第15题", "difficulty": 5, "formulas": 0}, {"id": 2605768, "material": "", "question": "千百年来,中华民族正是在与各种疫病、自然灾害、外来侵略等艰难困苦的斗争中,练就了____________、众志成城的精神禀赋。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可歌可泣\nB. 百折不挠\nC. 坚定不移\nD. 不卑不亢", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1700070, "human_acc": 90.2199321204, "source": "2020年广东省公务员录用考试《行测》试题(县级卷)(网友回忆版)第1题", "difficulty": 4, "formulas": 0}, {"id": 3931792, "material": "", "question": "用简单的方式讲述故事,无需使用戏剧化或夸张的声音,但也不要过于单调,语调要足够____________,让孩子天马行空地想象。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 此起彼伏\nB. 铿锵有力\nC. 抑扬顿挫\nD. 声情并茂", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 121454, "human_acc": 56.6675449141, "source": "2021下半年省考第十七季行测模考大赛(四川卷)第17题", "difficulty": 6, "formulas": 0}, {"id": 4792113, "material": "", "question": "民主是联合国的核心价值,是人权的关键。民主为解决各种分歧提供了渠道,给边缘人群带来希望。但民主并非____________,需要培养和捍卫。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 唾手可得\nB. 纸上谈兵\nC. 一劳永逸\nD. 近在咫尺", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 2066, "human_acc": 66.6021297193, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第21题", "difficulty": 4, "formulas": 0}, {"id": 4678563, "material": "", "question": "家中____________的藏书和频繁造访的文学界人士,是她踏上文学之路的启蒙,而严肃理性与唯美浪漫并重的家庭教育,则培养她从小具备独立人格与深刻思想。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 俯拾皆是\nB. 浩如烟海\nC. 鳞次栉比\nD. 寥若晨星", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 20693, "human_acc": 82.6269753057, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第16题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3667175, "material": "", "question": "诚然,“唯分数论”不是无源之水。过于注重分数的背后,有一些地方片面的教育政绩观、质量观的影响,有部分单位“唯名校”“唯学历”用人观的助推,也有愈发激烈的人才竞争在教育领域的________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 折射\nB. 缩影\nC. 异化\nD. 彰显", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 16096, "human_acc": 36.9781312127, "source": "2021下半年省考第八季行测模考大赛(内蒙古卷)第23题", "difficulty": 6, "formulas": 0, "history": [{"id": 12465, "material": "", "question": "各级政府主管部门和财政机关不再把企业置于直接管理之下,并不等于完全放弃对企业经营活动的_________和_________。", "type": "单选题", "options": "A. 管理 限制\nB. 领导 控制\nC. 引导 控制\nD. 引导 制约", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 111891, "human_acc": 38.3113923372, "source": "2010年黑龙江省公务员录用考试《行测》题第34题", "difficulty": 6, "formulas": 0}, {"id": 5166433, "material": "", "question": "建筑师设计的篱苑书屋,用未经雕琢的原木枝条覆盖建筑的玻璃表面,外部隐逸于山水之间,内部则光影________,令人恍如置身密林深处。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 旖旎\nB. 斑驳\nC. 晦暗\nD. 绰约", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 11190, "human_acc": 67.5692582663, "source": "2022下半年省考第五季行测模考大赛(广东乡镇卷)第1题", "difficulty": 4, "formulas": 0}, {"id": 3968326, "material": "", "question": "在互联网出现之前,传统的大众传播媒介几乎是人们获取大量信息的唯一有效途径。媒体对某个事件报道得越多,此事件就越容易成为公众关注的________。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 亮点\nB. 要点\nC. 重点\nD. 焦点", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 16841, "human_acc": 97.2745086396, "source": "2021下半年省考第十八季行测模考大赛(内蒙古卷)第23题", "difficulty": 3, "formulas": 0}, {"id": 5008940, "material": "", "question": "每天清晨,费尔南多·博特罗都会前往工作室,潜心创作。他没有接受过专业训练,但从孩提时起,便对绘画抱有极大热情,唯有________其中,才能感受到真正的乐趣与热爱。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 沉浸\nB. 沉迷\nC. 沉湎\nD. 沉溺", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 198511, "human_acc": 93.1686405287, "source": "2022上半年省考第二十一季行测模考大赛(广东乡镇卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 4673685, "material": "", "question": "近些年美食纪录片不断挖掘美食内涵和特征,让许多地方美食、特色美食、小众美食映入大众眼帘,也通过美食展示风土人情,揭示食物背后自然环境、历史、文化相互________的丰富性。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 交织\nB. 重叠\nC. 纠缠\nD. 堆砌", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 41829, "human_acc": 96.5335054627, "source": "2022上半年省考第二季行测模考大赛(天津卷)第12题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 1688488, "material": "", "question": "随着科技的发展,众多学者的研究在越来越深入的同时,视角也越来越窄。许多人一辈子的研究范围只限于某一专题,甚至某一个研究点,真是____________,见一斑而不见全豹。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 目无全牛\nB. 目光如豆\nC. 目光如炬\nD. 远见明察", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 442138, "human_acc": 60.324830709, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 30919, "material": "", "question": "水污染的形势是严峻的,而尤其使我们___________的是,当前工业发展的步伐是不可能停下来的。  \n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 畏首畏尾\nB. 骑虎难下\nC. 进退维谷\nD. 瞻前顾后", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 141857, "human_acc": 56.1917987833, "source": "2011年江苏省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 15661, "material": "", "question": "水污染的形势是严峻的,而尤其使我们____________的是,当前工业发展的步伐是不可能停止或者减速的。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 畏首畏尾\nB. 骑虎难下\nC. 进退维谷\nD. 瞻前顾后", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 74906, "human_acc": 62.6211518436, "source": "2011年江苏省公务员录用考试《行测》题(C类)第14题", "difficulty": 5, "formulas": 0}, {"id": 2392029, "material": "", "question": "传媒产业的发展史,就是一部技术发展史。所以,当互联网技术____________之时,传统媒体的处境就开始变得尴尬。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无孔不入\nB. 突飞猛进\nC. 如日中天\nD. 一统天下", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 24098, "human_acc": 57.7890281351, "source": "2016年黑龙江省公务员录用考试《行测》题(县乡卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 16495, "material": "", "question": "____________的批评,像一面优质的镜子,能照出自身的真相;____________的恭维,如同歪曲物体的“哈哈镜”,难识庐山真面目。\n\n填入横线上最恰当的一项是:", "type": "单选题", "options": "A. 直截了当 直言不讳\nB. 直言不讳 虚情假意\nC. 虚情假意 直言不讳\nD. 甜言蜜语 虚情假意", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 39619, "human_acc": 97.5390595421, "source": "2009年贵州省公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}, {"id": 4661676, "material": "", "question": "艺谱类资源是针对某个艺术门类的创作技艺的实操性表述和概括,具体表现为书谱、画谱、曲谱、舞谱等,它们体现了艺术创作技艺的格范和样本。这类资源可以让后学者____________,较为直截了当地学到艺术创作的技艺。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 以逸待劳\nB. 按图索骥\nC. 照本宣科\nD. 一蹴而就", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 142713, "human_acc": 81.4789122224, "source": "2021下半年省考第三十九季行测模考大赛(四川卷)第16题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4516574, "material": "", "question": "实体书店是一座城市的文化符号和载体,在促进城市文化品位提升的同时,也逐渐成为________生活方式的城市文化空间。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 引领\nB. 发动\nC. 主导\nD. 服务", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 23046, "human_acc": 78.6210188319, "source": "2021下半年省考第二十九季行测模考大赛(内蒙古卷)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 1791754, "material": "", "question": "大自然慷慨的_________,使人类得以繁衍生息,创造文明。人类理应顺应自然,但人类的历史,反倒常常是_______与辜负大自然美好情意的历史。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 赐予 轻慢\nB. 分享 挥霍\nC. 奉献 嘲弄\nD. 供给 忽略", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 658143, "human_acc": 66.2912163466, "source": "2016年江苏省公务员录用考试《行测》题(C类)第48题", "difficulty": 4, "formulas": 0}, {"id": 5591907, "material": "", "question": "狭小的宿舍、没有集体活动的校园生活、接触不到老师同学的网课、看不到尽头的封校时光,让这届大学生充满着无奈和________。长期封控导致的各种社会负面情绪,亟需得到及时疏导和________。而居家跳操,不失为一种娱乐消遣、宣泄情绪的好方法。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 悲哀 转移\nB. 遗憾 释放\nC. 感伤 疏浚\nD. 懊悔 发泄", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 2973, "human_acc": 93.4746047763, "source": "2023下半年省考第五季行测模考大赛(陕西卷)第28题", "difficulty": 3, "formulas": 0}, {"id": 5745981, "material": "", "question": "信息通信业是国民经济的战略性、基础性、__________行业,对促进经济社会发展具有重要支撑作用。我国建成全球规模最大、技术领先的网络基础设施,工业互联网融合应用新业态、新模式蓬勃兴起,信息通信业有效________了实体经济转型升级。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 先导性 驱动\nB. 前瞻性 激活\nC. 颠覆性 助力\nD. 根本性 推动", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 5476, "human_acc": 30.6428049671, "source": "2023下半年省考第二十一季行测模考大赛(陕西卷)第25题", "difficulty": 7, "formulas": 0}, {"id": 5562930, "material": "", "question": "在许多有着悠久法治传统的国家,即使是早已存在的部门法,也出现了向着后出现的宪法进行整合的趋势。此种整合不应该是________的,而是体现为宪法学与部门法学的互动。法学者必须________学科自足观念,理解和尊重其他部门法学科的知识和学理,协作完成法教义学上的操作。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 静态 扭转\nB. 单向 摒弃\nC. 封闭 抵制\nD. 机械 突破", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 46759, "human_acc": 86.0582989371, "source": "2023下半年省考第二季行测模考大赛(陕西卷)第33题", "difficulty": 3, "formulas": 0}, {"id": 5592862, "material": "", "question": "与其他食品相比,月饼、粽子的过度包装问题仍相对突出,存在包装层数过多、包装空隙过大等问题。为让月饼、粽子包装“________”和“轻装上架”,________月饼和粽子的过度包装现象,同时________给企业生产经营秩序造成影响,在广泛征求行业协会、企业和消费者代表意见的基础上,有关部门将标准修改单的实施日期定在了即将到来的中秋之前。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 瘦身 遏制 避免\nB. 减肥 控制 免除\nC. 健身 遏止 回避\nD. 精简 限制 防止", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 4437, "human_acc": 95.9206671174, "source": "2023下半年省考第五季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5430277, "material": "", "question": "公司研发部门共5名员工,年龄各不相同,其中年龄最大的比最小的大10岁。某年,年龄最大的2人年龄之和是最小的2人年龄之和的1.25倍;2年后,除年龄排名居中的1人外其余4人年龄之和为125岁。那么再过2年,年龄排名第三的员工最大可能为多少岁?", "type": "单选题", "options": "A. 33\nB. 34\nC. 35\nD. 36", "choice": "C", "keypoints": "非典型最值问题;年龄问题", "most_wrong": "B", "human_count": 269212, "human_acc": 46.34043059, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第47题", "difficulty": 4, "formulas": 0, "history": [{"id": 2846582, "material": "", "question": "某年一家四口爸爸、妈妈、姐姐和弟弟年龄加和恰好为88岁。已知爸爸比妈妈大4岁,姐姐是四人年龄和的$\\frac{1}{11}$。问这一年爸爸至少为多少岁?", "type": "单选题", "options": "A. 37\nB. 38\nC. 42\nD. 43", "choice": "B", "keypoints": "非典型最值问题;年龄问题", "most_wrong": "C", "human_count": 84190, "human_acc": 45.1977669557, "source": "2021上半年省考第十季行测模考大赛(安徽卷)第14题", "difficulty": 6, "formulas": 1}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "年龄问题"]]}, {"id": 5222031, "material": "", "question": "国家发展改革委、国务院国资委、工业和信息化部等多个部门在保供应链、保产业链方面相继发布多项措施······抓实抓细疫情防控各项举措,坚决遏制疫情扩散、________,同时________堵点卡点,保障物流畅通,成为各地当前重大而紧迫的任务。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蔓延 打通\nB. 弥漫 疏通\nC. 散逸 打开\nD. 转移 畅通", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 31902, "human_acc": 89.1072660021, "source": "2022下半年省考第八季行测模考大赛(深圳卷)第66题", "difficulty": 3, "formulas": 0, "history": [{"id": 1357125, "material": "", "question": "有人说,探寻家园之美,应自乡愁深处________;建设美丽中国,当从乡村田野________。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 体验 开端\nB. 体味 开端\nC. 体验 起步\nD. 体味 起步", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 783952, "human_acc": 51.1968845031, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第8题", "difficulty": 5, "formulas": 0}, {"id": 2255908, "material": "", "question": "带着父亲的教导与________,柳传志的家园梦想在时代中壮大。“以产业报国为己任”成为他_________联想控股集团的第一要务。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 继承 给予\nB. 承传 赋予\nC. 遗传 给予\nD. 传承 赋予", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 4917, "human_acc": 67.2564571893, "source": "2014年江西省法检系统招录考试《行测》题第8题", "difficulty": 5, "formulas": 0}, {"id": 22303, "material": "", "question": "实践表明,__________良善的制度设计,住房保障已不再是政府的财政包袱,相反,它还是经济增长的__________。住房保障本身已表现出一种强大可持续的生命力,并成为能够产生稳定回报的投资品。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 基于 机遇\nB. 出于 动力\nC. 由于 前提\nD. 鉴于 表现", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 165185, "human_acc": 40.4734086025, "source": "2009年国家公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2255943, "material": "", "question": "客家文化自宋代之后取得长足_______后,近代以来又受到海外文化的________滋养,由此形成了开放、包容的文化性格,也是经历南迁和几个时期发展之后,与中原文化、岭南文化、台湾文化等长期碰撞、交流、吸收、________的结果。\n\n 依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 发展 浸润 溶化\nB. 进步 溶润 融合\nC. 进步 沾凝 熔合\nD. 发展 浸润 融合", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 4849, "human_acc": 93.0294906166, "source": "2014年江西省法检系统招录考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 4642071, "material": "", "question": "汉俳作为世界上最短的古诗体之一,以极其短小的形式去________作者瞬间的感受,而且惯于使用比喻、象征等手法,其语言简洁且________,便于记忆和流传。汉俳创作一般不要求押韵平仄,重在表现个性在当下的即时感受,有着生命与心迹的真实________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 展现 隽永 体悟\nB. 明晰 生动 体会\nC. 呈现 朦胧 体验\nD. 凸显 精深 领悟", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 82514, "human_acc": 45.5898393, "source": "2021下半年省考第三十六季行测模考大赛(陕西卷)第34题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4673160, "material": "", "question": "甲、乙、丙3个单位订阅同一款报刊,已知3个单位共订了12份,其中,每个单位订阅数量不少于3份,但不超过5份,则这3个单位的报刊订阅数量可能有(    )种组合。", "type": "单选题", "options": "A. 2\nB. 6\nC. 7\nD. 9", "choice": "C", "keypoints": "同素分堆问题;基础排列组合", "most_wrong": "B", "human_count": 1002363, "human_acc": 55.5762732663, "source": "2022年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第42题", "difficulty": 4, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 3561567, "material": "", "question": "美国密苏里大学进行了一项懒惰基因实验,研究人员首先根据实验室大鼠在鼠笼跑轮上的运动积极性对它们进行分类,然后令有相同活跃度的大鼠交配繁殖10代。他们观察到活跃组的大鼠一代比一代活跃,而不活跃组的大鼠却变得越来越懒惰。到了第10代,活跃组大鼠每天跑动的时间是不活跃组大鼠的10倍,不活跃组的大鼠后代呈现出更为懒惰的状态。由此得出结论,人越是懒惰,其后代就会更懒惰。\n\n要得到上述结论,需要补充的前提是:", "type": "单选题", "options": "A. 懒惰是生物在进化过程中保存体力的重要方式,生物越懒惰越容易在竞争中存活\nB. 懒惰大鼠后代的懒惰习惯是因为受上一代的长期影响而后天养成的\nC. 对不活跃组的大鼠继续研究,发现不论年轻大鼠还是暮年大鼠,他们繁殖的后代都很懒惰\nD. 大鼠和人类的遗传机理极为相似,懒惰研究的结论对人类来说具有代表性", "choice": "D", "keypoints": "搭桥", "most_wrong": "B", "human_count": 89838, "human_acc": 90.5808232596, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2377142, "material": "", "question": "假设“如果张楠和林枫不是志愿者,那么杨梅是志愿者”是前提,“林枫是志愿者”为结论。\n\n那么,下列各项中,是其必要前提的是:", "type": "单选题", "options": "A. 张楠是志愿者\nB. 杨梅不是志愿者\nC. 杨梅和张楠都是志愿者\nD. 杨梅和张楠都不是志愿者", "choice": "D", "keypoints": "搭桥", "most_wrong": "B", "human_count": 1547257, "human_acc": 57.6758095132, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2387377, "material": "", "question": "有报道称,已婚者一般比独身者寿命长,所以独身的压力一定对健康有损耗。\n\n以下哪项如果为真,最能支持上述论证?", "type": "单选题", "options": "A. 独身者寿命短于同龄已婚者\nB. 独身者会比已婚者的压力更大\nC. 已婚者寿命不尽相同\nD. 人的寿命受多种因素影响", "choice": "B", "keypoints": "搭桥", "most_wrong": "A", "human_count": 31582, "human_acc": 63.0739028561, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第99题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"]]}, {"id": 2172286, "material": "", "question": "小李为办公室购买了红、黄、蓝三种颜色的笔若干支,共花费40.6元。已知红色笔单价为1.7元、黄色笔为3元、蓝色笔为4元,则小李买的笔总数最多是:", "type": "单选题", "options": "A. 19支\nB. 20支\nC. 21支\nD. 22支", "choice": "C", "keypoints": "经济利润问题;普通不定方程;非典型最值问题", "most_wrong": "B", "human_count": 700998, "human_acc": 68.8151749363, "source": "2018年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第59题", "difficulty": 5, "formulas": 0, "history": [{"id": 2049636, "material": "", "question": "某零件加工厂采用计件工资。已知合格品每件1元,优良品每件2元,瑕疵品不得工资。当生产的优良品达到生产总数的$30\\%$时,可额外获得400元奖励。某工人生产了3000个零件,共获得计件工资4000元,请问该工人生产的零件中,合格品最多为多少个?", "type": "单选题", "options": "A. 2100\nB. 2000\nC. 1800\nD. 1200", "choice": "C", "keypoints": "经济利润问题;普通不定方程;非典型最值问题", "most_wrong": "B", "human_count": 563164, "human_acc": 48.4528485486, "source": "2017年422联考《行测》题(山东卷)第53题", "difficulty": 5, "formulas": 1}, {"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 4525833, "material": "", "question": "国产品牌的兴起,与其精研中国消费市场,________消费者多样化需求有着直接关系。调研发现,很多中国品牌商不再走“从国外创意到国内山寨”的路径,而是通过发现消费者的________,通过大数据、人工智能等技术对其进行分析,从而开发出更具魅力的产品。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 满足 卖点\nB. 适应 痛点\nC. 迎合 亮点\nD. 协调 要求", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 338411, "human_acc": 32.8943208111, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第24题", "difficulty": 7, "formulas": 0, "history": [{"id": 2661755, "material": "", "question": "乐观地说,先不论孩子们写了什么,仅就这种想象的本身,就________着多彩的光芒:教育的成就、文学的繁荣、出版的敏锐。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 影射\nB. 照射\nC. 映射\nD. 映衬", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 9111, "human_acc": 89.342552958, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第12题", "difficulty": 4, "formulas": 0}, {"id": 5406814, "material": "", "question": "前不久迪士尼乐园里的玲娜贝儿以其独特的个性和互动形式一炮而红,当下正在走红的可达鸭玩具同样________出独特的传播方式、强烈的社交属性。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 彰显\nB. 催生\nC. 标榜\nD. 激发", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 33819, "human_acc": 74.7981903664, "source": "2022下半年省考第二十二季行测模考大赛(深圳卷)第61题", "difficulty": 4, "formulas": 0}, {"id": 5661949, "material": "", "question": "时至九月,暑气渐消,秋日的舒爽让人心旷神怡,金色的阳光给大地________上更加丰富的色彩。各地陆续进入秋粮收获时间,广袤的田野承载着丰收的希望,将用这一年的好收成来回馈人们的辛劳付出。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 习染\nB. 点染\nC. 润饰\nD. 粉饰", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 5736, "human_acc": 56.6771269177, "source": "2023下半年省考第十三季行测模考大赛(陕西卷)第21题", "difficulty": 5, "formulas": 0}, {"id": 4673698, "material": "", "question": "中国传统故事诗学在现代以来看似被________,实际上其中蕴含的民间性、劝诫性、口语化特征________了五四新文化运动的方向,促成了文学观念变革的学术增长点。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 否定 契合\nB. 质疑 迎合\nC. 颠覆 遵循\nD. 追捧 印证", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 27683, "human_acc": 69.8515334321, "source": "2022上半年省考第二季行测模考大赛(浙江卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 3725951, "material": "", "question": "调查显示,社交上不愉快的经历,往往成为青少年社交障碍的________;他们也因此容易在认知上产生负性思维,倾向于________他人言行举止中的负性信息,或作出负面解释。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 诱因 洞察\nB. 起点 捕捉\nC. 印证 捕获\nD. 结果 放大", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 87097, "human_acc": 50.1222774608, "source": "2021下半年省考第十一季行测模考大赛(四川卷)第21题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5694506, "material": "", "question": "文化产品(如绘画、雕塑、建筑等)往往有其原初意义,____________________。因此,文化产品要在旅游者中具有吸引力,往往还涉及一个“意义重塑”的过程。在这一过程中,人们根据旅游者的喜好在旅游场景中创造文化符号、设计文化意象,并通过这些符号和意象向旅游者展现一个个“场景故事”,这些“场景故事”能否被广泛接纳、广泛共情,很大程度上决定了文旅融合实践的成败。讲好“场景故事”不是一个一劳永逸的过程,它要求不断了解旅游者对文化产品的认识程度和价值偏好,并在与旅游者的互动中不断做出调整,从而保持持久的生命力和吸引力。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 但这种意义并不见得为旅游者认同和接纳\nB. 这种原始的意义却无法保持持久的生命力\nC. 其中重要前提是让旅游者从中找到归属感\nD. 这种意义的传播需要与现实场景紧密结合", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 96966, "human_acc": 60.4510859477, "source": "2023下半年省考第十六季行测模考大赛(广东县级卷)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 4840000, "material": "", "question": "解放战争时期,众多被关押在渣滓洞、白公馆的中国共产党人,经受住种种酷刑折磨,宁死不屈,为中国人民解放事业献出了宝贵生命。他们在牺牲前用血的教训提出的“狱中八条”,字里行间有悲愤有忧虑,有思考有希望,至今仍____________,有着深刻的警示意义。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 言犹在耳\nB. 鞭辟入里\nC. 荡气回肠\nD. 振聋发聩", "choice": "D", "keypoints": "对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 357299, "human_acc": 56.1137870523, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第21题", "difficulty": 6, "formulas": 0, "history": [{"id": 319, "material": "", "question": "两栖爬行动物通过冬眠或夏蛰以抵御严寒酷暑;昆虫以“蛹”或“卵”的形式进行冬眠;鸟类借助长途迁徙或更替羽翼适应气候的变化。这都是___的事。", "type": "单选题", "options": "A. 妇孺皆知\nB. 众所周知\nC. 家喻户晓\nD. 鲜为人知", "choice": "B", "keypoints": "对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 112045, "human_acc": 77.8937034227, "source": "2008年湖南省公务员录用考试《行测》题第8题", "difficulty": 5, "formulas": 0}, {"id": 5049777, "material": "", "question": "优良家风不是____________形成的,它需要一个家庭的数代甚至世代传承。传承优良家风主要传承的是价值观念、精神信仰。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一朝一夕\nB. 一蹴而就\nC. 一步登天\nD. 一了百当", "choice": "A", "keypoints": "对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 20793, "human_acc": 83.3357379887, "source": "2023年国考第二十六季行测模考大赛(地市级)第21题", "difficulty": 3, "formulas": 0}, {"id": 4344633, "material": "", "question": "如何让非遗从节目中的星星之火燎出荧屏,俘获观众的心,还有很长的路要走。非遗类综艺节目即便需要兼顾娱乐属性,也不应____________,过分强调娱乐让明星发光却让非遗暗淡。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 越俎代庖\nB. 喧宾夺主\nC. 哗众取宠\nD. 名不符实", "choice": "B", "keypoints": "对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 157428, "human_acc": 86.5989531722, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第23题", "difficulty": 3, "formulas": 0}, {"id": 4525830, "material": "", "question": "“一只乌鸦捎不来坏消息,一片乌云遮挡不了阳光”。谣言想让友善的美德停下脚步无异于____________,被侮辱和被损害的美德永远不会倒在前行的路上,友善依然是我们生活的主流。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 咎由自取\nB. 螳臂当车\nC. 画饼充饥\nD. 杞人忧天", "choice": "B", "keypoints": "对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 320375, "human_acc": 96.6991806477, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第21题", "difficulty": 3, "formulas": 0}, {"id": 2536338, "material": "", "question": "说实话,旷日持久地打官司,不折不挠地申诉,并不是每一个企业都能够做到,花钱是一回事,耗费在商标维权上的时间成本也会让企业____________。某种程度上讲,侵权成本低、维权成本高,正是市场上“傍名牌”行为屡禁不止的深层原因。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 望而却步\nB. 入不敷出\nC. 敬而远之\nD. 焦头烂额", "choice": "A", "keypoints": "对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 155893, "human_acc": 72.8653627809, "source": "2021年国考第四季行测模考大赛(地市级)第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5600630, "material": "", "question": "一项工程若由乙队单独施工需40天完成;若由甲队单独施工30天后,乙队再加入,20天可以完成。现甲队与乙队按天轮流做这项工程,则完成这项工程至少需要多少天?", "type": "单选题", "options": "A. 29\nB. 30\nC. 57\nD. 58", "choice": "C", "keypoints": "给效率比例型;非典型最值问题", "most_wrong": "B", "human_count": 43951, "human_acc": 35.5555049942, "source": "2023下半年省考第七季行测模考大赛(广东县级卷)第36题", "difficulty": 7, "formulas": 0, "history": [{"id": 5425547, "material": "", "question": "某工程队承包了一个项目,期间所有工人工作日正常工作,周末每天的工作时长为工作日的一半,两周后完成了该项目的一半。为了尽快完工,又招聘一些临时工,工人数量比之前增加了$\\frac{1}{4}$,则完成整个项目至少需要多少天?(假设临时工的工作效率和其他工人一样)", "type": "单选题", "options": "A. 23\nB. 24\nC. 25\nD. 26", "choice": "C", "keypoints": "给效率比例型;非典型最值问题", "most_wrong": "B", "human_count": 235653, "human_acc": 40.4582161059, "source": "2022下半年省考第二十四季行测模考大赛(深圳卷)第57题", "difficulty": 7, "formulas": 1}, {"id": 5472946, "material": "", "question": "某日上午9点,甲、乙、丙三人合作,同时开始贴一幅钻石画。丙9点15分时贴的钻石数与甲9点10分时贴的钻石数相等;9点30分,乙贴的钻石数是丙的1.2倍,此时三人共完成了总钻石数的25%。若余下任务仅交由其中两人合作完成,则完成此幅钻石画最快共需多长时间?(不足1分钟按1分钟计算)", "type": "单选题", "options": "A. 90分钟\nB. 124分钟\nC. 154分钟\nD. 182分钟", "choice": "C", "keypoints": "给效率比例型;非典型最值问题", "most_wrong": "B", "human_count": 439223, "human_acc": 39.1001837335, "source": "2023上半年省考第七季行测模考大赛(深圳卷)第53题", "difficulty": 7, "formulas": 0}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给效率比例型"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5714612, "material": "", "question": "“理智脑”虽然极具智慧,但与“本能脑”和“情绪脑”相比,由于形成太晚,对大脑的________能力很弱,毕竟本能和情绪早已成为人类的天性。而在“理智脑”的带动下,人类社会的发展速度越来越快,古老的“本能脑”和“情绪脑”难以适应这种变化,此时天性就可能带来________,反映到人的行为上,体现为“避难趋易”和“急于求成”,从而出现一些________的举动:明知要先写作业,却忍不住刷起了短视频;明知户外锻炼更健康,却打起了网络游戏······\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 控制 阻碍 矛盾\nB. 影响 困扰 奇怪\nC. 协调 负担 冲突\nD. 指挥 戕害 拖延", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 108869, "human_acc": 87.0899888857, "source": "2023下半年省考第十八季行测模考大赛(上海卷)第5题", "difficulty": 3, "formulas": 0, "history": [{"id": 4695879, "material": "", "question": "那些美好的回忆深深地________鲁迅的心头,像闪光的露珠________于清晨的片片花瓣。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 留在 散落\nB. 烙在 散落\nC. 印在 停留\nD. 存于 停驻", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 9340, "human_acc": 69.0042826552, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 2678805, "material": "", "question": "为什么没有一本让人受用终身的教材?理论知识与社会实践的________是公认的原因,教材除了在学校里应付考试,在实际工作中作用甚微。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 错乱\nB. 矛盾\nC. 脱节\nD. 天堑", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 40360, "human_acc": 95.2502477701, "source": "2020年下半年省考第十一季行测模考大赛(新疆卷)第26题", "difficulty": 3, "formulas": 0}, {"id": 3763340, "material": "", "question": "让职业教育院校安于职业教育定位,提高办学质量,首先必须纠正________职业教育的教育管理制度以及人才评价体系,要破除“唯学历论”,形成崇尚技能的社会氛围。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 仇视\nB. 歧视\nC. 推崇\nD. 提倡", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 15771, "human_acc": 80.7241138799, "source": "2021下半年省考第十三季行测模考大赛(内蒙古卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 3010061, "material": "", "question": "未来控脑战争重在获取对手思维意识,甚至直接________对方首脑机关的思维。目前黑客已可能通过脑机接口盗取人类意识,意识控制已不是________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 捕捉 奢望\nB. 控制 错觉\nC. 干预 幻想\nD. 毁灭 空谈", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 345468, "human_acc": 75.1803350817, "source": "2021年上半年省考终极行测模考大赛(陕西卷)第33题", "difficulty": 4, "formulas": 0}, {"id": 3927227, "material": "", "question": "很多人在学习时难以取得长足的进步,是因为经验主义。他们热衷复制自己过去的“成功经验”,认为以前听过、看过、学过、干过,就可以一劳永逸,使经验变成了枷锁,________了发展的脚步。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 胁制\nB. 束缚\nC. 纠缠\nD. 迁就", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 17251, "human_acc": 97.9131644542, "source": "2021下半年省考第十七季行测模考大赛(内蒙古卷)第22题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 551145, "material": "", "question": "一个圆形的草地中央有一个与之同心的圆形花坛,在花坛圆周和草地圆周上各有3个不同的点,安放了洒水的喷头。现用直管将这些喷头连上,要求任意两个喷头都能被一根水管连通,问最少需要几根水管(1根水管上可以连接多个喷头):", "type": "单选题", "options": "A. 5\nB. 8\nC. 20\nD. 30", "choice": "B", "keypoints": "平面几何;统筹规划问题", "most_wrong": "C", "human_count": 555653, "human_acc": 52.0564093058, "source": "2014年河南省选调生选拔考试 《行政职业能力测验》试卷(精选)第44题", "difficulty": 5, "formulas": 0, "history": [{"id": 1541943, "material": "", "question": "在直径10米的圆形小广场上放置了7根旗杆,将距离最近的两根旗杆用绳子连起来。问绳子的长度最长可能为多少米?", "type": "单选题", "options": "A. $\\sqrt{5}$\nB. $\\sqrt{10}$\nC. 5\nD. $5\\sqrt{2}$", "choice": "C", "keypoints": "平面几何;统筹规划问题", "most_wrong": "B", "human_count": 428374, "human_acc": 38.2147375891, "source": "2015年山东省公务员录用考试《行测》题第64题", "difficulty": 5, "formulas": 250}, {"id": 2395, "material": "", "question": "有面积为1平方米、4平方米、9平方米、16平方米的正方形地毯各10块,现有面积为25平方米的正方形房间需用以上地毯来铺设,要求地毯互不重叠而且刚好铺满。\n\n问最少需几块地毯?", "type": "单选题", "options": "A. 6块\nB. 8块\nC. 10块\nD. 12块", "choice": "B", "keypoints": "平面几何;统筹规划问题", "most_wrong": "A", "human_count": 47559, "human_acc": 53.1403099308, "source": "2008年浙江省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 563395, "material": "", "question": "一个圆形的草地中央有一个与之同心的圆形花坛,在花坛圆周和草地圆周上各有3个不同的点,安放了洒水的喷头,现用直管将这些喷头连上,要求任意两个喷头都能被一根水管连通,问至少需要几根直管(一根水管上可以连接多个喷头):", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6\nE. 7\nF. 8\nG. 20\nH. 30", "choice": "F", "keypoints": "平面几何;统筹规划问题", "most_wrong": "C", "human_count": 217470, "human_acc": 18.5055409942, "source": "2014年412联考《行测》题(陕西卷)第132题", "difficulty": 7, "formulas": 0}, {"id": 5127485, "material": "", "question": "学校有28cm×28cm、25cm×25cm、20cm×20cm三种规格的美工纸各若干张,老师打算将这些美工纸裁剪成8cm×8cm的规格,发给同学们折千纸鹤。若计划折100个千纸鹤,老师在裁剪过程中最少产生多少废料?(美工纸只能裁剪不能拼接,剩余的非整张美工纸均视为废料)", "type": "单选题", "options": "A. $539cm^{2}$\nB. $683cm^{2}$\nC. $875cm^{2}$\nD. $1100cm^{2}$", "choice": "C", "keypoints": "平面几何;统筹规划问题", "most_wrong": "B", "human_count": 88664, "human_acc": 42.5629342236, "source": "2022下半年省考第三季行测模考大赛(广东乡镇卷)第42题", "difficulty": 6, "formulas": 334}, {"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 2764513, "material": "", "question": "甲、乙、丙三人均每隔一定时间去一次健身房,甲每隔2天去一次,乙每隔3天去一次,丙每5天去一次。7月1日三人在健身房相遇,问第三季度有多少天至少两人去了健身房?", "type": "单选题", "options": "A. 6\nB. 16\nC. 20\nD. 22", "choice": "B", "keypoints": "周期相遇问题;三集合", "most_wrong": "C", "human_count": 46503, "human_acc": 42.0338472787, "source": "2021上半年省考第五季行测模考大赛(河南卷)第49题", "difficulty": 7, "formulas": 0, "history": [{"id": 1022107, "material": "", "question": "网管员小刘负责甲、乙、丙三个机房的巡检工作,甲、乙和丙机房分别需要每隔2天、4天和7天巡检一次。3月1日,小刘巡检了三个机房,问他在整个3月有几天不用做机房的巡检工作:", "type": "单选题", "options": "A. 12\nB. 13\nC. 14\nD. 15", "choice": "C", "keypoints": "周期相遇问题;三集合", "most_wrong": "B", "human_count": 1224461, "human_acc": 40.4277473925, "source": "2015年国家公务员录用考试《行测》题(省部级)第72题", "difficulty": 6, "formulas": 0}, {"id": 2701950, "material": "", "question": "甲、乙、丙三人经常利用晚上的空闲时间去图书馆读书。其中,甲每2天去一次,乙每3天去一次,丙每隔4天去一次。6月1日,三人恰好都去图书馆读书,问该月有多少天三人都未去图书馆读书?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "D", "keypoints": "周期相遇问题;三集合", "most_wrong": "C", "human_count": 249449, "human_acc": 17.4761173627, "source": "2021年国考终极行测模考大赛(副省级)第68题", "difficulty": 7, "formulas": 0}, {"id": 1797258, "material": "", "question": "团体操表演中,编号为1~100的学生按顺序排成一列纵队,编号为1的学生拿着红、黄、蓝三种颜色的旗帜,以后每隔2个学生有1人拿红旗,每隔3个学生有1人拿蓝旗,每隔6个学生有1人拿黄旗。问所有学生中有多少人拿两种颜色以上的旗帜?", "type": "单选题", "options": "A. 13\nB. 14\nC. 15\nD. 16", "choice": "B", "keypoints": "周期相遇问题;三集合", "most_wrong": "C", "human_count": 410105, "human_acc": 38.8093293181, "source": "2016年山东省公务员录用考试《行测》题第64题", "difficulty": 6, "formulas": 0}, {"id": 2758360, "material": "", "question": "将100盏台灯按顺序标号为1-100,现所有台灯全部为亮灯的状态,且各有一个按钮进行控制。先将所有编号为2的倍数的台灯按钮各按一下,再将编号为5的倍数的台灯按钮各按一下,最后将编号为7的倍数的台灯按钮各按一下,此时还有多少盏台灯是亮着的?", "type": "单选题", "options": "A. 34\nB. 50\nC. 48\nD. 52", "choice": "B", "keypoints": "周期相遇问题;三集合", "most_wrong": "C", "human_count": 66204, "human_acc": 32.4889734759, "source": "2021上半年省考第四季行测模考大赛(河南卷)第49题", "difficulty": 6, "formulas": 0}, {"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 43763, "material": "", "question": "做学问首先是有一说一,实事求是,尊重原始实验数据的真实性。在诚实做研究的前提下,对具体实验结果的分析、理解有__________甚至错误是很常见的,这是科学发展的正常过程。可以说,许多学术论文的分析、结论和讨论都存在不同程度的__________,越是__________的科学研究,越容易出现错误理解和结论。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 争论 错误 严谨\nB. 异议 弱点 复杂\nC. 偏差 瑕疵 前沿\nD. 意见 局限 真实", "choice": "C", "keypoints": "实词填空", "most_wrong": "A", "human_count": 1857950, "human_acc": 85.233832988, "source": "2013年国家公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 2165997, "material": "", "question": "我们要认真_______、_______、_______考试的内容和形式,使它逐步完善起来。", "type": "单选题", "options": "A. 研究 实验 改进\nB. 试验 改进 研究\nC. 改进 试验 研究\nD. 试验 研究 改进", "choice": "A", "keypoints": "实词填空", "most_wrong": "D", "human_count": 686439, "human_acc": 65.522937945, "source": "天津市选调2018年应届优秀大学毕业生到基层培养锻炼考试题(网友回忆版)第14题", "difficulty": 5, "formulas": 0}, {"id": 2450919, "material": "", "question": "我们(    )历史、(    )历史、(    )历史,并不是要耽搁在历史的苦难上唉声叹气,而是要从历史中塑造民族精神、民族魂。", "type": "单选题", "options": "A. 研究 重视 借鉴\nB. 重视 研究 借鉴\nC. 借鉴 重视 研究\nD. 重视 借鉴 研究", "choice": "B", "keypoints": "实词填空", "most_wrong": "D", "human_count": 118526, "human_acc": 87.5116008302, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第53题", "difficulty": 5, "formulas": 0}, {"id": 2045574, "material": "", "question": "家庭文明建设以培养和践行社会主义核心价值观为根本,以文明家庭创建活动为载体,以注重_______、注重_______、注重_______为着力点,唤醒广大家庭崇德向善的道义自觉。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 家风 家教 家庭\nB. 家庭 家风 家教\nC. 家庭 家教 家风\nD. 家风 家庭 家教", "choice": "C", "keypoints": "实词填空", "most_wrong": "B", "human_count": 879079, "human_acc": 64.5772450485, "source": "2017年广州市公务员录用考试《行测》题(单考区卷)第8题", "difficulty": 5, "formulas": 0}, {"id": 2749593, "material": "", "question": "随着全球产业变革加速推进,标准化已不仅仅是技术创新与产品研发的________,其更直接地渗透到现代科技发展前沿,与新技术同步发展甚至________技术发展的趋势日益显现。从这一角度来看,一个国家的国际标准化水平体现着其综合实力和核心竞争力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 导向 助力\nB. 基础 引领\nC. 核心 倒逼\nD. 抓手 激发", "choice": "B", "keypoints": "实词填空", "most_wrong": "C", "human_count": 155462, "human_acc": 74.9810243018, "source": "2021上半年省考第三季行测模考大赛(陕西卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 2445033, "material": "", "question": "“国潮”为文化类节目的发展提供了新________,并且让文化以文创产品的具体形象实现落地,延展了文化多维性的现实价值。有学者认为,文化与“国潮”在荧幕上的相遇是一种必然,“国潮”本身含有大量中华传统文化元素,同时极富__________,因此深受年轻人的喜爱和追捧。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 机遇 影响力\nB. 目标 创造力\nC. 导向 吸引力\nD. 思路 表现力", "choice": "D", "keypoints": "实词填空", "most_wrong": "C", "human_count": 226824, "human_acc": 35.0818255564, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第24题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2393949, "material": "", "question": "自美国本届政府上台以来,世界主要经济体对美方的______主义多有领教,对美方处理中美经贸摩擦的______心态和极端手法______。去年以来,美方对欧盟、日本、加拿大等主要经济体纷纷挑起经贸摩擦。\n\n依次填入划横线部分最恰当的一项是( )。", "type": "单选题", "options": "A. 霸权 无理 深有感触\nB. 霸凌 骄横 感同身受\nC. 单边 一贯 心知肚明\nD. 强权 习惯 习以为常", "choice": "B", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 1072834, "human_acc": 23.7146660154, "source": "2019年青海省公务员录用考试《行测》题省市州级(A类)(网友回忆版)第34题", "difficulty": 5, "formulas": 0, "history": [{"id": 27125, "material": "", "question": "倘只见阳光,不见____________,只见愉悦欢笑,不见 ___________,那么这不是生活的本意。", "type": "单选题", "options": "A. 阴霾 悲伤泪泣\nB. 云雾 悲哀伤痛\nC. 阴云 悲痛伤感\nD. 云雾 哀痛忧伤", "choice": "A", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 476989, "human_acc": 69.9466864016, "source": "2012年河北省公务员录用考试《行测》题第16题", "difficulty": 4, "formulas": 0}, {"id": 5600409, "material": "", "question": "每名教师都应认真梳理各门专业课程所蕴含的思想政治教育元素和所承载的思想政治教育功能,纳入专业课的教学,作为内化于课程的必备内容,让学生在增长知识中潜移默化地得到思想的________和濡染,让专业知识和思政内容互为表里、____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 荡涤 相辅相成\nB. 浸润 和光同尘\nC. 渲染 交相辉映\nD. 熏陶 相得益彰", "choice": "D", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 46725, "human_acc": 68.0214018192, "source": "2023下半年省考第七季行测模考大赛(陕西卷)第33题", "difficulty": 4, "formulas": 0}, {"id": 2377360, "material": "", "question": "连环画是大众艺术。然而,面对大众的需求,是迎合还是引导,也是连环画家必须面对的问题之一。回顾连环画从兴盛走向衰落的过程,不难发现,正是一些急功近利的出版商一味________ 、迎合大众的喜好,重数量轻质量,导致大批读者和作者流失,造成了连环画长时间____________,最终淡出大众视野。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 揣摩 青黄不接\nB. 琢磨 墨守成规\nC. 研究 良莠不齐\nD. 推敲 停滞不前", "choice": "A", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 1264322, "human_acc": 52.9433957489, "source": "2019年420联考《行测》题(黑龙江公检法卷)(网友回忆版)第31题", "difficulty": 5, "formulas": 0}, {"id": 2701695, "material": "", "question": "“双循环”不意味着主动“脱钩”、封闭运行、经济内卷化,更不意味着一味只强调____________、自主创新。要警惕人们过度________经济内循环,认为关起门来也能发展得很好,如果完全“内循环”,产能过剩迟早会____________,中国经济只能是死路一条。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自行其是 依赖 积重难返\nB. 自力更生 鼓吹 愈演愈烈\nC. 自食其力 推广 功亏一篑\nD. 自给自足 追捧 沉渣泛起", "choice": "B", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 248529, "human_acc": 43.5172555315, "source": "2021年国考终极行测模考大赛(副省级)第32题", "difficulty": 6, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2451064, "material": "", "question": "天天公司将生产线由A县搬至B县,这对两个县来说都是好事,因为这一做法提高了两县企业的平均生产效率。\n\n若上述论断成立,则必须补充的前提是(    )。\n\n①天天公司的生产效率比A县其他企业都低\n\n②天天公司的生产效率低于A县企业的平均生产效率\n\n③B县企业的平均生产效率低于A县企业\n\n④B县企业的生产效率普遍低于A县企业", "type": "单选题", "options": "A. ①④\nB. ①③\nC. ②③\nD. ②④", "choice": "C", "keypoints": "必要条件", "most_wrong": "D", "human_count": 93723, "human_acc": 58.4765745868, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第27题", "difficulty": 5, "formulas": 0, "history": [{"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2133678, "material": "", "question": "扶贫必扶智。让贫困地区的孩子们接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n以上观点的前提是:", "type": "单选题", "options": "A. 贫困的代际传递导致教育的落后\nB. 富有阶层大都受过良好教育\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就财富", "choice": "D", "keypoints": "必要条件", "most_wrong": "A", "human_count": 2721802, "human_acc": 71.5025927676, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 4, "formulas": 0}, {"id": 2271348, "material": "", "question": "扶贫先扶智,让贫困地区的孩子接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n上述观点最恰当的前提是(  )。", "type": "单选题", "options": "A. 贫困地区与非贫困地区教育发展不均衡\nB. 贫困代际传递导致教育落后\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就未来", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 21632, "human_acc": 63.6094674556, "source": "广西2019年定向招录选调生笔试第32题", "difficulty": 5, "formulas": 0}, {"id": 47687, "material": "", "question": "西双版纳傣族的竹楼都用方形柱子将房子架空来防止潮湿及蚊虫骚扰,之所以用方形柱子而不是圆形柱子,是为了防止蛇攀爬进入竹楼。\n\n下列哪项最有可能是上述陈述的假设:", "type": "单选题", "options": "A. 傣族人喜欢把东西做成方形的\nB. 蛇喜欢攀爬圆形的柱子\nC. 西双版纳热带雨林中有很多蛇\nD. 蛇不能缠绕着方形的柱子爬行", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 372360, "human_acc": 84.9487055538, "source": "2013年浙江省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 2050714, "material": "", "question": "正式学习,是指学习者在教师的组织和引导下有目的、有计划地开展以接受间接知识为内容的学历或非学历教育学习活动。\n\n根据上述定义,下列属于正式学习的是:", "type": "单选题", "options": "A. 公司为了新员工能顺利上岗,提供了形式多样的经验交流渠道供员工自由选择学习\nB. 小王给儿子播放了《动物世界》等节目,无形中儿子学习到了很多生物、地理知识\nC. 小宝对学校课堂学习提不起兴趣,后来被父母送到少林寺武校学习武术\nD. 保安小牛利用免费网络公开课,系统学习了法律知识并通过了司法考试,如愿成为了一名律师", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 702795, "human_acc": 64.7459074125, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第58题", "difficulty": 5, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}, {"id": 9009, "material": "", "question": "体液是指人体体内含有的大量以水为基础的液体,包括细胞内液和细胞外液,其中除含有大量的水外,还有许多离子和化合物。\n以下不属于体液的是:", "type": "单选题", "options": "A. 炎热环境中排出的汗液\nB. 血管中流动的血浆\nC. 组织细胞间隙的组织液\nD. 淋巴管内流动的淋巴", "choice": "A", "keypoints": "大前提", "most_wrong": "D", "human_count": 18888, "human_acc": 42.095510377, "source": "2009年江西省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 2440235, "material": "", "question": "注意分配是指在同一时间内,把注意指向不同的对象,同时从事几种不同活动的现象。\n\n根据上述定义,下列不属于注意分配的是:", "type": "单选题", "options": "A. 学生边听讲边做笔记\nB. 歌手自拉自唱\nC. 工人边观察仪表边控制调节\nD. 运动员一鼓作气完成了躲避、转身、投篮的动作", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 198157, "human_acc": 86.5591424981, "source": "2019年青海省法院、检察院录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 5430307, "material": "", "question": "某停车场有7个连成一排的空车位。现有3辆车随机停在这排车位中,则任意两辆车之间至少间隔一个车位的概率为:", "type": "单选题", "options": "A. $\\frac{1}{5}$\nB. $\\frac{2}{7}$\nC. $\\frac{6}{35}$\nD. $\\frac{9}{35}$", "choice": "B", "keypoints": "不相邻问题;给情况求概率", "most_wrong": "C", "human_count": 271238, "human_acc": 40.503174334, "source": "2023年浙江省公务员录用考试《行测》题(B类)(网友回忆版)第40题", "difficulty": 4, "formulas": 375, "history": [{"id": 163599, "material": "", "question": "某篮球队12个人的球衣号码是从4到15的自然数,如从中任意选出3个人参加三对三篮球赛,则选出的人中至少有两人的球衣号码是相邻自然数的概率为多少:", "type": "单选题", "options": "A. 1/2\nB. 2/5\nC. 5/11\nD. 24/55", "choice": "C", "keypoints": "不相邻问题;给情况求概率", "most_wrong": "B", "human_count": 229705, "human_acc": 52.4490106876, "source": "2013年四川公务员录用考试《行测》题(下半年)第57题", "difficulty": 5, "formulas": 0}, {"id": 2579771, "material": "", "question": "有两排各6个连续的空车位,包含甲车、乙车在内的6辆车随机停入这12个车位中,则以下哪种情况发生的概率最低?", "type": "单选题", "options": "A. 有一排正好停了2辆车\nB. 甲车和乙车停在同一排的不相邻车位\nC. 甲车停在某一排的中间两个车位之一\nD. 甲车和乙车中至少有1辆停在靠边的车位", "choice": "B", "keypoints": "不相邻问题;给情况求概率", "most_wrong": "C", "human_count": 630354, "human_acc": 34.3175422064, "source": "2020年浙江公务员考试《行测》(B类)试题(网友回忆版)第19题", "difficulty": 6, "formulas": 0}, {"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 2261962, "material": "", "question": "艺术是民众创造的,离不开民众的生活。而在民众的社会生活中,经济因素又是一个非常重要的因子。具体到戏曲而言,它在宋代形成,和当时的演艺市场日益商品化有密切关系。可以说,这是戏曲赖以形成、生存和发展的重要原因。\n\n最后一句话中的“这”指的是(  )。", "type": "单选题", "options": "A. 民众的社会生活\nB. 宋代的艺术环境\nC. 演艺市场的商品化\nD. 戏曲艺术的大众化", "choice": "C", "keypoints": "代词", "most_wrong": "A", "human_count": 499378, "human_acc": 87.6374209517, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2295650, "material": "", "question": "逻辑作为人类探求知识、追求理性的工具,其研究范围是极其广泛的。______是以推理有效性为核心研究内容的逻辑,其形态也是丰富多彩的,______有演绎的逻辑,还有各种非演绎的逻辑,如归纳逻辑、类比逻辑等,______围绕推理研究,逻辑还研究与推理有关的概念、判断、论证以及基本的逻辑规律和逻辑方法等等。", "type": "单选题", "options": "A. 不但 而且 甚至\nB. 即使 不仅 并且\nC. 如果 那么 也是\nD. 既然 所以 然而", "choice": "B", "keypoints": "关联关系-并列关系", "most_wrong": "A", "human_count": 27813, "human_acc": 81.4942652716, "source": "2019年上海市公务员录用考试《行测》题(A类)(网友回忆版)第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 2374685, "material": "", "question": "多元的发展机会和自由的成长空间,是时代给予每个追梦人的馈赠;(    )每个追梦人在前进道路上迈出的每一步,(    )都在推动时代的进步。", "type": "单选题", "options": "A. 而 也\nB. 但 却\nC. 如果 就\nD. 只有 才", "choice": "A", "keypoints": "关联关系-并列关系", "most_wrong": "C", "human_count": 979763, "human_acc": 85.5456880899, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第1题", "difficulty": 5, "formulas": 0}, {"id": 3019111, "material": "", "question": "产业振兴________是实现脱贫攻坚与乡村振兴的重要标志,________是实现二者有效衔接的必然要求。\n\n填入横线处的词语最恰当的一项是:", "type": "单选题", "options": "A. 或者 或者\nB. 因为 所以\nC. 尽管 还\nD. 不仅 也", "choice": "D", "keypoints": "关联关系-并列关系", "most_wrong": "C", "human_count": 2001217, "human_acc": 98.1455284459, "source": "2021年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第2题", "difficulty": 3, "formulas": 0}, {"id": 17269, "material": "", "question": "这些瀑布不为人所共知,这______因为人们对它们不感兴趣或者它们不够迷人,______由于它们处于边远险要之地,游客要想一睹它们的风采就显得困难重重了。", "type": "单选题", "options": "A. 不是 而是\nB. 不但 而且\nC. 不是 就是\nD. 不仅 而且", "choice": "A", "keypoints": "关联关系-并列关系", "most_wrong": "D", "human_count": 48171, "human_acc": 91.6132112682, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第49题", "difficulty": 5, "formulas": 0}, {"id": 2748371, "material": "", "question": "公筷公勺倡议贵在付诸行动,这(    )需要餐饮企业积极响应,(    )需要我们每个人都行动起来,才能让这种更加卫生健康的“新餐桌文明”成为社会自觉。\n\n填入括号中最恰当的一项是:", "type": "单选题", "options": "A. 虽然 但是\nB. 当然 也\nC. 不仅 更\nD. 既 又", "choice": "C", "keypoints": "关联关系-并列关系", "most_wrong": "D", "human_count": 375780, "human_acc": 87.6478258556, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第48题", "difficulty": 4, "formulas": 0}, {"id": 2779670, "material": "", "question": "培养一个大学生对一个家庭而言,________为国家和社会输送了人才,________带动整个家庭在思想观念、思维方式、生活条件上发生进步变化。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 既 也\nB. 即使 也\nC. 因为 所以\nD. 虽然 但", "choice": "A", "keypoints": "关联关系-并列关系", "most_wrong": "B", "human_count": 38410, "human_acc": 98.5967196043, "source": "2021上半年省考第七季行测模考大赛(广东卷)第5题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 2776040, "material": "", "question": "某通信信道可以传输的信号由1、2、3、4四个数字组成,每组信号包含4个数字(可重复),且前两个数字必须为奇数。某次传输过程中共传输了250组信号,其中传输次数最多的信号传输了$x$次。问$x$的最小值为:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "构造数列;基础排列组合", "most_wrong": "B", "human_count": 726412, "human_acc": 45.97143219, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第66题", "difficulty": 4, "formulas": 2, "history": [{"id": 2948979, "material": "", "question": "有4种颜色的马克笔,每种颜色的马克笔的数量均足够多,现有175个人,每人从中最多取3支马克笔,选取笔的数量、颜色完全相同的人分为一组。问人数最多的一组至少有多少人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 13\nD. 14", "choice": "B", "keypoints": "构造数列;基础排列组合", "most_wrong": "C", "human_count": 323519, "human_acc": 35.584617905, "source": "2022年国考第五季行测模考大赛(副省级)第64题", "difficulty": 7, "formulas": 0}, {"id": 561547, "material": "", "question": "某工厂有100名工人报名参加了4项专业技能课程中的一项或多项,已知A课程与B课程不能同时报名。如果按照报名参加的课程对工人进行分组,将报名参加的课程完全一样的工人分到同一组中,则人数最多的组最少有多少人?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "D", "keypoints": "构造数列;基础排列组合", "most_wrong": "C", "human_count": 428016, "human_acc": 28.7215898471, "source": "2014年河南省选调生选拔考试 《行政职业能力测验》试卷(精选)第42题", "difficulty": 5, "formulas": 0}, {"id": 563389, "material": "", "question": "某工厂有100名工人报名参加了4项专业技能课程中的一项或多项。已知A课程和B课程不能同时报名,如果按照报名参加的课程对工人进行分组,将报名参加的课程完全一样的工人分到同一组中,则人数最多的组最少有多少人:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8\nE. 9\nF. 10\nG. 11\nH. 12", "choice": "F", "keypoints": "构造数列;基础排列组合", "most_wrong": "C", "human_count": 212343, "human_acc": 29.2319501938, "source": "2014年412联考《行测》题(陕西卷)第130题", "difficulty": 7, "formulas": 0}, {"id": 2667116, "material": "", "question": "某单位组织120名员工参加专业技能培训,每位员工必须从5项专业技能项目中选取2项参加且每种组合下都有员工选择。现按照报名参加的项目对员工进行分组,将报名参加的项目完全一样的员工分到同一组中。分组后发现每组人数均不相同,且人数最少的五个组的人数均为质数,则人数最多的组至多有多少人?", "type": "单选题", "options": "A. 37\nB. 38\nC. 39\nD. 40", "choice": "B", "keypoints": "构造数列;基础排列组合", "most_wrong": "C", "human_count": 177924, "human_acc": 38.5299341292, "source": "2020年下半年省考第十季行测模考大赛(广东卷)第36题", "difficulty": 6, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "构造数列"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 5377385, "material": "", "question": "在21世纪的今天,冷战思维、零和博弈早已过时,________军事武力、谋求绝对安全只会导致局势轮番升级,不符合任何一方利益。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迷信\nB. 崇尚\nC. 敬畏\nD. 抑制", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 25552, "human_acc": 21.1216343143, "source": "2022下半年省考第十九季行测模考大赛(深圳卷)第61题", "difficulty": 7, "formulas": 0, "history": [{"id": 4563196, "material": "", "question": "如今,人们的出游,已不再满足流连于田野峰峦之间、________在湖光山色之中,而是更多地选择到历史文化圣地“朝拜”,到博物馆里“寻根”。从之前纯粹的观光游,到当下流行的文化游,证明了民众对历史文化的探究不会________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陶醉 固化\nB. 沉溺 停滞\nC. 徘徊 中断\nD. 徜徉 搁浅", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 300540, "human_acc": 35.5020962268, "source": "2021下半年省考第三十二季行测模考大赛(四川卷)第22题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5351740, "material": "", "question": "十年树木,百年树人,古海岸湿地区域比绿芯早建造几年,这里已经是大树成荫,曾经________的土地,如今披上一层绿色外衣,如悄悄散落人间的绿色精灵。俯瞰这片土地,池水如一颗颗明珠________在绿色的长卷,仔细揣摩发现池塘的荷叶团团、荷花艳红,依稀蝉鸣伴随孩童嬉笑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 流转 闪耀\nB. 贫瘠 镶嵌\nC. 辽阔 散落\nD. 裸露 流淌", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 46682, "human_acc": 84.26802622, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第21题", "difficulty": 3, "formulas": 0, "history": [{"id": 5095609, "material": "", "question": "二十四节气的生命美学价值,与每个人的生命息息相关又默默相伴。既不以大事彰显,又不随岁月________,以另一种方式融入大时代。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 凸显\nB. 流转\nC. 式微\nD. 沉浮", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 6927, "human_acc": 45.878446658, "source": "2022下半年省考第二季行测模考大赛(青海卷)第21题", "difficulty": 6, "formulas": 0}, {"id": 4664114, "material": "", "question": "年轻人为何动辄给自己贴上“社恐”的标签。在我看来,除却对“社恐”这个专业性概念进行泛化、________的理解外,还有一些不可忽视的社会现实因素。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 边缘化\nB. 浅层化\nC. 碎片化\nD. 娱乐化", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 43065, "human_acc": 69.1187739464, "source": "2022上半年省考第一季行测模考大赛(天津卷)第12题", "difficulty": 4, "formulas": 0}, {"id": 3763351, "material": "", "question": "网络互助虽然参与门槛低,但信用依托不足,也普遍缺乏精算模式的________,若缺乏透明度,仅靠参与互助计划时签订的“君子协议”,并不足以保障后续环节的顺利进行。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 支撑\nB. 动力\nC. 辅助\nD. 导向", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 15431, "human_acc": 84.49873631, "source": "2021下半年省考第十三季行测模考大赛(内蒙古卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 5676239, "material": "", "question": "这些年,我已逐渐学会接受,接受意外,接受变节,接受误解,接受努力了却得不到回报,接受世界的残忍和人性的残缺。但这不代表我妥协,我还会努力,去爱,去为遥不可及的一切付出心血。因为,我还相信________,相信奇迹。", "type": "单选题", "options": "A. 虔诚\nB. 正义\nC. 梦想\nD. 公正", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 165, "human_acc": 80.0, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第3题", "difficulty": 3, "formulas": 0}, {"id": 5554735, "material": "", "question": "保护个人信息不受侵犯,将责任判别尺度清晰化、标准化,实现专业问题__________、抽象概念具象化,非常必要。这样便于公众理解和掌握相关概念的含义,降低判断的难度,提升自我保护的意识和能力。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 碎片化\nB. 程式化\nC. 简单化\nD. 趣味化", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 42114, "human_acc": 81.4099824286, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第24题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2628578, "material": "", "question": "一个时代拥有一个时代的乡土与乡愁,也拥有一个时代的优秀乡土文学作品。鲁迅、沈从文、路遥、陈忠实等作家都有深厚的农村生活体验,他们的作品是一个时代的缩影,史诗般地呈现刻画出了时代的厚重。而时下的文坛缺少现实主义精品力作,城里的一些作家缺乏扎实的乡村生活体验,作品多为灵光乍现间书写的,________________,难以写出其中的味道。县城和乡村里的作家虽然身在其中却________________,也难以写出新乡村的意蕴。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浮光掠影 熟视无睹\nB. 虚张声势 徒有虚名\nC. 隔靴搔痒 兴趣盎然\nD. 天马行空 闭目塞听", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 124108, "human_acc": 52.3914654978, "source": "2020年下半年省考第四季行测模考大赛(江苏卷)第34题", "difficulty": 6, "formulas": 0, "history": [{"id": 2136504, "material": "", "question": "文化传统的延续,从来不是________________地照搬照抄。取其精华,去其糟粕,根据时代发展做出合乎社会需求的调整,才是对文化的最好传承。", "type": "单选题", "options": "A. 不假思索\nB. 囫囵吞枣\nC. 按部就班\nD. 一成不变", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 1178752, "human_acc": 61.5735116462, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第1题", "difficulty": 5, "formulas": 0}, {"id": 2028384, "material": "", "question": "物理学研究与艺术创作有异曲同工之妙,若是不能_______,就只能千锤百炼,通过成年累月的辛苦工作来解开暗物质的谜团了。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 妙手偶得\nB. 一蹴而就\nC. 守株待兔\nD. 灵机一动", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 3295809, "human_acc": 54.1457954633, "source": "2017年国家公务员录用考试《行测》题(地市级)第21题", "difficulty": 5, "formulas": 0}, {"id": 2280984, "material": "", "question": "网约车平台,理应承担管理和风险连带责任,并对造成的各类事故和损害优先承担赔付责任。这样才能让平台有从严管理的高度自觉,而不能以自己是第三方为借口______。", "type": "单选题", "options": "A. 独善其身\nB. 袖手旁观\nC. 逃之夭夭\nD. 置身事外", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 1226191, "human_acc": 83.7929001273, "source": "2018年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第17题", "difficulty": 4, "formulas": 0}, {"id": 8507, "material": "", "question": "中国的城市发展,已进入软实力竞争时代。单靠粗放式的资源消耗、廉价劳动力换取硬实力发展的模式已经( ),要想可持续发展,必须关注软实力,建设软实力,倚重软实力。", "type": "单选题", "options": "A. 难乎其难\nB. 微乎其微\nC. 难以为继\nD. 难辞其咎", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 64721, "human_acc": 92.8709383353, "source": "2009年四川省公务员录用考试《行测》题(下半年)第16题", "difficulty": 5, "formulas": 0}, {"id": 2374710, "material": "", "question": "在落实乡村振兴战略的过程中,一定要科学规划,(    ),才能最终实现目标,任何希望(    )的想法都是不切实际的。", "type": "单选题", "options": "A. 循序渐进 一蹴而就\nB. 寻根究底 一鼓作气\nC. 蔚然成风 一劳永逸\nD. 未雨绸缪 一马当先", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1001754, "human_acc": 97.7182022732, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第4题", "difficulty": 2, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 1723456, "material": "", "question": "箱子里有标号1至10共10个球,小张随机取了三个球并记下号码后将球放回,小李也随机取了三个并记下号码。这时发现两人取的球的号数之积都恰好是144。已知小张的号数之和比小李的大,那么小张取的球的号数之和是多少?", "type": "单选题", "options": "A. 19\nB. 17\nC. 16\nD. 14", "choice": "A", "keypoints": "公倍数与公约数问题;和差倍比问题", "most_wrong": "B", "human_count": 305325, "human_acc": 40.8967493654, "source": "2015年河南省公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0, "history": [{"id": 5380491, "material": "", "question": "现有一定数量的盒子,将91个A产品平均装进这些盒子后,还剩余7个无法均分;将115个B产品平均装进这些盒子后,还缺5个才能装满所有盒子。问每个盒子可装多少个B产品?", "type": "单选题", "options": "A. 14\nB. 12\nC. 10\nD. 8", "choice": "C", "keypoints": "公倍数与公约数问题;和差倍比问题", "most_wrong": "B", "human_count": 338461, "human_acc": 47.5351665332, "source": "2022下半年省考第十九季行测模考大赛(深圳卷)第59题", "difficulty": 6, "formulas": 0}, {"id": 15789, "material": "", "question": "某单位的员工不足50人,在参加全市组织的一次业务知识考试中全单位有$\\frac{1}{7}$的人得90—100分,有$\\frac{1}{2}$的人得80—89分,有$\\frac{1}{3}$的人得60—79分。\n\n请问这个单位得60分(不含60分)以下考试成绩的有多少人:", "type": "单选题", "options": "A. 1人\nB. 2人\nC. 3人\nD. 4人", "choice": "A", "keypoints": "公倍数与公约数问题;和差倍比问题", "most_wrong": "B", "human_count": 12329, "human_acc": 74.5721469706, "source": "2009年山西省党群机关录用考试《行测》题第22题", "difficulty": 3, "formulas": 3}, {"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 5063271, "material": "", "question": "为了增添趣味性,某公司年会为获奖的6名员工准备了里面分别写有他们名字的6个盲盒,则6人中只有2人选到写有自己名字的盲盒的概率为:", "type": "单选题", "options": "A. $\\frac{3}{16}$\nB. $\\frac{1}{3}$\nC. $\\frac{3}{4}$\nD. $\\frac{1}{4}$", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 379630, "human_acc": 20.5199799805, "source": "2022上半年省考第二十四季行测模考大赛(北京卷)第77题", "difficulty": 7, "formulas": 419, "history": [{"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}, {"id": 5370381, "material": "", "question": "某学院卫生部大一到大四各1名学生参与卫生检查,每名学生负责检查一个年级,且每个年级都要被检查到。问这4名学生都没有检查到自己年级的概率是多少?", "type": "单选题", "options": "A. $\\frac{3}{4}$\nB. $\\frac{5}{8}$\nC. $\\frac{1}{2}$\nD. $\\frac{3}{8}$", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 313918, "human_acc": 24.8813384387, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第59题", "difficulty": 7, "formulas": 334}, {"id": 2028452, "material": "", "question": "某集团企业5个分公司分别派出1人去集团总部参加培训,培训后再将5人随机分配到这5个分公司,每个分公司只分配1人。问5个参加培训的人中,有且仅有1人在培训后返回原分公司的概率:", "type": "单选题", "options": "A. 低于$20\\%$\nB. 在$20\\%\\sim30\\%$之间\nC. 在$30\\%\\sim35\\%$之间\nD. 大于$35\\%$", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 387085, "human_acc": 15.47386233, "source": "2017年国家公务员录用考试《行测》题(副省级)第70题", "difficulty": 7, "formulas": 377}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 16187, "material": "", "question": "一条河的水流速度为每小时4公里。一条船以恒定的速度逆流航行6公里后,再返回原地,共耗时2小时(不计船掉头的时间)。请问船逆流航行与顺流航行的速度之比是多少:", "type": "单选题", "options": "A. 1∶3\nB. 2∶3\nC. 1∶2\nD. 1∶4", "choice": "A", "keypoints": "平均速度;流水行船", "most_wrong": "B", "human_count": 46434, "human_acc": 46.9548175906, "source": "2010年贵州省公务员录用考试《行测》题第11题", "difficulty": 6, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"], ["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 2524204, "material": "", "question": "应该正视的是,一些部门和少数领导干部依然习惯于依靠简单粗暴的行政命令推动工作,制定出台的不少政策举措脱离基层实际,违背群众意愿,不仅让广大基层干部在执行时进退两难,更招致广大群众________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抵制\nB. 抑制\nC. 禁止\nD. 遏止", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 57399, "human_acc": 98.4616456733, "source": "2020年上半年省考第二十六季行测模考大赛(湖南卷)第17题", "difficulty": 3, "formulas": 0, "history": [{"id": 4645365, "material": "", "question": "那些眼中只见“利益”、不见“责任”的行为,________了社会道德和企业社会责任,破坏了市场秩序,踩到了法律红线,亟待予以纠偏。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 违背\nB. 偏离\nC. 摆脱\nD. 逾越", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 29606, "human_acc": 79.6831723299, "source": "2021下半年省考第三十七季行测模考大赛(天津卷)第12题", "difficulty": 4, "formulas": 0}, {"id": 44923, "material": "", "question": "科学的理论决不是教条,不该成为你思想的__________,相反它鼓励你让思想冲破世俗的__________,再插上翅膀去自由飞翔,领略那从未见过的思想王国的风光。", "type": "单选题", "options": "A. 牢房 囚禁\nB. 禁地 樊笼\nC. 镣铐 束缚\nD. 桎梏 牢笼", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 318450, "human_acc": 77.1672162035, "source": "2013年上海市公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 1002715, "material": "", "question": "现代人对微信_______不已,乃至几乎不能有一朝一夕的分离,与其说是微信的功能强大,不如将之理解成空虚寂寞冷的人们,需要某种精神层面的_______。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 崇拜 皈依\nB. 痴狂 抚慰\nC. 眷恋 寄托\nD. 痴迷 慰藉", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 2021718, "human_acc": 83.8959736224, "source": "2015年国家公务员录用考试《行测》题(省部级)第34题", "difficulty": 5, "formulas": 0}, {"id": 1015, "material": "", "question": "只要挺得过那风沙,人们总会脱去厚厚的外装,活动一下________的躯体,________沉睡在灵魂里的种种追求。春天________人类以希望。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 僵直 叫醒 给予\nB. 僵硬 唤醒 赋予\nC. 冻僵 启发 施舍\nD. 冷冻 启动 送给", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 83182, "human_acc": 90.3284364406, "source": "2008年陕西省公务员录用考试《行测》题第31题", "difficulty": 5, "formulas": 0}, {"id": 4456823, "material": "", "question": "影视艺术在儿童启蒙教育尤其是美育中,扮演着重要角色。影视创作者要从童真出发,努力放低视角、放平心态、换位思考,摆脱套路化、模式化的创作________,发现并记录儿童最真实的天性、最真挚的情感和最真切的心声。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 窠臼\nB. 掣肘\nC. 枷锁\nD. 鸿沟", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 21988, "human_acc": 44.8289976351, "source": "2021下半年省考第二十五季行测模考大赛(内蒙古卷)第21题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2671070, "material": "", "question": "在新的经济形势下,我国产业结构正在发生深刻变革。老工业区以及传统劳动密集型就业岗位受到较大冲击,旧的生产方式被淘汰,以致大量劳动力剩余,新兴行业对人力资源要求进一步提高。但就业群体素质并没有明显提升,招工难、用工荒和技工短缺的局面没有得到有效缓解,同时大学毕业生人数不断创新高,城镇就业压力不断增高,进一步导致我国劳动力供求结构性矛盾更加突出。\n\n这段文字主要说明:", "type": "单选题", "options": "A. 我国产业结构正在发生巨大的变化\nB. 我国产业结构变革使得劳动力供求结构性矛盾更严重\nC. 新兴行业对人力资源要求进一步提高\nD. 我国产业结构变革导致大量劳动力剩余", "choice": "B", "keypoints": "行文脉络-分总", "most_wrong": "A", "human_count": 192435, "human_acc": 92.6317977499, "source": "2021年国考第二十季行测模考大赛(副省级)第49题", "difficulty": 3, "formulas": 0, "history": [{"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}, {"id": 9053, "material": "", "question": "在职称评审委员会会议上,张教授对其他人对他提出的关于“反对给严重违反校纪校规的李华晋升为教授”的建议持反对意见,他感到十分遗憾和不理解,随即忿懑地退出了会议室。\n\n对李华晋升教授,张教授最终所持的态度是:", "type": "单选题", "options": "A. 同意\nB. 不同意\nC. 未置可否\nD. 置之不理", "choice": "B", "keypoints": "行文脉络-分总", "most_wrong": "A", "human_count": 51082, "human_acc": 61.281860538, "source": "2009年安徽省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 4817, "material": "", "question": "不论动机多么伟大,不论出于多么善良的心地,想要改变一个人,哪怕只是改变一个孩子,都是徒然的,如果他并不理解这种改变。\n\n这段话的意思是说:", "type": "单选题", "options": "A. 人是很难改变的\nB. 没有善良的动机就不能使人改变\nC. 孩子和成人一样不容易改变\nD. 只有当人自己理解改变时他才会改变", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "A", "human_count": 36777, "human_acc": 91.078663295, "source": "2008年河北省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 219415, "material": "", "question": "著名学者专家通过论证,证明了很多人对水利工程技术人员提出的关于在长江三峡修建大型水力发电站的可行性报告进行论证后得出的不同意见是不科学的。请问:著名学者专家认为在长江三峡修建大型水力发电站是可行的,还是不可行的:", "type": "单选题", "options": "A. 可行\nB. 不可行\nC. 与行不行无关\nD. 没有结论", "choice": "A", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 302230, "human_acc": 58.8108394269, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第73题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 2049796, "material": "", "question": "某机场一条自动人行道长42m,运行速度0.75$m/s$。小王在自动人行道的起始点将一件包裹通过自动人行道传递给位于终点位置的小明。小明为了节省时间,在包裹开始传递时,沿自动人行道逆行领取包裹并返回。假定小明的步行速度是1$m/s$,则小明拿到包裹并回到自动人行道终点共需要的时间是:", "type": "单选题", "options": "A. 24秒\nB. 42秒\nC. 48秒\nD. 56秒", "choice": "C", "keypoints": "流水行船;相遇追及", "most_wrong": "B", "human_count": 971741, "human_acc": 59.9568197699, "source": "2017年422联考《行测》题(新疆卷)第67题", "difficulty": 5, "formulas": 2, "history": [{"id": 5408610, "material": "", "question": "甲、乙两名游泳运动员同时从下游A点出发,游向900米外的上游B点并立刻原路返回。甲游了200米时,乙游了120米。已知甲顺流游泳的速度是逆流的1.8倍,问两人迎面相遇的地点距离A点多少米?", "type": "单选题", "options": "A. 270\nB. 390\nC. 510\nD. 630", "choice": "D", "keypoints": "流水行船;相遇追及", "most_wrong": "C", "human_count": 411720, "human_acc": 37.303993005, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}, {"id": 253381, "material": "", "question": "小刚和小强租一条小船,向上游划去,不慎把空塑料水壶掉进江中,当他们发现并调过头时,水壶与船已经相距2千米。假定小船的速度是每小时4千米,水流速度是每小时2千米,那么他们追上水壶需要多少时间:", "type": "单选题", "options": "A. 0.2小时\nB. 0.3小时\nC. 0.4小时\nD. 0.5小时", "choice": "D", "keypoints": "流水行船;相遇追及", "most_wrong": "B", "human_count": 11893, "human_acc": 72.2946270916, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第7题", "difficulty": 4, "formulas": 0}, {"id": 2731348, "material": "", "question": "有一架自动扶梯共25级,每秒移动2阶。A从扶梯的起点处站立乘坐,两秒后B从起点处以每秒1阶的速度向上走动。又过三秒后C来到扶梯起点处且以每秒4阶的速度向上跑。那么以下事件中最先发生的是________。", "type": "单选题", "options": "A. A到达扶梯终点\nB. B追上A\nC. C追上A\nD. C追上B", "choice": "B", "keypoints": "流水行船;相遇追及", "most_wrong": "D", "human_count": 184008, "human_acc": 48.5136515804, "source": "2021年上海市公务员录用考试《行测》题(B类)(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 2604358, "material": "", "question": "A、B两座港口相距300公里且仅有1条固定航道,在某一时刻甲船从A港顺流而下前往B港,同时乙船从B港逆流而上前往A港,甲船在5小时之后抵达了B港,停留1小时后开始返回A港,又过了6小时追上了乙船。则乙船在静水中的时速为(    )公里。", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 40", "choice": "C", "keypoints": "流水行船;相遇追及", "most_wrong": "B", "human_count": 795455, "human_acc": 60.5400682628, "source": "2020年广东省公务员录用考试《行测》试题(县级卷)(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 2750567, "material": "", "question": "一艘维修快艇沿着河流逆流而上执行维修任务,快艇航行到途中某处时工具包掉进了河里,10分钟后,驾驶员到达目的地时发现工具包丢失后立即返回追寻。已知水的流速为每秒1米,如果工具包会浮在水面上漂流,那么驾驶员将在距离丢失处(    )米的地方找回工具包。", "type": "单选题", "options": "A. 640\nB. 900\nC. 1080\nD. 1200", "choice": "D", "keypoints": "流水行船;相遇追及", "most_wrong": "C", "human_count": 97590, "human_acc": 35.3919458961, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第80题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 2724066, "material": "", "question": "在欧洲,为摆脱困境,航空公司纷纷采取减少航班、停飞、裁员、停薪、强制休假等措施展开自救。即便采取诸多自救手段,由于亏损额巨大,部分航空公司不得不寻求政府援助。政府援助对航空公司至关重要,但也有副作用。政府救援使其有一半以上产生了新债务,航空公司资产净值增加不到$10\\%$,这彻底改变了行业财务状况。偿还政府和私人借贷机构的债务,意味着行业遭遇的危机比客运需求恢复的时间要长。折翼的全球航空业期盼再次起飞,但业界普遍认为,疫情对全球航空业的影响将持续多年,全球航空客运量至少在2024年之前不会恢复到疫情前的水平。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 折翼的全球航空业遭遇空前危机\nB. 折翼的全球航空业亟需政府援助\nC. 折翼的全球航空业期盼再次起飞\nD. 折翼的全球航空业恢复仍然艰难", "choice": "D", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 173124, "human_acc": 90.1648529378, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第42题", "difficulty": 3, "formulas": 1, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 2068156, "material": "", "question": "大气污染、水污染和废弃物污染等问题一般都比较直观。而土壤污染则不同,它往往要通过对土壤样品进行分析化验和农作物的残留检测,甚至通过研究对人畜健康状况的影响才能确定。\n\n这段文字意在说明(    )。", "type": "单选题", "options": "A. 土壤污染的可逆性\nB. 土壤检测的艰难性\nC. 土壤污染的隐蔽性\nD. 土壤污染的欺骗性", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 25306, "human_acc": 91.6976211175, "source": "2015年甘肃省公务员录用考试《行测》题第31题", "difficulty": 3, "formulas": 0}, {"id": 5201, "material": "", "question": "传统媒体是二维的,而网络宣传则是多维的,它能将文字、图像和声音有机地组合在一起,传递多感官的信息,让顾客如身临其境般感受商品或服务。\n\n通过这段文字,作者想要表明:", "type": "单选题", "options": "A. 网络宣传与传统媒体的区别\nB. 网络宣传具有多维的特点\nC. 网络宣传能让顾客有身临其境的感受\nD. 网络宣传最终将代替传统媒体", "choice": "B", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 33565, "human_acc": 49.9091315358, "source": "2008年湖北省公务员录用考试《行测》题(A类)第20题", "difficulty": 6, "formulas": 0}, {"id": 5075, "material": "", "question": "国家主权神圣不可侵犯。不过,全球化下,征服土地式的主权侵犯已变得不太可能。于是,“主权”意识正在被淡忘。但是,有种主权侵犯却是潜移默化、无声无息的,这就是文化侵犯。\n\n这段话主要是为了说明:", "type": "单选题", "options": "A. 国家主权神圣不可侵犯\nB. “主权”的意识正在被淡化\nC. 文化侵略的特点\nD. 文化侵略很容易被忽略", "choice": "D", "keypoints": "关联词-转折", "most_wrong": "C", "human_count": 32715, "human_acc": 74.8188904172, "source": "2008年湖北省公务员录用考试《行测》题(A类)第12题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"]]}, {"id": 5674463, "material": "", "question": "某单位停车场有4排连续的空车位,每一排的车位数为5个。先来了3辆车相邻地停放在同一排,又来了2辆车不相邻地停放在另一排,问满足要求的停车情况共有多少种?", "type": "单选题", "options": "A. 2592\nB. 1728\nC. 1296\nD. 432", "choice": "A", "keypoints": "不相邻问题;基础排列组合", "most_wrong": "C", "human_count": 17389, "human_acc": 12.4791534878, "source": "2023下半年省考第十四季行测模考大赛(北京卷)第76题", "difficulty": 7, "formulas": 0, "history": [{"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 2365993, "material": "", "question": "因电路改造,电力公司计划未来十天对某小区选择三天停电,要求不能连续两天停电,则共有多少种停电方案?", "type": "单选题", "options": "A. 35\nB. 56\nC. 84\nD. 120", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 18278, "human_acc": 46.2632673159, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第94题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 2028420, "material": "", "question": "某人租下一店面准备卖服装,房租每月1万元,重新装修花费10万元。从租下店面到开始营业花费3个月时间。开始营业后第一个月,扣除所有费用后的纯利润为3万元。如每月纯利润都比上月增加2000元而成本不变,问该店在租下店面后第几个月内收回投资?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "A", "keypoints": "数列问题;经济利润问题", "most_wrong": "B", "human_count": 1754196, "human_acc": 37.6688237802, "source": "2017年国家公务员录用考试《行测》题(地市级)第63题", "difficulty": 6, "formulas": 0, "history": [{"id": 2571773, "material": "", "question": "公司2017年每个月的销售额都比上个月高$x$万元。其9月的销售额是1月的2倍,11月的销售额为900万元。问该公司2017年全年的销售额是多少万元?", "type": "单选题", "options": "A. 7200\nB. 7650\nC. 8100\nD. 8550", "choice": "C", "keypoints": "数列问题;经济利润问题", "most_wrong": "B", "human_count": 804384, "human_acc": 70.6622707563, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第42题", "difficulty": 3, "formulas": 1}, {"id": 5019160, "material": "", "question": "某水果商按6元/斤的价格购进一批水果,每天都比前一天降价1元/斤进行销售,最后一天的销售价格为进价的1.5倍。每天销售24斤,最后剩余60斤水果因腐烂无法售卖。若总利润与总进货成本相等,则这批水果共有多少斤?", "type": "单选题", "options": "A. 288\nB. 312\nC. 348\nD. 408", "choice": "C", "keypoints": "数列问题;经济利润问题", "most_wrong": "B", "human_count": 307747, "human_acc": 54.8447263499, "source": "2022上半年省考第二十一季行测模考大赛(广东乡镇卷)第43题", "difficulty": 6, "formulas": 0}, {"id": 4817771, "material": "", "question": "某共享汽车公司年初购入一批二手电动汽车,每台16200元。第一年每台电动汽车的维护费用为1100元,以后每年增加400元,每台电动汽车每年可产生收益9100元。问在第几年时,单台汽车扣除购置和维护成本后产生的利润将超过2万元?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "数列问题;经济利润问题", "most_wrong": "A", "human_count": 695819, "human_acc": 45.7075762519, "source": "2022年四川省公务员录用考试《行测》题(网友回忆版)第48题", "difficulty": 5, "formulas": 0}, {"id": 2448394, "material": "", "question": "某种糖果的进价为12元/千克,现购进这种糖果若干千克,每天销售10千克,且从第二天起每天都比前一天降价2元/千克。已知以6元/千克的价格销售的那天正好卖完最后10千克,且总销售额是总进货成本的2倍。问总共进了多少千克这种糖果?", "type": "单选题", "options": "A. 180\nB. 190\nC. 160\nD. 170", "choice": "B", "keypoints": "数列问题;经济利润问题", "most_wrong": "C", "human_count": 2056963, "human_acc": 34.4857928898, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第63题", "difficulty": 5, "formulas": 0}, {"id": 5151131, "material": "", "question": "某商家对应季草莓的销售情况进行整理,草莓的销售单价每天都比前一天降低1元/公斤,其销量每天都比前一天增加2公斤。4月1日,草莓的单价为50元/公斤,总销量为60公斤,若草莓的成本为30元/公斤,且成本保持不变,已知某天草莓的利润为800元,则当天的日期可能是:", "type": "单选题", "options": "A. 4月7日\nB. 4月9日\nC. 4月11日\nD. 4月13日", "choice": "C", "keypoints": "数列问题;经济利润问题", "most_wrong": "B", "human_count": 21419, "human_acc": 56.2677996172, "source": "2022下半年省考第四季行测模考大赛(北京卷)第85题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "经济利润问题"]]}, {"id": 5404474, "material": "", "question": "甲、乙两人在长5000米的跑道上跑步锻炼,两人同时从跑道起点出发,甲按“400米慢跑-100米快走”的循环模式行至终点,用时42分钟,乙全程慢跑。已知甲慢跑速度是其快走速度的1.25倍,是乙慢跑速度的$\\frac{15}{16}$。当乙跑到终点时,甲距离终点还有多少米?", "type": "单选题", "options": "A. 522.5\nB. 530\nC. 537.5\nD. 545", "choice": "B", "keypoints": "周期余数问题;普通行程", "most_wrong": "C", "human_count": 268652, "human_acc": 38.0890520078, "source": "2023年国考第四十七季行测模考大赛(副省级)第70题", "difficulty": 7, "formulas": 1, "history": [{"id": 5510302, "material": "", "question": "甲、乙、丙在400米标准跑道上跑步,甲跑一圈用2分钟,乙用1.5分钟,丙用2.5分钟。若甲、乙、丙按顺序轮流每人半圈接力跑,共跑1600米,问乙一共跑了多少分钟?", "type": "单选题", "options": "A. 2\nB. 2.25\nC. 3\nD. 3.25", "choice": "B", "keypoints": "周期余数问题;普通行程", "most_wrong": "C", "human_count": 178391, "human_acc": 72.0137226654, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第45题", "difficulty": 4, "formulas": 0}, {"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "行程问题", "普通行程"]]}, {"id": 2679199, "material": "", "question": "在多元审美文化________的当今社会,“美”与“丑”时刻都在个人心灵和大众文化空间里发生着对话和碰撞。当“美”蒙上或神秘、或高贵、或________的“面纱”而无法与人亲近并共鸣时,“丑”就会以新鲜、刺激的斑斓色彩占领其空虚的心灵,在大众空间中打造出一片又一片“文化荒漠”,从而逐渐导致独特的“审丑”趣味在大众文化领域呈现出某种________趋势。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 合契 浮夸 泛滥\nB. 共存 复杂 暴涨\nC. 交织 无趣 蔓延\nD. 混杂 平实 扩散", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 203613, "human_acc": 39.4984603144, "source": "2021年国考第二十一季行测模考大赛(副省级)第35题", "difficulty": 6, "formulas": 0, "history": [{"id": 18713, "material": "", "question": "干净、整洁、低能源消耗是全世界都需要的东西,所以我从不怀疑“城市车”概念的___,我们不是在___让“城市车”概念成真,而是必须努力让它实现。", "type": "单选题", "options": "A. 超前 梦想\nB. 可行 尝试\nC. 科学 期待\nD. 实用 研究", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 169866, "human_acc": 61.4949430728, "source": "2011年内蒙古自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2393989, "material": "", "question": "观察就要用专业的角度去关注、________周围的事物,有意识地汲取、思索、分析,看在眼里,记在心里。丰富的想象正是来源于知识的广博和平时对生活深入细致的观察。因此,想象并不是凭空________的。\n\n依次填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 体验 杜撰\nB. 体味 虚构\nC. 体察 臆造\nD. 体察 虚构", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 1193339, "human_acc": 62.2801232508, "source": "2019年青海省公务员录用考试《行测》题省市州级(A类)(网友回忆版)第22题", "difficulty": 5, "formulas": 0}, {"id": 5131290, "material": "", "question": "如果把学术成果________给外行公众,也就是科普,那么话语体系的________就是必然的要求。科研人员从事科普可以保证科普内容的准确性,但是很多科研人员并不擅长做科普,虽然有人可能不太认同科普也有自己的方法和理论,但是事实就是如此,科普不能单纯地依赖于________,它需要有科学的知道,因此才会有科学传播的科学这种说法。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 传播 转化 直觉\nB. 普及 转换 专业\nC. 传递 转化 推理\nD. 推广 转换 逻辑", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 10408, "human_acc": 23.9911606457, "source": "2022下半年省考第三季行测模考大赛(青海卷)第39题", "difficulty": 7, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3523384, "material": "", "question": "两个大人带四个孩子去坐只有六个位置的圆型旋转木马,那么两个大人不相邻的概率为:", "type": "单选题", "options": "A. $\\frac{2}{5}$\nB. $\\frac{3}{5}$\nC. $\\frac{1}{3}$\nD. $\\frac{2}{3}$", "choice": "B", "keypoints": "环形排列问题;不相邻问题;给情况求概率", "most_wrong": "C", "human_count": 1180407, "human_acc": 45.9329705771, "source": "2021年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 4, "formulas": 419, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 15045, "material": "", "question": "别看王老师日常穿着不修边幅,他其实是很有________的人,而且在授课时语言________,不带冗余,是一位深受学生欢迎的老师。依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 品位 简捷\nB. 品位 简洁\nC. 品味 简捷\nD. 品味 简洁", "choice": "B", "keypoints": "关联关系-转折关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 137439, "human_acc": 69.2874657121, "source": "2010年深圳市公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0, "history": [{"id": 638469, "material": "", "question": "依次填入下列横线处的词语,最恰当的一组是:\n\n成功的流行文化作品具有共性,它们通俗,却并不______,它们浅显,却并不______。", "type": "单选题", "options": "A. 俗套 短浅\nB. 庸俗 短浅\nC. 俗套 浅薄\nD. 庸俗 浅薄", "choice": "D", "keypoints": "关联关系-转折关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 563219, "human_acc": 63.4177824257, "source": "2014年广州市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 8739, "material": "", "question": "在《士兵突击》这个没有坏人的世界和极端(    )的情景中,人与人之间的冲突却那么热烈、那么戏剧性,它把观众卷入其中并(    )他们沉睡的正义感、神圣性,通过理想化的存在体验催生道德的价值观念。\n\n填入括号内最恰当的一项是:", "type": "单选题", "options": "A. 纯净 诱导\nB. 纯粹 诱发\nC. 干净 诱导\nD. 纯洁 诱发", "choice": "B", "keypoints": "关联关系-转折关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 57035, "human_acc": 68.8892785132, "source": "2009年浙江省公务员录用考试《行测》题第20题", "difficulty": 4, "formulas": 0}, {"id": 5510094, "material": "", "question": "历史上,病毒的肆虐曾给人类带来无尽的灾难。但反过来看,每次大传染病发生也是人类社会加速成长、成熟的________。谁能最早回头________,谁就能最快从疫情的“废墟”中生出新生的翅膀。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 契机 反思\nB. 机遇 反省\nC. 机缘 反思\nD. 转机 反省", "choice": "A", "keypoints": "关联关系-转折关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 664322, "human_acc": 77.3966540322, "source": "2023年内蒙古公务员录用考试《行测》题(网友回忆版)第24题", "difficulty": 4, "formulas": 0}, {"id": 2571807, "material": "", "question": "“公知”和“大V”这类群体中有一些人,在舆论场分外活跃,以意见领袖的________指点江山,抛出的论调看似________,但惯用套路无非是拼接事实、断章取义、玩弄双标“三板斧”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 身份 正确\nB. 姿态 独到\nC. 态度 完美\nD. 模样 高明", "choice": "B", "keypoints": "关联关系-转折关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1864960, "human_acc": 79.0843235244, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第22题", "difficulty": 4, "formulas": 0}, {"id": 48931, "material": "", "question": "在生命中,刁难最初似乎是______,但后来却是______。因为一个被生活刁难过的人,都知道该怎样与世界______,也明白生活有时是一门______的艺术。\n\n依次填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 伤害 成全 周旋 妥协\nB. 危险 机遇 战斗 坚守\nC. 障碍 机会 斡旋 放弃\nD. 挑战 成功 妥协 坚持", "choice": "A", "keypoints": "关联关系-转折关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 509051, "human_acc": 48.0869303861, "source": "2013年江苏省公务员录用考试《行测》题(B类)第75题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4771992, "material": "", "question": "略读看上去不求甚解,但一个对文字敏感的人往往能从字里行间中____________。与精读一样,略读,也能收获颇丰。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 以一持万\nB. 慧眼识珠\nC. 深入浅出\nD. 管窥蠡测", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 412984, "human_acc": 28.5040098406, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第1题", "difficulty": 7, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 1797302, "material": "", "question": "下列诗句与人物对应不正确的是:", "type": "单选题", "options": "A. 拔山力尽乌江水,今古悠悠空浪花——项羽\nB. 群山万壑赴荆门,生长明妃尚有村——西施\nC. 羽扇纶巾,谈笑间,樯橹灰飞烟灭——周瑜\nD. 三顾频烦天下计,两朝开济老臣心——诸葛亮", "choice": "B", "keypoints": "中国历史;文学常识", "most_wrong": "C", "human_count": 667575, "human_acc": 74.9518780661, "source": "2016年山东省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"], ["常识判断", "人文常识", "文学常识"]]}, {"id": 2949014, "material": "", "question": "有一批零件需要加工,若甲单独加工,每工作4天休息2天,加工完需要26天;若乙单独加工,每工作5天休息1天,加工完需要32天。若甲、乙合作,完工时,甲加工的零件个数比乙多120个。问这批零件共有多少个?", "type": "单选题", "options": "A. 810\nB. 1200\nC. 1620\nD. 1080", "choice": "D", "keypoints": "周期余数问题;给具体单位型", "most_wrong": "C", "human_count": 107119, "human_acc": 13.8276122817, "source": "2022年国考第五季行测模考大赛(副省级)第72题", "difficulty": 7, "formulas": 0, "history": [{"id": 584709, "material": "", "question": "地铁工程在某1000米路段地下施工,两头并进,一侧地铁盾构机施工,每天掘进3米,工作5天,休息一天进行检修;另一侧工人轮岗不休,每天掘进1米,多少天此段可打通:", "type": "单选题", "options": "A. 282\nB. 285\nC. 286\nD. 288", "choice": "C", "keypoints": "周期余数问题;给具体单位型", "most_wrong": "B", "human_count": 210829, "human_acc": 65.3648217276, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第52题", "difficulty": 5, "formulas": 0}, {"id": 2377370, "material": "", "question": "制作一批风筝,甲需要12天完成,乙需要18天完成,两人共同制作,完成时甲比乙多制作了72个,如果按“甲制作一天、乙制作两天”的方式重复下去,当制作完成时,甲制作的风筝有(  )个。", "type": "单选题", "options": "A. 140\nB. 145\nC. 150\nD. 155\nE. 160\nF. 165\nG. 170\nH. 175", "choice": "E", "keypoints": "周期余数问题;给具体单位型", "most_wrong": "C", "human_count": 390899, "human_acc": 41.4549538372, "source": "2019年420联考《行测》题(陕西卷)(网友回忆版)第113题", "difficulty": 6, "formulas": 0}, {"id": 2526942, "material": "", "question": "甲、乙两人加工一批零件,若甲单独加工需要45天完成,乙每天可加工300个零件。若甲、乙同时加工,完成任务时乙加工零件个数一共比甲少$\\frac{1}{6}$。若按照甲加工一天、乙加工一天交替进行,直至完工,问甲加工零件一共比乙多多少个?", "type": "单选题", "options": "A. 900\nB. 1200\nC. 1500\nD. 1800", "choice": "D", "keypoints": "周期余数问题;给具体单位型", "most_wrong": "C", "human_count": 301422, "human_acc": 15.8465540007, "source": "2021年国考第三季行测模考大赛(副省级)第62题", "difficulty": 7, "formulas": 1}, {"id": 2641751, "material": "", "question": "甲、乙两人需要制造一批零件,甲单独完成需要24天,乙单独完成需要40天。原计划两人共同制造,但期间甲休息了若干天,实际完工时间比原计划延长10天,完成时乙比甲多制造了120件。若按照甲、乙的顺序每人一周轮流施工,完工时甲制造了多少件零件?(工作一周按7天计算)", "type": "单选题", "options": "A. 312\nB. 300\nC. 480\nD. 168", "choice": "A", "keypoints": "周期余数问题;给具体单位型", "most_wrong": "C", "human_count": 93047, "human_acc": 18.9205455308, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 2527057, "material": "", "question": "甲、乙两人加工一批零件,若甲单独加工需要45天完成,乙每天可加工300个零件。若甲、乙同时加工,完成任务时乙加工零件个数一共比甲少$\\frac{1}{6}$。若按照甲加工一天、乙加工一天交替进行,直至完工,问甲加工零件一共比乙多多少个?", "type": "单选题", "options": "A. 900\nB. 1000\nC. 1100\nD. 1200\nE. 1500\nF. 1600\nG. 1800\nH. 2000", "choice": "G", "keypoints": "周期余数问题;给具体单位型", "most_wrong": "D", "human_count": 9312, "human_acc": 14.0463917526, "source": "2020年上半年省考第二十七季行测模考大赛(陕西卷)第112题", "difficulty": 7, "formulas": 1}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 4491457, "material": "", "question": "短视频带给人们一种全新的获取知识的方式,但短视频的“短”基因也注定所有信息都是点到为止,所以知识多而浅薄。当____________的海量短视频替代了深度阅读,整体肤浅也就必不可免。更糟糕的影响是,快速切换的短视频带给孩子的是断点式的思维模式,使得相当一部分孩子的思维缺乏__________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浮光掠影 连贯性\nB. 断章取义 系统性\nC. 五花八门 创造性\nD. 眼花缭乱 完整性", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 234929, "human_acc": 72.721119998, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第29题", "difficulty": 4, "formulas": 0, "history": [{"id": 21651, "material": "", "question": "由于古人视彗星出现为不祥,________对其非常重视,几乎每一次出现都有比较________的记录。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因此  隐晦\nB. 加之  准确\nC. 故而  详细\nD. 反而  迷信", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 220068, "human_acc": 94.3117581838, "source": "2008年国家公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2878575, "material": "", "question": "文化自信不仅体现在国风音乐的流行上,传统题材的影视剧、动画、游戏同样____________。这些文艺样式往往需要中国风格的音乐作为配乐,从而为国风音乐发展提供________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 气贯长虹 契机\nB. 遍地开花 脚本\nC. 大行其道 载体\nD. 蔚然成风 桥梁", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 347389, "human_acc": 39.9054086341, "source": "2022年国考第四季行测模考大赛(副省级)第26题", "difficulty": 6, "formulas": 0}, {"id": 1791758, "material": "", "question": "金融实证研究基本上无法通过特定的实验来进行,这就决定了在研究方法上主要依靠现实数据收集和计量分析_________。因此,数据采集及其分析对于金融学研究的重要性_________。\n\n依次填入划横线处最恰当的一项是(    )。", "type": "单选题", "options": "A. 方式 毫无疑问\nB. 方法 不证自明\nC. 手段 不言而喻\nD. 做法 人所共知", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 557425, "human_acc": 79.2827734673, "source": "2016年江苏省公务员录用考试《行测》题(C类)第50题", "difficulty": 4, "formulas": 0}, {"id": 2947086, "material": "", "question": "新确立的五大学科研究领域,扩大了外语学科原来的知识体系和学术研究的内涵,使外语学科的学术性得以________。外语院校多学科发展已成为大趋势,外语院校的“外语”和“中文”学科,如鸟之双翼、车之两轮,____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 重塑 并行不悖\nB. 凸显 缺一不可\nC. 削弱 至关重要\nD. 突出 难能可贵", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 394774, "human_acc": 87.8591295273, "source": "2022年国考第五季行测模考大赛(副省级)第24题", "difficulty": 3, "formulas": 0}, {"id": 24907, "material": "", "question": "皮影戏在我国流传地域广阔,在长期的______过程中,其音乐唱腔的风格与韵律都_______了各自地方戏曲、曲艺、民间小调的精华,从而形成了众多______的流派。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 演变 融汇 标新立异\nB. 演化 吸收 异彩纷呈\nC. 传承 借鉴 家喻户晓\nD. 积淀 汲取 风格迥异", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 353899, "human_acc": 37.8384793402, "source": "2011年国家公务员录用考试《行测》题第44题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2634788, "material": "", "question": "小明花60元钱购买了铅笔和圆珠笔,两种笔相差20支以上,铅笔2元/支、圆珠笔3元/支。将铅笔和圆珠笔分给若干人,任意两人得到笔的种类或者数量至少有一个不同,最多可以分给多少人?", "type": "单选题", "options": "A. 6\nB. 9\nC. 7\nD. 8", "choice": "D", "keypoints": "最不利构造;普通不定方程", "most_wrong": "C", "human_count": 98668, "human_acc": 17.2680098918, "source": "2020年下半年省考第五季行测模考大赛(新疆卷)第62题", "difficulty": 7, "formulas": 0, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"], ["数量关系", "数学运算", "不定方程问题", "普通不定方程"]]}, {"id": 5682000, "material": "", "question": "党和人民的百年奋斗,书写了中华民族几千年历史上最恢宏的史诗,凝聚了党百年奋斗的重大成就和历史经验。将中华民族伟大复兴的主调与题旨嵌入历史、现实和未来,既赋予面向历史的________眼光,又投射面向新时代的________视野,使新时代文艺创作在更深程度、更大范围上生成了精神价值与意义空间。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 批判 发展\nB. 敏锐 高远\nC. 独到 战略\nD. 深邃 辽阔", "choice": "D", "keypoints": "关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 97724, "human_acc": 46.0398673816, "source": "2023下半年省考第十五季行测模考大赛(广东县级卷)第17题", "difficulty": 6, "formulas": 0, "history": [{"id": 2878571, "material": "", "question": "现代饮食的特点是超加工、冷冻保鲜,古人保存食物的发酵法被渐渐________,于是人类通过发酵食品摄入的有益细菌和酵母也变得越来越少。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冷落\nB. 忽略\nC. 融合\nD. 改良", "choice": "A", "keypoints": "关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 309849, "human_acc": 57.2924230835, "source": "2021上半年省考第十一季行测模考大赛(四川卷)第18题", "difficulty": 6, "formulas": 0}, {"id": 1786960, "material": "", "question": "海盗们对权力有种天生的警惕。为了避免船长握有太大的权力,海盗们选举产生了“舵手”,他负责分发战利品、仲裁船员冲突等等,正因为舵手这一职位的_____,使得船长无法开展所有得不到舵手同意的活动。\n\n填入下列横线处的词语,最恰当的一组是(    )。", "type": "单选题", "options": "A. 制衡\nB. 制止\nC. 遏制\nD. 抑制", "choice": "A", "keypoints": "关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 475885, "human_acc": 93.4669090221, "source": "2015年广州市公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 1679158, "material": "", "question": "“北师大保安考上研究生”这件事之所以引发关注,就在于它的稀缺,这也从侧面说明阶层固化导致________的____________不够充分。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 向上 社会流动\nB. 纵向 社会流动\nC. 上下 阶层流动\nD. 向上 人口流动", "choice": "A", "keypoints": "关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 688619, "human_acc": 51.8128311882, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第22题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2261797, "material": "", "question": "2016年,我国经济运行不是U型,更不是V型,而是L型的走势。以下对L型走势的理解,正确的是:\n\n①L型是调结构、促转型的必然选择\n\n②L型增长正在从原来的“竖”过渡到“横”\n\n③L型是一个阶段,不是一两年能过去的\n\n④L型意味着在一段时间内经济发展将停滞", "type": "单选题", "options": "A. ①②③\nB. ①②④\nC. ②③④\nD. ①②③④", "choice": "A", "keypoints": "经济常识", "most_wrong": "D", "human_count": 5457, "human_acc": 85.1750045813, "source": "2017年湖北省选调生行测题(精选)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "经济常识"]]}, {"id": 5341402, "material": "", "question": "热词虽然短小,却充满__________。比如,“打工人”这一词汇就是当代青年群体面对焦虑和压力的疏解自嘲,之所以能够引发如此高的关注,本质上是因为其产生于普通人的生活与工作境遇,洞察的是普通人的喜怒哀乐。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 时代感\nB. 简洁性\nC. 穿透力\nD. 艺术化", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 19757, "human_acc": 56.8709824366, "source": "2022下半年省考第十六季行测模考大赛(深圳卷)第61题", "difficulty": 6, "formulas": 0, "history": [{"id": 2255951, "material": "", "question": "重离子加速有什么作用?老百姓可能并不________,但是重离子治癌却得到很多人的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 了解 关注\nB. 理解 关心\nC. 理解 关怀\nD. 了解 关爱", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 4812, "human_acc": 98.7738985869, "source": "2014年江西省法检系统招录考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066144, "material": "", "question": "①由达成共识到制订计划,_______欧盟在军事一体化道路上迈出了可喜的一步。\n\n②虽然时间紧,任务重,但领导既然这样要求,我们也只能_______而为之了。\n\n③实践证明,人的大脑愈用愈发达,不用则会_______。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 表明 勉励 蜕化\nB. 说明 勉力 蜕化\nC. 说明 勉励 退化\nD. 表明 勉力 退化", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 23544, "human_acc": 89.9337410805, "source": "2015年深圳市公务员录用考试《行测》题第61题", "difficulty": 3, "formulas": 0}, {"id": 2032980, "material": "", "question": "现在全世界的人口一共70亿,扣掉中国的13亿人,剩下都是外国人。而我国平均每人每年给每一位外国人做三件半衣服、三双鞋,其中有相当一部分是晋江的品牌······________,中国第二产业在____________没有问题,问题在于大而不强,还是缺少核心技术。\n\n填入横线处最恰当的一组是:", "type": "单选题", "options": "A. 显然 规模上\nB. 当然 数量上\nC. 固然 宏观上\nD. 虽然 技术上", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 580301, "human_acc": 89.6548515339, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第23题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2571803, "material": "", "question": "网络平台不能将盈利模式不明朗、遭遇非法侵权的亏空________,通过“杀熟”的花式套路________到消费者身上。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 后果 附着\nB. 恶果 转移\nC. 焦虑 转嫁\nD. 顾虑 转化", "choice": "C", "keypoints": "词的辨析-感情色彩;实词填空", "most_wrong": "B", "human_count": 1778668, "human_acc": 29.7406823533, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 3723086, "material": "", "question": "“一带一路”是中国回应国际社会的________,提出的重要国际公共产品理念,并且不遗余力地在进行实践,不断提高国际事务的参与度和贡献率。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 需求\nB. 期待\nC. 否定\nD. 疑惑", "choice": "B", "keypoints": "词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 15636, "human_acc": 47.7807623433, "source": "2021下半年省考第十一季行测模考大赛(内蒙古卷)第23题", "difficulty": 7, "formulas": 0}, {"id": 52123, "material": "", "question": "农民工在精神文化上“营养不良”,时间和消费能力只是一部分原因,城乡二元结构带来的城乡文化____________,也许是他们难以迅速融入城市文化生活的一个重要原因。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 差异\nB. 差距\nC. 障碍\nD. 隔阂", "choice": "D", "keypoints": "词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 381399, "human_acc": 24.2667128126, "source": "2012年广州市公务员录用考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 1503511, "material": "", "question": "“意外惊喜”不是游客在朝鲜可以经常遇到的东西,因为导游会_______地规划你的行程,通常不惜绕远路也要避免你接触普通朝鲜民众。可喜的是,一些非政府组织正在______打破这层厚重面纱。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 周密 企图\nB. 谨慎 试图\nC. 严密 努力\nD. 审慎 考虑", "choice": "B", "keypoints": "词的辨析-感情色彩;实词填空", "most_wrong": "C", "human_count": 578497, "human_acc": 54.1038242204, "source": "2015年四川省公务员录用考试《行测》题(上半年)第17题", "difficulty": 5, "formulas": 0}, {"id": 2392036, "material": "", "question": "如今音乐产业环境受到一定冲击,这使从业者十分茫然,但也毋须过分________环境。相较于过去获取音乐渠道不多、选择相对较少的情况而言,现在文化消费的选择更为多元化。就此做出“现在不会有大师”这样的判断还太________,大师不可能只停留在过去。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抱怨 武断\nB. 依赖 随意\nC. 重视 轻率\nD. 苛求 主观", "choice": "A", "keypoints": "词的辨析-感情色彩;实词填空", "most_wrong": "B", "human_count": 533211, "human_acc": 80.2777887178, "source": "2016年黑龙江省公务员录用考试《行测》题(县乡卷)第42题", "difficulty": 4, "formulas": 0}, {"id": 2578006, "material": "", "question": "对人类而言,环境发挥着两方面的功能。一方面它是人类生存与发展的物质来源;另一方面它承受着各种人类活动所产生的________。这种功能决定了人类自身的活动越来越强烈地影响着环境的发展过程,因此,人类必须彻底地________利己主义,保护好环境,保持同环境和谐与协调的互利关系。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 效果 唾弃\nB. 结果 摒弃\nC. 后果 扬弃\nD. 恶果 遗弃", "choice": "B", "keypoints": "词的辨析-感情色彩;实词填空", "most_wrong": "C", "human_count": 1843597, "human_acc": 79.0541533752, "source": "2020年湖南公务员考试《行测》试题(网友回忆版)第19题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5610596, "material": "", "question": "某母婴店店庆期间,购入了一些糖果用来制作糖果礼盒,其中有水果糖504颗、奶糖336颗、酥糖420颗,将全部的糖果分成尽可能多的礼盒,且每个礼盒中同类糖果的数量一样多。店庆期间,进店消费的顾客消费每满99元可获得一个糖果礼盒。活动第一天结束后,恰好将这些礼盒全部送完,问该母婴店这一天的营业额至少为多少元?", "type": "单选题", "options": "A. 7956\nB. 8316\nC. 8850\nD. 9900", "choice": "B", "keypoints": "公倍数与公约数问题;非典型最值问题", "most_wrong": "C", "human_count": 11882, "human_acc": 50.0757448241, "source": "2023下半年省考第八季行测模考大赛(山西卷)第74题", "difficulty": 6, "formulas": 0, "history": [{"id": 47227, "material": "", "question": "整数8可以写成1、1、2、4这4个整数的和,也可以写成这4个整数的乘积。那么最少有多少个不等于2008的整数,使得它们的和等于2008,它们的乘积也等于2008?", "type": "单选题", "options": "A. 1002\nB. 1004\nC. 1006\nD. 2", "choice": "B", "keypoints": "公倍数与公约数问题;非典型最值问题", "most_wrong": "D", "human_count": 145865, "human_acc": 47.1010866212, "source": "2013年江苏省公务员录用考试《行测》题(A类)第37题", "difficulty": 5, "formulas": 0}, {"id": 2758350, "material": "", "question": "甲、乙二人分别有216颗完全相同的彩球,准备各自平均放在若干个盒子内,每个盒子内的彩球数量在10-30颗之间。已知每个盒子需花费15元,则二人购买盒子所花钱数之差最大为多少元?", "type": "单选题", "options": "A. 150\nB. 135\nC. 90\nD. 60", "choice": "A", "keypoints": "公倍数与公约数问题;非典型最值问题", "most_wrong": "B", "human_count": 136803, "human_acc": 15.936785012, "source": "2021上半年省考第四季行测模考大赛(四川卷)第55题", "difficulty": 7, "formulas": 0}, {"id": 2730218, "material": "", "question": "某品牌糖果有150克、240克两种规格,售价分别为12元/盒、15元/盒,小明购买了若干盒糖果,其中售价12元/盒的糖果总重量是15元/盒的4倍,将所有糖果混合后,平均分配送给朋友们,每位朋友得到480克糖果。问小明购买糖果至少花费多少元?", "type": "单选题", "options": "A. 1950\nB. 1836\nC. 990\nD. 918", "choice": "D", "keypoints": "公倍数与公约数问题;非典型最值问题", "most_wrong": "C", "human_count": 150251, "human_acc": 15.4048891522, "source": "2021上半年省考第一季行测模考大赛(广东卷)第41题", "difficulty": 7, "formulas": 0}, {"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 4874913, "material": "", "question": "作为古丝绸之路的黄金路段,河西走廊拥有大量精美的石窟。石窟中保存了大量精美绝伦的壁画及____________的彩绘佛像。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 眼花缭乱\nB. 惟妙惟肖\nC. 无与伦比\nD. 栩栩如生", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 15387, "human_acc": 56.1123025931, "source": "2023年国考第十六季行测模考大赛(地市级)第21题", "difficulty": 6, "formulas": 0, "history": [{"id": 48229, "material": "", "question": "生活在内地的中国人终其一生,要无数次填写有关个人资讯的登记表格。举凡上学、提干、入党、参军、就业、旅行等概莫能外,而登记栏目也几乎是_____的,包括出生年月、家庭出身、民族、性别、党派、籍贯、文化程度等。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 千人一面\nB. 如出一辙\nC. 一模一样\nD. 千篇一律", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 430846, "human_acc": 54.2896997999, "source": "2013年天津市公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 47935, "material": "", "question": "两根同样长的蜡烛,点完粗蜡烛要3小时,点完细蜡烛要1小时。同时点燃两根蜡烛,一段时间后,同时熄灭,发现粗蜡烛的长度是细蜡烛的3倍。问两根蜡烛燃烧了多长时间?", "type": "单选题", "options": "A. 30分钟\nB. 35分钟\nC. 40分钟\nD. 45分钟", "choice": "D", "keypoints": "给完工时间型;和差倍比问题", "most_wrong": "C", "human_count": 236278, "human_acc": 56.5219783475, "source": "2013年浙江省公务员录用考试《行测》题(B类)第59题", "difficulty": 5, "formulas": 0, "history": [{"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 5867, "material": "", "question": "一个游泳池,甲管注满水需6小时,甲、乙两管同时注水,注满要4小时。如果只用乙管注水,那么注满水需多少小时:", "type": "单选题", "options": "A. 14\nB. 12\nC. 10\nD. 8", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 127732, "human_acc": 87.2490840197, "source": "2008年河南省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 2036700, "material": "", "question": "小李晚上到镇中心广场看电影。第一排共有21个座位,部分座位已有人就座,小李发现,他无论坐在第一排的哪个位置,都将与第一排已经就座的人相邻。在小李之前已在第一排就坐的人数最少是()。", "type": "单选题", "options": "A. 6\nB. 7\nC. 8\nD. 9", "choice": "B", "keypoints": "周期余数问题;非典型最值问题", "most_wrong": "D", "human_count": 28534, "human_acc": 47.5923459732, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第44题", "difficulty": 6, "formulas": 0, "history": [{"id": 11945, "material": "", "question": "有一排长椅总共有65个座位,其中已经有些座位上有人就坐。现在又有一人准备找一个位置就坐,但是此人发现,无论怎么选择座位,都会与已经就坐的人相邻。\n\n问原来至少已经有多少人就坐:", "type": "单选题", "options": "A. 13\nB. 17\nC. 22\nD. 33", "choice": "C", "keypoints": "周期余数问题;非典型最值问题", "most_wrong": "D", "human_count": 173319, "human_acc": 51.0711462679, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第11题", "difficulty": 5, "formulas": 0}, {"id": 2452943, "material": "", "question": "一条街上有90棵树,其中有些树已经挂上了彩灯,这时,要选择在一棵未挂彩灯的树上悬挂红旗,有趣的是,无论将红旗挂在哪棵树上都与挂了彩灯的树相邻,那么至少有________棵树挂了彩灯。", "type": "单选题", "options": "A. 35\nB. 30\nC. 25\nD. 20", "choice": "B", "keypoints": "周期余数问题;非典型最值问题", "most_wrong": "C", "human_count": 143110, "human_acc": 65.8724058417, "source": "2020年上海市公务员录用考试《行测》题(B类)(网友回忆版)第75题", "difficulty": 5, "formulas": 0}, {"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 24035, "material": "", "question": "甲工人每小时可加工A零件3个或B零件6个,乙工人每小时可加工A零件2个或B零件7个。甲、乙两工人一天8小时共加工零件59个,甲、乙加工A零件分别用时为x小时、y小时,且x、y皆为整数,两名工人一天加工的零件总数相差:", "type": "单选题", "options": "A. 6个\nB. 7个\nC. 4个\nD. 5个", "choice": "B", "keypoints": "普通不定方程;给具体单位型", "most_wrong": "C", "human_count": 458267, "human_acc": 52.6946081651, "source": "2012年421联考《行测》题(山西/辽宁/黑龙江/福建/湖北/ 湖南/广西/海南/四川/重庆/ 云南/ 西藏/陕西/青海/宁夏/ 新疆兵团)第64题", "difficulty": 5, "formulas": 0, "history": [{"id": 4602165, "material": "", "question": "甲工程队一天能修12米的道路,乙工程队一天能修15米的道路,最后两个工程队一共修了165米的道路,且两个工程队修建道路花费的天数均为整数,问两个工程队修建道路花费的时间相差多少天?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "普通不定方程;给具体单位型", "most_wrong": "C", "human_count": 17577, "human_acc": 62.940205951, "source": "2021下半年省考第三十四季行测模考大赛(浙江卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 1797196, "material": "", "question": "在社会中不同地位不同阶层的人的行为,对群众的影响是不同的,地位越高,影响越大,所以才会有“____________”的说法。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 人云亦云\nB. 上行下效\nC. 从善如流\nD. 高山仰止", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 833381, "human_acc": 89.0979035999, "source": "2016年山东省公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 45011, "material": "", "question": "大批博士涌入公务员队伍,或可改变一下地方的政治生态,使得其他官员一个时期、一定程度上对知识对科技存有一些敬畏,兴起学习之风,避免一些__________的官场沉疴。\n\n填入横线上的成语,恰当的一项是:", "type": "单选题", "options": "A. 本本主义\nB. 沾沾自喜\nC. 官官相护\nD. 陈陈相因", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 440583, "human_acc": 40.8924084679, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第11题", "difficulty": 6, "formulas": 0}, {"id": 2685923, "material": "", "question": "推进绿色消费,涉及如何在消费领域推动绿色发展,是当前全社会都应当关注解决的重大问题。随着人们对美好生活的要求和期待日益增长,推进绿色消费方式的社会基础已然形成,因此,在现阶段全面推进绿色消费方式____________。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 板上钉钉\nB. 恰逢其时\nC. 一举两得\nD. 居功至伟", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 200164, "human_acc": 94.6828600548, "source": "2021年国考第二十二季行测模考大赛(副省级)第22题", "difficulty": 3, "formulas": 0}, {"id": 455887, "material": "", "question": "食品安全不仅由食品药品监督管理部门负责,还涉及工商、卫生、农业、质量检验检疫等部门的职责,“九龙治水”极易造成“_______”,论责任要各方分担、论利益却与其他部门无涉的工作,常常会由于缺少强力的调配、精确的协调和统一的部署而失去推动力。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 各自为政\nB. 一盘散沙\nC. 群龙无首\nD. 敷衍了事", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 566896, "human_acc": 53.1829471367, "source": "2014年天津市公务员录用考试《行测》题第24题", "difficulty": 5, "formulas": 0}, {"id": 2765058, "material": "", "question": "人文学者与自然科学家一样,其主要工作是纠正前人的谬识、探索未知。如果人文科学的研究成果是正确的,应当经得起时间考验。当然,随着新方法、新视角与新资料的出现,既有成果有可能被修正,比过去的结果更为接近真理。因此,人文科学的研究也是____________的。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独辟蹊径\nB. 与时俱进\nC. 优胜劣汰\nD. 精挑细选", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 124162, "human_acc": 91.2243681642, "source": "2021上半年省考第五季行测模考大赛(陕西卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 820213, "material": "", "question": "在东西方的很多文化中,女性会被认为应该承担更多的家庭角色,因此真正走上商业舞台的女性首席执行官往往______ 。近年来,中国整体经济实力的不断增强,激励女性成长的社会环境日益优化,越来越多女性首席执行官______ 。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 披荆斩棘 崭露头角\nB. 凤毛麟角 脱颖而出\nC. 寥寥无几 独当一面\nD. 令人瞩目 比比皆是", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 635400, "human_acc": 82.5146364495, "source": "2014年黑龙江省政法干警考试《行政职业能力测验》试卷(专科)第30题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5708498, "material": "", "question": "某直播间A、B两种商品开展促销活动,单价十几元的A商品现买3送2;B商品的单价为10元,现买1送1。某顾客以129元的价格购买了A、B两种商品若干件,其中A商品的数量是B商品的2.5倍。问A商品的单价为多少元?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 15", "choice": "B", "keypoints": "经济利润问题;普通不定方程", "most_wrong": "C", "human_count": 22110, "human_acc": 42.6322930801, "source": "2023下半年省考第十七季行测模考大赛(山西卷)第75题", "difficulty": 7, "formulas": 0, "history": [{"id": 5742901, "material": "", "question": "某超市促销某种商品,购买13件及以下,每件5元;购买13件以上,每件4元。小张和小李均购买了该种商品,若两人分别结账,小张比小李多花费22元,则两人一起结账比分别结账节省多少元?", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 11", "choice": "C", "keypoints": "经济利润问题;普通不定方程", "most_wrong": "B", "human_count": 119553, "human_acc": 49.3304224904, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 4692600, "material": "", "question": "某超市新购进甲、乙两种成本分别为150元和121元的商品若干件。甲商品每件可获得20%的利润,乙商品每件可获得10%的利润。出售完这两种商品共获得利润241元,则购进甲、乙两种商品共花费多少元?", "type": "单选题", "options": "A. 1600\nB. 1810\nC. 1860\nD. 2610", "choice": "B", "keypoints": "经济利润问题;普通不定方程", "most_wrong": "C", "human_count": 194824, "human_acc": 65.0535868271, "source": "2022上半年省考第四季行测模考大赛(广东县级卷)第31题", "difficulty": 4, "formulas": 0}, {"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "不定方程问题", "普通不定方程"]]}, {"id": 3555, "material": "", "question": "下面各句在横线处必须加“的”字的组是:\n\n(1)为实施西部大开发战略,加快当地经济________发展,国家将在西部新建十大工程。\n\n(2)天文学家在太阳系外共发现28颗行星,他们________存在是通过间接渠道推断出来的。\n\n(3)风险投资注入可以使你________钱袋立即充盈,有实力去市场拼抢厮杀谋求发展。\n\n(4)他有“兵坛黑马”之称,具备快、灵、狠的特点,是欧亚高手取胜________最大障碍。", "type": "单选题", "options": "A. (1)(2)\nB. (2)(4)\nC. (3)(4)\nD. (1)(3)", "choice": "C", "keypoints": "词的辨析-固定搭配", "most_wrong": "B", "human_count": 86478, "human_acc": 31.3987372511, "source": "2008年上海市公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 2188047, "material": "", "question": "填入划横线部分最恰当的一项是:\n\n几十年的创作生涯,使我深感真正用心的创作就是拼积累、耗心血,________靠积累琢磨出来的剧本,无论是故事、人物还是语言,都会“有嚼头”。", "type": "单选题", "options": "A. 但凡\nB. 因为\nC. 只有\nD. 只要", "choice": "A", "keypoints": "词的辨析-固定搭配", "most_wrong": "B", "human_count": 924402, "human_acc": 43.2997765042, "source": "2018年421联考《行测》题(吉林乙级)(网友回忆版)第27题", "difficulty": 5, "formulas": 0}, {"id": 11711, "material": "", "question": "为了加快工程进度,_________下大雨,刮大风,施工有困难,我们__________要干,__________要提前完成任务。", "type": "单选题", "options": "A. 如果 那么 并且\nB. 虽然 但是 而且\nC. 即使 也 而且\nD. 即使 那么 并且", "choice": "C", "keypoints": "词的辨析-固定搭配", "most_wrong": "D", "human_count": 54851, "human_acc": 97.7393301854, "source": "2009年广西壮族自治区公务员录用考试《行测》题第47题", "difficulty": 2, "formulas": 0}, {"id": 1679566, "material": "", "question": "____人生有许多事情要做,____就不要为一时的失去而伤心,因为一时的失去并不意味着永远的失败。____你拥有了这种健康的心态,你就成功了一半。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 虽然 但是 只要\nB. 既然 那么 只有\nC. 因为 所以 只有\nD. 既然 那么 只要", "choice": "D", "keypoints": "词的辨析-固定搭配", "most_wrong": "B", "human_count": 641827, "human_acc": 87.4534726648, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第21题", "difficulty": 5, "formulas": 0}, {"id": 1786942, "material": "", "question": "在中国,约有百分之七十的人为了工作将孩子交给父母帮带,但付给父母帮带费还是个比较生疏的概念。有专家认为,从法律上讲,父母确无给子女带孩子的义务。________并无义务,________有收取一定报酬的权利。反对者则认为,________亲情账都一笔笔算清,变现为金钱,________父母与子女之间就会沦为最肤浅、最可怕的市场关系。\n\n依次填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 虽然,但是,因为,所以\nB. 虽然,但是,如果,那么\nC. 既然,就,因为,所以\nD. 既然,就,如果,那么", "choice": "D", "keypoints": "词的辨析-固定搭配", "most_wrong": "B", "human_count": 639658, "human_acc": 83.4272376801, "source": "2015年广州市公务员录用考试《行测》题第17题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"]]}, {"id": 2565201, "material": "", "question": "在一环形跑道上的一处,甲、乙、丙三人同时同向出发,3分钟后,甲追上丙;又过了1分钟,乙追上丙。若追上一次即遇见一次,问50分钟内甲、乙、丙三人中至少有两人遇见的总次数为多少?", "type": "单选题", "options": "A. 24\nB. 28\nC. 32\nD. 36\nE. 12\nF. 14\nG. 16\nH. 18", "choice": "A", "keypoints": "周期相遇问题;普通行程;两集合", "most_wrong": "C", "human_count": 12915, "human_acc": 8.741773132, "source": "2020年上半年省考第三十一季行测模考大赛(陕西卷)第113题", "difficulty": 7, "formulas": 0, "history": [{"id": 2563903, "material": "", "question": "在一环形跑道上的一处,甲、乙、丙三人同时同向出发,3分钟后,甲追上丙;又过了1分钟,乙追上丙。若追上一次即遇见一次,问50分钟内甲、乙、丙三人中至少有两人遇见的总次数为多少?", "type": "单选题", "options": "A. 24\nB. 28\nC. 32\nD. 36", "choice": "A", "keypoints": "周期相遇问题;普通行程;两集合", "most_wrong": "C", "human_count": 377242, "human_acc": 11.7076041374, "source": "2021年国考第七季行测模考大赛(副省级)第63题", "difficulty": 7, "formulas": 0}, {"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 4840029, "material": "", "question": "网络文艺作品的创作和接受,改变了传统的艺术原则和规律,甚至________了文艺传播的方式和生态。倍速的应用,与部分网络文艺作品质量不高、耗时拖沓有关系。有人说,是“烂剧”把倍速逼成“刚需”,倍速“为注水剧脱水”,成了作品质量的“__________”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 衍生 风向标\nB. 重构 硬通货\nC. 影响 晴雨表\nD. 颠覆 试金石", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 233483, "human_acc": 61.7308326516, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 2450968, "material": "", "question": "遏制“校园贷”卷土重来,需要监管部门加大甄别力度,定期(  )不合规、不合法的网贷平台,通过制定规范的借款协议和贷款流程,(  )隐形高利贷。", "type": "单选题", "options": "A. 排查 防范\nB. 排除 防止\nC. 筛查 避免\nD. 检查 消除", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 187489, "human_acc": 81.1412936226, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 2262644, "material": "", "question": "近日,一名初中生因身穿奢侈品牌服装列席两会而引发网友关注,部分网友在________的仇富心理的作用下对其进行谴责,辱骂,甚至强行把贪污腐败的帽子扣在孩子及孩子家人的身上。\n\n填入横线处最恰当的一项是:", "type": "单选题", "options": "A. 阴暗\nB. 失常\nC. 病态\nD. 畸形", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 5830, "human_acc": 46.3121783877, "source": "2016年青海省选调生行测题(精选)第1题", "difficulty": 6, "formulas": 0}, {"id": 2262745, "material": "", "question": "在互联网时代,__________要鼓励技术创新和盈利模式创新,但基本的前提是不能______原创动力之源,更不能把别人的头条改头换面抄袭成自己的头条。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 固然 伤害\nB. 自然 干扰\nC. 当然 侵犯\nD. 必然 破坏", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 26108, "human_acc": 43.6954190287, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第20题", "difficulty": 6, "formulas": 0}, {"id": 2184646, "material": "", "question": "优秀传统文化就像一颗颗珍珠,____在岁月的河底。只有运用教育这根主线,我们才能将____起的珍珠重新编织为美丽的项链,使之成为能够传给后人的真正财富。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遗失 搜集\nB. 遗忘 打捞\nC. 留存 汇聚\nD. 散落 捡拾", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 993648, "human_acc": 35.6596098417, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第11题", "difficulty": 5, "formulas": 0}, {"id": 3744913, "material": "", "question": "考古学是一项专业性强的工作,从业人员相对较少,一般群众日常生活中很难接触到,这使得考古学成为最受公众________的人文学科,可能没有“之一”。考古学界也意识到这一问题,因此“公众考古”愈益受到重视,媒体对考古发掘的参与度也逐渐提高。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无视\nB. 诟病\nC. 争议\nD. 误解", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 15576, "human_acc": 14.7085259373, "source": "2021下半年省考第十二季行测模考大赛(内蒙古卷)第22题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3522375, "material": "", "question": "某装修公司订购了一条长为2.5m的长方体条形不锈钢管,要剪裁成60cm和43cm长的两种规格长度不锈钢管若干根,所裁钢管的横截面与原来一样,不考虑剪裁时材料的损耗,要使剩下的钢管尽量少,此时材料的利用率为:", "type": "单选题", "options": "A. 0.998\nB. 0.996\nC. 0.928\nD. 0.824", "choice": "B", "keypoints": "普通不定方程;统筹规划问题", "most_wrong": "C", "human_count": 1746001, "human_acc": 54.0841041901, "source": "2021年云南公务员录用考试《行测》题(网友回忆版)第52题", "difficulty": 4, "formulas": 0, "history": [{"id": 2261862, "material": "", "question": "某公司准备将一批重量为81吨的货物运到某市,现有载重量为8吨和5吨的货车各一辆。假定运输一趟的耗油量分别为16升和10升,问在耗油量最少的情况下,两种货车运输的趟次相差多少?(  )", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "普通不定方程;统筹规划问题", "most_wrong": "C", "human_count": 5656, "human_acc": 55.7284299859, "source": "2017年湖北省选调生行测题(精选)第87题", "difficulty": 3, "formulas": 0}, {"id": 2444724, "material": "", "question": "甲地有一批100吨的装修材料需运到乙地,大卡车载重量为13吨,小货车载重量为5吨,大卡车一次运费为1000元,小货车一次运费为500元。如要求所有货物正好装满整数车,则运费最低为多少元?", "type": "单选题", "options": "A. 8500\nB. 9000\nC. 9500\nD. 10000", "choice": "A", "keypoints": "普通不定方程;统筹规划问题", "most_wrong": "C", "human_count": 315424, "human_acc": 57.0083443238, "source": "2019年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第49题", "difficulty": 5, "formulas": 0}, {"id": 2521808, "material": "", "question": "某爱心组织有90吨医疗物资需要运输,现向汽车租赁公司租借卡车。已知大卡车的载重量是6吨,小卡车的载重量是4吨。每辆大卡车与小卡车的运费分别是500元、400元,小卡车使用不超过10辆时可享受7折优惠。若每辆卡车都满载,则一次性运完所有货物的最低成本为:", "type": "单选题", "options": "A. 6440元\nB. 6800元\nC. 7020元\nD. 8100元", "choice": "C", "keypoints": "普通不定方程;统筹规划问题", "most_wrong": "B", "human_count": 259901, "human_acc": 54.7031369637, "source": "2020年上半年省考第二十五季行测模考大赛(山东卷)第54题", "difficulty": 6, "formulas": 0}, {"id": 2521800, "material": "", "question": "某爱心组织有90吨医疗物资需要运输,现向汽车租赁公司租借卡车。已知大卡车的载重量是6吨,小卡车的载重量是4吨。每辆大卡车与小卡车的运费分别是500元、400元,小卡车使用不超过10辆时可享受7折优惠。若每辆卡车都满载,则一次性运完所有货物的最低成本为:", "type": "单选题", "options": "A. 5890元\nB. 6120元\nC. 6440元\nD. 6800元\nE. 7020元\nF. 7400元\nG. 7820元\nH. 8100元", "choice": "E", "keypoints": "普通不定方程;统筹规划问题", "most_wrong": "C", "human_count": 6964, "human_acc": 23.3055715106, "source": "2020年上半年省考第二十五季行测模考大赛(陕西卷)第119题", "difficulty": 7, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 1796116, "material": "", "question": "马克·吐温有一次在教堂听牧师演讲,最初他觉得牧师讲得很好,使人感动,准备捐款。过了十分钟,牧师还没有讲完,他就有些不耐烦了,于是他决定只捐一些零钱。又过了十分钟,牧师还没有讲完,于是他决定一分钱也不捐。在心理学上,这种刺激过多和作用时间过久而引起心理极不耐烦或反抗的现象,被称为“超限效应”。目前旨在帮助肌萎缩侧索硬化症患者的“冰桶挑战”项目,也应警惕因过度娱乐化而产生这种效应。以秀开始,但不以秀结尾,留下慈善真精神而不仅是明星录影集,这场跨国接力才算圆满。\n\n对这段文字概括最准确的是:", "type": "单选题", "options": "A. “冰桶挑战”应避作秀之嫌\nB. 要弱化明星在慈善中的作用\nC. 要把握慈善娱乐化的分寸\nD. 应适时预防“超限效应”", "choice": "A", "keypoints": "关联词-对策", "most_wrong": "C", "human_count": 1383300, "human_acc": 35.7625243982, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}, {"id": 1363, "material": "", "question": "大脑是一个“电力器官”,利用脉冲磁场激活大脑神经线路,可以缓解压力、增进认知,甚至克服疲劳。\n\n下面哪一项最能概括上文的意思:", "type": "单选题", "options": "A. 大脑是个“电力器官”\nB. 脉冲磁场对大脑神经线路的作用\nC. 人缓解压力、增进认识、克服疲劳的方法\nD. 大脑神经线路和治疗方法", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 41514, "human_acc": 61.5623645035, "source": "2008年广西壮族自治区公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 20157, "material": "", "question": "蝴蝶不是生下来就那么美丽的,只有经过不断地蠕行,日晒雨淋,它才能由一条奇丑无比的虫子,一点儿一点儿地蜕化成一只美丽的蝴蝶。\n\n这句话表达的观点是:", "type": "单选题", "options": "A. 美丽的事物都不是天生的。\nB. 任何时候都不能以貌取人。\nC. 美与丑是可以相互转化的。\nD. 成长需要经过苦难的磨砺。", "choice": "D", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 396073, "human_acc": 84.3632360701, "source": "2012年江西省公务员录用考试《行测》题第82题", "difficulty": 5, "formulas": 0}, {"id": 769233, "material": "", "question": "不论动机多么伟大,不论出于多么善良的心地,想要改变一个人,哪怕只是改变一个孩子,都是徒然的,如果他并不能理解这种改变。\n这段话的意思是说:", "type": "单选题", "options": "A. 人是很难改变的,无论他怎样努力\nB. 没有善良的动机就不能使人改变\nC. 孩子和成人一样不容易改变\nD. 只有当人自己想改变时他才会改变", "choice": "D", "keypoints": "关联词-对策", "most_wrong": "C", "human_count": 102117, "human_acc": 91.982725697, "source": "2011年广东省公务员录用考试《行测》题第37题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 3588980, "material": "", "question": "某考生计划每隔3天听一节阅读课,每隔4天听一节语法课,每周末(周六和周日)听单词课。若某年三月有5个星期五,且该考生3月1日同时听了阅读课和语法课,则3月份最少有几天没听课?", "type": "单选题", "options": "A. 10\nB. 20\nC. 12\nD. 18", "choice": "C", "keypoints": "周期余数问题;统筹规划问题", "most_wrong": "B", "human_count": 68468, "human_acc": 57.800724426, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第42题", "difficulty": 5, "formulas": 0, "history": [{"id": 2521806, "material": "", "question": "甲、乙两人在同一家健身房购买了小班私教课程,有瑜伽、游泳、动感单车这三个项目。每人每天上一节课(只能选择一个项目)。甲按照2节瑜伽,3节游泳,2节动感单车的顺序循环上课,乙每相邻3天的项目都完全不同,则一个自然月内两人最多共能上多少节瑜伽课?", "type": "单选题", "options": "A. 21\nB. 20\nC. 19\nD. 18", "choice": "A", "keypoints": "周期余数问题;统筹规划问题", "most_wrong": "C", "human_count": 259302, "human_acc": 13.7345643304, "source": "2020年上半年省考第二十五季行测模考大赛(山东卷)第53题", "difficulty": 7, "formulas": 0}, {"id": 2521798, "material": "", "question": "甲、乙两人在同一家健身房购买了小班私教课程,有瑜伽、游泳、动感单车这三个项目。每人每天上一节课(只能选择一个项目)。甲按照2节瑜伽,3节游泳,2节动感单车的顺序循环上课,乙每相邻3天的项目都完全不同,则一个自然月内两人最多能上多少节瑜伽课?", "type": "单选题", "options": "A. 22\nB. 21\nC. 20\nD. 19\nE. 18\nF. 17\nG. 16\nH. 15", "choice": "B", "keypoints": "周期余数问题;统筹规划问题", "most_wrong": "C", "human_count": 6704, "human_acc": 23.0459427208, "source": "2020年上半年省考第二十五季行测模考大赛(陕西卷)第118题", "difficulty": 7, "formulas": 0}, {"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 4658473, "material": "", "question": "创新面对的最大难题是高失败率。高失败率导致创新的________太高,于是一些创业者便选择“拷贝”、模仿别人的创新。不过,哪怕创新失败的人也应得到社会的________,因为正是不断的失败,造就了真正的创新者。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 门槛 理解\nB. 风险 同情\nC. 投入 认可\nD. 成本 尊重", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 1648628, "human_acc": 78.9279934588, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第17题", "difficulty": 5, "formulas": 0, "history": [{"id": 4233417, "material": "", "question": "一些网络互助项目游走在多种业务的边缘地带,定位不够清晰,导致管理存在________,再加上行业快速扩张的同时自律不足,因而出现种种失序问题。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 瓶颈\nB. 盲区\nC. 障碍\nD. 短板", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 21320, "human_acc": 86.0834896811, "source": "2021下半年省考第二十二季行测模考大赛(内蒙古卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 622203, "material": "", "question": "“文化搭台,经济唱戏”的最大危害,是将文化仅仅看作是经济的工具和仆佣,___________文化本身的价值,由此将文化完全______________为商品。", "type": "单选题", "options": "A. 忽视 贬低\nB. 疏忽 等同\nC. 无视 异化\nD. 漠视 降格", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 653579, "human_acc": 42.2126475912, "source": "2014年四川省公务员录用考试《行测》题第24题", "difficulty": 5, "formulas": 0}, {"id": 2678808, "material": "", "question": "一直以为,任何物质都是有力量的。大到一座高山、一条长河,小到一缕花香、一丝微笑,经过我们心灵的________之后,这些具象,都会成为引导我们思想最终________幽深境界的桥梁。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 升华 渐入\nB. 映照 抵达\nC. 折射 通向\nD. 抚慰 触及", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 39952, "human_acc": 51.2640168202, "source": "2020年下半年省考第十一季行测模考大赛(新疆卷)第28题", "difficulty": 6, "formulas": 0}, {"id": 5376223, "material": "", "question": "孩子存在“喜欢体育却不喜欢体育课”的情况,原因之一是很多教师把“运动训练”等同“运动技能教学”,致使体育课__________。部分体育教师对学情掌握不充分,只管教不管会,上课流程往往是“准备活动—讲解示范—模仿学练”,单点运动训练由于缺少__________整合,致使学生的体育技能碎片化,久而久之对体育课生厌,大大弱化了体育课的活动效果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 程式化 系统化\nB. 机械化 趣味化\nC. 标准化 通体化\nD. 片面化 互动化", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 88416, "human_acc": 87.713762215, "source": "2022下半年省考第十九季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2307725, "material": "", "question": "公司的门卫岗与消防岗均采用轮班制,门卫岗每隔两天值一天班,消防岗每4天值一天班,节假日无休息。小张是门卫,小王是消防员,则小张和小王在2019年中一个自然月里同时上班最多有(  )天。", "type": "单选题", "options": "A. 8\nB. 4\nC. 3\nD. 2", "choice": "C", "keypoints": "周期相遇问题;统筹规划问题", "most_wrong": "B", "human_count": 422990, "human_acc": 54.118300669, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第69题", "difficulty": 6, "formulas": 0, "history": [{"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}, {"id": 567163, "material": "", "question": "一架天平,只有5克和30克的砝码各一个,要将300克的食盐平均分成三份,最少需要用天平称几次:", "type": "单选题", "options": "A. 6次\nB. 5次\nC. 4次\nD. 3次", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 203660, "human_acc": 24.8885397231, "source": "2014年河北省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2137116, "material": "", "question": "有一种电子铃,每到整点就响一次铃,每走9分钟亮一次灯。正午12点时,它既亮灯又响铃。它下一次既响铃又亮灯是下午几点钟?", "type": "单选题", "options": "A. 1点钟\nB. 2点钟\nC. 3点钟\nD. 4点钟", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 384741, "human_acc": 81.9218643191, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第73题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 2620251, "material": "", "question": "研究员小李同时监测两个实验产品,其中A实验每3天需监测一次,B实验每5天需监测一次。若两个实验当天都需要监测,则另外再安排一人帮小李完成。问小李一个自然月内至少需要监测多少天?", "type": "单选题", "options": "A. 12\nB. 13\nC. 14\nD. 15", "choice": "A", "keypoints": "周期余数问题;两集合", "most_wrong": "C", "human_count": 36988, "human_acc": 9.3651995242, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第67题", "difficulty": 7, "formulas": 0, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 1130069, "material": "", "question": "某部门共有82人,其中男性62人,本省籍42人,不是本省籍的女性11人,则本省籍的男性人数有:", "type": "单选题", "options": "A. 33\nB. 21\nC. 22\nD. 23", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 55491, "human_acc": 84.125353661, "source": "2010年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 3, "formulas": 0}, {"id": 49171, "material": "", "question": "2013年是中国农历蛇年。在本世纪余下年份里,农历是蛇年的年份还有:", "type": "单选题", "options": "A. 5个\nB. 6个\nC. 7个\nD. 8个", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 397220, "human_acc": 75.9863551684, "source": "2013年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 1746724, "material": "", "question": "某新建小区计划在小区主干道两侧种植银杏树和梧桐树绿化环境,一侧每隔3棵银杏树种1棵梧桐树,另一侧每隔4棵梧桐树种1棵银杏树,最终两侧各种植了35棵树,问最多栽种了多少棵银杏树?", "type": "单选题", "options": "A. 33\nB. 34\nC. 36\nD. 37", "choice": "B", "keypoints": "周期问题-其他;非典型最值问题", "most_wrong": "C", "human_count": 1795627, "human_acc": 63.2073921811, "source": "2016年国家公务员录用考试《行测》题(副省级)第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 5019162, "material": "", "question": "老师布置寒假作业,按照“2道单选题、3道多选题、5道填空题”的顺序循环编排,题目编号为1-100。若小邓从第12题开始按顺序做作业,做完某道题后发现自己完成了24道多选题,则该题目的编号最小为:", "type": "单选题", "options": "A. 93\nB. 92\nC. 86\nD. 85", "choice": "D", "keypoints": "周期问题-其他;非典型最值问题", "most_wrong": "C", "human_count": 304590, "human_acc": 21.3598607965, "source": "2022上半年省考第二十一季行测模考大赛(陕西卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5742905, "material": "", "question": "某车间原有两个组共76人,现在要重新编为三个组。将原一组人数的$\\frac{1}{3}$与原二组人数的$\\frac{2}{5}$组成新一组,原一组人数的$\\frac{1}{4}$与原二组人数的$\\frac{1}{2}$组成新二组,剩余的人归为新三组。要想这三个组的人数构成等差数列,则新三组至少需要再加入多少人?", "type": "单选题", "options": "A. 8\nB. 9\nC. 10\nD. 11", "choice": "A", "keypoints": "数列问题;普通不定方程", "most_wrong": "B", "human_count": 112062, "human_acc": 13.570166515, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第56题", "difficulty": 7, "formulas": 4, "history": [{"id": 2448387, "material": "", "question": "某种产品每箱48个。小李制作这种产品,第1天制作了1个,以后每天都比前一天多制作1个。X天后总共制作了整数箱产品。问X的最小值在以下哪个范围内?", "type": "单选题", "options": "A. 在41~60之间\nB. 超过60\nC. 不到20\nD. 在20~40之间", "choice": "D", "keypoints": "数列问题;普通不定方程", "most_wrong": "C", "human_count": 2071469, "human_acc": 29.2238985956, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第66题", "difficulty": 7, "formulas": 0}, {"id": 14897, "material": "", "question": "某志愿者小组外出进行志愿服务活动,小组成员排成一列进行报数点名,除小李外,其他志愿者所报数字之和减去小李所报数字,恰好等于100。问小李是第几位,该志愿者小组共有多少人:", "type": "单选题", "options": "A. 10位,16人\nB. 10位,15人\nC. 12位,15人\nD. 12位,16人", "choice": "B", "keypoints": "数列问题;普通不定方程", "most_wrong": "C", "human_count": 21903, "human_acc": 67.7852348993, "source": "2009年山西省公务员录用考试《行测》题第99题", "difficulty": 4, "formulas": 0}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "不定方程问题", "普通不定方程"]]}, {"id": 4999711, "material": "", "question": "某工厂接到订单,需要生产若干个零件。第1天生产了20个零件,之后每天比前1天多生产1倍的零件;从第5天开始,每天比前1天少生产10个零件。生产零件总量前一半用的天数比后一半少2天,所用天数均为整数。问需要生产的零件总量是多少个?", "type": "单选题", "options": "A. 840\nB. 1140\nC. 1400\nD. 1440", "choice": "D", "keypoints": "数列问题;给具体单位型", "most_wrong": "C", "human_count": 274866, "human_acc": 19.7081486979, "source": "2022上半年省考第二十季行测模考大赛(北京卷)第78题", "difficulty": 7, "formulas": 0, "history": [{"id": 3522713, "material": "", "question": "小张和小李负责生产1200个零件,小张每天均生产20个。小李第一天生产10个,往后除最后一天外,每一天的产量都比前一天多1个。问整个任务中小张生产的个数比小李:", "type": "单选题", "options": "A. 多40个\nB. 多80个\nC. 少40个\nD. 少80个", "choice": "D", "keypoints": "数列问题;给具体单位型", "most_wrong": "C", "human_count": 761013, "human_acc": 20.9478681705, "source": "2021年湖南省公务员录用考试《行测》题(网友回忆版)第60题", "difficulty": 5, "formulas": 0}, {"id": 4654301, "material": "", "question": "某工厂生产一批零件,每天均比前一天多生产20个,生产10天后,还剩600个零件未生产,此时决定不再提高日生产量,并将总生产量提高50%,该工厂继续生产了7天才完成此次生产任务。问该工厂一共生产了多少个零件?", "type": "单选题", "options": "A. 1350\nB. 1950\nC. 2925\nD. 4050", "choice": "C", "keypoints": "数列问题;给具体单位型", "most_wrong": "B", "human_count": 182701, "human_acc": 47.4797620155, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第32题", "difficulty": 6, "formulas": 0}, {"id": 5696653, "material": "", "question": "甲、乙、丙三人共同加工一批零件,已知第一天甲加工了8个零件,乙加工了x个零件,丙每天加工的零件数量相同。从第二天开始甲每天都比前一天多加工x个零件,乙每天都比前一天多加工2x个零件。当甲的工作效率达到(8+7x)个时,丙一共加工了120个零件。若三人10天内一共加工了520个零件,则x=?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "数列问题;给具体单位型", "most_wrong": "C", "human_count": 21173, "human_acc": 47.3008076324, "source": "2023下半年省考第十六季行测模考大赛(山西卷)第71题", "difficulty": 6, "formulas": 0}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 18825, "material": "", "question": "收藏家从来不是将艺术品作为商品来对待的人,对他们而言,收藏________是一种暂时性的投资,________是一种激情:艺术的激情,物质的激情,历史的激情,占有的激情。正是这种激情重新改写了艺术品的意义。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 与其说 不如说\nB. 不仅 而且\nC. 尽管 然而\nD. 哪怕 也", "choice": "A", "keypoints": "对应关系-解释类对应", "most_wrong": "B", "human_count": 748433, "human_acc": 88.3504602282, "source": "2012年浙江省公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 4955, "material": "", "question": "正确认识人类精神生产与经济活动______政治现象之间的关系,______认识到思想文化的进步对人类历史发展产生的不可忽略的巨大影响。", "type": "单选题", "options": "A. 及其 从而\nB. 及 从而\nC. 及其 进而\nD. 及 进而", "choice": "D", "keypoints": "对应关系-解释类对应", "most_wrong": "B", "human_count": 108507, "human_acc": 47.4715916945, "source": "2008年湖北省公务员录用考试《行测》题(A类)第3题", "difficulty": 5, "formulas": 0}, {"id": 2259168, "material": "", "question": "_______历史不可能重复,历史研究也不可能“复原”历史,_______决不能因此而否认“求真”“求实”的理念,_______历史研究:", "type": "单选题", "options": "A. 虽然 但 否则\nB. 因为 所以 因此\nC. 即使 但 所以\nD. 尽管 所以 由此", "choice": "A", "keypoints": "对应关系-解释类对应", "most_wrong": "C", "human_count": 7496, "human_acc": 94.4637139808, "source": "2015年江西省法检系统招录考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 4673114, "material": "", "question": "社会是企业家施展才华的舞台。________真诚回报社会、切实履行社会责任的企业家,________能真正得到社会认可,________是符合时代要求的企业家。\n\n依次填入画横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 只有 才 才\nB. 只要 就 就\nC. 如果 不仅 还\nD. 因为 所以 就", "choice": "A", "keypoints": "对应关系-解释类对应", "most_wrong": "B", "human_count": 2158364, "human_acc": 91.306795332, "source": "2022年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第5题", "difficulty": 4, "formulas": 0}, {"id": 4885, "material": "", "question": "对于全体人民,_________对于农村贫民,一个很重要的改善,就是孩子上学不花钱。_________让所有孩子上学不花钱,人民_________能不再像现在这样没有文化,_________不再完全没有文化。\n\n从下列四个选项中选择最恰当的一组填入横线中:", "type": "单选题", "options": "A. 尤其 只有 才 至少\nB. 包括 只有 才 以至\nC. 特别 如果 就 或者\nD. 尤其 如果 就 甚至", "choice": "A", "keypoints": "对应关系-解释类对应", "most_wrong": "C", "human_count": 107883, "human_acc": 83.7536961338, "source": "2008年河南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 4699, "material": "", "question": "社会主义制度的巩固,社会主义事业的发展,只能是两个文明同时建设,互相促进的结果。_________两手都硬起来,_________两个文明一起上;单有一手硬,_________可能有一时的效果,_________最终两个文明建设都上不去。\n\n从下列四个选项中选择最恰当的一组填入横线中:", "type": "单选题", "options": "A. 既然 就能 也 而\nB. 只要 就能 即使 反而\nC. 因为 所以 尽管 可\nD. 只有 才能 虽然 但", "choice": "D", "keypoints": "对应关系-解释类对应", "most_wrong": "B", "human_count": 114628, "human_acc": 91.081585651, "source": "2008年河南省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"]]}, {"id": 5443207, "material": "", "question": "唐朝琵琶艺术的发展相当________,琵琶演奏家灿若群星,琵琶乐曲数以百计,吟咏琵琶的诗作多达百首。琵琶在民乐中的地位首屈一指。但是,那时还没有人提出文曲与武曲的明确________,在实际演奏中,文曲之阴柔,武曲之阳刚,文武曲的中和,都是存在的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迅速 特征\nB. 可观 概念\nC. 迅猛 界限\nD. 成熟 区别", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 143650, "human_acc": 36.8040375914, "source": "2023上半年省考第三季行测模考大赛(天津卷)第19题", "difficulty": 7, "formulas": 0, "history": [{"id": 2255893, "material": "", "question": "在中国先秦时期被称为“显学”之一的墨家________,在后来的中国学术上几近________,成为“绝学”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 学派 消亡\nB. 学说 消失\nC. 学会 消亡\nD. 学术 消失", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 5247, "human_acc": 78.883171336, "source": "2014年江西省法检系统招录考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 2388272, "material": "", "question": "成熟的麦穗在阳光下低垂着头,那是在教我们________;忙碌的蜜蜂在田野里采集花粉,那是在教我们________;柔弱的水珠在四季轮回中穿透顽石,那是在教我们________。", "type": "单选题", "options": "A. 谦逊 辛劳 坚守\nB. 谦让 辛勤 坚持\nC. 谦卑 勤奋 执着\nD. 谦虚 勤劳 坚韧", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 865078, "human_acc": 56.2146997149, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 4668758, "material": "", "question": "当时的电影只是对原生态生活的________,侧重的是电影的照相本性。这些“活动相机”带有________风格,最初的观众得以带着惊奇的目光从银幕上辨认出“自己”和日常生活世界,由此获得崭新的体验。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 描述 纪事\nB. 描写 记录\nC. 描摹 纪实\nD. 描绘 纪事", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1497781, "human_acc": 50.2828517654, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第32题", "difficulty": 4, "formulas": 0}, {"id": 1003259, "material": "", "question": "网络主权概念的提出,意味着国家行使主权去维护网络安全,但网络空间的特殊性决定了政府作用有限。政府决策者应关注如何在维护网络主权的同时_______互联网行业的健康发展,并且在维护网络主权与行业发展之间寻求恰当的_______。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 保证 平衡\nB. 保护 转换\nC. 保障 立场\nD. 保持 时机", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 2541242, "human_acc": 80.8512530487, "source": "2015年国家公务员录用考试《行测》题(省部级)第28题", "difficulty": 5, "formulas": 0}, {"id": 2527428, "material": "", "question": "只要说到“走西口”,耳边就会响起悲壮的歌声,从歌声中听出一种________的况味。那况味,是背井离乡的无奈和忧伤。可是,右玉这片地方,真是很难留下来,不可思议的漫天黄沙,把所有生存的想法都________了,似乎只剩下逃离这最后一条路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 苍凉 遮蔽\nB. 荒凉 湮灭\nC. 薄凉 掩埋\nD. 凄凉 磨灭", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 299759, "human_acc": 14.8219069319, "source": "2021年国考第三季行测模考大赛(副省级)第26题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 3725967, "material": "", "question": "知识付费平台着力提升内容的含金量,并不意味着平台推出的内容越____________越好。恰恰相反,由于多数付费用户只是抱着轻松愉悦的态度期望学而有获,所以相关平台能不能________适宜用户群体的需求,能不能把用户关注的知识深入浅出、引人入胜地呈现出来,________着平台运营者的眼光与能力。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 阳春白雪 深掘 检验\nB. 曲高和寡 定位 磨炼\nC. 高深莫测 找准 考验\nD. 删繁就简 瞄准 体现", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 100132, "human_acc": 90.2578596253, "source": "2021下半年省考第十一季行测模考大赛(四川卷)第24题", "difficulty": 3, "formulas": 0, "history": [{"id": 20037, "material": "", "question": "成长,像一杯清茶,虽没有牛奶的______,却越品越香;成长,像一条小路,虽弯曲坎坷,却______。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 香甜 阳光普照\nB. 嫩滑 前途光明\nC. 淳朴 曲径通幽\nD. 醇厚 风景秀丽", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 587813, "human_acc": 47.5258287925, "source": "2012年江西省公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}, {"id": 1796098, "material": "", "question": "在这个时代,人与人之间虽然在空间和情感上越来越______,但是每个人的利益却又________地与他人的利益和行为紧密地联系在一起。这促成人们主动参与公共事务,呼吁公共利益。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冷漠 无孔不入\nB. 疏离 前所未有\nC. 隔绝 迫不得已\nD. 封闭 始料未及", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 1871380, "human_acc": 79.8436447969, "source": "2016年423联考《行测》题(贵州卷)第23题", "difficulty": 5, "formulas": 0}, {"id": 2067010, "material": "", "question": "经济学家约瑟夫·熊彼特曾经说过:“光是制造令人满意的肥皂还不够,还必须_____大家洗澡。”于是,公司发明并传播了体臭和口臭的概念。有人说,需求决定供给,但是公司绝不_____,公司制造了需求。\n\n依次填入画横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 劝说 固步自封\nB. 诱导 墨守成规\nC. 引导 因循守旧\nD. 规劝 一孔之见", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 59084, "human_acc": 41.7050301266, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 4344712, "material": "", "question": "音乐消费逐渐向内地听众倾斜,并以内地为圆心________到全球华人聚集的地区,中国传统音乐元素的创作市场逐渐成熟。在继承和发扬传统音乐文化,创作更多个性音乐作品的同时,一些只重视发展结果却对音乐本源____________的现象仍有存在。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 殃及 无动于衷\nB. 风靡 置若罔闻\nC. 扩散 置之度外\nD. 辐射 视如敝屣", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 157393, "human_acc": 65.5886856468, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 3826942, "material": "", "question": "随着全球化的深入发展,协同创新、平台共享、第三方市场合作等新型经贸合作模式____________,迫切需要创设新规则、新标准。当前,我国在跨境电子商务、第三方市场合作等新型经贸合作领域的规模已经跃居世界前列,但相关规则和标准的制定却相对________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 层出不穷 滞后\nB. 方兴未艾 落后\nC. 呼之欲出 欠缺\nD. 备受瞩目 薄弱", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 98281, "human_acc": 73.3681993468, "source": "2021下半年省考第十五季行测模考大赛(陕西卷)第34题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2701824, "material": "", "question": "卡尔维诺曾说过:“一部经典作品是一本永不会耗尽它要向读者说的一切东西的书”“经典作品是这样一些书,我们越是道听途说,以为我们懂了,当我们实际读它们,我们就越觉得它们独特、意想不到和新颖”。儿童文学也有它自己的经典传承,并且不断创造新的经典。有些作品的诞生和流传,似有神意,在恰好的时候以恰好的方式出现,出其不意改写了文学史,对后世产生极大的影响,并历久弥新,譬如安徒生童话。\n\n这段文字接下来最可能讲的是:", "type": "单选题", "options": "A. 介绍安徒生童话对人类社会发展的影响\nB. 探讨如何能创作出历久弥新的文学作品\nC. 应鼓励人们阅读安徒生经典的文学作品\nD. 安徒生童话是儿童文学经典作品的原因", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 18792, "human_acc": 26.3729246488, "source": "2020年下半年省考第十四季行测模考大赛(天津卷)第43题", "difficulty": 7, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 2578527, "material": "", "question": "小李一家3人进行抢红包游戏,每人发1个红包。结果每人抢得金额总额一致,均为100元,刚巧3人所发红包金额为互不相同整数且成等差数列。问3人中所发红包金额最多的可能是多少元?", "type": "单选题", "options": "A. 197\nB. 198\nC. 199\nD. 200", "choice": "C", "keypoints": "数列问题;构造数列", "most_wrong": "B", "human_count": 804158, "human_acc": 57.8009545388, "source": "2020年湖南公务员考试《行测》试题(网友回忆版)第60题", "difficulty": 3, "formulas": 0, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 5286986, "material": "", "question": "某圆柱形水池原有120毫米高的水,晚上9点开始降雨,初始1小时降雨量为1.2毫米,并且雨势逐渐增大,平均每过1小时,雨量增加1.5毫米,直至凌晨5点降雨结束。之后利用抽水机抽水,在抽出5.8立方米水后,水池内还剩26.6毫米高的水,问水池的底面积为多少平方米?(水池每小时接收的水量与每小时降雨量深度相同)", "type": "单选题", "options": "A. 30\nB. 35\nC. 37\nD. 40", "choice": "D", "keypoints": "数列问题;立体几何", "most_wrong": "C", "human_count": 5952, "human_acc": 17.3891129032, "source": "2022下半年省考第十季行测模考大赛(浙江C卷)第70题", "difficulty": 7, "formulas": 0, "history": [{"id": 5308653, "material": "", "question": "一个边长为n的大立方体,由若干个边长为1的小立方体组成,现在要在大立方体表面涂上颜色,设小立方体一面被涂上颜色的有a块,两面的有b块,三面的有c块。若xa、b、c恰好构成等比数列,则x为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "数列问题;立体几何", "most_wrong": "B", "human_count": 203662, "human_acc": 13.5715057301, "source": "2022下半年省考第十三季行测模考大赛(浙江C卷)第61题", "difficulty": 7, "formulas": 0}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 43649, "material": "", "question": "小张、小李、小王三人到商场购买办公用品,小张购买1个计算器、3个订书机、7包打印纸共需要316元,小李购买1个计算器、4个订书机、10包打印纸共需要362元。\n\n小王购买了1个计算器、1个订书机、1包打印纸共需要:", "type": "单选题", "options": "A. 224元\nB. 242元\nC. 124元\nD. 142元", "choice": "A", "keypoints": "不定方程组;和差倍比问题", "most_wrong": "C", "human_count": 211265, "human_acc": 54.6460606347, "source": "2012年江西省公务员录用考试《行测》题第115题", "difficulty": 5, "formulas": 0, "history": [{"id": 2172816, "material": "", "question": "A、B、C、D四个小朋友进行分组跳绳比赛,结果A与B两个小朋友比C与D两个小朋友多跳20个。又已知A比B少跳9个,C比D多跳15个。那么,跳得最多的小朋友比最少的多(    )个。", "type": "单选题", "options": "A. 19\nB. 20\nC. 21\nD. 22", "choice": "D", "keypoints": "不定方程组;和差倍比问题", "most_wrong": "C", "human_count": 408510, "human_acc": 60.4773444959, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第33题", "difficulty": 5, "formulas": 0}, {"id": 43819, "material": "", "question": "某汽车厂生产甲、乙、丙三种车型,其中乙型产量的3倍与丙型产量的6倍之和等于甲型产量的4倍,甲型产量与乙型的2倍之和等于丙型产量的7倍。则甲、乙、丙三型产量之比为:", "type": "单选题", "options": "A. 5:4:3\nB. 4:3:2\nC. 4:2:1\nD. 3:2:1", "choice": "D", "keypoints": "不定方程组;和差倍比问题", "most_wrong": "B", "human_count": 1066710, "human_acc": 57.2892351248, "source": "2013年国家公务员录用考试《行测》题第63题", "difficulty": 5, "formulas": 0}, {"id": 2730453, "material": "", "question": "“数艺杯”绘画比赛的决赛规则如下:由3位评委对11件作品进行投票,每位评委对每件作品可以投一票或者不投票;得3票的作品为一等奖,得2票的作品为二等奖;得1票的作品为三等奖,不得票的作品为鼓励奖。已知三位评委分别投出了6票、7票、8票。且有3件作品为鼓励奖,那么(    )。", "type": "单选题", "options": "A. 一等奖作品比三等奖作品多5件\nB. 一等奖作品比二等奖作品多2件\nC. 二等奖作品比一等奖作品多5件\nD. 二等奖作品比三等奖作品多3件", "choice": "A", "keypoints": "不定方程组;和差倍比问题", "most_wrong": "B", "human_count": 248145, "human_acc": 42.6166152854, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第49题", "difficulty": 3, "formulas": 0}, {"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 4775935, "material": "", "question": "债权人指根据法律或合同、契约的规定,有权要求债务人偿还钱财或履行一定行为的人。不作为债权是指债权人有权请求债务人不做某项行为。不作为债权是权利人基于债的关系而产生的、请求特定人为特定行为的权利。\n\n根据上述定义,以下属于不作为债权的是:", "type": "单选题", "options": "A. 乙与其前妻离婚时发生争议,乙给出的方案为房产归乙所有,存款及孩子的抚养权归其前妻所有,其前妻2年内不得再婚\nB. 张某因经营需要,将其所有的车辆抵押给投资公司,并要求在未按时还款之前,该公司不得进行挪用及转让\nC. 甲拥有某地山坡,近可观水,远可望山,欲在此处兴建别院,遂与邻居乙约定,乙在未来20年之内不得在附近土地上兴土木,不得妨害甲的眺望,甲每年支付乙5万元\nD. 村民鲁某为购买汽车跑长途运输,欲向刘某借款5万元,刘某认为鲁某爱好赌博,要求鲁某先写下保证书,只能将该款项用于购车,不得用于它处", "choice": "C", "keypoints": "常规问法", "most_wrong": "D", "human_count": 284858, "human_acc": 15.4385693925, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第75题", "difficulty": 7, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 2724045, "material": "", "question": "一个人、一个民族有信奉的真理、有坚守的信仰,就能百折不挠、坚忍不拔。革命战争年代,面对国内外敌人残酷血腥的迫害,在革命事业处于低潮甚至____________时,无数共产党人正是将信仰的伟力蕴含于对真理的认同笃信中,才能做到身处黑暗而心向光明,千难万险而____________。 \n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 栉风沐雨 勇往直前\nB. 危如累卵 砥节砺行\nC. 饱经风霜 义无反顾\nD. 危在旦夕 矢志不渝", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 162335, "human_acc": 59.0642806542, "source": "2020年下半年省考第十六季行测模考大赛(云南卷)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 2377265, "material": "", "question": "互联网新技术新应用对文化产业进行全方位、全角度、全产业链的改造,释放数字化对文化产业发展的放大、叠加和倍增作用,推动互联网、移动网与文化之间形成______的新形态。", "type": "单选题", "options": "A. 唇齿相依\nB. 休戚与共\nC. 同舟共济\nD. 水乳交融", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 1685778, "human_acc": 50.9720734284, "source": "2019年四川省选调优秀大学毕业生到基层工作《行测》试题(网友回忆版)第18题", "difficulty": 6, "formulas": 0}, {"id": 5038278, "material": "", "question": "跨境网络诈骗团伙之所以明目张胆逞凶,其最大底气不外乎是仗着身在境外,中国公安执法力量____________,而所在国对相关行为缺乏有效约束。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 杯水车薪\nB. 力有不逮\nC. 鞭长莫及\nD. 难以企及", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 357801, "human_acc": 84.9234630423, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第13题", "difficulty": 3, "formulas": 0}, {"id": 5597047, "material": "", "question": "宋画并非“____________”,并非是脱离社会的独立存在。无论怎么风雅,也饱含江山社稷、家国一统、社会民生等主题,是“先天下之忧而忧”的士大夫情怀。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 天方夜谭\nB. 空谷足音\nC. 讳莫如深\nD. 阳春白雪", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 35683, "human_acc": 63.0692486618, "source": "2023下半年省考第六季行测模考大赛(广东乡镇卷)第2题", "difficulty": 6, "formulas": 0}, {"id": 16819, "material": "", "question": "以德为先,首要的是提高干部的党性修养,____________是要解决党员干部的信仰问题,而关键之处在于通过积极有效的载体化虚为实,____________。", "type": "单选题", "options": "A. 重中之重 有目共睹\nB. 首当其冲 雷厉风行\nC. 归根结底 立竿见影\nD. 千方百计 有的放矢", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 334610, "human_acc": 66.8055348017, "source": "2010年湖北省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}, {"id": 2748375, "material": "", "question": "砥砺复兴之志,是一个古老民族____________的动力源泉。永葆赤子之心,是一个人民政党____________的制胜法宝。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 生生不息 薪火相传\nB. 自强不息 日积月累\nC. 源远流长 历久弥新\nD. 延绵不绝 锲而不舍", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 446781, "human_acc": 58.4501131427, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第52题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2184621, "material": "", "question": "某处室的第一科室和第二科室中分别有6人和3人具备硕士及以上学历。现要从这2个科室中随机选择3名具有硕士及以上学历的人参加某个会议,问3人全部来自第一科室的概率是全部来自第二科室的多少倍?", "type": "单选题", "options": "A. 2\nB. 8\nC. 12\nD. 20", "choice": "D", "keypoints": "给情况求概率;概率问题-其他", "most_wrong": "B", "human_count": 345140, "human_acc": 53.603175523, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第46题", "difficulty": 5, "formulas": 0, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 4233653, "material": "", "question": "目前成功出海的网文中,科幻小说、武侠小说、悬疑小说、推理小说、盗墓小说、谍战小说是最受关注的类型。这些小说大多以____________的故事情节、____________的逻辑推理、奇思妙想的丰富想象取胜。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 荡气回肠 环环相扣\nB. 感人肺腑 匪夷所思\nC. 曲折离奇 荒诞不羁\nD. 跌宕起伏 引人入胜", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 10181, "human_acc": 53.5900206267, "source": "2021下半年省考第二十二季行测模考大赛(西藏卷)第2题", "difficulty": 7, "formulas": 0, "history": [{"id": 4630385, "material": "", "question": "民间故事与个人创作最大的不同在于它们____________的特质。众多无名故事家不断讲述它们,使每一个流传的故事成为集体智慧的结晶。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 口口相传\nB. 锻炼逻辑\nC. 奔走相告\nD. 道听途说", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 1201657, "human_acc": 95.8053754108, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第26题", "difficulty": 5, "formulas": 0}, {"id": 5011990, "material": "", "question": "严格依法界定网络平台的法律责任,要求有关网络平台责任的现有法律制度和法律规定得到____________的执行,从而做到有法必依,执法必严,违法必究。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 彻头彻尾\nB. 立竿见影\nC. 分毫不差\nD. 不折不扣", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 27418, "human_acc": 72.6493544387, "source": "2023年国考第二十三季行测模考大赛(行政执法类)第21题", "difficulty": 4, "formulas": 0}, {"id": 4668742, "material": "", "question": "无论是很早就离开了家乡,还是在家乡生活了较长时间,名人对自己家乡的风土人情总是____________,对家乡的特色产品无不____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高谈阔论 不赞一词\nB. 滔滔不绝 拍案叫绝\nC. 喋喋不休 娓娓道来\nD. 津津乐道 如数家珍", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 1496134, "human_acc": 78.5450367414, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第28题", "difficulty": 4, "formulas": 0}, {"id": 5276695, "material": "", "question": "近年来网络监管环境明显趋严,但低俗直播依然整而难治、禁而不绝。究其原因在于内容制作方唯利是图,对法律和规则缺乏敬畏之心。一直以来,以矛盾造热度,用热度换流量,靠流量牟利益等行为____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大行其道\nB. 蔚然成风\nC. 风靡一时\nD. 异军突起", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 126580, "human_acc": 76.7972823511, "source": "2022下半年省考第十季行测模考大赛(新疆兵团卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 4918738, "material": "", "question": "每个社会成员都应该共享改革发展成果,但这同时意味着社会成员需要承担参与改革发展进程的责任和义务,否则共享的权利就可能扭曲成____________的特权,失去在高质量发展中推动全体人民共同富裕的持续动力。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 坐收渔利\nB. 以逸待劳\nC. 浑水摸鱼\nD. 坐享其成", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 310999, "human_acc": 85.987736295, "source": "2022上半年省考第十六季行测模考大赛(广东县级卷)第1题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 748757, "material": "", "question": "A、B两条流水线每小时均能装配1辆汽车。A流水线每装配3辆汽车要用1小时维护,B流水线每装配4辆汽车要用1.5小时维护。问两条流水线同时开始工作,装配200辆汽车需用多少小时:", "type": "单选题", "options": "A. 134\nB. 135\nC. 136\nD. 137", "choice": "B", "keypoints": "周期相遇问题;给具体单位型", "most_wrong": "C", "human_count": 176983, "human_acc": 46.9124153167, "source": "2014年青海省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0, "history": [{"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 2137116, "material": "", "question": "有一种电子铃,每到整点就响一次铃,每走9分钟亮一次灯。正午12点时,它既亮灯又响铃。它下一次既响铃又亮灯是下午几点钟?", "type": "单选题", "options": "A. 1点钟\nB. 2点钟\nC. 3点钟\nD. 4点钟", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 384741, "human_acc": 81.9218643191, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第73题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 2259177, "material": "", "question": "①一个人拥有包容心态,在为人处事时就不会____________,也不会卑躬屈膝,他会平心静气,拒绝浮华,兼收并蓄,包容万物。\n\n②常香玉是一位____________的豫剧表演艺术家。她的豫剧我有幸欣赏过,她吸取了河南曲剧、河南梆子、河北梆子等剧种的长处和旋律,还大胆吸收了京剧的唱腔和武功,结合自己的表演和唱腔,完美表演出豫剧剧目。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 目空一切 德艺双馨\nB. 狂妄自大 德高望重\nC. 盛气凌人 德艺双馨\nD. 仗势欺人 德才兼备", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 7548, "human_acc": 60.4398516163, "source": "2015年江西省法检系统招录考试《行测》题第18题", "difficulty": 5, "formulas": 0, "history": [{"id": 4997647, "material": "", "question": "以牺牲生态环境为代价换取一时经济发展,无疑是杀鸡取卵、____________的错误行为。要彻底整治盗采乱象,必须下定决心、一抓到底。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 缘木求鱼\nB. 竭泽而渔\nC. 抱薪救火\nD. 挥霍无度", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 286762, "human_acc": 84.728450771, "source": "2022上半年省考第二十季行测模考大赛(广东县级卷)第1题", "difficulty": 4, "formulas": 0}, {"id": 2450980, "material": "", "question": "并非所有纪录片都在商业化之路上(  ),前方已然有许多口碑与流量并存的精品用自己的经验告诉后来者:观众的口味并非(  ),无论时代和观众的口味如何变迁,精耕内容、细磨品质永远是赢得观众的制胜法宝。", "type": "单选题", "options": "A. 一帆风顺 变幻莫测\nB. 折戟沉沙 不可捉摸\nC. 一败涂地 高深莫测\nD. 披荆斩棘 耐人寻味", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 164455, "human_acc": 78.0103979812, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第52题", "difficulty": 4, "formulas": 0}, {"id": 2737540, "material": "", "question": "从法律层面给了网络打赏限定标准,在一定程度上抑制了未成年人“打赏”乱象。而国家广播电视总局明确在网络直播中禁止未成年人打赏,更是一种关口前移、____________的办法,是对未成年人和无数家庭负责任的好举措。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 投石问路\nB. 立竿见影\nC. 釜底抽薪\nD. 亡羊补牢", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 174777, "human_acc": 64.491323229, "source": "2021上半年省考第二季行测模考大赛(广东卷)第1题", "difficulty": 5, "formulas": 0}, {"id": 163325, "material": "", "question": "越来越多的公共议题,需要大家____________,和衷共济。没有人可以置身事外,____________。尤其是近期受到广泛关注的环境问题,尤需每个人的担当。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 同甘共苦 明哲保身\nB. 休戚与共 隔岸观火\nC. 荣辱与共 袖手旁观\nD. 守望相助 独善其身", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 590840, "human_acc": 65.3569494279, "source": "2013年四川公务员录用考试《行测》题(下半年)第26题", "difficulty": 5, "formulas": 0}, {"id": 3762157, "material": "", "question": "有的党员干部认为理想信念是____________的,没有做到真学真懂真信真用,遇到复杂矛盾和问题就只有干瞪眼、____________,也给了形式主义、官僚主义趁虚而入的空间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 虚无缥缈 束手无策\nB. 无足轻重 作壁上观\nC. 不名一文 明哲保身\nD. 坚辞不受 纸上谈兵", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 106514, "human_acc": 78.2441744747, "source": "2021下半年省考第十三季行测模考大赛(四川卷)第19题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5570151, "material": "", "question": "学生构建思维导图的过程就是归纳知识、梳理逻辑、构建体系、形成思维的过程。在不断完善思维导图的过程中,学生逐渐学会与其他知识内容进行________和融合。基于这种逻辑体系和思维方式所获得的对知识的理解与应用,会让学习者产生一种____________的穿透感,其学习的深度、广度都远超碎片化学习的效果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 连接 豁然开朗\nB. 交换 茅塞顿开\nC. 衔接 醍醐灌顶\nD. 关联 如堕烟海", "choice": "A", "keypoints": "对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 45756, "human_acc": 28.1056036367, "source": "2023下半年省考第三季行测模考大赛(四川卷)第17题", "difficulty": 7, "formulas": 0, "history": [{"id": 1788578, "material": "", "question": "苏轼也擅长书法,他____颜真卿,但能____,与蔡襄、黄庭坚、米芾并称宋代四大家。\n\n依次填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 效法 别开生面\nB. 模仿 独树一帜\nC. 取法 不落窠臼\nD. 仿照 匠心独运", "choice": "C", "keypoints": "对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 821342, "human_acc": 37.4829242873, "source": "2016年江苏省公务员录用考试《行测》题(A类)第44题", "difficulty": 5, "formulas": 0}, {"id": 8281, "material": "", "question": "在许多犹太人家里,当小孩稍微懂事时,大人就会翻开一本书,涂一点蜂蜜在上面,叫小孩子去舔,其用意____________:读书是________的。", "type": "单选题", "options": "A. 显而易见 快乐\nB. 毋庸置疑 幸福\nC. 不言自明 纯真\nD. 不言而喻 甜蜜", "choice": "D", "keypoints": "对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 87643, "human_acc": 92.1784968566, "source": "2009年广东省公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 47727, "material": "", "question": "中国自古就有浓烈的宗法传统,______宗族血亲之内的彼此关照,互相提携,并一致对外,上自帝王下至百姓,______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 讲究 前赴后继\nB. 讲求 概莫能外\nC. 寻求 无一幸免\nD. 追求 百喙如一", "choice": "B", "keypoints": "对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 618120, "human_acc": 88.3859121206, "source": "2013年浙江省公务员录用考试《行测》题(B类)第15题", "difficulty": 3, "formulas": 0}, {"id": 2068142, "material": "", "question": "这次“老北京”展览以《旧京环顾图》长卷为______制作而成,以“胡同张”长100米的老北京立体微缩街景为主要内容,展示了______的微缩老北京店铺景观。", "type": "单选题", "options": "A. 蓝图 琳琅满目\nB. 蓝本 栩栩如生\nC. 模范 多姿多彩\nD. 模板 惟妙惟肖", "choice": "D", "keypoints": "对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 26563, "human_acc": 32.319391635, "source": "2015年甘肃省公务员录用考试《行测》题第26题", "difficulty": 4, "formulas": 0}, {"id": 2450972, "material": "", "question": "总的来说,真实电影的(  )过去是、现在也仍然是利用同步声、无画外解说和无操纵剪辑等技术,尽可能地给观众呈现不加控制的事件。简言之,真实电影希望给予观众一种(  )的感觉。", "type": "单选题", "options": "A. 作风 栩栩如生\nB. 风格 身临其境\nC. 标签 设身处地\nD. 特点 如梦似幻", "choice": "B", "keypoints": "对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 148673, "human_acc": 92.6886522771, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第48题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4706819, "material": "", "question": "世纪疫情仍在________,百年变局加速演进,外部环境更趋复杂严峻和不确定。世事总是如此,充满变迁与跳跃,甚至突如其来一个“__________”。这种变化与不确定性,有人喜欢,有人惧怕。但一路走来,我们总能把不确定变成确定,因为相信的力量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 滋生 急转弯\nB. 蔓延 急刹车\nC. 泛滥 急刹车\nD. 肆虐 急转弯", "choice": "D", "keypoints": "词的辨析-程度轻重;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 35338, "human_acc": 67.3948723753, "source": "2023年国考第八季行测模考大赛(副省级)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 9711, "material": "", "question": "一些法学学者缺乏对( )在技术层面展开的研究,只是从表面上对儒家传统治理方式的批判,喜欢大的宏观理论而厌倦所谓的雕虫小技,这是对法律人集体经验和智慧的(  )。", "type": "单选题", "options": "A. 法制,漠视\nB. 法制,敌视\nC. 法治,漠视\nD. 法治,敌视", "choice": "C", "keypoints": "词的辨析-程度轻重;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 44827, "human_acc": 59.0581569144, "source": "2009年四川省公务员录用考试《行测》题(下半年)第24题", "difficulty": 5, "formulas": 0}, {"id": 17345, "material": "", "question": "①对于未能及时补充资本的开发商而言,行业冬天的最______的阶段可能仍未到来。\n\n②我们常听到有人抱怨社会不公、______艰难。其实,与其怨天尤人,不如反躬自省。", "type": "单选题", "options": "A. 严酷 处世\nB. 严酷 处事\nC. 严峻 处世\nD. 严峻 处事", "choice": "A", "keypoints": "词的辨析-程度轻重;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 32876, "human_acc": 39.934906923, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第54题", "difficulty": 6, "formulas": 0}, {"id": 2047664, "material": "", "question": "党的十八大以来,中央以猛药去疴、重典治乱的________,以刮骨疗毒、壮士断腕的________,不断加大党风廉政建设和巡视的力度,效果显著。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 意念 底气\nB. 恒心 气势\nC. 意志 气魄\nD. 决心 勇气", "choice": "D", "keypoints": "词的辨析-程度轻重;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 1344719, "human_acc": 76.5263225997, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第1题", "difficulty": 5, "formulas": 0}, {"id": 1795, "material": "", "question": "这个已保存了数千年,早已闻名海内外的古城如今陷入了保护________,城里人满为患,农家的生产生活已经严重影响到古城墙的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 绝境 安全\nB. 困境 安全\nC. 绝境 安危\nD. 困境 安危", "choice": "D", "keypoints": "词的辨析-程度轻重;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 68672, "human_acc": 60.6899464119, "source": "2008年黑龙江省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 0}, {"id": 4882187, "material": "", "question": "联合国粮农组织的一份调查报告指出,全球每年有1100万人因不健康的饮食而死亡,还有42万人因食用不安全的食物而死亡。从宏观角度来看,若无法保障食品安全,会________人类发展。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 阻隔\nB. 阻断\nC. 阻碍\nD. 阻止", "choice": "C", "keypoints": "词的辨析-程度轻重;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 171244, "human_acc": 93.5734974656, "source": "2022上半年省考第十四季行测模考大赛(河南卷)第1题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2387707, "material": "", "question": "智人的第一波殖民正是整个动物界最大也最快速的一场生态浩劫。其中受创最深的是那些大型动物。在认知革命发生的时候,地球上大约有200属体重超过50公斤的大型陆生哺乳动物。而等到农业革命的时候,只剩下大约100属。换句话说,远在人类还没有发明轮子、文字和铁器之前,智人就已经让全球大约一半的大型兽类魂归西天、就此灭绝。\n\n以下哪项如果为真,不能支持上面的论述?", "type": "单选题", "options": "A. 该时期人类已经掌握了火耕等新技术,狩猎能力大幅提升\nB. 认知革命后地球气候出现多次冷却和暖化循环,变化幅度较大\nC. 地球上大部分大型动物虽然身形巨大但并不凶猛,易被人类猎杀\nD. 考古研究发现只要人类抵达新的土地,那里就会发生大型动物大灭绝", "choice": "B", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 1070984, "human_acc": 91.4887617369, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第106题", "difficulty": 3, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 3691821, "material": "", "question": "一支运动队长盛不衰要靠几代人的努力,竞技体育的辉煌背后,往往在于____________、永不止步。近几年中国女排势头喜人,但世界排坛的激烈竞争岂容半点松懈?无时无刻不在研究对手、研究国际排球的形势和潮流,坚持不懈地提升团队和个人素质,才能在比赛场上____________,取得一场场胜利。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 亡羊补牢 独领风骚\nB. 安不忘虞 崭露头角\nC. 如履薄冰 一鸣惊人\nD. 居安思危 厚积薄发", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 10824, "human_acc": 80.5986696231, "source": "2021下半年省考第九季行测模考大赛(西藏卷)第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 1003075, "material": "", "question": "从统计学角度看,用平均数指标反映趋势虽精确敏感,但也有其致命弱点,尤其是平均数的“____________”,很容易掩盖个体之间的差异。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 以管窥天\nB. 削峰填谷\nC. 大而化之\nD. 等量齐观", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 2717099, "human_acc": 70.5597035662, "source": "2015年国家公务员录用考试《行测》题(省部级)第23题", "difficulty": 5, "formulas": 0}, {"id": 1746638, "material": "", "question": "执行力的强弱已经成为影响企业成败的关键因素,世界级优秀企业总是能够让那些令人振奋的战略规划______地得到落实,达到甚至超出预期目标。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一丝不苟\nB. 不遗余力\nC. 分毫不差\nD. 滴水不漏", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 3021792, "human_acc": 65.8646260232, "source": "2016年国家公务员录用考试《行测》题(副省级)第21题", "difficulty": 5, "formulas": 0}, {"id": 21333, "material": "", "question": "建设资源节约型、环境友好型社会要注意____________,目前要着重解决影响社会经济发展,特别是严重危害人民群众健康的水污染、空气污染加剧问题。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可持续性\nB. 轻重缓急\nC. 孰轻孰重\nD. 先后次序", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 221729, "human_acc": 79.1015158143, "source": "2008年国家公务员录用考试《行测》题第21题", "difficulty": 4, "formulas": 0}, {"id": 2450976, "material": "", "question": "广大知识分子的前途命运与中华民族伟大复兴事业(  )。纵览历史,那些(  )的知识分子,无不是将聪明才智赤诚奉献于国家富强、民族振兴和人民幸福的追求之中。", "type": "单选题", "options": "A. 休戚与共 博闻强识\nB. 无出其右 高山仰止\nC. 息息相关 名垂青史\nD. 相得益彰 万古流芳", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 151066, "human_acc": 76.4453947281, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第50题", "difficulty": 3, "formulas": 0}, {"id": 2028534, "material": "", "question": "随着人工智能技术的不断发展,简单重复或危险的作业将由机器执行,低端蓝领、白领阶层可能会被人工智能 _______________,未来人工智能对职场很可能产生颠覆性影响。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 取而代之\nB. 越俎代庖\nC. 鸠占鹊巢\nD. 更弦易辙", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 2914406, "human_acc": 96.2157983479, "source": "2017年国家公务员录用考试《行测》题(地市级)第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3636853, "material": "", "question": "在互联网时代,数字自我是人的重要组成部分,但很多人却使之成为异己的对抗性力量,分裂为自我的对立面。很多网友在现实生活中能够保持理性的自我,但在网络空间中却易受裹挟而表现出“盲动主义”。还有的人置身信息洪流产生自身认知能力和知识水平大幅提升的幻觉,或是因网络生活的便捷而出现“无所不能”的错觉,“宅文化”“自我中心主义”的盛行与此不无关系。更有甚者,为博眼球、吸流量,不惜自毁形象,为“泛娱乐浪潮”推波助澜,制造出一些有失道德和体面的负面事件。\n\n这段文字主要反映了互联网时代的哪方面问题?", "type": "单选题", "options": "A. 混淆了现实和数字自我\nB. 数字自我的分裂和迷失\nC. 数字自我的道德观偏颇\nD. 在互联网背后胡作非为", "choice": "B", "keypoints": "行文脉络-总分", "most_wrong": "C", "human_count": 62540, "human_acc": 77.0546850016, "source": "2021下半年省考第七季行测模考大赛(四川卷)第45题", "difficulty": 4, "formulas": 0, "history": [{"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 219993, "material": "", "question": "所谓知识经济,是指建立在知识和信息的生产、分配和使用上的经济,是以智力资源的占有、配置以及知识的生产、分配和使用为最重要因素的经济。\n\n这段话主要是讲:", "type": "单选题", "options": "A. 知识经济的来源\nB. 知识经济的含义\nC. 知识经济的形式\nD. 知识经济的特点", "choice": "B", "keypoints": "行文脉络-总分", "most_wrong": "D", "human_count": 225916, "human_acc": 91.780130668, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第80题", "difficulty": 5, "formulas": 0}, {"id": 8067, "material": "", "question": "尼龙的强度,比棉花高两三倍,比羊毛高四五倍。一般直径为1毫米的尼龙丝,可以吊起100公斤的东西,一根手指粗细的尼龙绳,可以吊起一辆满载的卡车!\n\n这段话主要讲的是:", "type": "单选题", "options": "A. 尼龙的强度\nB. 尼龙的用途\nC. 尼龙的神奇\nD. 尼龙、棉花和羊毛的比较", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "C", "human_count": 26342, "human_acc": 95.6343481892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第35题", "difficulty": 5, "formulas": 0}, {"id": 3625, "material": "", "question": "影视剧翻拍从来都是既讨巧又惹骂——利用经典多年来积累下的人气口碑,至少在吆喝声上就比原创剧占了便宜,但它们也必须面对老观众挑剔的目光。\n这段话主要谈论影视剧翻拍:", "type": "单选题", "options": "A. 可能遇到的难题\nB. 必须应对的处境\nC. 有利和不利的条件\nD. 不同于原创剧的特点", "choice": "C", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 69550, "human_acc": 74.8109273904, "source": "2008年广东省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 565, "material": "", "question": "人的尊严就在于思想。由于有了思想,人就比摧毁他的任何东西甚至整个宇宙都高贵得多;因此,人就能吞掉一个世界。\n\n这段文字直接支持的观点是:", "type": "单选题", "options": "A. 人类是需要有思想的\nB. 人类的思想是无处不在的\nC. 人的尊严就在于人的思想\nD. 无论哪种人都能改变整个世界", "choice": "C", "keypoints": "行文脉络-总分", "most_wrong": "A", "human_count": 55576, "human_acc": 66.4063624586, "source": "2008年陕西省公务员录用考试《行测》题第14题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 8627, "material": "", "question": "开门是一个积极的行动,它本身存在( )的情趣,进入一种新的时刻,达到一种新的目标,实现一种新的转换,它包含一种人世间极深的情感的蓄积与( ),重聚,回归,和解,以及长久分离的情人的惊喜。", "type": "单选题", "options": "A. 惊心动魄 凸现\nB. 振奋人心 表达\nC. 震撼人心 张扬\nD. 心神荡漾 展现", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 55883, "human_acc": 72.4048458386, "source": "2009年四川省公务员录用考试《行测》题(下半年)第19题", "difficulty": 5, "formulas": 0, "history": [{"id": 52133, "material": "", "question": "证监会主席郭树清“铁腕”推动改革,令市场______。但是要革除多年的______,显然非一日之功。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如雷贯耳 问题\nB. 闻风丧胆 弊病\nC. 为之振奋 阵痛\nD. 耳目一新 积弊", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 427927, "human_acc": 64.4161270497, "source": "2012年广州市公务员录用考试《行测》题第6题", "difficulty": 4, "formulas": 0}, {"id": 1065, "material": "", "question": "刚见面,张家界就责问我为何________。说来惭愧,二十六年来,我本来有机会一睹她的________,只要往前再迈出半步。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 姗姗来迟 芳颜\nB. 飘然而至 容貌\nC. 不请自来 真容\nD. 不期而遇 面目", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 99048, "human_acc": 95.5799208465, "source": "2008年陕西省公务员录用考试《行测》题第32题", "difficulty": 3, "formulas": 0}, {"id": 2445036, "material": "", "question": "当下国人阅读状况不佳________有生活节奏快、竞争压力大以及公共图书馆缺失、图书价格高等客观因素影响,也与浮躁、功利等不良的社会心态____________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 必定 相得益彰\nB. 虽然 相辅相成\nC. 当然 休戚相关\nD. 固然 密不可分", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 486565, "human_acc": 93.3566943779, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 44743, "material": "", "question": "在通胀问题尚未完全解决的情况下,面对发达国家的主权债务危机,新兴经济体又不得不再次放松经济政策。这种内热外冷的__________导致新兴经济体既要促进经济增长,又要防止通胀__________。\n\n依次填入画横线中最恰当的一项是:", "type": "单选题", "options": "A. 境况 张牙舞爪\nB. 困境 死灰复燃\nC. 形式 来势汹汹\nD. 事态 卷土重来", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 436341, "human_acc": 60.3280461841, "source": "2012年江苏省公务员录用考试《行测》题(C类)第14题", "difficulty": 5, "formulas": 0}, {"id": 3593543, "material": "", "question": "演奏中的刻意炫技带有贬义。技术永远都是手段,直击人心的音乐才是目的。刻意炫技会____________,虽然辉煌的技术每每会吸引眼球,但脱离了艺术的技巧堆砌,最终有可能沦为________的杂耍。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大而无当 肤浅\nB. 喧宾夺主 苍白\nC. 适得其反 浅白\nD. 不无裨益 空洞", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 91222, "human_acc": 42.6465107101, "source": "2021下半年省考第六季行测模考大赛(陕西卷)第32题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2604031, "material": "", "question": "自古以来,人们就用“心灵手巧”来形容女子,而心是无法形于画上的,因此画家常通过手来表达画中人物的心,从而令其____________。宋代仕女画中对手姿的塑造,丰富而灵动,其技法是传统仕女画塑造手式的精华,常被后世仕女画家学习和效仿。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 形神兼备\nB. 妙笔生花\nC. 惟妙惟肖\nD. 出神入化", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 215559, "human_acc": 76.9956253276, "source": "2021年国考第十季行测模考大赛(地市级)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 8219, "material": "", "question": "煤炭与石油、天然气相比价格低廉,以同等发热量计算,目前石油价格是煤炭的5倍,天然气价格是煤炭的3倍,所以,在石油价格居高不下的背景下,煤炭价格必然____________。", "type": "单选题", "options": "A. 水涨船高\nB. 相形见绌\nC. 如影随形\nD. 随波逐流", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 90025, "human_acc": 86.4748680922, "source": "2009年广东省公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 1685856, "material": "", "question": "成语是汉语的精髓,是中华文明的瑰宝。它具有______的特性,常常在一段话甚至一篇文章中起着______的作用,这就使得汉语表述简洁而又传神。", "type": "单选题", "options": "A. 画龙点睛 言简意赅\nB. 深入浅出 正本清源\nC. 言简意赅 画龙点睛\nD. 正本清源 深入浅出", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 458343, "human_acc": 92.0662036946, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第42题", "difficulty": 5, "formulas": 0}, {"id": 1796270, "material": "", "question": "古人行文简略,优秀的作品常常“字不虚设”,阅读者决定不予深究的地方,有可能正是作者用心良苦之所在。因此我们阅读时不宜有所偏,应该像作家写作这些文章时那样“______”。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 孜孜不倦\nB. 精益求精\nC. 字斟句酌\nD. 心无旁骛", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 1907654, "human_acc": 93.350995516, "source": "2016年423联考《行测》题(广西卷)第34题", "difficulty": 5, "formulas": 0}, {"id": 5430310, "material": "", "question": "城市形象不是____________的,它会随着一座城市的发展需要而产生相应的变化,因此,对于城市形象的研究也应当____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 千篇一律 兼收并蓄\nB. 墨守陈规 求同存异\nC. 因循守旧 革故鼎新\nD. 一成不变 与时俱进", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 790946, "human_acc": 97.2928619653, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第51题", "difficulty": 4, "formulas": 0}, {"id": 3541936, "material": "", "question": "出于利益驱动与自我形象维护,书法家多喜推介抬举,不乐见评论指谬纠偏,对善意而中肯的批评容纳有限,甚至不友善。故而,批评家们难以直抒胸臆,提笔行文往往____________,顾左右而言他。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 模棱两可\nB. 左顾右盼\nC. 投鼠忌器\nD. 明哲保身", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 93078, "human_acc": 41.3696039881, "source": "2021下半年省考第三季行测模考大赛(广东乡镇卷)第1题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5151116, "material": "", "question": "甲、乙、丙三人定期到健身馆锻炼身体,甲每隔3天去一次,乙每隔4天去一次,丙每6天去一次。若2020年2月11日星期二,三人在健身馆相遇,则下次三人在健身馆相遇的当天是(    )?", "type": "单选题", "options": "A. 星期二\nB. 星期三\nC. 星期六\nD. 星期日", "choice": "C", "keypoints": "周期余数问题;周期相遇问题", "most_wrong": "B", "human_count": 21659, "human_acc": 47.2644166397, "source": "2022下半年省考第四季行测模考大赛(北京卷)第82题", "difficulty": 6, "formulas": 0, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}, {"id": 49171, "material": "", "question": "2013年是中国农历蛇年。在本世纪余下年份里,农历是蛇年的年份还有:", "type": "单选题", "options": "A. 5个\nB. 6个\nC. 7个\nD. 8个", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 397220, "human_acc": 75.9863551684, "source": "2013年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "周期问题", "周期相遇问题"]]}, {"id": 16659, "material": "", "question": "这本书虽然以心理学经典理论为基础,但其主要内容都是年轻人非常________的话题,再加上轻松的语言、丰富的事例,使得年轻人在阅读时总能找到自己的________。", "type": "单选题", "options": "A. 敏感 收获\nB. 熟悉 影子\nC. 热衷 答案\nD. 时髦 榜样", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 272837, "human_acc": 80.3362447175, "source": "2010年湖北省公务员录用考试《行测》题第5题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4489672, "material": "", "question": "量子不可克隆原理保证了量子密钥分发的无条件安全性,但量子密钥分发不能像经典光通信那样通过光放大对传输进行中继,因此分发距离受到光纤损耗的________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 侵占\nB. 制衡\nC. 抹杀\nD. 限制", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 20291, "human_acc": 93.4010152284, "source": "2021下半年省考第二十七季行测模考大赛(内蒙古卷)第22题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2050812, "material": "", "question": "________古猿本身结构具有与人相接近的形状,在一定的外界环境的作用下,古猿_______有可能离开猿的体统而向着人的方向发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因为 所以\nB. 只有 才\nC. 如果 就\nD. 因为 才", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系", "most_wrong": "B", "human_count": 865151, "human_acc": 49.1482989675, "source": "2017年422联考《行测》题(江西卷)第11题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 4811397, "material": "", "question": "2021年3月,国家林草局启动了“全国打击毁林专项行动”,通过“全方位、无死角”的卫星遥感影像,使违法违规破坏森林资源行为____________,大大提高了打击的全面性和针对性,有力震慑了涉林违法犯罪行为,切实提高了森林资源保护精准监管水平。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 销声匿迹\nB. 无计可施\nC. 偃旗息鼓\nD. 无处遁形", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 328705, "human_acc": 92.8991040599, "source": "2022上半年省考第十一季行测模考大赛(陕西卷)第22题", "difficulty": 3, "formulas": 0, "history": [{"id": 5591272, "material": "", "question": "马克思主义的否定之否定规律告诉我们,事物的发展都遵循着螺旋式上升、波浪式前进的规律,所以发展古筝乐团的道路注定不会____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽善尽美\nB. 天遂人愿\nC. 一劳永逸\nD. 一帆风顺", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 42494, "human_acc": 94.8251517861, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第16题", "difficulty": 3, "formulas": 0}, {"id": 5188188, "material": "", "question": "因为有了陶器,我们的上古先民们的饮食烹调,由生存之必需转变成一种生活美学。而精致的饮食文化,又将中国的文明引向了“礼”的层面。中华优秀传统文化之所以有着____________的魅力,正是因为它与我们的生活、与生命最本质的欲求有着____________的联系。由此出发,华夏文明达到了一个足以傲然于世的高度。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 历久弥新 一脉相承\nB. 经久不衰 密不可分\nC. 薪尽火传 千丝万缕\nD. 得天独厚 颠扑不破", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 106642, "human_acc": 85.4607002869, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第33题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2578992, "material": "", "question": "从艺术创作实践到艺术理论,需要以问题为________。正是在回答艺术创作实践提出的一个又一个挑战性问题过程中,艺术理论得到发展和完善。这就要求艺术理论工作者在关注实践的过程中有自觉的问题意识,能够敏锐捕捉、准确接住创作现实抛出的新问题。从艺术现场破题,从问题症结处____________,锐意创新。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 中介 迎难而上\nB. 向导 大显身手\nC. 根源 激流勇进\nD. 媒介 百折不回", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 466566, "human_acc": 32.0490562964, "source": "2022年青海省公务员录用考试《行测》题(网友回忆版)第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 453763, "material": "", "question": "政府的行为对社会行为有着重要的______和示范作用,所以政务诚信建设必须______,并且要抓实抓好。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 引领 快马加鞭\nB. 指导 快马加鞭\nC. 指导 一马当先\nD. 引领 一马当先", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 870930, "human_acc": 42.0169244371, "source": "2014年广东省公务员录用考试《行测》题(县级以上)第9题", "difficulty": 5, "formulas": 0}, {"id": 5430332, "material": "", "question": "探索浩瀚宇宙,是中华民族数千年来____________的追求。中国航天承载了一个大国的斑斓梦想,也________了新时代中国人的骄傲与情怀。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 矢志不渝 寄寓\nB. 志在必得 铭刻\nC. 亘古不变 映射\nD. 孜孜不倦 彰显", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 798166, "human_acc": 49.6724992044, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第57题", "difficulty": 4, "formulas": 0}, {"id": 4673110, "material": "", "question": "党的百年历史,就是党与群众水乳交融、____________的历史。一条扁担、一张借据、半条棉被就是党与人民血肉相连、情深似海的________。\n\n依次填入画横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 唇齿相依 印记\nB. 相濡以沫 记忆\nC. 休戚与共 见证\nD. 众志成城 证明", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 2417124, "human_acc": 63.1149663815, "source": "2022年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第4题", "difficulty": 5, "formulas": 0}, {"id": 4255610, "material": "", "question": "产业发展不能一味跟跑、____________,需要拓宽战略视野、树立超前意识,善于从颠覆性技术或持续性技术突破中________新兴产业生长点,努力抢占未来竞争制高点。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 趋之若鹜 抢抓\nB. 随波逐流 洞察\nC. 亦步亦趋 捕捉\nD. 安步当车 培育", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 186825, "human_acc": 51.1489361702, "source": "2021下半年省考第二十二季行测模考大赛(陕西卷)第30题", "difficulty": 6, "formulas": 0}, {"id": 4668702, "material": "", "question": "横向比较,看到差距与不足,这样才不会____________、夜郎自大;纵向比较,看到成绩与进步,才能总结经验、继续前行。这样我们才能较为全面地、________地看待事物,处理问题。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 闭目塞听 辩证\nB. 茫然失措 客观\nC. 举棋不定 透彻\nD. 自以为是 正确", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 1455502, "human_acc": 48.129167806, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第36题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4651667, "material": "", "question": "甲、乙两人对100个家庭进行电话调查。若甲、乙完成对1个家庭的调查需要的时间分别是12分钟和20分钟,则他们完成这次电话调查需要的时间至少是:", "type": "单选题", "options": "A. 12小时28分钟\nB. 12小时32分钟\nC. 12小时36分钟\nD. 12小时40分钟", "choice": "C", "keypoints": "非典型最值问题;给具体单位型", "most_wrong": "B", "human_count": 464508, "human_acc": 56.7118327349, "source": "2022年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第63题", "difficulty": 5, "formulas": 0, "history": [{"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 28117, "material": "", "question": "一个三角形的面积为12平方米,则该三角形内接正方形的最大面积为:", "type": "单选题", "options": "A. 6平方米\nB. 4平方米\nC. 3平方米\nD. 不能确定", "choice": "A", "keypoints": "平面几何;非典型最值问题", "most_wrong": "B", "human_count": 12933, "human_acc": 60.1793860667, "source": "2008年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 2388251, "material": "", "question": "“神舟七号”航天团队____________的团结精神,是“嫦娥”成功奔月的强大动力;他们求真务实的工作作风,让“嫦娥”的舞姿________完美;他们“一切为了祖国,一切为了成功”的航天精神,永恒地________在浩瀚无垠的太空。", "type": "单选题", "options": "A. 同舟共济 精准 镌刻\nB. 众志成城 近乎 飘荡\nC. 休戚与共 典雅 刻画\nD. 同心协力 准确 凝聚", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 1299123, "human_acc": 39.3757173108, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第33题", "difficulty": 6, "formulas": 0, "history": [{"id": 16381, "material": "", "question": "无论你心里怎么想,你的言谈举止都应该____________,在许多国家,任何形式的炫耀都会被视为粗鲁________。\n\n填在横线上最恰当的词语是:", "type": "单选题", "options": "A. 谨小慎微 无理\nB. 谦虚谨慎 无理\nC. 谦虚谨慎 无礼\nD. 谨小慎微 无礼", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "D", "human_count": 38695, "human_acc": 81.8839643365, "source": "2009年贵州省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 21751, "material": "", "question": "和基础教育一样,医疗卫生___________地拥有公共产品的属性。但在市场化的改革中,他们都曾经___________了公共性质,也因而带来了种种矛盾。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 与生俱来 丧失\nB. 理所当然 摒弃\nC. 毋庸置疑 偏离\nD. 责无旁贷 扭曲", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 653932, "human_acc": 63.6066135317, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第8题", "difficulty": 5, "formulas": 0}, {"id": 5509445, "material": "", "question": "追星____________,但频频越界的“饭圈”乱象,不仅有违社会公序良俗、触碰社会道德底线,有的还已触碰法律红线。________“饭圈”乱象,关涉青少年成长,关乎社会和谐稳定。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无可厚非 整治\nB. 无可非议 疏导\nC. 天经地义 治理\nD. 情有可原 梳理", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 1250856, "human_acc": 92.8934265815, "source": "2023年青海省公务员录用考试《行测》题(网友回忆版)第27题", "difficulty": 4, "formulas": 0}, {"id": 2043712, "material": "", "question": "很多体育运动都可以提高民族自豪感,但足球比赛的效果更为__________。在赛场上,有太多国家标志的体现——赛前的国歌、队服的颜色,更不用说看台上__________的球迷阵营。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 明显 黑白分明\nB. 突出 泾渭分明\nC. 显著 与众不同\nD. 明确 标新立异", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 1200236, "human_acc": 83.0834102626, "source": "2017年江苏省公务员录用考试《行测》题(C类)第42题", "difficulty": 5, "formulas": 0}, {"id": 4022474, "material": "", "question": "对消费者来说,广告是了解产品最________的方式之一。企业也希望通过广告使得自身产品在群雄逐鹿的市场中突围。然而,一些企业却动起了歪脑筋,发布的广告夸大其词、巧立名目,甚至____________。这些广告会破坏社会诚信体系,不利于营造良好的营商环境。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 方便 哗众取宠\nB. 直接 大放厥词\nC. 快捷 弄虚作假\nD. 多元 故弄玄虚", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 178224, "human_acc": 90.3436125325, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第3题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4678569, "material": "", "question": "在认识世界和改造世界的过程中,旧的问题解决了,新的问题又会产生,同时各方面体制、机制总是需要不断完善,因而改革不可能____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一无所获\nB. 一挥而就\nC. 一劳永逸\nD. 一气呵成", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 97401, "human_acc": 79.0751634993, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第17题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5472995, "material": "", "question": "从20以内的质数中,随机取出3个数字,并以这3个数字为边长构造三角形,则恰好能构成三角形的概率为:", "type": "单选题", "options": "A. $\\frac{2}{7}$\nB. $\\frac{5}{8}$\nC. $\\frac{5}{56}$\nD. $\\frac{15}{56}$", "choice": "A", "keypoints": "给情况求概率;平面几何", "most_wrong": "C", "human_count": 112395, "human_acc": 9.2237199164, "source": "2023上半年省考终极行测模考大赛(山西卷)第75题", "difficulty": 7, "formulas": 419, "history": [{"id": 2547707, "material": "", "question": "公园有一个半圆形的绿地,圆弧上有5棵柳树,恰好将圆弧平均分成了6个部分,直径上有5棵杨树。若任选3棵树,并两两连线,则可以形成三角形的概率在哪个范围内?", "type": "单选题", "options": "A. $50\\%$以下\nB. $50\\%$-$70\\%$\nC. $71\\%$-$90%$\nD. $90\\%$以上", "choice": "D", "keypoints": "给情况求概率;平面几何", "most_wrong": "C", "human_count": 367979, "human_acc": 15.619097829, "source": "2021年国考第五季行测模考大赛(副省级)第64题", "difficulty": 7, "formulas": 501}, {"id": 3555637, "material": "", "question": "现有若干根10厘米长的木棍,从中拿出若干根组成大小不同的三角形,最大的周长为80厘米。组合完成后,从中任选一个三角形,则选出的三角形为等边三角形的概率是:", "type": "单选题", "options": "A. $\\frac{1}{3}$\nB. $\\frac{2}{3}$\nC. $\\frac{1}{5}$\nD. $\\frac{2}{5}$", "choice": "A", "keypoints": "给情况求概率;平面几何", "most_wrong": "C", "human_count": 74420, "human_acc": 13.0744423542, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第36题", "difficulty": 7, "formulas": 377}, {"id": 2819534, "material": "", "question": "一个盒子中装有大小及材质完全相同的20个小球,分别编号1-20。小王随机从中取出3个小球,并以每个小球的编号为边长画三角形,则三个小球的编号恰好能够构成直角三角形的概率为:(备注:长度统一以厘米为单位)", "type": "单选题", "options": "A. $\\frac{1}{190}$\nB. $\\frac{1}{228}$\nC. $\\frac{1}{285}$\nD. $\\frac{1}{380}$", "choice": "A", "keypoints": "给情况求概率;平面几何", "most_wrong": "C", "human_count": 271247, "human_acc": 7.7434957806, "source": "2022年国考第二季行测模考大赛(副省级)第66题", "difficulty": 7, "formulas": 419}, {"id": 2547779, "material": "", "question": "公园有一个半圆形的绿地,圆弧上有5棵柳树,恰好将圆弧平均分成了6个部分,直径上有5棵杨树。若任选3棵树,并两两连线,则可以形成三角形的概率在哪个范围内?", "type": "单选题", "options": "A. $30\\%$以下\nB. $31\\%-40\\%$\nC. $41\\%-50\\%$\nD. $51\\%-60\\%$\nE. $61\\%-70\\%$\nF. $71\\%-80\\%$\nG. $81\\%-90\\%$\nH. $90\\%$以上", "choice": "H", "keypoints": "给情况求概率;平面几何", "most_wrong": "C", "human_count": 12834, "human_acc": 8.5476079165, "source": "2020年上半年省考第二十九季行测模考大赛(陕西卷)第114题", "difficulty": 7, "formulas": 669}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "几何问题", "平面几何"]]}, {"id": 2255944, "material": "", "question": "“君子”作为一个集体人格的_________古已有之,却又经过儒家的选择、阐释、提升,结果成就了一种_________人格。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 原型 想象\nB. 雏形 理想\nC. 原形 形象\nD. 雏形 想象", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 4849, "human_acc": 83.2542792328, "source": "2014年江西省法检系统招录考试《行测》题第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 5738519, "material": "", "question": "没有广告,没有弹窗,界面干净,如今,这种为老年群体量身打造的“适老版”App,却意外地收获了许多年轻人的青睐。其背后的逻辑是,很多软件看似花样丰富的功能,实际是________的,且偏离了用户下载软件原本只想得到的主核心功能。因此,开发者们需要更谨慎地思考目标用户的真实需求,在专业化与大众化的设定之间寻求一个________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冗余 支点\nB. 简洁 耦合\nC. 单一 路径\nD. 繁杂 平衡", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 5050, "human_acc": 56.4752475248, "source": "2023下半年省考第二十季行测模考大赛(陕西卷)第28题", "difficulty": 6, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2377404, "material": "", "question": "某企业从10名高级管理人员中选出3人参加国际会议。在10名高级管理人员中,有一线生产经验的有6人,有研发经验的有5人,另有2人既无一线生产经验也无研发经验。如果要求选出的人中,具备一线生产经验的人和具备研发经验的人都必须有,问有多少种不同的选择方式?", "type": "单选题", "options": "A. 96\nB. 100\nC. 106\nD. 112", "choice": "C", "keypoints": "基础排列组合;两集合", "most_wrong": "A", "human_count": 439947, "human_acc": 45.8789354172, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 1723444, "material": "", "question": "车间共有50名工人,年底进行考核,有12人业务能力为优,10人政治表现为优,没有一项考核成绩为优的有34人,车间要向上级单位推荐2名两项考核均为优的工人作为先进个人的候选人。问有多少种推荐方案?", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 21", "choice": "B", "keypoints": "基础排列组合;两集合", "most_wrong": "C", "human_count": 377244, "human_acc": 72.8218341445, "source": "2015年河南省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 4658698, "material": "", "question": "农科院派出6名科技人员支援甲、乙、丙三个县农业发展,每个县分配2人。其中精通农业、牧业和渔业技术的分别有3人、3人和2人。有2人同时精通农业和牧业技术、且精通渔业技术的人均不精通农业和牧业技术,已知丙县因无条件发展渔业只需要农业和牧业技术专家,甲县和乙县都需要掌握3类技术的专家支援,问有多少种不同的安排方式?", "type": "单选题", "options": "A. 4\nB. 8\nC. 15\nD. 20", "choice": "A", "keypoints": "基础排列组合;两集合", "most_wrong": "B", "human_count": 594669, "human_acc": 28.36905909, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第48题", "difficulty": 4, "formulas": 0}, {"id": 4858920, "material": "", "question": "某体育特长班中有2人擅长足球,4人擅长篮球,5人擅长羽毛球,7人擅长乒乓球,并且在擅长前三种球类运动的学生中,同时擅长乒乓球的分别有1、2、3人,其余学生均只擅长一种球类运动。现在体育老师欲将擅长以上四种球类运动的学生平均分为4组,若所有擅长足球的学生分在同一组,则有多少种不同的分组方式?", "type": "单选题", "options": "A. 2800\nB. 3600\nC. 16800\nD. 21600", "choice": "A", "keypoints": "基础排列组合;两集合", "most_wrong": "C", "human_count": 16943, "human_acc": 6.7402467096, "source": "2022上半年省考第十三季行测模考大赛(浙江卷)第71题", "difficulty": 7, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "排列组合问题", "基础排列组合"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 1796328, "material": "", "question": "关于疫苗,下列说法错误的是:", "type": "单选题", "options": "A. 根据费用支付方式,分政府免费提供和公民自费自愿接种两类\nB. 牛痘疫苗彻底消灭天花,是人类用疫苗迎战病毒的首次胜利\nC. 接种疫苗是预防传染病最有效、最经济的手段\nD. 目前乙肝疫苗是世界上使用量最大的一种疫苗", "choice": "D", "keypoints": "生物常识;生活常识", "most_wrong": "B", "human_count": 1561496, "human_acc": 51.547298232, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第3题", "difficulty": 6, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"], ["常识判断", "科技常识", "生活常识"]]}, {"id": 19467, "material": "", "question": "运动会上100名运动员排成一列,从左向右依次编号为1~100,选出编号为3的倍数的运动员参加开幕式队列,而编号为5的倍数的运动员参加闭幕式队列。问既不参加开幕式又不参加闭幕式队列的运动员有多少人?", "type": "单选题", "options": "A. 46\nB. 47\nC. 53\nD. 54", "choice": "C", "keypoints": "周期相遇问题;两集合", "most_wrong": "B", "human_count": 238544, "human_acc": 57.8761150983, "source": "2012年北京市公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0, "history": [{"id": 2451055, "material": "", "question": "某展览使用了序号为1~100的100盏灯,现在有两个开关,开关A能切换所有序号为偶数的灯的开关状态,开关B能切换所有序号为3的倍数的灯的开关状态。若在100盏灯都打开的状态下,先后按下开关A和B,则还有(    )盏灯处于打开状态。", "type": "单选题", "options": "A. 33\nB. 34\nC. 49\nD. 50", "choice": "C", "keypoints": "周期相遇问题;两集合", "most_wrong": "A", "human_count": 88570, "human_acc": 36.4897820933, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第80题", "difficulty": 4, "formulas": 0}, {"id": 2660810, "material": "", "question": "某高校举办春季运动会,共有1000名学生报名参加竞赛项目。为从运动员中选拔人员参加开幕式和闭幕式队列,现把所有运动员从1到1000进行编号,选出编号为3的倍数的运动员参加开幕式队列,而编号为7的倍数的运动员参加闭幕式队列。问:既不参加开幕式队列也不参加闭幕式队列的运动员有多少人?", "type": "单选题", "options": "A. 428\nB. 475\nC. 525\nD. 572", "choice": "D", "keypoints": "周期相遇问题;两集合", "most_wrong": "C", "human_count": 8588, "human_acc": 48.695854681, "source": "2018年山东省选调应届优秀高校毕业生到基层工作笔试行政职业能力测验第45题", "difficulty": 4, "formulas": 0}, {"id": 2443065, "material": "", "question": "某大型相亲类综艺节目举办线下联谊活动,在签到时每人可以抽取一张礼物卡,凡是抽中有编号的礼物卡均有玫瑰花赠送,抽到“谢谢参与”的则赠送一盒面巾纸。带有编号的礼物卡共100张,编号1-100,按礼物卡标签号发放奖品的规则如下:\n\n(1)标签号为2的倍数,领2枝玫瑰\n\n(2)标签号为3的倍数,领3枝玫瑰\n\n(3)标签号既是2的倍数,又是3的倍数可重复领奖\n\n(4)其他标签号均领1枝玫瑰\n\n那么本次联谊活动应准备玫瑰花________枝。", "type": "单选题", "options": "A. 215\nB. 232\nC. 312\nD. 416", "choice": "B", "keypoints": "周期相遇问题;两集合", "most_wrong": "C", "human_count": 226508, "human_acc": 51.9796210288, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}, {"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 5445934, "material": "", "question": "某次招标活动中,甲、乙、丙、丁、戊和己6家投标企业依次对自己的设计进行讲解。已知甲和乙均不能安排在第一个或最后一个,丙只能安排在第三个或第四个,如在满足以上条件的次序中随机选择一个,则丁和戊的讲解次序相邻的概率为:", "type": "单选题", "options": "A. $\\frac{2}{9}$\nB. $\\frac{1}{5}$\nC. $\\frac{2}{7}$\nD. $\\frac{1}{4}$", "choice": "A", "keypoints": "相邻问题;给情况求概率", "most_wrong": "C", "human_count": 381116, "human_acc": 30.6053799893, "source": "2023年国家公务员录用考试《行测》题(副省级网友回忆版)第71题", "difficulty": 5, "formulas": 334, "history": [{"id": 4668717, "material": "", "question": "英语小组成员小明、小红、小花、小白、小玲坐成一排,小玲和小红挨着坐,而小红和小花不挨着坐的概率是多少?", "type": "单选题", "options": "A. $\\frac{1}{10}$\nB. $\\frac{1}{5}$\nC. $\\frac{3}{10}$\nD. $\\frac{9}{10}$", "choice": "C", "keypoints": "相邻问题;给情况求概率", "most_wrong": "B", "human_count": 516514, "human_acc": 51.5755623274, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第67题", "difficulty": 4, "formulas": 419}, {"id": 2701938, "material": "", "question": "某电影院VIP放映室观众席有5排共55个座位。任意相邻两排座位中,后排座位数比前排多1个。甲、乙两人随机入座,则他们恰好在同一排且相邻的概率为:", "type": "单选题", "options": "A. $5\\%$以下\nB. $5\\%$-$10\\%$\nC. $10\\%$-$15\\%$\nD. $15\\%$以上", "choice": "A", "keypoints": "相邻问题;给情况求概率", "most_wrong": "C", "human_count": 246849, "human_acc": 15.9125619306, "source": "2021年国考终极行测模考大赛(副省级)第64题", "difficulty": 7, "formulas": 503}, {"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 8099, "material": "", "question": "3名学生和2名老师站成一排照相,2名老师必须站在一起且不在边上的不同排法共有:", "type": "单选题", "options": "A. 12种\nB. 24种\nC. 36种\nD. 48种", "choice": "B", "keypoints": "相邻问题", "most_wrong": "A", "human_count": 142697, "human_acc": 66.8682593187, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第8题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "相邻问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 43837, "material": "", "question": "某市园林部门计划对市区内30处绿化带进行补栽,每处绿化带补栽方案可从甲、乙两种方案中任选其中一方案进行。甲方案补栽阔叶树80株、针叶树40株;乙方案补栽阔叶树50株、针叶树90株。现有阔叶树苗2070株、针叶树苗1800株,为最大限度利用这批树苗,甲、乙两种方案应各选:", "type": "单选题", "options": "A. 甲方案18个、乙方案12个\nB. 甲方案17个、乙方案13个\nC. 甲方案20个、乙方案10个\nD. 甲方案19个、乙方案11个", "choice": "A", "keypoints": "不定方程组;统筹规划问题", "most_wrong": "B", "human_count": 786890, "human_acc": 29.45710328, "source": "2013年国家公务员录用考试《行测》题第72题", "difficulty": 6, "formulas": 0, "history": [{"id": 567157, "material": "", "question": "甲地有177吨货物要一起运到乙地,大卡车的载重量是5吨,小卡车的载重量是2吨,大小卡车从甲地到乙地的耗油量分别是10升和5升,则使用大小卡车将货物从甲地运到乙地最少要耗油多少升?", "type": "单选题", "options": "A. 442.5升\nB. 356升\nC. 355升\nD. 354升", "choice": "C", "keypoints": "不定方程组;统筹规划问题", "most_wrong": "B", "human_count": 226427, "human_acc": 74.1254355708, "source": "2014年河北省公务员录用考试《行测》题第45题", "difficulty": 4, "formulas": 0}, {"id": 17903, "material": "", "question": "生产一件A产品消耗原料甲4千克、乙2升,可获得1000元利润,生产一件B产品消耗原料甲3千克、乙5升,可获得1300元利润。现有原料甲40千克、乙38升,通过生产这两种产品,可获得的最大利润为多少元:", "type": "单选题", "options": "A. 15000\nB. 14500\nC. 13500\nD. 12500", "choice": "D", "keypoints": "不定方程组;统筹规划问题", "most_wrong": "C", "human_count": 78764, "human_acc": 38.4046010868, "source": "2011年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 6, "formulas": 0}, {"id": 2097062, "material": "", "question": "生产一件甲产品消耗4份原料A、2份原料B、3份原料C,可获得1.1万元利润;生产一件乙产品消耗3份原料A、5份原料B,可获得1.3万元利润。现有40份原料A、38份原料B、15份原料C用于生产,问最多可获得多少万元利润?", "type": "单选题", "options": "A. 10.2\nB. 12.0\nC. 12.2\nD. 12.8", "choice": "C", "keypoints": "不定方程组;统筹规划问题", "most_wrong": "B", "human_count": 67242, "human_acc": 51.9243924928, "source": "2017年重庆市公务员录用考试《行测》题(下半年)第35题", "difficulty": 5, "formulas": 0}, {"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 4933236, "material": "", "question": "一项工程,若甲单独工作需27天完工;若按照甲先工作2天、乙再工作1天的方式轮流工作,需32天完工。在实际工作中,甲、乙的工作效率均比计划提升100%,且两人同时开始工作,合作完成该工程,问需要几天可以完工?", "type": "单选题", "options": "A. 18\nB. 12\nC. 10\nD. 9", "choice": "D", "keypoints": "周期余数问题;给效率比例型", "most_wrong": "B", "human_count": 138205, "human_acc": 25.6929922941, "source": "2022上半年省考第十七季行测模考大赛(河南卷)第62题", "difficulty": 7, "formulas": 0, "history": [{"id": 2547703, "material": "", "question": "一项工程,小王先做36天,小李接着做24天就可完成。若两人合作则32天可以完成。现在小李先做12天之后,剩下任务按照小王先做一天两人再合作做一天的方式轮流工作,直至完成,则完成这项工作共需要多少天?", "type": "单选题", "options": "A. 32\nB. 34\nC. 45\nD. 46", "choice": "D", "keypoints": "周期余数问题;给效率比例型", "most_wrong": "C", "human_count": 415243, "human_acc": 26.8683638255, "source": "2021年国考第五季行测模考大赛(副省级)第63题", "difficulty": 7, "formulas": 0}, {"id": 2652742, "material": "", "question": "一批零件需要加工,若甲单独加工恰好需要24天,若按照甲加工2天,乙加工1天,甲加工2天,乙加工1天······的模式轮流加工,需要28天且其中最后2天加工的零件数相同,则乙单独加工这批零件需要多少天?", "type": "单选题", "options": "A. 40\nB. 35\nC. 32\nD. 30", "choice": "A", "keypoints": "周期余数问题;给效率比例型", "most_wrong": "C", "human_count": 158613, "human_acc": 29.3670758387, "source": "2021年国考第十八季行测模考大赛(副省级)第61题", "difficulty": 7, "formulas": 0}, {"id": 2136470, "material": "", "question": "甲、乙、丙和丁四辆载重不同的卡车运输一批货物。其中甲的载重是乙的2倍、是丙的3倍、是丁的1.5倍。如果甲和丁一起运货,各跑10次正好能运完所有货物。如果乙和丙一起运货,且乙每小时运一趟、丙每半小时运一趟,问需要多少小时才能运完所有货物?", "type": "单选题", "options": "A. 14\nB. 14.5\nC. 15\nD. 15.5", "choice": "B", "keypoints": "周期余数问题;给效率比例型", "most_wrong": "C", "human_count": 600218, "human_acc": 70.9213985585, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第41题", "difficulty": 4, "formulas": 0}, {"id": 2033292, "material": "", "question": "泳池进出水用的机器,往泳池里注水时,每工作30分钟,停3分钟,把泳池里的水抽空时,每工作30分钟,停5分钟,抽水的速度是注水速度的2倍。如果把泳池水抽完用了2小时50分钟,那么把泳池里注满水用的时间是多少?", "type": "单选题", "options": "A. 4小时17分钟\nB. 5小时27分钟\nC. 5小时36分钟\nD. 5小时41分钟", "choice": "B", "keypoints": "周期余数问题;给效率比例型", "most_wrong": "C", "human_count": 656874, "human_acc": 63.9378328264, "source": "2016年河南省公务员录用考试《行测》题第31题", "difficulty": 5, "formulas": 0}, {"id": 2547776, "material": "", "question": "一项工程,小王先做36天,小李接着做24天就可完成。若两人合作则32天可以完成。现在小李先做12天之后,剩下任务按照小王先做一天两人再合作做一天的方式轮流工作,直至完成,则完成这项工作共需要多少天?", "type": "单选题", "options": "A. 32\nB. 34\nC. 45\nD. 46\nE. 47\nF. 48\nG. 49\nH. 50", "choice": "D", "keypoints": "周期余数问题;给效率比例型", "most_wrong": "C", "human_count": 13037, "human_acc": 31.2188386899, "source": "2020年上半年省考第二十九季行测模考大赛(陕西卷)第113题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "工程问题", "给效率比例型"]]}, {"id": 19991, "material": "", "question": "刚从事遥感考古工作的同志,______希望能验证一下自己的成果,______希望在验证过程中获取经验和教训,______有误,______可以弄清失误的原因,找到正确的方向。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 即使 也 不但 更\nB. 也 更 即使 不但\nC. 不但 更 即使 也\nD. 更 也 不但 即使", "choice": "C", "keypoints": "对应关系-重点词句对应", "most_wrong": "B", "human_count": 624613, "human_acc": 96.1798745783, "source": "2012年江西省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 5658539, "material": "", "question": "任何一名党员,________职务高低、资历深浅、成就大小,________必须自觉遵守党内政治生活准则,各级党员领导干部要率先垂范。\n\n依次填入画线部分最恰当的是________。", "type": "单选题", "options": "A. 不论 都\nB. 即使 也\nC. 只要 就\nD. 只有 才", "choice": "A", "keypoints": "对应关系-重点词句对应", "most_wrong": "D", "human_count": 529, "human_acc": 99.4328922495, "source": "2020年上海市行政执法类考试《行测》试题(网友回忆版)第3题", "difficulty": 3, "formulas": 0}, {"id": 4754378, "material": "", "question": "于作家而言,________偏信现实题材,________提升自己对现实的理解和表达。因为归根结底,无边的不是现实或现实主义,而是伟大作家的内心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 既 又\nB. 宁可 也不\nC. 要么 要么\nD. 与其 不如", "choice": "D", "keypoints": "对应关系-重点词句对应", "most_wrong": "B", "human_count": 5846, "human_acc": 94.6972288744, "source": "2022上半年省考第九季行测模考大赛(广东乡镇卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 5431304, "material": "", "question": "习近平总书记在海南省三亚市崖州湾种子实验室考察调研时强调,种子是我国粮食安全的关键。________用自己的手攥紧中国种子,________能端稳中国饭碗,实现粮食安全。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如果 就\nB. 即使 也\nC. 只有 才\nD. 因为 所以", "choice": "C", "keypoints": "对应关系-重点词句对应", "most_wrong": "A", "human_count": 22582, "human_acc": 99.0257727393, "source": "2023上半年省考第一季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 2045586, "material": "", "question": "世界发展不应单峰耸立,_______不应有孤岛。经济全球化浪潮中,“每一朵浪花有它的精彩”,_______彼此声浪相助,_______形成滚滚发展的春潮。\n\n依次填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 也,因为,所以\nB. 更,只有,才能\nC. 却,既然,那么\nD. 就,无论,并且", "choice": "B", "keypoints": "对应关系-重点词句对应", "most_wrong": "A", "human_count": 756336, "human_acc": 95.4705316156, "source": "2017年广州市公务员录用考试《行测》题(单考区卷)第10题", "difficulty": 3, "formulas": 0}, {"id": 2439996, "material": "", "question": "________无法避免,________只有忍受,这就是做人的本分。无法避免的事情你无法忍耐,又承受不了,这________软弱,________愚蠢。\n\n依次填入划横线部分最恰当的词语是:", "type": "单选题", "options": "A. 如果 那就 虽然 但是\nB. 因为 所以 不但不 而且\nC. 只要 就 一面 一面\nD. 既然 那就 不但 而且", "choice": "D", "keypoints": "对应关系-重点词句对应", "most_wrong": "B", "human_count": 410986, "human_acc": 97.7828928479, "source": "2019年青海省法院、检察院录用考试《行测》题第55题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"]]}, {"id": 19391, "material": "", "question": "甲、乙两辆清洁车执行东、西城间的公路清扫任务。甲车单独清扫需要6小时,乙车单独清扫需要9小时,两车同时从东、西城相向开出,相遇时甲车比乙车多清扫15千米。问东、西两城相距多少千米:", "type": "单选题", "options": "A. 60千米\nB. 75千米\nC. 90千米\nD. 135千米", "choice": "B", "keypoints": "相遇追及;给具体单位型", "most_wrong": "C", "human_count": 101559, "human_acc": 67.6276844002, "source": "2011年浙江省公务员录用考试《行测》题第53题", "difficulty": 4, "formulas": 0, "history": [{"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 2388063, "material": "", "question": "甲乙二人沿环形跑道从同一地点同时背向开始跑步,35秒后两人相遇。已知甲跑一圈需要60秒,乙跑一圈需要多少秒?", "type": "单选题", "options": "A. 77\nB. 84\nC. 91\nD. 96", "choice": "B", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 591658, "human_acc": 74.0388873302, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第70题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "相遇追及"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 10625, "material": "", "question": "根据我国有关法律规定,下列哪一行为是不合法的?", "type": "单选题", "options": "A. 某乡人民代表大会选举产生乡长、副乡长\nB. 国务院某部门制定规章设定行政许可\nC. 国务院发布《关于加强市县政府依法行政的决定》\nD. 全国人民代表大会常务委员会批准2009年中央预算调整方案", "choice": "B", "keypoints": "行政法;宪法", "most_wrong": "A", "human_count": 34712, "human_acc": 45.5375662595, "source": "2009年甘肃省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"], ["常识判断", "法律常识", "宪法"]]}, {"id": 4408917, "material": "", "question": "现代技术的革新是抛弃型颠覆性的,即一种新的技术出现就会取代原有的技术。但对于传统工艺的发展而言,新的技艺是在原有技艺基础上加以________的。其技艺的更新速度是缓慢的,技艺的娴熟掌握更________经验的积累。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推敲 强调\nB. 优化 凭据\nC. 改进 依赖\nD. 传承 注重", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 186537, "human_acc": 86.4520175622, "source": "2021下半年省考第二十四季行测模考大赛(四川卷)第22题", "difficulty": 3, "formulas": 0, "history": [{"id": 826043, "material": "", "question": "条纹,作为最简洁而又生机勃勃的视觉设计语言,自石器时代起便被广泛运用。彩色条纹依旧不断_________于当今时装界,新锐设计师们拒绝了浮华,但同样_________着高调。", "type": "单选题", "options": "A. 流行 维持\nB. 活跃 蕴含\nC. 风靡 保持\nD. 时兴 延续", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 625183, "human_acc": 54.8437817407, "source": "2014年四川省公务员录用考试《行测》题(下半年)第18题", "difficulty": 5, "formulas": 0}, {"id": 5424747, "material": "", "question": "图像和影像具有瞬间流动性特征,以其直观性的魅力________了高雅文化与通俗文化之间的鸿沟,符合现代社会人们追求全民化、大众化的审美眼光,但它们也降低了文学作品蕴藉的情调和韵味,加剧了文学的审美__________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 填平 边缘化\nB. 消弭 碎片化\nC. 弱化 浅层化\nD. 模糊 低俗化", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 264195, "human_acc": 33.3208425595, "source": "2022下半年省考第二十四季行测模考大赛(深圳卷)第69题", "difficulty": 7, "formulas": 0}, {"id": 2187559, "material": "", "question": "现在,创新的重要性已无需____。这些年,无论是国家宏观层面,还是企业等微观层面,我国创新都取得了历史性成就。但也不用____,创新孤岛化问题还未根本解决。少数企业特别是一些传统企业,不时还把“不创新等死、创新找死”作为口头禅。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 强调 遮掩\nB. 苛求 藏匿\nC. 赘述 讳言\nD. 点明 噤声", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 1509454, "human_acc": 69.5834387799, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 5, "formulas": 0}, {"id": 4906827, "material": "", "question": "今日之元宇宙的概念并未有明确统一的定义,但是其实质内涵是________的。这一概念看似是当前偶然出现的新的概念和社会系统,但实际上是一种历史的________,互联网从诞生的那一天起,就昭示着一定有元宇宙这样的事物出现,只不过命名有别而已。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 明了 重演\nB. 透彻 选择\nC. 清晰 必然\nD. 客观 机遇", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 311887, "human_acc": 86.6073289364, "source": "2022上半年省考第十五季行测模考大赛(广东乡镇卷)第2题", "difficulty": 3, "formulas": 0}, {"id": 4988481, "material": "", "question": "虽然译著在某种意义上是模仿,但不应该________翻译行为中巨大的创造性,实际上,展示自身的独到之处是完全可以理解的,因为所有的学术硕果都是模仿和创造的结合,都________于前人呕心沥血所创造的文学沃土,在这一点上,翻译与写作并无本质区别。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遮蔽 植根\nB. 埋没 盘踞\nC. 混淆 蕴藏\nD. 否认 聚焦", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 310294, "human_acc": 77.4587971408, "source": "2022上半年省考第十九季行测模考大赛(广东乡镇卷)第3题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 53049, "material": "", "question": "如果说逻辑源自“先验”,即逻辑超越经验、先于经验而存在,那么到底有无超越具象事物的抽象逻辑存在?如果有,我们又如何推知其存在?不少逻辑学家常以类似“三角形内角和等于180度”这样的命题来证明逻辑的先验性――自然,作为数理逻辑的符号系统尤其如此,似乎逻辑形式可以不依赖于人们的经验而具有推理的自洽性和永恒正确性,客观世界的事物都必须通过“逻辑的安排”才得以使人们有一清晰系统的认识。倘若真是如此,我们不禁要问,人类作为经验性的存在,又如何知晓有一个超越经验的逻辑存在?无疑,承认先验逻辑的存在,势必陷入独断论的泥潭或陷入神秘主义的窠臼。 \n\n这段文字意在:", "type": "单选题", "options": "A. 质疑先验逻辑的存在\nB. 说明神秘主义是不可取的\nC. 论述逻辑是对经验的总结\nD. 解释客观世界有时是没有逻辑的", "choice": "A", "keypoints": "行文脉络-分总;程度词", "most_wrong": "C", "human_count": 507601, "human_acc": 85.8166158065, "source": "2013年921联考《行测》题(河南卷)第20题", "difficulty": 5, "formulas": 0, "history": [{"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 48273, "material": "", "question": "在国际上,“医药代表”已经有近40年历史且被广泛认可和接受。 真正的医药代表是一个有很高准入门槛的职业,他们不仅给医疗专业人员传递药品知识,而且还收集临床药品安全信息,反馈给药品研制开发企业,为下一步改进或研发新的药品提供宝贵线索。\n\n这段文字主要介绍的是:", "type": "单选题", "options": "A. 医药代表发展历史\nB. 医药代表的作用\nC. 关于医药代表的国际研究成果\nD. 医药代表的职业资格", "choice": "B", "keypoints": "行文脉络-分总;程度词", "most_wrong": "D", "human_count": 256719, "human_acc": 91.6893568454, "source": "2013年天津市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 2011190, "material": "", "question": "当下中国文学描写宫斗、职斗、婚斗、家斗的作品比较流行,这些作品中包含了不少对日常生活权术和心机的描写。这样的写作有可能削弱文学对社会的积极影响。文学有必要与正义结盟,形成诗性正义,以提升生活。作者想表达的主要观点是(    )。", "type": "单选题", "options": "A. 当下文学作品的社会影响力有下降的趋势\nB. 流行作品未必是好作品,这需要时间去检验\nC. 文学不应过度渲染权术机诈,否则有可能泯灭正义\nD. 生活中没那么多权术机诈,文学创作应该贴近生活,不能闭门造车", "choice": "C", "keypoints": "行文脉络-分总;程度词", "most_wrong": "D", "human_count": 19524, "human_acc": 86.6369596394, "source": "2013年四川公务员录用考试《行测》题(下半年)第45题", "difficulty": 5, "formulas": 0}, {"id": 1002801, "material": "", "question": "如果能够做好南极生态环境的承受力评估,并严格执行有关规定,南极旅游造成的生态影响就可以得到有效控制。因为与南极大陆极为广袤的地域相比,游客活动的地域仅为总面积的3%左右。而如何管理好长期设在南极的科考站,才是更为棘手的问题,尤其是一些被废弃的科考站,已对南极生态环境造成了新的威胁。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 南极生态环境评估的意义\nB. 南极生态旅游的发展前景\nC. 南极生态环境管理机制的必要性\nD. 南极科考站对当地生态环境的影响", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "C", "human_count": 2472105, "human_acc": 54.8756626438, "source": "2015年国家公务员录用考试《行测》题(省部级)第41题", "difficulty": 5, "formulas": 0}, {"id": 820415, "material": "", "question": "世界高新技术革命的浪潮已经把经济竞争从物质资源竞争推向人力资源竞争,人力资源的开发、利用和管理将成为人类社会经济发展的关键因素。在这个过程中需要大量的人力资源信息,必然离不开人力资源会计,在人口众多、人口素质相对较差的我国,建立和推行人力资源会计制度更具有必要性。\n\n这段文字主要表述的是:", "type": "单选题", "options": "A. 世界高新技术革命的浪潮影响巨大\nB. 人力资源竞争成了社会发展的关键因素\nC. 我国发展人力资源会计的必要性\nD. 我国的人口众多且人口素质相对较差", "choice": "C", "keypoints": "行文脉络-分总;程度词", "most_wrong": "B", "human_count": 239689, "human_acc": 88.5772813938, "source": "2014年黑龙江省政法干警考试《行政职业能力测验》试卷(专科)第58题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5058788, "material": "", "question": "鲁迅在仙台学医时,他从幻灯片上看到________的国人,于是想到医治人的灵魂比身体更加重要。这话在今天看来有很大争议,毕竟健康的体魄可以增强免疫力,更好地对抗疾病。但是,文学的“________”作用也是显而易见的。阅读一部小说,也是努力感受一个作家所创造的“世界”,这个“世界”可能是明亮的,但也可能是阴暗的,让人________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 麻木 疗愈 悲伤\nB. 虚弱 治疗 颓丧\nC. 消瘦 疗养 阴郁\nD. 木然 治愈 困顿", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 335533, "human_acc": 57.0158523901, "source": "2022上半年省考终极行测模考大赛(陕西卷)第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 21743, "material": "", "question": "酒主要以液态形式存在。在古代缺乏严密容器的条件下是很难___________保存的,因此出土的古酒就十分___________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 长期 罕见\nB. 完好 珍贵\nC. 妥善 难得\nD. 大量 稀少", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 603485, "human_acc": 57.24748751, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第7题", "difficulty": 5, "formulas": 0}, {"id": 5430319, "material": "", "question": "骈文的特点是追求形式美:对偶、声律、用典、藻饰。魏晋时期,这种刻意追求文学形式美的________,一方面促进了文学独立品格的建立,另一方面又造成了形式上的僵化和内容上的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 导向 苍白\nB. 手法 单一\nC. 潮流 呆板\nD. 风尚 空洞", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 758087, "human_acc": 46.9154595713, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第55题", "difficulty": 6, "formulas": 0}, {"id": 2377361, "material": "", "question": "舞台就是程式化和生活化的结合,过度的程式化表演会让观众觉得虚假,过度的生活化表演又会让观众觉得________,因此,要把握好程式化和生活化的________,为观众呈现精彩有趣的戏曲艺术。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 庸俗 程度\nB. 随便 平衡\nC. 琐碎 差异\nD. 枯燥 重心", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 1310527, "human_acc": 66.1839855264, "source": "2019年420联考《行测》题(黑龙江公检法卷)(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 5444925, "material": "", "question": "相比于海洋而言,对陆地生态系统三叠纪-侏罗纪之交重大生物事件的探究相对________。重要原因就是海相地层相对陆相地层更为连续完整,并且植物化石保存条件更为苛刻,科学家有时候很难只通过大型植物化石还原当时的陆地生态环境变化。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 僵化\nB. 不力\nC. 薄弱\nD. 扎实", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 73967, "human_acc": 81.0185623319, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第61题", "difficulty": 4, "formulas": 0}, {"id": 2387754, "material": "", "question": "太多的________,使得孩子缺乏自主;太多的________,使得孩子难以承受;太多的________,使得孩子失去动力;太多的________,使得孩子不知约束。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 关爱 满足 享受 溺爱\nB. 干预 期望 责备 迁就\nC. 唠叨 攀比 反思 许诺\nD. 在意 计划 躲避 表扬", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 1577729, "human_acc": 94.8261710344, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第37题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2042156, "material": "", "question": "对大多数人来说,逻辑学是一门______的学问。但是思想史上的重大事件无一不是______人们在自己的思维和研究方法上所做的改进。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 神秘 处于\nB. 枯燥 基于\nC. 神奇 源于\nD. 繁琐 由于", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 1033912, "human_acc": 85.5408390656, "source": "2017年江苏省公务员录用考试《行测》题(B类)第49题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 10105, "material": "", "question": "许多好书的价值只限于某一特定的历史时期,它们没有展示出那种________的吸引力。这种吸引力来源于用各个时代、各个地区的人都能理解的方式来讨论各时代、各地区的人都要________的问题。\n\n依次填入横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 一如既往 解决\nB. 历久弥新 考察\nC. 一唱百和 思考\nD. 经久不衰 面对", "choice": "D", "keypoints": "关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 76227, "human_acc": 81.7098928201, "source": "2009年913联考《行测》题(辽宁/海南/重庆/福建)第25题", "difficulty": 5, "formulas": 0, "history": [{"id": 2388258, "material": "", "question": "全面推进依法治国,必须从我国________出发,突出中国特色、实践特色、时代特色,既不能罔顾国情、超越阶段,也不能因循守旧、____________。", "type": "单选题", "options": "A. 国情 冥顽不化\nB. 实际 墨守成规\nC. 现状 食古不化\nD. 现实 茕茕孑立", "choice": "B", "keypoints": "关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 1513491, "human_acc": 69.3328866838, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第28题", "difficulty": 5, "formulas": 0}, {"id": 2255874, "material": "", "question": "任何一项改革都不是____________,也不可能一帆风顺。改革有风险,改革需谨慎。但这不能成为拒绝和________改革的理由。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一蹴而就 放弃\nB. 一日千里 抛弃\nC. 一步登天 摒弃\nD. 一路绿灯 扬弃", "choice": "A", "keypoints": "关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 9342, "human_acc": 95.7075572683, "source": "2016年江西省法检系统招录考试《行测》题第2题", "difficulty": 3, "formulas": 0}, {"id": 2264127, "material": "", "question": "在现代社会,公民能独立地表达自己的观点,却不傲慢,对政治表示服从,却不____________;看到弱者知道同情,看到邪恶知道________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 卑躬屈膝 愤怒\nB. 溜须拍马 愤慨\nC. 阿谀奉承 悲愤\nD. 趋炎附势 气愤", "choice": "A", "keypoints": "关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 6154, "human_acc": 64.5433864153, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 1688886, "material": "", "question": "全球化带来的时空压缩和混杂性极大地消解了传统场所的认同维系功能,使人们的生活_____________和更加不确定,媒介成为_______身份的重要文化机构。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 变化多端 解构\nB. 风云变幻 建构\nC. 变化多端 建构\nD. 风云变幻 解构", "choice": "C", "keypoints": "关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 16135, "human_acc": 55.3021382089, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第4题", "difficulty": 5, "formulas": 0}, {"id": 1797232, "material": "", "question": "印象主义画家莫奈致力于观察沐浴在光线中的自然景色,把握色彩的冷暖变化和相互作用,用看似______实则准确的迅捷的手法,把_____的光色效果记录在画布上,留下各种瞬间的永恒图像。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 粗糙 转瞬即逝\nB. 模糊 千变万化\nC. 荒诞 五彩斑斓\nD. 随意 变幻莫测", "choice": "D", "keypoints": "关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 871847, "human_acc": 40.5081396162, "source": "2016年山东省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2742284, "material": "", "question": "为实现精准扶贫,某县政府工作人员对辖区内所有贫困户进行走访。已知第一周走访的户数为贫困户总户数的$46\\%$,第二周走访的户数是两周后剩余未走访户数的1.2倍。问两周后最少还有多少户贫困户未走访?", "type": "单选题", "options": "A. 45\nB. 90\nC. 135\nD. 180", "choice": "C", "keypoints": "普通不定方程;和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 417981, "human_acc": 47.9670128547, "source": "2021年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第84题", "difficulty": 4, "formulas": 1, "history": [{"id": 5600650, "material": "", "question": "小李向后勤处领取15000元采购商品,购买了单价分别为80元和120元的A、B两种商品共105件,又购买了1个C配件,但在报账时发现购物小票中此配件的单价已模糊不清,只能辨认出是小于100元的整数。已知小李报账时剩余4180元,则C配件的单价最多为多少元?", "type": "单选题", "options": "A. 80\nB. 60\nC. 50\nD. 40", "choice": "B", "keypoints": "普通不定方程;和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 40787, "human_acc": 51.9773457229, "source": "2023下半年省考第七季行测模考大赛(四川卷)第47题", "difficulty": 6, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2376813, "material": "", "question": "填入画横线部分最恰当的一项是\n\n啥是佩奇?这只其貌不扬的粉红小猪,本身就是家庭亲情的象征。父母、姐弟,简简单单、快快乐乐地生活在一起。这个“舶来品”的故事,________了中国老百姓“老婆孩子热炕头”的淳朴理想,也符合孩子们对童年、父母、家庭日常的真实感受。这是最基本的人伦感情,也是全世界通用的语言。", "type": "单选题", "options": "A. 迎合\nB. 暗合\nC. 符合\nD. 吻合", "choice": "B", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 1160955, "human_acc": 26.9255914312, "source": "2019年420联考《行测》题(吉林甲级)(网友回忆版)第25题", "difficulty": 5, "formulas": 0, "history": [{"id": 2270507, "material": "", "question": "不动产登记制度对于缓解市场供求矛盾,________市场预期有积极影响;也有助于________房价过快上涨,使购房者将来买房更理性。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 突破 制约\nB. 实现 限制\nC. 满足 压制\nD. 稳定 抑制", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 1172, "human_acc": 63.0546075085, "source": "2015年浙江省选调村官考试 行政职业能力测验试卷(精选)第5题", "difficulty": 5, "formulas": 0}, {"id": 1541931, "material": "", "question": "传统是历史大潮冲击下的砥柱,但是它不应该是阻挡潮流的东西,而应有______潮流走向的作用。传统在经受历史大潮淘洗的同时,也更新着自己。但是这种更新不是使自身______,而是使其精髓愈益凝练,随着历史进展而持续地焕发活力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 制约 妥协\nB. 扭转 改变\nC. 引导 消亡\nD. 规范 迷失", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 896932, "human_acc": 12.9072215062, "source": "2015年山东省公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 4792115, "material": "", "question": "文化体现在一个人如何对待他人、对待自己、如何对待自己所处的自然环境。在一个文化厚实的社会里,人懂得尊重自己,不苟且,所以有品位;人懂得尊重别人,不________,所以有道德;人懂得尊重自然,不________,所以有永续的智能。\n\n填入横线处的词语最恰当的一项是:", "type": "单选题", "options": "A. 卑微 贪婪\nB. 野蛮 索取\nC. 势利 强求\nD. 霸道 掠夺", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 2007, "human_acc": 78.4255107125, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第26题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5389878, "material": "", "question": "人才培养是少数民族戏剧发展的________。少数民族戏剧人才缺乏的现象____________,很多地方都存在后继无人的情况。培养少数民族戏剧人才迫在眉睫。少数民族戏剧文化人才培养有其独特性,因戏剧文化具有多元性且地域分布广,培养相关人才会出现周期长、相关门类多的_________,是一个综合性极强、涉及面极广的系统工程。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 根本 显而易见 矛盾\nB. 基石 昭然若揭 障碍\nC. 根基 有目共睹 困境\nD. 基础 有口皆碑 窘迫", "choice": "C", "keypoints": "对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 296328, "human_acc": 85.4245970681, "source": "2022下半年省考第二十季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 16337, "material": "", "question": "坦白地说,作为一个有着二十多年从业经验的记者,笔者深为自己完全看不出那个假报道的破绽而________,更为自己的同行里________有如此骗子而羞愧。\n\n填在横线上最恰当的词语是:", "type": "单选题", "options": "A. 惊诧 竟\nB. 汗颜 尚\nC. 惊诧 尚\nD. 汗颜 竟", "choice": "D", "keypoints": "对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 38833, "human_acc": 75.873612649, "source": "2009年贵州省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 16727, "material": "", "question": "如果一个人同时戴两块手表,可能会觉得不________,因为他不知道该相信哪一块手表;如果在一个企业里出现两种不同的标准,则必将让员工____________。", "type": "单选题", "options": "A. 愿意 各行其是\nB. 舒服 怨声载道\nC. 适应 无所适从\nD. 放心 人心涣散", "choice": "C", "keypoints": "对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 284076, "human_acc": 84.3672115913, "source": "2010年湖北省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 16747, "material": "", "question": "一个人的心理只要是健康的,他就有自知之明,就有可能________地了解自己,知道自己存在的价值,对自己的能力,性格和优缺点都能做出____________的评价。", "type": "单选题", "options": "A. 透彻 恰如其分\nB. 如实 不偏不倚\nC. 客观 条分缕析\nD. 准确 鞭辟入里", "choice": "A", "keypoints": "对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 275288, "human_acc": 43.7036848682, "source": "2010年湖北省公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2259160, "material": "", "question": "改变农业长久以来形成的劳作习惯并非一日可成,况且主要要_______农业的生产模式,这需要生产力的提高,显然不可能_______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 改变 一蹴而就\nB. 提升 轻而易举\nC. 适应 自然而然\nD. 提高 一朝一夕", "choice": "A", "keypoints": "对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 7675, "human_acc": 96.5863192182, "source": "2015年江西省法检系统招录考试《行测》题第6题", "difficulty": 5, "formulas": 0}, {"id": 21771, "material": "", "question": "研究发现,睡眠存在障碍与很多疾病有着难以______的联系。有时候通过改善睡眠状态,可连带对另一种疾病的治疗起到______的功效。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 割裂 一石二鸟\nB. 分割 正本清源\nC. 确认 投石问路\nD. 区分 釜底抽薪", "choice": "A", "keypoints": "对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 396680, "human_acc": 67.2219421196, "source": "2010年国家公务员录用考试《行测》题第8题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2261607, "material": "", "question": "矛盾不可避免,问题总是存在,但我们既不能因为畏惧困难就______,也不能只凭______的一腔血勇。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高歌猛进 临危不惧\nB. 如履薄冰 赤手空拳\nC. 裹足不前 暴虎冯河\nD. 故步自封 匹夫之勇", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-因果关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 37426, "human_acc": 71.5598781596, "source": "2017年重庆市选调优秀大学生到基层工作考试《行测》题第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4683376, "material": "", "question": "学校开放日组织亲子游戏,有5组家庭参与,每组包括父亲、母亲和孩子共3名家庭成员。游戏开始前所有参与者随机站位围成一个圆圈,则小张家3人刚好相邻的概率是:", "type": "单选题", "options": "A. $\\frac{1}{35}$\nB. $\\frac{1}{42}$\nC. $\\frac{2}{91}$\nD. $\\frac{3}{91}$", "choice": "D", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "C", "human_count": 204368, "human_acc": 19.3498982228, "source": "2022上半年省考第三季行测模考大赛(四川卷)第50题", "difficulty": 7, "formulas": 419, "history": [{"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 25299, "material": "", "question": "有5对夫妇参加一场婚宴,他们被安排在一张10个座位的圆桌就餐,但是婚礼操办者并不知道他们彼此之间的关系,只是随机安排座位。问5对夫妇恰好都被安排在一起相邻而坐的概率是多少:", "type": "单选题", "options": "A. 在1‰到5‰之间\nB. 在5‰到1%之间\nC. 超过1%\nD. 不超过1‰", "choice": "A", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 510557, "human_acc": 28.9239007594, "source": "2012年国家公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}, {"id": 2742003, "material": "", "question": "某次圆桌会议共设8个座位,有4个部门参加,每个部门2人,排座位时,要求同一部门的两人相邻,若小李和小王代表不同部门参加会议,则他们座位相邻的概率是:", "type": "单选题", "options": "A. $\\frac{1}{48}$\nB. $\\frac{1}{24}$\nC. $\\frac{1}{12}$\nD. $\\frac{1}{6}$", "choice": "D", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "C", "human_count": 459877, "human_acc": 24.8492531699, "source": "2021年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第56题", "difficulty": 5, "formulas": 398}, {"id": 2377373, "material": "", "question": "主人随机安排10名客人坐成一圈就餐,这10名客人中有两对情侣,那么这两对情侣恰好都被安排相邻而坐的概率约在(  )。", "type": "单选题", "options": "A. $0$到$2\\%$之间\nB. $2\\%$到$3\\%$之间\nC. $3\\%$到$4\\%$之间\nD. $4\\%$到$5\\%$之间\nE. $5\\%$到$6\\%$之间\nF. $6\\%$到$7\\%$之间\nG. $7\\%$到$8\\%$之间\nH. $8\\%$以上", "choice": "E", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "D", "human_count": 363840, "human_acc": 17.7242744063, "source": "2019年420联考《行测》题(陕西卷)(网友回忆版)第116题", "difficulty": 8, "formulas": 1258}, {"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "排列组合问题", "相邻问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 15783, "material": "", "question": "某市一体育场有三条同心圆的跑道,里圈跑道长$\\frac{1}{5}$公里,中圈跑道长$\\frac{1}{4}$公里,外圈跑道$\\frac{3}{8}$公里。甲、乙、丙三人分别在里、中、外圈同一起跑线同时同向跑步。甲每小时跑3.5公里,乙每小时跑4公里,丙每小时5公里,问几小时后三人同时回到出发点:", "type": "单选题", "options": "A. 8小时\nB. 7小时\nC. 6小时\nD. 5小时", "choice": "C", "keypoints": "周期相遇问题;普通行程", "most_wrong": "B", "human_count": 19220, "human_acc": 54.349635796, "source": "2009年山西省党群机关录用考试《行测》题第21题", "difficulty": 5, "formulas": 3, "history": [{"id": 2456421, "material": "", "question": "三个人在一个长为300米的环形跑道上的不同位置,同时向同一方向匀速跑步,速度分别为$6km/h$、$8km/h$、$10km/h$。问:多少分钟后,他们恰好第一次同时到达各自的起跑位置?", "type": "单选题", "options": "A. 18分钟\nB. 15分钟\nC. 12分钟\nD. 9分钟", "choice": "D", "keypoints": "周期相遇问题;普通行程", "most_wrong": "C", "human_count": 41821, "human_acc": 31.2689796992, "source": "安徽省2020年面向全国重点高校定向招录选调生《行测》题(网友回忆版)第11题", "difficulty": 5, "formulas": 3}, {"id": 2262670, "material": "", "question": "有三条同心圆跑道,里圈跑道长$\\frac{1}{5}$公里,中圈跑道长$\\frac{1}{4}$公里,外圈跑道长$\\frac{3}{8}$公里。甲、乙、丙三人分别在里、中、外圈同一起跑线同时同向跑步。甲每小时跑3.5公里,乙每小时跑4公里,丙每小时跑5公里,问何时后三人同时回到出发点?", "type": "单选题", "options": "A. 8小时\nB. 7小时\nC. 6小时\nD. 5小时", "choice": "C", "keypoints": "周期相遇问题;普通行程", "most_wrong": "B", "human_count": 2526, "human_acc": 63.9746634996, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第7题", "difficulty": 4, "formulas": 3}, {"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "行程问题", "普通行程"]]}, {"id": 5337457, "material": "", "question": "某出版书籍分为精装版和平装版两个版本,每套精装版分为上册、中册、下册,每册定价20元;每套平装版分为上册和下册,每册定价12元。某书店销售精装版和平装版书籍各若干套,其中销售平装版书籍总册数是销售精装版书籍总册数的整数倍,销售额共4500元。问该书店最多销售上册书籍多少册?", "type": "单选题", "options": "A. 185\nB. 183\nC. 181\nD. 180", "choice": "B", "keypoints": "普通不定方程;非典型最值问题", "most_wrong": "C", "human_count": 251675, "human_acc": 41.8813946558, "source": "2022下半年省考第十五季行测模考大赛(浙江C卷)第62题", "difficulty": 6, "formulas": 0, "history": [{"id": 2730243, "material": "", "question": "某款服装库存共550多件,有S、M、L、XL共4个码,每个码数服装库存均为100多件。已知XL码的服装比S码的少$4\\%$,M码和L码的服装件数之比为4:3。问库存最少码数的服装,至少有多少件?", "type": "单选题", "options": "A. 90\nB. 111\nC. 120\nD. 132", "choice": "B", "keypoints": "普通不定方程;非典型最值问题", "most_wrong": "C", "human_count": 58157, "human_acc": 39.5137300755, "source": "2021上半年省考第一季行测模考大赛(河南卷)第48题", "difficulty": 7, "formulas": 1}, {"id": 5380473, "material": "", "question": "甲盒中有35个小球,乙盒中有25个小球。每次从甲盒中取出2个小球,往乙盒中放进1个小球,操作若干次后,仍然每次从甲盒中取出2个小球,但乙盒变为每次取出3个小球,最终甲盒剩余的小球数比乙盒多1个。问甲盒最少剩余多少个小球?", "type": "单选题", "options": "A. 7\nB. 5\nC. 3\nD. 1", "choice": "B", "keypoints": "普通不定方程;非典型最值问题", "most_wrong": "C", "human_count": 338208, "human_acc": 42.6743305895, "source": "2022下半年省考第十九季行测模考大赛(深圳卷)第56题", "difficulty": 6, "formulas": 0}, {"id": 2097214, "material": "", "question": "某高校向学生颁发甲、乙两项奖学金共10万元。已知每份甲等、乙等奖学金的金额分别为3000元和1000元,每人只能最多获得一项奖学金,获得乙等奖学金的人数在获得甲等奖学金人数的2倍到3倍之间。问最多可能有多少人获得奖学金?", "type": "单选题", "options": "A. 62\nB. 64\nC. 66\nD. 68", "choice": "C", "keypoints": "普通不定方程;非典型最值问题", "most_wrong": "B", "human_count": 67527, "human_acc": 52.3686821568, "source": "2017年重庆市公务员录用考试《行测》题(下半年)第39题", "difficulty": 5, "formulas": 0}, {"id": 4774320, "material": "", "question": "某品牌有普装、精装、礼盒装三种桂花糕,售价分别为29元/盒、55元/盒、70元/盒。小王购买三种桂花糕各若干盒,共花费1000元。已知购买普装桂花糕的盒数是礼盒装的整数倍,两种桂花糕总盒数不少于15盒且不超过20盒。问小王一共最多购买了多少盒桂花糕?", "type": "单选题", "options": "A. 22\nB. 23\nC. 24\nD. 25", "choice": "D", "keypoints": "普通不定方程;非典型最值问题", "most_wrong": "C", "human_count": 385879, "human_acc": 12.9110420624, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第36题", "difficulty": 7, "formulas": 0}, {"id": 4698169, "material": "", "question": "某工厂现将一批布料制作成服装,若制作上衣恰好能制作150件大码上衣或180件小码上衣;若制作裤装恰好能制作200件大码裤装或240件小码裤装。工厂制作相同件数的四种服装后,剩余布料全部用于制作小码上衣,布料刚好用完。问按此种制作方式这批布料最少可制作服装多少件?", "type": "单选题", "options": "A. 192\nB. 189\nC. 186\nD. 183", "choice": "D", "keypoints": "普通不定方程;非典型最值问题", "most_wrong": "C", "human_count": 301257, "human_acc": 8.6407950687, "source": "2022上半年省考第五季行测模考大赛(四川卷)第55题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5717259, "material": "", "question": "依次填入画横线部分最恰当的一项是:\n\n(1)2023年各大平台公布的片单上,多部女性群像剧位列其中。这一现象反映了创作者在女性题材细分赛道上的求新求变,也________出当前中国女性表达意愿强烈的社会现实。\n\n(2)“双减”并非只是表面地减少过重作业负担及校外培训负担,而是要________以育人为中心的教育新生态。\n\n(3)在新时代背景下,我们理应让传统戏曲持续________当代价值,用戏曲讲好中国故事、展现中国形象,用戏曲丰富人民的精神文化生活。", "type": "单选题", "options": "A. 暴露 打造 挖掘\nB. 折射 构筑 释放\nC. 展现 协调 激活\nD. 揭示 厚植 体现", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 468, "human_acc": 73.0769230769, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第63题", "difficulty": 4, "formulas": 0, "history": [{"id": 5705850, "material": "", "question": "在新的历史条件下,防范腐败病原体感染的危险,丝毫没有________,而且出现了许多新情况、新特点,情况更为________,任务更为艰巨。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 削减 复杂\nB. 降低 恶劣\nC. 减轻 突出\nD. 萎缩 多样", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 5254, "human_acc": 65.9116863342, "source": "2023下半年省考第十七季行测模考大赛(陕西卷)第29题", "difficulty": 4, "formulas": 0}, {"id": 51625, "material": "", "question": "《史记》对后世文学影响巨大,其语言被奉为“古文”的最高成就,后世的散文,小说,戏剧等多种文体对《史记》从语言,内容、风格、结构等各个侧面来加以______、利用和______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 学习 继承\nB. 改良 扬弃\nC. 传承 规范\nD. 研究 抛弃", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 457620, "human_acc": 70.3343385342, "source": "2013年广州市公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 455287, "material": "", "question": "由于所处的“制度地位”以及“市场地位”非常低,在利益结构已________的当下,他们对于改变命运并无多少机会和预期,于是转而________运气,期待奇迹发生,买彩票就是如此。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 稳固 依赖\nB. 稳定 诉诸\nC. 定型 投靠\nD. 固化 祈求", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 540909, "human_acc": 54.5494713529, "source": "2014年浙江省公务员录用考试《行测》题(B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 4454572, "material": "", "question": "层层把关、“全网”参与,既是从“革命时期、建设时期、改革时期、复兴时期”不同的阶段里________历史的闪光片段,又何尝不是在甄选最能凝聚、传递、________观众情感的历史瞬间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遴选 激活\nB. 攫取 汇集\nC. 筛选 汇聚\nD. 撷取 触动", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 221690, "human_acc": 78.1568857414, "source": "2021下半年省考第二十五季行测模考大赛(深圳卷)第59题", "difficulty": 4, "formulas": 0}, {"id": 2270514, "material": "", "question": "似乎所有人都在恶意地________所有人,人们好像在追求真相,但又好像在期待从戏剧性的事件中获得话题以及伸张正义的满足、对推动事件解决的舆论力量的________。即便这种“话题—批判—改进”的模式确实有助于推动个别问题的解决,这代价也可能太大了。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推测 自信\nB. 揣摩 推崇\nC. 揣测 陶醉\nD. 猜测 向往", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 16890, "human_acc": 17.3653049142, "source": "2015年浙江省选调村官考试 行政职业能力测验试卷(精选)第6题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5114023, "material": "", "question": "刑事诉讼法治是社会治理的有机组成部分,刑事诉讼理论的阐释能力必须接受实践检验。刑事诉讼法学研究也应该直面社会治理中的中国问题,没有实践导向的研究工作,无异于____________,不会有生命力。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 闭门造车\nB. 纸上谈兵\nC. 削足适履\nD. 昙花一现", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 69081, "human_acc": 12.8457897251, "source": "2023年国考第二十九季行测模考大赛(地市级)第21题", "difficulty": 7, "formulas": 0, "history": [{"id": 2261506, "material": "", "question": "“世事洞明皆学问,人情练达皆文章”,自古以来,中国人就讲究得体说话,灵活办事,_______,不管是说话,还是与人交往、办事,都蕴藏着深奥的玄机。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一个萝卜一个坑\nB. 落地有声\nC. 可钉可铆\nD. 见风使舵", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 16392, "human_acc": 69.2166910688, "source": "2017年重庆市选调优秀大学生到基层工作考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 5554748, "material": "", "question": "现在,几乎所有城市都有自己的文博场馆。实际上,不少文博场馆____________,“养在深闺人未识”,更让人着急上火的是,有些文博场馆还____________,悠悠然地过着“白头宫女在,闲坐说玄宗”的逍遥日子。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 人迹罕至 安之若素\nB. 门可罗雀 习以为常\nC. 无人问津 不以为然\nD. 门庭冷落 司空见惯", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 56581, "human_acc": 37.1060956858, "source": "2023下半年省考第一季行测模考大赛(广东县级卷)第18题", "difficulty": 7, "formulas": 0}, {"id": 5407772, "material": "", "question": "在线教育的走红,让一些存有投机心思的企业“____________”。它们本身并不具备教育领域的资质和经验,却受到潜在丰厚回报的吸引而草率入场。然而,这些既缺乏教育情怀,又欠缺教育经验的企业的参与,只会使得学习类App____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 乘势而上 供过于求\nB. 闻风而动 良莠不齐\nC. 跃跃欲试 乱象丛生\nD. 迎难而上 粗制滥造", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 178978, "human_acc": 64.996815251, "source": "2023年国考第四十八季行测模考大赛(地市级)第30题", "difficulty": 4, "formulas": 0}, {"id": 5271089, "material": "", "question": "“供品花”,是潮汕地区一种表现形式独特的剪纸类型。千百年来,艺人们在继承前辈精髓的基础上,不断修改补充,____________,把这一技艺锤炼成经典。凡是能用作祭拜的水果供品,艺人们都可别出心裁地创造出适合它的水果供品花。既有中秋拜月用的,也有时年八节、敬神拜祖用的,还有婚嫁习俗中用的,可谓____________,花样奇绝。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 与时俱进 精妙绝伦\nB. 标新立异 百花齐放\nC. 精益求精 异彩纷呈\nD. 古为今用 丰富多彩", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 141578, "human_acc": 70.9764228906, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第33题", "difficulty": 4, "formulas": 0}, {"id": 5271079, "material": "", "question": "近年来,综艺节目中时常出现跨界评委,他们往往具有很高的知名度,对节目所聚焦的艺术形式却____________,这或许能在短期内带来一定的话题效应,但长远来看,必然降低节目的专业性和文化品位。打着对话交流的旗号,行消费艺术、攫取名利之实,不仅有损自身形象,甚至会让观众对某一艺术门类产生“品位不高”“不过如此”之感,从而伤害一个行业,实在是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 语焉不详 本末倒置\nB. 不甚了了 得不偿失\nC. 挂一漏万 饮鸩止渴\nD. 知之甚少 削足适履", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 128481, "human_acc": 70.2812088947, "source": "2022下半年省考第九季行测模考大赛(广东县级卷)第3题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5696627, "material": "", "question": "有A、B两项工程,甲工程队单独完成A工程需要5天,单独完成B工程需要6天。乙工程队单独完成A工程需要4天,单独完成B工程需要8天。3月26日两支工程队接到任务开始工作,若中间无休息日,则最快可以在哪一天完成这两项工程?", "type": "单选题", "options": "A. 3月30日\nB. 3月31日\nC. 4月1日\nD. 4月2日", "choice": "B", "keypoints": "给完工时间型;统筹规划问题", "most_wrong": "C", "human_count": 94594, "human_acc": 47.450155401, "source": "2023下半年省考第十六季行测模考大赛(广东县级卷)第34题", "difficulty": 6, "formulas": 0, "history": [{"id": 2764463, "material": "", "question": "一项工程,甲单独做28天完成,乙单独做20天完成,合作时两人效率均能提高$25\\%$。从8月24日开始工作,前10天甲休息了2天,乙休息了3天,之后两人均未休息。问该工程完工日期最早是:", "type": "单选题", "options": "A. 9月3日\nB. 9月4日\nC. 9月5日\nD. 9月6日", "choice": "B", "keypoints": "给完工时间型;统筹规划问题", "most_wrong": "C", "human_count": 146052, "human_acc": 40.491742667, "source": "2021上半年省考第五季行测模考大赛(广东卷)第38题", "difficulty": 7, "formulas": 1}, {"id": 2388116, "material": "", "question": "某单位需要搬家,可以使用甲、乙、丙三个搬家公司。单独完成该搬家任务,甲需要3天,乙需要4天,丙需要12天;搬家费用分别为甲1000元/天,乙850元/天,丙350元/天。要求在2天内搬完,最少需要花费多少元?(搬家不足一天按一天计算)", "type": "单选题", "options": "A. 3200\nB. 3400\nC. 3550\nD. 3700", "choice": "A", "keypoints": "给完工时间型;统筹规划问题", "most_wrong": "B", "human_count": 703095, "human_acc": 48.6716588797, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第71题", "difficulty": 5, "formulas": 0}, {"id": 2742220, "material": "", "question": "为发展乡村旅游,某地需建设一条游览线路,甲工程队施工,工期为60天,费用为144万元;若由乙工程队施工,工期为40天,费用为158万元。为在旅游旺季到来前完工,工期不能超过30天,为此需要甲、乙两工程队合作施工,则完成此项工程的费用最少是:", "type": "单选题", "options": "A. 156万元\nB. 154万元\nC. 151万元\nD. 149万元", "choice": "C", "keypoints": "给完工时间型;统筹规划问题", "most_wrong": "B", "human_count": 617398, "human_acc": 59.5136362606, "source": "2021年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第53题", "difficulty": 4, "formulas": 0}, {"id": 2668122, "material": "", "question": "某单位职工食堂需要装修,可以使用甲、乙、丙三个装修队,甲队单独工作需10天完成,乙队单独工作需15天完成,丙队单独工作需30天完成。甲队装修一天需要1200元,乙队装修一天需要1000元,丙队装修一天需要800元。若该单位要求在9天内完成装修,则该单位至少需要付多少元装修费?(不足一天按一天算)(    )", "type": "单选题", "options": "A. 12000\nB. 12600\nC. 15000\nD. 18600", "choice": "B", "keypoints": "给完工时间型;统筹规划问题", "most_wrong": "C", "human_count": 71475, "human_acc": 65.4340678559, "source": "2020年山东省选拔录用选调生笔试综合测试(节选)(网友回忆版)第13题", "difficulty": 4, "formulas": 0}, {"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 5076975, "material": "", "question": "在汉语里,有“穷经皓首”之言,说明的是,要真正了解汉文化是一个长期艰苦的学习过程,容不得半点________。对汉代服饰文化的传承,也应当是__________的过程,才能符合文化传承和发展的根本方向。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 敷衍 螺旋式\nB. 应付 跳跃式\nC. 浮躁 渐进式\nD. 焦虑 进阶式", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 84340, "human_acc": 83.9708323453, "source": "2022下半年省考第一季行测模考大赛(安徽卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 2255907, "material": "", "question": "“男二十而取,女十五而嫁”这一古礼________,固于社会实际和民众期望有较大差距,并没有产生应有的_________和约束效果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 婚姻 引领\nB. 婚俗 引导\nC. 婚礼 引领\nD. 婚龄 引导", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 4972, "human_acc": 39.9839098954, "source": "2014年江西省法检系统招录考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 2378159, "material": "", "question": "故宫利用原创、金融和亚文化三驾马车,开拓出传统文化IP活化的新________,揭示了优秀传统文化挖掘和________的巨大空间和可能性,也揭开传统文化市场开发庞大财富冰川的一角。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 途径 阐述\nB. 途经 阐释\nC. 路径 阐发\nD. 路子 阐明", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1321633, "human_acc": 35.8676727957, "source": "2019年420联考《行测》题(重庆卷)(网友回忆版)第38题", "difficulty": 5, "formulas": 0}, {"id": 5218466, "material": "", "question": "由于农业水环境污染来源分散,而且污染物在流动过程中易呈现__________、不可控性等特征,因而在流域治理上,过程拦截和末端治理均较难控制,所以应更加注重________治理。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 随机性 源头\nB. 偶然性 长效\nC. 阶段性 初始\nD. 灵活性 全局", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 134911, "human_acc": 94.8210301606, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第30题", "difficulty": 3, "formulas": 0}, {"id": 2776123, "material": "", "question": "近几年的经典解读出版中,除了文史类的专业学者,一些作家、诗人等跨界的知识精英也加入了进来。这些跨界解读给经典出版增添了更多的________和丰富性,个人化的写作风格也将读者群从文史爱好者________到文艺爱好者。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 维度 扩展\nB. 力度 延伸\nC. 深度 转移\nD. 角度 推广", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 2162148, "human_acc": 79.7374647804, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第32题", "difficulty": 4, "formulas": 0}, {"id": 5447463, "material": "", "question": "法律语言和日常语言有着截然不同的意义追求。法律语言________、明确,追求的是确定性,通过语言确定其法律意义;而日常用语则相对随意、并允许较大范围的________,追求的是多样语境中的广泛适用性,通过语言在实际中的运用获得意义。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 规范 流动\nB. 严谨 模糊\nC. 庄重 分歧\nD. 专业 滥用", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 207455, "human_acc": 60.3393507026, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第65题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4639329, "material": "", "question": "当今世界正经历百年未有之大变局,新一轮科技革命和产业变革深入发展,国际力量对比深刻________,和平与发展仍然是时代主题,人类命运共同体理念____________,同时,国际环境日趋复杂,不稳定性不确定性明显增加,新冠肺炎疫情影响广泛深远,经济全球化遭遇逆流,世界进入动荡变革期。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 调整 深入人心\nB. 扭转 经久不衰\nC. 变化 源远流长\nD. 变换 牢不可破", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 1492969, "human_acc": 71.0691246771, "source": "2022年国家公务员录用考试《行测》题(副省级网友回忆版)第28题", "difficulty": 4, "formulas": 0, "history": [{"id": 50477, "material": "", "question": "竞争性选拔是____选人视野、打破论资排辈,让优秀年轻干部____的“绿色通道”,也是公信度高、为干部群众普遍认同的选拔方式。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 开拓 脱胎换骨\nB. 开拓 脱颖而出\nC. 拓宽 脱颖而出\nD. 拓宽 脱胎换骨", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 683480, "human_acc": 70.8769825013, "source": "2013年广东省公务员录用考试《行测》题(三)第21题", "difficulty": 5, "formulas": 0}, {"id": 2042150, "material": "", "question": "其实,物理学家探测引力波的尝试一直______地进行着,然而因为长期没有突破,这方面的工作逐渐被边缘化,颇受______。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 时有时无 冷遇\nB. 时断时续 冷落\nC. 时强时弱 冷淡\nD. 时快时慢 冷眼", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 1087394, "human_acc": 83.8733706458, "source": "2017年江苏省公务员录用考试《行测》题(B类)第46题", "difficulty": 5, "formulas": 0}, {"id": 2255948, "material": "", "question": "为了不让国家陷入_________恶循环,曼德拉决定不用清算和惩治的方式对待种族隔离制度,提出了以________的精神处理历史遗留问题。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冤冤相报 宽容\nB. 以德报怨 宽厚\nC. 以怨报德 宽容\nD. 冤冤相报 宽厚", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 5113, "human_acc": 78.7600234696, "source": "2014年江西省法检系统招录考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2042068, "material": "", "question": "北京有大量历史文化保护区,它们是古都北京的文化________,而位于北京历史城区中轴线西侧的什刹海区域,更是以宁静而优雅的环境、自然与人文的和谐______________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 特色 举世闻名\nB. 特征 远近闻名\nC. 标志 著称于世\nD. 指标 为人称道", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 1336950, "human_acc": 62.4457907925, "source": "2017年江苏省公务员录用考试《行测》题(C类)第48题", "difficulty": 5, "formulas": 0}, {"id": 5028937, "material": "", "question": "生态环境保护是一个长期任务,要____________。正在8个省份进行的第二轮第三批中央生态环境保护________发现,一些地方及部门对当地母亲河、母亲湖保护和治理不力现象仍然存在。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 久久为功 督察\nB. 持之以恒 审查\nC. 殚精竭虑 巡查\nD. 不遗余力 检查", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 397890, "human_acc": 66.7905702581, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第29题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 1587147, "material": "", "question": "我们身处一个竞争激烈、讲人情、重情面的社会,社会生活方式、价值取向及文化氛围对文学批评的影响____,正如不少人指出的那样,当前文学批评还不同程度地存在着人情化、商业化等____。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无孔不入 弊病\nB. 根深蒂固 局限\nC. 有目共睹 陋习\nD. 司空见惯 倾向", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 530227, "human_acc": 48.7985334583, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第24题", "difficulty": 6, "formulas": 0, "history": [{"id": 1687020, "material": "", "question": "农业转型过程中,市场发挥决定性作用,切忌____________、揠苗助长,以行政力量________甚至强推农业规模化。\n\n依次填入横线处最恰当的一项是:", "type": "单选题", "options": "A. 李代桃僵 指导\nB. 大包大揽 引导\nC. 越俎代庖 主导\nD. 鞭打快牛 倡导", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 728577, "human_acc": 80.0889953979, "source": "2015年江苏省公务员录用考试《行测》题(C类)第19题", "difficulty": 5, "formulas": 0}, {"id": 4546384, "material": "", "question": "古代兵法强调要争取作战主动权,能够调动敌人而不被敌人所调动,左右战局而不被战局所________。要建强体系以获得支撑战局的有利态势,在战前争得支配战局的有利态势,先处战地,____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 影响 养精蓄锐\nB. 制衡 守株待兔\nC. 羁绊 以逸待劳\nD. 干扰 得陇望蜀", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 318352, "human_acc": 36.8193069307, "source": "2022年国考第三十七季行测模考大赛(行政执法类)第30题", "difficulty": 7, "formulas": 0}, {"id": 5451241, "material": "", "question": "近年来,中国房地产“____________”,成就了一个个造富的神话。但房价的高增长也掩盖了很多问题,在强调“房住不炒”的政策大背景下,房产行业的积弊,应得到及时________,甚至需要“回炉再造”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高歌猛进 纠正\nB. 欣欣向荣 铲除\nC. 披荆斩棘 革除\nD. 暴虎冯河 制约", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 296989, "human_acc": 76.062413086, "source": "2023上半年省考第五季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 4772057, "material": "", "question": "近年来,以盗墓或考古为名目的小说____________,但绝大部分都比较________,核心内容没有真实的历史、文物知识作为基础,只能靠渲染机关、陷阱、宝物法力和一夜暴富来增加刺激。这类小说或许也可以是“好看”的,让人____________,但绝大部分的作品都没能在写作中充分地开掘出历史、文物蕴含的价值。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 比比皆是 啰嗦 欲罢不能\nB. 层出不穷 粗糙 手不释卷\nC. 甚嚣尘上 过时 念念不忘\nD. 备受瞩目 肤浅 叹为观止", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 279843, "human_acc": 77.6367463185, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第37题", "difficulty": 4, "formulas": 0}, {"id": 4637366, "material": "", "question": "如果历史观错误,不仅达不到学习教育的目的,反倒会____________、走入误区。现在,一些错误倾向要引起警惕:有的________党史上的失误和曲折,肆意抹黑歪曲党的历史、攻击党的领导;有的将党史事件同现实问题刻意勾连、恶意炒作;有的不信正史信野史,将党史庸俗化、娱乐化,热衷传播八卦轶闻,对非法境外出版物____________,等等。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 轻重倒置 渲染 青睐有加\nB. 南辕北辙 夸大 津津乐道\nC. 缘木求鱼 聚焦 趋之若鹜\nD. 断章取义 曲解 如数家珍", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 2150793, "human_acc": 60.4592352681, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第37题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4754691, "material": "", "question": "发动机的工作都是活塞在气缸内往复运动,如果润滑不够,缸壁出现了划痕,那么活塞在运动的时候就会漏气,导致气缸压力不够,造成动力下降。所以天冷的时候,为避免拉缸,汽车在启动时是需要热车的。但是,近期的一项覆盖全国的网络调査表明,绝大部分的司机在冬天时,并不热车。\n\n以下各项如果为真,最能解释这一现象的是:", "type": "单选题", "options": "A. 很多车主不爱惜车子,是否拉缸他们不在乎\nB. 随着全球气候变暖,现在的冬天没有以前冷了\nC. 有些受访者住在海南,海南的气温高,冬天也不需要热车\nD. 缸内直喷式发动机已经取代之前的化油器式发动机,天冷也无需热车", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 11725, "human_acc": 91.0703624733, "source": "安徽省2019年面向全国重点高校定向招录选调生《行测》题(网友回忆版)第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 8899, "material": "", "question": "俄国的两位大作家,都情不自禁地对莎士比亚表达了自己的看法。屠格涅夫借批评《哈姆雷特》,对莎剧(    ),他的态度倒还像个绅士,总的来说还算温和。托尔斯泰就比较厉害,他对莎士比亚进行了最猛烈的攻击,口诛笔伐,几乎把伟大的莎士比亚说得(    )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 不屑一顾 一无是处\nB. 颇有微词 一无是处\nC. 心怀不敬 体无完肤\nD. 嗤之以鼻 一塌糊涂", "choice": "B", "keypoints": "词的辨析-程度轻重;成语填空", "most_wrong": "A", "human_count": 67795, "human_acc": 85.4502544435, "source": "2009年浙江省公务员录用考试《行测》题第29题", "difficulty": 4, "formulas": 0, "history": [{"id": 2262694, "material": "", "question": "对盗伐林木者要严肃查处,如果姑息肇事者,少数人得不到惩处,就会使更多的人(   ),最终使国家资源蒙受损失。", "type": "单选题", "options": "A. 以身试法,肆无忌惮,群起效尤\nB. 肆无忌惮,以身试法,群起效尤\nC. 肆无忌惮,群起效尤,以身试法\nD. 群起效尤,以身试法,肆无忌惮", "choice": "C", "keypoints": "词的辨析-程度轻重;成语填空", "most_wrong": "B", "human_count": 3319, "human_acc": 21.753540223, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第13题", "difficulty": 5, "formulas": 0}, {"id": 3556958, "material": "", "question": "列宁曾强调,忘记过去,就意味着背叛。当然,牢记历史,不是要重复历史、复制历史,也不是枯燥地背诵历史,更不是____________,而是要遵循历史规律,运用历史智慧,走好今天的路,圆好明天的梦。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 照本宣科\nB. 闭门造车\nC. 泥古不化\nD. 走马观花", "choice": "C", "keypoints": "词的辨析-程度轻重;成语填空", "most_wrong": "A", "human_count": 65434, "human_acc": 49.3764709478, "source": "2021下半年省考第四季行测模考大赛(陕西卷)第23题", "difficulty": 7, "formulas": 0}, {"id": 2434286, "material": "", "question": "中国天文学传统极为深厚,成就极为可观,足以和希腊天文学相媲美,特别值得将二者进行比较。事实上,许多人正是通过强调我们有发达的天文学来强调中国古代也有科学,甚至____________。\n\n填入画横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 独当一面\nB. 遥遥领先\nC. 自成一家\nD. 登峰造极", "choice": "B", "keypoints": "词的辨析-程度轻重;成语填空", "most_wrong": "D", "human_count": 683721, "human_acc": 72.6707238771, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第22题", "difficulty": 4, "formulas": 0}, {"id": 3095, "material": "", "question": "对盗伐林木者要严肃查处,如果姑息肇事者,少数人得不到惩处,就会使更多的人__________,__________,__________,最终使国家资源蒙受损失。\n\n上面划线处依次填入成语,最恰当的是:", "type": "单选题", "options": "A. 以身试法,肆无忌惮,群起效尤\nB. 肆无忌惮,以身试法,群起效尤\nC. 肆无忌惮,群起效尤,以身试法\nD. 群起效尤,以身试法,肆无忌惮", "choice": "C", "keypoints": "词的辨析-程度轻重;成语填空", "most_wrong": "B", "human_count": 64487, "human_acc": 26.0626172717, "source": "2008年贵州省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 5601163, "material": "", "question": "任何公众人物,必须名副其实、谨言慎行,才能经得起“扒”。每个人都在乎自己的公众形象,但不要以为公众形象能够靠“人设”。滥用职权、抄袭论文也好,干其他亏心事也好,那些假模假式乃至____________、台上一套台下一套的人,可以“晦迹”于一时,但自我暴露是迟早的事。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 瞒天过海\nB. 怨天尤人\nC. 欺世盗名\nD. 信口雌黄", "choice": "C", "keypoints": "词的辨析-程度轻重;成语填空", "most_wrong": "A", "human_count": 1999, "human_acc": 62.3811905953, "source": "2023下半年省考第七季行测模考大赛(青海卷)第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2620216, "material": "", "question": "王阿姨给工艺店制作15张剪纸,剪成之后店主分为三个等级定价收购:一级每张支付250元,二级每张支付160元,三级每张支付100元。最终王阿姨得到了2730元。则王阿姨的剪纸中一级和二级剪纸的数量最多相差多少张?", "type": "单选题", "options": "A. 3\nB. 4\nC. 10\nD. 17", "choice": "B", "keypoints": "不定方程组;和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 90420, "human_acc": 43.7535943375, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第57题", "difficulty": 6, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5622827, "material": "", "question": "某刺绣作坊的绣工每天工作8小时,每件刺绣必须由一人独立完成。师傅制作一件刺绣需要24小时,徒弟制作一件刺绣需要的时间比师傅多25%。现有一批刺绣,师傅一人完成需要90天,若师徒两人合作完成,至少需要多少天?", "type": "单选题", "options": "A. 48\nB. 51\nC. 53\nD. 54", "choice": "B", "keypoints": "非典型最值问题;工程问题-其他", "most_wrong": "C", "human_count": 54297, "human_acc": 54.6310109214, "source": "2023下半年省考第九季行测模考大赛(广东县级卷)第40题", "difficulty": 6, "formulas": 0, "history": [{"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 28117, "material": "", "question": "一个三角形的面积为12平方米,则该三角形内接正方形的最大面积为:", "type": "单选题", "options": "A. 6平方米\nB. 4平方米\nC. 3平方米\nD. 不能确定", "choice": "A", "keypoints": "平面几何;非典型最值问题", "most_wrong": "B", "human_count": 12933, "human_acc": 60.1793860667, "source": "2008年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 2036516, "material": "", "question": "如果一味__________于所谓的“成功之道”,放弃对生活的体验和思考,则有可能在追求“成功”的路上,与自己最初的梦想__________。", "type": "单选题", "options": "A. 沉溺 南辕北辙\nB. 沉湎 南辕北辙\nC. 沉迷 渐行渐远\nD. 沉醉 渐行渐远", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;混搭填空", "most_wrong": "A", "human_count": 308543, "human_acc": 66.475985519, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 5637608, "material": "", "question": "当原创越来越少,台州绣衣的审美开始与时代________。到上世纪九十年代,昔日____________的盛景不复存在,设计师需要自己出去找客户,甚至下到生产车间。绣品的价格一降再降,当大家认识到问题的严重性时,________已成。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 剥离 如蚁附膻 式微\nB. 割裂 宾客盈门 孱弱\nC. 相悖 欣欣向荣 凋敝\nD. 脱节 门庭若市 颓势", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;混搭填空", "most_wrong": "C", "human_count": 60716, "human_acc": 93.1896040582, "source": "2023下半年省考第十一季行测模考大赛(四川卷)第19题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 49273, "material": "", "question": "吸管效应:指用一根吸管吸杯中果汁,就能把管子周围的果汁都吸入,比喻在某区域植入某种“吸管”,就能聚集资源,引起明显的区域反应。\n\n以下不属于吸管效应的是:", "type": "单选题", "options": "A. 石油探矿的常识是,两个矿区的标准距离为一百公尺,中国目前在东海已经勘探八座油气田,包括“八角亭”新油气田在内\nB. 随着广州城市功能的向南转移,铁路新客站附近的番禺钟村、南海平洲、三山、顺德的楼价都已被推高\nC. 某镇凭借其纺织产业的雄厚基础,确立以纺织特色为主攻方向,纺织企业由粗放式向集约式转变,实行集群发展\nD. 某地几年内让现代服务业的繁荣搭配便捷交通方式,两者“二合一”,让某地成为人流、物流、资金流纷纷向往的繁华地", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 340508, "human_acc": 64.7661728946, "source": "2013年江苏省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 1679618, "material": "", "question": "同类对象错误,指行为人意图侵害的对象与实际侵害的对象不一致,但属于同一类的,应当按照犯罪既遂定罪处罚。非同类对象错误,指行为人意图侵害的对象与实际行为侵害的对象不一致,且不属于同一类,只能根据行为人的主观故意内容认定犯罪性质。\n\n根据上述定义,下列说法正确的是:", "type": "单选题", "options": "A. 甲误将乙当作丙而杀死,应当以故意杀人罪既遂处罚\nB. 甲误把动物当成人而加以杀害,应当不成立犯罪\nC. 甲误把人当成动物而加以杀害,应当成立故意杀人罪\nD. 甲误把他人放置的财物当成垃圾扔掉,成立犯罪", "choice": "A", "keypoints": "特殊问法", "most_wrong": "C", "human_count": 388790, "human_acc": 84.7135986008, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第57题", "difficulty": 5, "formulas": 0, "history": [{"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 5122097, "material": "", "question": "物理学中的液化是指物质由气态转变为液态的过程;凝华是指物质跳过液态直接从气态变为固态的过程;升华是指固态物质不经液态直接变为气态的过程。\n\n根据上述定义,下列说法正确的是:", "type": "单选题", "options": "A. 灯丝变细属于液化\nB. 水变成冰属于凝华\nC. 雾凇的形成属于凝华\nD. 冰棍冒“白气”属于升华", "choice": "C", "keypoints": "特殊问法", "most_wrong": "D", "human_count": 91369, "human_acc": 63.3573750397, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第77题", "difficulty": 4, "formulas": 0}, {"id": 1639, "material": "", "question": "定义:\n\n①旷达:心胸开阔乐观。\n\n②寂寞:冷清孤单。\n\n③郁愤:忧郁愤恨。\n\n典型例证:\n\n(1)烽火连三月,家书抵万金。\n\n(2)四海无闲田,农夫犹饿死。\n\n(3)海内存知己,天涯若比邻。\n\n上述典型例证与定义存在对应关系的数目有:", "type": "单选题", "options": "A. 0个\nB. 1个\nC. 2个\nD. 3个", "choice": "C", "keypoints": "特殊问法", "most_wrong": "B", "human_count": 8192, "human_acc": 41.8823242188, "source": "2008年江苏省公务员录用考试《行测》题(B类)第116题", "difficulty": 6, "formulas": 0}, {"id": 2571771, "material": "", "question": "功能是事物内部固有的效能,它是由事物内部要素结构所决定的,是一种内在与事物内部相对稳定独立的机制。作用是事物与外部环境发生关系时所产生的外部效应。\n\n根据上述定义,下列说法正确的是:", "type": "单选题", "options": "A. 汽车具有运输的功能\nB. 脾具有造血、滤血、清除衰老血细胞等作用\nC. 法具有促进科技文化事业进步的功能\nD. 手机具有通讯的作用", "choice": "A", "keypoints": "特殊问法", "most_wrong": "D", "human_count": 1231673, "human_acc": 44.1846983737, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 5032208, "material": "", "question": "消耗物是指供权利人一次性有效使用后就灭失或品质发生变化的物。非消耗物又称不可消耗物,是指可以长期多次使用,并不会改变其形态和性质的物,是逐渐损耗而实现其经济价值的。\n\n根据上述定义,下列选项中同时包含消耗物和非消耗物的是:", "type": "单选题", "options": "A. 酱油、车辆、电视\nB. 面条、花生、水果\nC. 废铁、煤炭、原材料\nD. 书桌、房屋、计算机", "choice": "A", "keypoints": "特殊问法", "most_wrong": "C", "human_count": 241038, "human_acc": 81.5004273185, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第75题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 2750379, "material": "", "question": "某旅行团共游览了5个不同的景点,团内有3人因身体不适未参加游览,其余人最多的去了5个景点,最少的去了3个景点,且总游览人次为247人次。已知游览景点数量不同,人数也各不相同,且游览4个景点的人数最多,则该旅行团最多有多少人?", "type": "单选题", "options": "A. 70\nB. 73\nC. 61\nD. 64", "choice": "B", "keypoints": "普通不定方程;构造数列", "most_wrong": "C", "human_count": 61794, "human_acc": 41.4554811147, "source": "2021上半年省考第三季行测模考大赛(河南卷)第47题", "difficulty": 6, "formulas": 0, "history": [{"id": 2578700, "material": "", "question": "高校某教研室某年承接部级科研项目5个,经费总额为500万元,且每个项目经费都是整数万元。已知经费最多的两个项目平均经费与经费最少的两个项目经费之和相同,问经费排名第三的项目可能的最低经费金额为多少万元?", "type": "单选题", "options": "A. 145\nB. 142\nC. 74\nD. 71", "choice": "C", "keypoints": "普通不定方程;构造数列", "most_wrong": "B", "human_count": 539575, "human_acc": 56.3591715702, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第49题", "difficulty": 5, "formulas": 0}, {"id": 2776104, "material": "", "question": "某机构计划派45名志愿者分别前往A、B、C、D四个地区参与扶贫活动,其中A地区的志愿者人数要比B地区多4人,C地区人数为全部志愿者人数的$\\frac{1}{5}$,D地区人数不超过任何其他地区,则A地区至少有多少名志愿者?", "type": "单选题", "options": "A. 12\nB. 13\nC. 15\nD. 16", "choice": "D", "keypoints": "普通不定方程;构造数列", "most_wrong": "C", "human_count": 944763, "human_acc": 47.1352074541, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第56题", "difficulty": 4, "formulas": 1}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 5408603, "material": "", "question": "甲生产零件的效率比乙高50%,1小时内甲比乙多生产8个零件。现安排甲、乙共同生产1小时,从生产的零件中抽取3件。问至少有1件是甲生产的概率在以下哪个范围内?", "type": "单选题", "options": "A. 小于0.80\nB. 0.80~0.90之间\nC. 0.90~0.95之间\nD. 大于0.95", "choice": "C", "keypoints": "给情况求概率;给具体单位型", "most_wrong": "B", "human_count": 485468, "human_acc": 44.0721118591, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第47题", "difficulty": 4, "formulas": 0, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 5664886, "material": "", "question": "一项工程若交由甲、乙、丙三家公司合作,需30天完工;若交由甲、乙两家公司合作,需36天完工。已知甲、乙、丙三家公司每天的施工费用分别为900元、800元、500元,甲公司的效率比乙公司高50%,若该工程工期不能超过40天,则施工费至少需要多少元?", "type": "单选题", "options": "A. 66000\nB. 64000\nC. 61200\nD. 60000", "choice": "D", "keypoints": "给完工时间型;非典型最值问题", "most_wrong": "C", "human_count": 15884, "human_acc": 17.9174011584, "source": "2023下半年省考第十三季行测模考大赛(山西卷)第72题", "difficulty": 7, "formulas": 0, "history": [{"id": 5560572, "material": "", "question": "一项工程由甲、乙、丙三人单独完成分别需要20天、30天和60天,现在三人合作完成这项工程,在工作过程中,甲比乙少休息了一天,甲比丙多休息了两天,最后恰好用了整数天完成该项工程,那么完成这项工程最少需要多少天?", "type": "单选题", "options": "A. 12\nB. 13\nC. 14\nD. 15", "choice": "A", "keypoints": "给完工时间型;非典型最值问题", "most_wrong": "B", "human_count": 49710, "human_acc": 27.0871052102, "source": "2023下半年省考第一季行测模考大赛(广东县级卷)第36题", "difficulty": 7, "formulas": 0}, {"id": 5301584, "material": "", "question": "一份稿件,甲、乙、丙三人合作打字需16小时完成,比任意两人合作打字最少少用4小时,最多少用16小时。三人约定按效率由高到低的顺序轮流打字,每人打字一小时即可换班,但在实际打字18小时后,需抽调一人进行其他任务,为尽快完成稿件,剩下的两人需合作打字,问此份稿件最少需多长时间完成?", "type": "单选题", "options": "A. 33小时42分钟\nB. 30小时30分钟\nC. 27小时18分钟\nD. 12小时30分钟", "choice": "B", "keypoints": "给完工时间型;非典型最值问题", "most_wrong": "C", "human_count": 186246, "human_acc": 50.106311008, "source": "2022下半年省考第十二季行测模考大赛(深圳卷)第55题", "difficulty": 6, "formulas": 0}, {"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2782268, "material": "", "question": "家庭暴力的复杂性和__________,导致要彻底铲除家暴的毒瘤异常艰难。其次,很多人都意识不到,一些____________的观念,比如,为了孩子就忍忍吧;老公和老婆的肢体冲突是家务事,床头打架床尾和,没什么大不了······都在不知不觉中成为滋生家暴行为的“温床”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 反复性 坚不可摧\nB. 危害性 理所当然\nC. 间接性 陈词滥调\nD. 隐蔽性 根深蒂固", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 171331, "human_acc": 90.432554529, "source": "2021上半年省考第七季行测模考大赛(四川卷)第21题", "difficulty": 3, "formulas": 0, "history": [{"id": 2270494, "material": "", "question": "绝大多数剧本的创作周期是以季为单位,多拉快跑的结局必然是创意________,自我重复,借鉴和抄袭他人便 ________ 。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 衰竭 蔚然成风\nB. 枯竭 不足为奇\nC. 匮乏 顺理成章\nD. 干涸 绵绵不绝", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 1498, "human_acc": 75.6341789052, "source": "2015年浙江省选调村官考试 行政职业能力测验试卷(精选)第4题", "difficulty": 5, "formulas": 0}, {"id": 50817, "material": "", "question": "一线农技人员是“三农”战线上(   )的群体,或从事农业技术推广,或参与作物、畜禽的疫病防治,或指导农民种菜养鸡……他们长期(   )基层,工作艰辛而琐碎。\n\n依次括号中最恰当的一项是:", "type": "单选题", "options": "A. 不可或缺 扎根\nB. 举足轻重 留守\nC. 无足轻重 驻守\nD. 不可多得 扎堆", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 829021, "human_acc": 93.0531313441, "source": "2013年广东省公务员录用考试《行测》题(一)第25题", "difficulty": 5, "formulas": 0}, {"id": 2672420, "material": "", "question": "近代,随着西方科学技术在中国传播,对科举考试落伍保守的批评 ____________,兴办新式学堂的实践也逐步推进。二十世纪初,终于结束了________一千三百年的科举制度。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 接踵而至 延续\nB. 各执己见 长达\nC. 甚嚣尘上 沿袭\nD. 不绝于耳 绵延", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 3237, "human_acc": 13.1294408403, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第76题", "difficulty": 5, "formulas": 0}, {"id": 4546386, "material": "", "question": "公共文化服务是一项____________的文化事业,也是一个地方的文化名片。让文化之风________社会空间,需要付出更多努力。事实证明,立足本地特点,贴近群众需求,才能有效提升群众的获得感,让公共文化服务惠及更多人。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 润物无声 充盈\nB. 和风细雨 充满\nC. 悄无声息 充溢\nD. 春风化雨 充斥", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 257918, "human_acc": 85.3023053839, "source": "2022年国考第三十七季行测模考大赛(行政执法类)第31题", "difficulty": 3, "formulas": 0}, {"id": 24593, "material": "", "question": "中国武术传播的不应仅仅是其技术体系,而更应是文化,是理念,是那种重德行、重关系以及重人际信任的理念。参与其中的行动主体更应该获得的是亲密关系,高度信任。遵从规范和精神气质的______,而绝非是仅仅获取______的技术。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 净化 战无不胜\nB. 陶冶 匹夫之勇\nC. 培养 炉火纯青\nD. 涵养 好勇斗狠", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 869488, "human_acc": 27.564267707, "source": "2012年国家公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3788411, "material": "", "question": "冰雪旅游具有区域性强、季节性鲜明等特点,对于气候的依赖性非常明显,黑龙江冬季时间长且雪量充沛、雪质优良,具备发展冰雪旅游业____________的自然条件。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独一无二\nB. 与生俱来\nC. 得天独厚\nD. 卓尔不群", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 100432, "human_acc": 97.0915644416, "source": "2021下半年省考第十四季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0, "history": [{"id": 4688873, "material": "", "question": "织锦是各类织物中工艺最精湛的一种。三国时期的蜀锦工艺影响了我国传承千年的各类锦种。随着时间的推移,宋锦、云锦相继出现,织锦工艺在宋代____________,达到无法超越的程度。今天,云锦、壮锦、蜀锦、宋锦已成为我国四大名锦,它们因种类多样、用途广泛而受到人们的青睐。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无与伦比\nB. 叹为观止\nC. 登峰造极\nD. 各有千秋", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 199334, "human_acc": 95.5762689757, "source": "2022上半年省考第四季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0}, {"id": 5114108, "material": "", "question": "美国《财富》杂志网站在近日的报道中指出,疫情加速了印度经济的虚拟化,投资者持续涌向印度____________的科技行业,印度的“独角兽俱乐部”正迅猛发展。2021年全年,印度新增44家独角兽企业,令此前10年总共才诞生独角兽企业37家这一数字____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 风起云涌 略逊一筹\nB. 如日中天 黯然失色\nC. 方兴未艾 自惭形秽\nD. 如火如荼 相形见绌", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 85183, "human_acc": 41.2911026848, "source": "2022下半年省考第三季行测模考大赛(青海卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4661693, "material": "", "question": "“律”之于音乐的重要性,为人类所共知,通览中西艺术史,此类论述____________。对于音乐中的“律”,东西方艺术家们都_____________。另一方面,“律”并不仅存于音乐之中,书法之中亦处处可见律的踪影。书法家在创作作品时,传达出类似音乐的审美感受,使作品____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 汗牛充栋 喜闻乐见 出神入化\nB. 不胜枚举 交口称赞 尽善尽美\nC. 俯拾即是 推崇备至 跌宕起伏\nD. 不计其数 奉为圭臬 熠熠生辉", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 78955, "human_acc": 37.3415236527, "source": "2021下半年省考第三十九季行测模考大赛(陕西卷)第38题", "difficulty": 7, "formulas": 0}, {"id": 4697542, "material": "", "question": "坚持中西医并重,需要中西医“一碗水端平”。近年来,“中医太落后”“中医不科学”等质疑之声____________。其实,中医西医____________,各有侧重,没有必要分高低、论长短。二者不是对手,而是战友,其共同的敌人是疾病。特别是在治疗疑难疾病上,“ ____________”很难取得令人满意的效果。人类健康的星空,需要中西医联手点亮。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 此起彼伏 交相辉映 孤军奋战\nB. 泛滥成灾 平分秋色 分庭抗礼\nC. 不绝于耳 各有所长 单打独斗\nD. 甚嚣尘上 等量齐观 各司其事", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 289230, "human_acc": 91.3746845071, "source": "2022上半年省考第五季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 1003897, "material": "", "question": "某单位有50人,男女性别比为$3\\colon2$,其中有15人未入党,若从中任选1人,则此人为男性党员的概率最大为多少:", "type": "单选题", "options": "A. $\\frac{3}{5}$\nB. $\\frac{2}{3}$\nC. $\\frac{3}{4}$\nD. $\\frac{5}{7}$", "choice": "A", "keypoints": "给情况求概率;非典型最值问题", "most_wrong": "B", "human_count": 1644999, "human_acc": 56.5572380287, "source": "2015年国家公务员录用考试《行测》题(省部级)第62题", "difficulty": 5, "formulas": 419, "history": [{"id": 2188278, "material": "", "question": "张三和李四准备进行一个娱乐游戏:将一枚质地均匀的硬币连续抛三次,如果落地后三次都是正面朝上或三次都是反面朝上,则李四就给张三糖果;但如果出现两次正面一次反面或两次反面一次正面,则张三就给李四糖果,且李四要求张三每次给15颗糖果。那么,从长远来看,张三应该要求李四每次至少给多少颗糖果才能考虑参加这个娱乐游戏?", "type": "单选题", "options": "A. 30\nB. 35\nC. 40\nD. 45", "choice": "D", "keypoints": "给情况求概率;非典型最值问题", "most_wrong": "B", "human_count": 511327, "human_acc": 43.0849534642, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第73题", "difficulty": 6, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 4591258, "material": "", "question": "由于传统工艺规模企业少,以小微企业和个体劳动者居多,自媒体正可使之____________。通过直播带动人气,可将观众转化为目标客户,从而带来线上经济的大爆发。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蔚然成风\nB. 推波助澜\nC. 横空出世\nD. 如虎添翼", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 426558, "human_acc": 55.5291425785, "source": "2021下半年省考第三十四季行测模考大赛(深圳卷)第56题", "difficulty": 6, "formulas": 0, "history": [{"id": 5076938, "material": "", "question": "冰上竞技运动中,冰刀的存在让运动员____________。当运动员脚踏冰刀飞速滑过时,冰刀产生的压强作用使得这些微小碎冰像珠子一样被捏爆,释放出来的液态水增加了原本的水膜厚度,使冰变得更滑,从而使穿着冰鞋的运动员可以在冰面上肆意滑行。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 披荆斩棘\nB. 锦上添花\nC. 如虎添翼\nD. 肆无忌惮", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 94576, "human_acc": 91.361444764, "source": "2022下半年省考第一季行测模考大赛(安徽卷)第37题", "difficulty": 3, "formulas": 0}, {"id": 5447444, "material": "", "question": "科学防治疫情全民关注,但与此同时,针对病毒来源和治疗方法的言论纷纭,其中不乏趁机牟利的谣言。这些在朋友圈中披着“科学”外衣频频传播的信息,极易____________,造成恐慌。在此背景下,科学的声音要及时传递,跑到谣言的前面,才能起到去伪存真的效果。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 口耳相传\nB. 众说纷纭\nC. 积沙成塔\nD. 众口铄金", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 254945, "human_acc": 42.4597462198, "source": "2023上半年省考第四季行测模考大赛(四川卷)第16题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 22849, "material": "", "question": "英国剑桥大学专家称,早期人类的大脑比现代人类更大,而且现代人类比早期人类身材矮小10%。这项研究颠覆了此前的理论——现代人类伴随着进化变得更高、更强壮。科学家称,这种人类进化衰减性出现在过去一万年左右,很可能是由于农业的出现导致的。农业耕作出现之后,人类受限于食物种类的减少以及疾病的蔓延,所以出现了进化衰减现象。\n\n以下哪项如果为真,最不能质疑研究人员的假设:", "type": "单选题", "options": "A. 据研究,人类大规模农业耕作出现在5000年前\nB. 一万年前,居住在非洲的人身材和现代人类差不多\nC. 随着农业水平的提高,人类的食物种类远多于一万年前\nD. 早期人类患病没有办法医治,身体残弱者在进化中均遭到淘汰", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "B", "human_count": 386484, "human_acc": 42.7013796173, "source": "2012年山东省公务员录用考试《行测》题第93题", "difficulty": 6, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 2680184, "material": "", "question": "茄子是一种很常见的蔬菜,每逢夏季,更是很多人的心头爱。近日,一则“秋天的老茄子不能吃,吃了会中毒”的消息引起大家的关注,因为老茄子里含有可以致毒的物质龙葵素,也就是茄碱,茄碱中毒后会引起体温升高和反复呕吐而致失水,以及瞳孔放大、怕光、耳鸣、抽搐、呼吸困难、血压下降,极少数人可因呼吸麻痹而死亡。\n\n以下哪项如果为真,最能削弱上述观点?", "type": "单选题", "options": "A. 植物产生龙葵素主要是为了抵抗外界微生物和动物的侵袭,它广泛存在于茄科植物中\nB. 茄碱在高温和酸性环境下可能发生降解或水解,日常烹饪的油温和醋,都可以降低其毒性\nC. 一斤老茄子里的茄碱不超过4毫克,要一次直接服用25克以上的茄碱才能引发不良反应\nD. 茄子颜色越深,含有的“有毒物质”越多,更容易中毒", "choice": "C", "keypoints": "拆桥", "most_wrong": "B", "human_count": 211439, "human_acc": 87.7818188697, "source": "2021年国考第二十一季行测模考大赛(副省级)第109题", "difficulty": 3, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}, {"id": 1324947, "material": "", "question": "有甲、乙两家公司,甲公司售后服务部门接到的产品投诉电话是乙公司的3倍。因此,甲公司产品的质量没有乙公司的好。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙公司的产品操作相对来说更为简单\nB. 甲公司接到电话大多数是咨询电话\nC. 甲公司的咨询电话机数量比乙公司多\nD. 甲公司产品的市场占有率达到$76\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 793211, "human_acc": 70.0645855895, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第58题", "difficulty": 5, "formulas": 83}, {"id": 22459, "material": "", "question": "由于在乐业天坑中最大的天坑——大石围的底部的原始森林中发现了与恐龙同时代的植物桫椤,有人据此推测,大石围应形成于恐龙时代,即6500万年前。\n\n如果下列各项为真,哪项最能反驳上述推测:", "type": "单选题", "options": "A. 桫椤至今仍然存在\nB. 在其他乐业天坑中未发现桫椤\nC. 恐龙无法进入这个极深的天坑\nD. 没有在大石围中发现恐龙化石", "choice": "A", "keypoints": "拆桥", "most_wrong": "D", "human_count": 423565, "human_acc": 53.8413230555, "source": "2012年安徽省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"]]}, {"id": 4456887, "material": "", "question": "我们有着人类文明历史上独一无二的传统文化传承,________很长时间以来遭到忽视,__________曾经很多代人需要从邻国找寻对传统文化的认同。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可 甚至于\nB. 但 以致于\nC. 且 乃至于\nD. 却 以至于", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-因果关系", "most_wrong": "D", "human_count": 9400, "human_acc": 54.4042553191, "source": "2021下半年省考第二十五季行测模考大赛(深圳卷)第61题", "difficulty": 6, "formulas": 0, "history": [{"id": 5422215, "material": "", "question": "在耕读传统中形成的中华民族精神,是把个人自强、家庭自强和民族自强结合在一起的,________“自强”又是与“厚德载物”结合在一起的。________,中华民族________“自强”,________也温良敦厚,爱好和平,反对侵略战争,主张“协和万邦”“以天下为一家”。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 而 所以 如果 那么\nB. 故 因此 不是 而是\nC. 而 因此 虽然 但是\nD. 故 所以 不仅 而且", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-因果关系", "most_wrong": "D", "human_count": 725, "human_acc": 50.7586206897, "source": "2022下半年省考第二十四季行测模考大赛(深圳卷)第64题", "difficulty": 5, "formulas": 0}, {"id": 5759417, "material": "", "question": "有些家长误认为,散瞳会危害孩子的视力,心存顾虑,拒绝给孩子散瞳,________散瞳是药物的临时作用,散瞳后孩子会出现暂时怕光、视近困难等症状,经过一段时间后可自行恢复。________多次散瞳也不会给眼睛带来危害。________家长们大可放心,________经过眼科医生判断,没有禁忌症,散瞳验光,是对眼睛无害的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 然而 即使 尤其 只有\nB. 其实 即使 所以 只要\nC. 如果 那么 可见 总之\nD. 除非 否则 因为 所以", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-因果关系", "most_wrong": "C", "human_count": 184, "human_acc": 96.7391304348, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第67题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 2652784, "material": "", "question": "甲、乙、丙三人完成一项工程,已知甲单独完成需要15天,乙单独完成需要10天,丙单独完成需要16天。如果按照甲、乙、丙的顺序循环工作,当甲完成的总量与乙完成的总量相等时,丙退出。则完成这项工程时甲一共做了(    )天。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "周期问题-其他;给完工时间型", "most_wrong": "C", "human_count": 154669, "human_acc": 45.5792692783, "source": "2021年国考第十八季行测模考大赛(副省级)第69题", "difficulty": 6, "formulas": 0, "history": [{"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 2730470, "material": "", "question": "某喷绘机每次同时单面印刷2张广告布,每印1面需要1分钟,广告布印后需晾干2分钟,现需双面印刷15张广告布,则至少需(    )分钟的印刷时间。", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 19", "choice": "A", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 187738, "human_acc": 24.2492196572, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "工程问题", "给完工时间型"]]}, {"id": 2066894, "material": "", "question": "张军在一次羽毛球训练中不慎拉伤了手臂。要是在平常,这样的伤根本不算什么,但是_____在就要走上比武场的时候,这样的伤,_____让人揪心。\n\n依次填入画横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 偏偏 异常\nB. 恰巧 很是\nC. 刚好 非常\nD. 恰逢 有些", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 63597, "human_acc": 56.1520197494, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 1701912, "material": "", "question": "现在新疆摘棉花都已经请不到人,人都跑到外地去了,这么大面积的棉花田怎么办?美国摘棉花靠的全是机械,以色列摘西红柿也全是_______,但我们的农业基本上都靠人。\n\n填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 智能化\nB. 无人化\nC. 机械化\nD. 自动化", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 549709, "human_acc": 27.7672368471, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第29题", "difficulty": 6, "formulas": 0}, {"id": 21719, "material": "", "question": "英国经济学家哥尔柏说:“税收这种技术,就是拔最多的鹅毛,听最少的鹅叫。”此话不免有几分___________,但却形象地说明,制定税收政策必须寻找一个合适的___________点。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 戏谑 切入\nB. 夸张 落脚\nC. 揶揄 平衡\nD. 幽默 增长", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 624918, "human_acc": 56.7639274273, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第5题", "difficulty": 5, "formulas": 0}, {"id": 4697509, "material": "", "question": "今年以来,我国吸收外资实现了较快增长,成效明显好于预期。但是,当前的国际环境依然________。全球疫情仍在持续,一些外资项目的建设进度逐步放缓,各国引资竞争愈加激烈,跨国投资呈现区域化发展________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 复杂 特色\nB. 严峻 趋势\nC. 多变 格局\nD. 艰难 历程", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 380265, "human_acc": 90.7127923948, "source": "2022上半年省考第五季行测模考大赛(广东乡镇卷)第2题", "difficulty": 3, "formulas": 0}, {"id": 2388256, "material": "", "question": "一般地说,“智慧”不同于“知识”的最大特点在于“智慧”具有原创性。“知识”要求“广”,“智慧”要求“新”。但两者又非绝对________:“智慧”必须有“知识”作基础,反之,只死读书,而无己见,无创意,那就容易成为________,也不算是“智慧”。", "type": "单选题", "options": "A. 对立 学究\nB. 等同 桎梏\nC. 矛盾 古董\nD. 排斥 束缚", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 1492687, "human_acc": 67.2985026332, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第35题", "difficulty": 5, "formulas": 0}, {"id": 4630401, "material": "", "question": "在实际生活中,很多人并不________血型性格说的起源和原理,只是在直观感受上觉得“有些准”。其实无论从色彩、星座、笔迹还是血型看性格,所对应的性格描述都是如此,相信的人只看见说对的部分,却________了说不准的部分。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 清楚 否定\nB. 关心 忽略\nC. 重视 忽视\nD. 理解 屏蔽", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 1202521, "human_acc": 50.0529304686, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3522596, "material": "", "question": "学术研究是一项严谨缜密的科学工作,____________是其研究的前提基础。学术不求真便会没有标准,当真正的学术研究被________、舆论炒作成为风气之时,便意味着学术低谷的到来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 实事求是 放弃\nB. 有的放矢 遗忘\nC. 去伪存真 冷落\nD. 推陈出新 忽视", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 2008719, "human_acc": 77.9176181437, "source": "2021年甘肃公务员录用考试《行测》题(网友回忆版)第28题", "difficulty": 3, "formulas": 0, "history": [{"id": 16703, "material": "", "question": "江汉平原的黄土地,________可以种植任何农作物,不仅出产颇丰,而且水资源丰富,渔业发达,成为长江中下游平原上的鱼米之乡,为鄂菜提供了____________的原材料。", "type": "单选题", "options": "A. 自古 五味俱全\nB. 完全 种类繁多\nC. 由于 独具特色\nD. 几乎 用之不竭", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 297504, "human_acc": 54.6853151554, "source": "2010年湖北省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2693074, "material": "", "question": "将学术论文写作________成一门生意,无疑是学术的悲哀。令人____________的是,一些“客户”因拿到的论文结构混乱、不合要求,竟然试图采取法律手段来“维权”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 异化 啼笑皆非\nB. 演化 匪夷所思\nC. 同化 痛心疾首\nD. 分化 始料未及", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 21857, "human_acc": 72.5991673148, "source": "2020年下半年省考第十三季行测模考大赛(浙江卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 13799, "material": "", "question": "无论当下的生活多么衣食无忧,中国人还是爱假想将来可能遇到的_________,即使这些真正发生的几率接近于零。这只能从中国人_________的传统心理方面进行解释。\n\n从下列选项中选择最恰当的一组填入横线中:", "type": "单选题", "options": "A. 灾难 任劳任怨\nB. 困难 克勤克俭\nC. 变故 未雨绸缪\nD. 麻烦 居安思危", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 338576, "human_acc": 50.5824393932, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第55题", "difficulty": 5, "formulas": 0}, {"id": 21907, "material": "", "question": "“器大者声必闳,志高者意必远。”新闻作品要想成为历史的“宏音”、时代的“响箭”,新闻记者就必须胸怀全局、______、深入______新闻的理性力量,使新闻语言具有一种理性美。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高瞻远瞩 分析\nB. 高屋建瓴 发掘\nC. 见微知著 彰显\nD. 由表及里 剖析", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 380853, "human_acc": 65.5573147645, "source": "2010年国家公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5188131, "material": "", "question": "歌舞片如果只专注于故事的文学创作,歌舞部分就会____________,成为文学的陪衬,最终作品会失去歌舞片的独特魅力。可如果过于专注歌舞的表达,那么影片的故事性又会被________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 相形见绌 限制\nB. 太阿倒持 淡化\nC. 黯然失色 削弱\nD. 乏善可陈 压抑", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 130183, "human_acc": 81.5167879063, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第28题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2376505, "material": "", "question": "科学家认为,未来的仿生机器人并非是要完全模仿人类的所有功能,而是模仿某项功能。这些智能机器人有望成为“超人”,有的具有超强的记忆力,有的具有超强的学习能力,有的听觉功能特强,有的嗅觉功能特强······____________________。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 智能机器将超越人类\nB. 不同功能的智能机器人可以用于不同的领域\nC. 但它并不具备人类的情感,也不具备人脑的灵活性\nD. 人类受限于缓慢的生物学进化速度,无法与之竞争和对抗", "choice": "B", "keypoints": "结尾", "most_wrong": "C", "human_count": 1829313, "human_acc": 90.6983113333, "source": "2019年420联考《行测》题(黑龙江省直卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 5291983, "material": "", "question": "某项工程,若由甲、乙两队共同施工,需要10天完成,工时费共计4万元。若甲队单独施工6天后,由乙队接着单独施工16天也可完成,工时费共计3.4万元。该工程要求甲、乙两队13天内完成,则工时费最少为多少万元?", "type": "单选题", "options": "A. 4.5\nB. 3.1\nC. 3.5\nD. 3.7", "choice": "D", "keypoints": "给效率比例型;统筹规划问题", "most_wrong": "C", "human_count": 196571, "human_acc": 21.9864578193, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0, "history": [{"id": 4740624, "material": "", "question": "电子厂接到一批订单,交由甲、乙两个车间负责,每个产品需A、B两道工序。已知甲、乙加工A工序的效率分别为10个/小时、15个/小时;B工序的效率分别为30个/小时、42个/小时。问两个车间合作每天最多可加工多少个成品?(每天工作8小时)", "type": "单选题", "options": "A. 150\nB. 130\nC. 180\nD. 160", "choice": "A", "keypoints": "给效率比例型;统筹规划问题", "most_wrong": "C", "human_count": 22639, "human_acc": 15.1287601042, "source": "2022上半年省考第八季行测模考大赛(浙江卷)第72题", "difficulty": 7, "formulas": 0}, {"id": 2145062, "material": "", "question": "某宠物美容中心的宠物美容业务需要经过三道工序,第一道工序每名员工每天可为15只宠物进行理毛,第二道工序每名员工每天可为10只宠物进行清洗,第三道工序每名员工每天可为12只宠物进行修饰造型。要使宠物美容中心人工效率最高、顾客等待时间最少,则三道工序至少需要(    )名员工。", "type": "单选题", "options": "A. 15\nB. 20\nC. 30\nD. 60", "choice": "A", "keypoints": "给效率比例型;统筹规划问题", "most_wrong": "D", "human_count": 278205, "human_acc": 38.5438795133, "source": "2015年深圳市公务员录用考试《行测》题第55题", "difficulty": 6, "formulas": 0}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给效率比例型"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 2068084, "material": "", "question": "将2个棱长为30厘米的正方体木块的六面分别全涂成黑色后,都锯成棱长为10厘米的小正方体,问从这些小正方体中随机抽取出多少个,才能保证一定能够在取出的小立方体中挑出8个,拼成外表面全为黑色的,棱长为20厘米的正方体?", "type": "单选题", "options": "A. 27\nB. 36\nC. 40\nD. 46", "choice": "D", "keypoints": "最不利构造;立体几何", "most_wrong": "B", "human_count": 19966, "human_acc": 15.3210457778, "source": "2015年甘肃省公务员录用考试《行测》题第65题", "difficulty": 6, "formulas": 0, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 5438714, "material": "", "question": "小麦赤霉病是一种世界性的小麦病害,________影响小麦的产量,________破坏小麦的品质。只有培育抗病品种,才能从源头上消除这一长期威胁我国粮食安全的隐患。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 既 更\nB. 不仅 也\nC. 虽然 但\nD. 或 或", "choice": "A", "keypoints": "词的辨析-程度轻重", "most_wrong": "B", "human_count": 38994, "human_acc": 36.7389854849, "source": "2023上半年省考第三季行测模考大赛(广东县级卷)第5题", "difficulty": 7, "formulas": 0, "history": [{"id": 5077480, "material": "", "question": "在文旅融合、科技赋能的背景下,文旅生活和消费体验将随着“文旅+”的新文旅生态圈拓展发生诸多变化,新型文旅时代下,对消费者来说,文旅体验________是游山玩水,________是变成了一种生活方式和寄托美好的日常需求。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 虽然 但\nB. 不仅 更\nC. 即使 也\nD. 假如 则", "choice": "B", "keypoints": "词的辨析-程度轻重", "most_wrong": "A", "human_count": 5820, "human_acc": 98.0412371134, "source": "2022下半年省考第一季行测模考大赛(广东乡镇卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 249597, "material": "", "question": "他过多地使用安眠药,实在已经达到了________的地步,必须想办法制止他的行为。填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 滥用\nB. 适用\nC. 胡用\nD. 使用", "choice": "A", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "C", "human_count": 19908, "human_acc": 97.619047619, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第19题", "difficulty": 5, "formulas": 0}, {"id": 3477, "material": "", "question": "俄罗斯近年来数次切断对邻国的天然气供应,在欧盟国家引起不小的______,认为欧盟的能源安全随时可能要受到威胁。", "type": "单选题", "options": "A. 震动\nB. 震惊\nC. 恐惧\nD. 麻烦", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 94772, "human_acc": 55.5280040518, "source": "2008年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"]]}, {"id": 2742355, "material": "", "question": "一本书每页的每一面都有页码,页码1出现在右手页,且最后一页的页码为242。己知该书中有1页缺失,缺失页不是第一页也不是最后一页,且剩余部分的页码之和正好是缺失页两面页码之和的整数倍。问满足条件的缺失页有多少种不同的可能性?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "A", "keypoints": "公倍数与公约数问题;数列问题", "most_wrong": "B", "human_count": 284366, "human_acc": 13.4119409493, "source": "2021年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 6, "formulas": 0, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 4801487, "material": "", "question": "一个数有6个约数,其最小的3个约数之和为11,满足条件的所有数之和是多少?", "type": "单选题", "options": "A. 210\nB. 343\nC. 798\nD. 840", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 1577, "human_acc": 9.8287888396, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "数列问题"]]}, {"id": 2456427, "material": "", "question": "台风中心自A地出发,以$50km/h$的速度向东偏北$30^{\\circ}$方向移动,距台风中心$30km$范围内的地区均受台风影响。城市B在A的正东方向$60km$处,则城市B受台风影响持续的时间为:", "type": "单选题", "options": "A. 0.8h\nB. 1h\nC. 1.5h\nD. 1.6h", "choice": "A", "keypoints": "平面几何;行程问题-其他", "most_wrong": "C", "human_count": 36332, "human_acc": 25.79268964, "source": "安徽省2020年面向全国重点高校定向招录选调生《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 4, "history": [{"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 7325, "material": "", "question": "一个四边形去掉一个角,还剩几个角?下列不可能的是:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "D", "keypoints": "平面几何", "most_wrong": "B", "human_count": 18944, "human_acc": 65.5563766892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 2256406, "material": "", "question": "一个矩形的周长为100,它的面积可能是多少?", "type": "单选题", "options": "A. 600\nB. 650\nC. 700\nD. 750", "choice": "A", "keypoints": "平面几何", "most_wrong": "B", "human_count": 24813, "human_acc": 71.4544795067, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 2717437, "material": "", "question": "电影是集图像、声音、文字等多种传播符号于一体的媒介产品,能够充分调动受众感官与思维,具有得天独厚的传播效果。正因看重电影这一优势,美国军方与电影市场通力合作,通过潜移默化的文化________,为军队形象塑造、征兵动员创造良好的舆论环境,借此鼓励民众参军入伍。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 沾染\nB. 熏陶\nC. 渲染\nD. 洗礼", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 67336, "human_acc": 73.4569918023, "source": "2020年下半年省考第十五季行测模考大赛(云南卷)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 4654238, "material": "", "question": "旅游活动的产生,源自于人类的好奇心。旅游需求的满足是一种发生在旅游过程中的综合性消费活动。这种基于人类好奇心的旅游需求________到某种事物身上,这种事物就具有旅游产品的性质。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 转移\nB. 转嫁\nC. 寄托\nD. 附着", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 67171, "human_acc": 26.9297762427, "source": "2021下半年省考第三十八季行测模考大赛(河南卷)第1题", "difficulty": 7, "formulas": 0}, {"id": 4934167, "material": "", "question": "资本、影视公司、平台以及很多从业人员抱着“流量至上”的观点,流量被视为评判文艺作品质量好坏和艺人影响力大小的唯一标准。一些流量明星演技________却风光无二,而实力派演员演技精湛却不受欢迎,由此形成了劣币驱逐良币的局面。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 庸俗\nB. 浮动\nC. 通俗\nD. 拙劣", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 178938, "human_acc": 96.7111513485, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 5212373, "material": "", "question": "农村生产生活同城市生产生活是完全不同的,城市社区执行的疫情防控措施,________到农村并不一定“有疗效”。农村社区特点在于人口密度较低、人员流动较少,这本身就是阻断疫情的天然________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 沿袭 壁垒\nB. 复制 天堑\nC. 拼接 屏风\nD. 照搬 屏障", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 18130, "human_acc": 97.3579702151, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 5333612, "material": "", "question": "小小茶产业,致富大文章。湄潭县以“围绕茶、做足茶、突破茶”为导向,将茶品质视为“__________”,注重从品牌打造上下功夫,创建了集种植、加工、销售为一体的全产业链,不仅实现了茶产业________一方百姓致富,而且将茶产业的生态效益展现了出来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 试金石 助力\nB. 保护伞 引领\nC. 定盘星 培育\nD. 压舱石 带动", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 241593, "human_acc": 90.4984829858, "source": "2022下半年省考第十五季行测模考大赛(浙江C卷)第30题", "difficulty": 3, "formulas": 0}, {"id": 2654941, "material": "", "question": "在流行乐熏陶下长大的我们,习惯了音乐就该有“预设”,预设它是首悲伤的情歌、预设它是首快旋律的洗脑歌等等。但是古典音乐没有这么________的预设,在当时的西方人看来,古典音乐就像是一座宏大、________的建筑,它是需要被精心设计的,既要符合逻辑,又要层叠交错,就算说古典音乐是一场高智商、烧脑的娱乐活动,都不为过。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浅陋 精美\nB. 浅陋 优美\nC. 浅显 精妙\nD. 浅显 巧妙", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 27880, "human_acc": 69.806312769, "source": "2020年下半年省考第八季行测模考大赛(陕西卷)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5337469, "material": "", "question": "一次演讲比赛有8人参加,抽签决定参赛顺序,问参赛选手甲、乙、丙中至少一人在前三位参赛且至少一人在后三位参赛的概率为多少?", "type": "单选题", "options": "A. $\\frac{4}{7}$\nB. $\\frac{3}{4}$\nC. $\\frac{27}{28}$\nD. $\\frac{9}{14}$", "choice": "D", "keypoints": "给情况求概率;基础排列组合", "most_wrong": "C", "human_count": 53848, "human_acc": 18.2903729015, "source": "2022下半年省考第十五季行测模考大赛(浙江B卷)第36题", "difficulty": 7, "formulas": 376, "history": [{"id": 6573, "material": "", "question": "某商店搞店庆,购物满200元可以抽奖一次。一个袋中装有编号为0到9的十个完全相同的球。满足抽奖条件的顾客在袋中摸球,一共摸两次,每次摸出一个球(球放回),如果第一次摸出球的数字比第二次大,则可获奖,则某抽奖顾客获奖概率是:", "type": "单选题", "options": "A. 5%\nB. 25%\nC. 45%\nD. 85%", "choice": "C", "keypoints": "给情况求概率;基础排列组合", "most_wrong": "B", "human_count": 20110, "human_acc": 66.7628045748, "source": "2009年江苏省公务员录用考试《行测》题(B类)第79题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 2719380, "material": "", "question": "某企业选拔170多名优秀人才平均分配为7组参加培训。在选拔出的人才中,党员人数比非党员多3倍。接受培训的党员中的$10\\%$在培训结束后被随机派往甲单位等12个基层单位进一步锻炼。已知每个基层单位至少分配1人,问甲单位分配人数多于1的概率在以下哪个范围内?", "type": "单选题", "options": "A. 不到$14\\%$\nB. $14\\%\\sim17\\%$之间\nC. $17\\%\\sim20\\%$之间\nD. 超过$20\\%$", "choice": "B", "keypoints": "同素分堆问题;给情况求概率", "most_wrong": "C", "human_count": 1572030, "human_acc": 50.1749330484, "source": "2021年国家公务员录用考试《行测》题(副省级网友回忆版)第71题", "difficulty": 5, "formulas": 376, "history": [{"id": 2724952, "material": "", "question": "某单位新采购了10台相同的电脑,准备分给甲、乙、丙、丁、戊五个部门,每个部门至少一台,问甲部门恰好分得3台的概率为多少?", "type": "单选题", "options": "A. $\\frac{4}{9}$\nB. $\\frac{5}{18}$\nC. $\\frac{10}{63}$\nD. $\\frac{5}{63}$", "choice": "C", "keypoints": "同素分堆问题;给情况求概率", "most_wrong": "B", "human_count": 147892, "human_acc": 46.4832445298, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第72题", "difficulty": 6, "formulas": 356}, {"id": 2616156, "material": "", "question": "物业派出小王、小曾、小郭三名工作人员负责修剪小区内的6棵树,每名工作人员至少修剪1棵(只考虑修剪的棵数),问小王至少修剪3棵的概率为:", "type": "单选题", "options": "A. $\\frac{3}{10}$\nB. $\\frac{3}{7}$\nC. $\\frac{1}{4}$\nD. $\\frac{3}{5}$", "choice": "A", "keypoints": "同素分堆问题;给情况求概率", "most_wrong": "C", "human_count": 732637, "human_acc": 33.4018074435, "source": "2020年青海省公务员录用考试《行测》试题(B卷)(网友回忆版)第74题", "difficulty": 4, "formulas": 418}, {"id": 5411157, "material": "", "question": "物业收到总部派发的10批相同的新年物资,需要分到幸福家园一期、二期、三期这3个小区,要求每个小区至少分到2批新年物资,则幸福家园一期至少分到一半新年物资的概率为:", "type": "单选题", "options": "A. $\\frac{3}{8}$\nB. $\\frac{3}{10}$\nC. $\\frac{2}{15}$\nD. $\\frac{1}{5}$", "choice": "D", "keypoints": "同素分堆问题;给情况求概率", "most_wrong": "B", "human_count": 284321, "human_acc": 15.3854270349, "source": "2022下半年省考第二十二季行测模考大赛(北京卷)第75题", "difficulty": 7, "formulas": 374}, {"id": 5550327, "material": "", "question": "将20台相同的电脑分给10个不同的部门,其中急需电脑的6个部门每个部门至少分2台电脑,剩下的4个部门每个部门至少分1台电脑。问有一个部门分到5台电脑的概率为:", "type": "单选题", "options": "A. $\\frac{54}{715}$\nB. $\\frac{58}{715}$\nC. $\\frac{54}{1001}$\nD. $\\frac{58}{1001}$", "choice": "B", "keypoints": "同素分堆问题;给情况求概率", "most_wrong": "C", "human_count": 7778, "human_acc": 42.2987914631, "source": "2023上半年省考第十三季行测模考大赛(浙江B卷)第47题", "difficulty": 7, "formulas": 419}, {"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 5317373, "material": "", "question": "面对网络信息,大学生不应____________,而要学会鉴别,善用“望远镜”和“显微镜”。善用“望远镜”,指的是不能把目光局限在某条网络信息的片段和________上,要用正确的立场观点方法为自己勾画看待问题的大视野。善用“显微镜”,就是要练就透过现象看本质的火眼金睛,不为____________、似是而非的观点所误导,要去伪存真、去粗存精。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一概而论 细节 不伦不类\nB. 奉为圭臬 末端 扞格不通\nC. 等量齐观 轮廓 含糊不清\nD. 囫囵吞枣 枝节 模棱两可", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 216739, "human_acc": 71.3083478285, "source": "2022下半年省考第十四季行测模考大赛(江苏C卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 2255947, "material": "", "question": "毛泽东可以说是语言表达的大师,通过他的幽默气质,把复杂、紧张、刻板的问题简单化、_______化,妙趣横生,令人________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 条理 前仰后翻\nB. 趣味 忍俊不禁\nC. 条理 捧腹大笑\nD. 趣味 啼笑皆非", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 4846, "human_acc": 87.1027651671, "source": "2014年江西省法检系统招录考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 5300116, "material": "", "question": "守拙是一种低调行事的处世方式。守拙反对一味高调、____________或者为满足个人欲望的恣意妄为,尤其是在实力不济时,更应养精蓄锐,待厚积而薄发。当然守拙并非过分谦虚,其主张也是一种进取之道,只是不________,脚踏实地,臻至成功。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 兴师动众 轻浮\nB. 滥竽充数 张扬\nC. 哗众取宠 冒进\nD. 喧宾夺主 急躁", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 161030, "human_acc": 71.9809973297, "source": "2022下半年省考第十二季行测模考大赛(浙江C卷)第29题", "difficulty": 4, "formulas": 0}, {"id": 2042078, "material": "", "question": "媒体要做好规范和专业的科学传播并不容易。媒体既要保持代替社会对科学进行监督的职能,又有一种本能的____________、代言弱势群体的道义感。作为媒体人有道义感当然是好事,但在科学问题上___________因为这种正义感而被处于弱势的反主流科学一方利用。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 匡扶正义 切忌\nB. 扶危济困 谨记\nC. 劫富济贫 谨防\nD. 扶正祛邪 切莫", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 1331936, "human_acc": 67.3104413425, "source": "2017年江苏省公务员录用考试《行测》题(A类)第44题", "difficulty": 5, "formulas": 0}, {"id": 4344730, "material": "", "question": "纵观当下批评界,越来越多的人懂得了投机取巧,面对____________的作品,采用的腔调大致如一,甚至形成了批评的一套程式,文章越写越顺溜,却愈发面目可憎,看不到作者内心搏斗的痕迹,看不到________或是戚然,批评变成了一种远离情感温度的话语繁殖,离生命终结也不远了。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 千差万别 欢欣\nB. 各有千秋 喜悦\nC. 百花齐放 忧虑\nD. 精妙绝伦 喟叹", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 145874, "human_acc": 66.7109971619, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 5407782, "material": "", "question": "中国儿童文学的现实主义传统来之不易,是现代文学先驱们____________开辟出来的,又经战争年代的作家们在枪林弹雨中的坚守、丰富和巩固。置身在这个伟大的时代,我们更应努力让儿童文学走出________的“乌托邦”,奋力拥抱现实生活,让童年生命真正参与到磅礴的时代和重大主题的思索之中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 栉风沐雨 美好\nB. 披坚执锐 理想\nC. 筚路蓝缕 虚幻\nD. 持之以恒 荒诞", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 237016, "human_acc": 68.9919667871, "source": "2023年国考第四十八季行测模考大赛(副省级)第30题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5368050, "material": "", "question": "宣传思想工作者想要练脑力,要高度重视知识的不断积累,注意思想的细小变化,不能____________,等到知识和认识水平积累到一定程度,自然而然就会发生质的变化,进而对事物有一个全新的认识。同时,要克服思考的消极因素,尤其对“____________”式的思考要防微杜渐,促使自己连续思考、深入思考,进而达到深思熟虑的阶段。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 揠苗助长 掩耳盗铃\nB. 急于求成 蜻蜓点水\nC. 大而化之 纸上谈兵\nD. 投机取巧 囫囵吞枣", "choice": "B", "keypoints": "关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 275099, "human_acc": 89.3347485814, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第67题", "difficulty": 3, "formulas": 0, "history": [{"id": 20033, "material": "", "question": "大山因为有脊梁,所以挺拔俊美;人因为有脊梁,所以______;新闻因为有了脊梁,才能出淤泥而不染,才能______、稳如泰山。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 英姿飒爽 铁面无私\nB. 精神抖擞 克己奉公\nC. 威风凛凛 忠于职守\nD. 顶天立地 刚正不阿", "choice": "D", "keypoints": "关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 620795, "human_acc": 78.0333282323, "source": "2012年江西省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 2261974, "material": "", "question": "浩瀚而宝贵的历史知识,既是人类总结昨天的(    ),也是人类把握今天,创造明天的向导。", "type": "单选题", "options": "A. 记录\nB. 经历\nC. 方式\nD. 回忆", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 108761, "human_acc": 54.5416095843, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第25题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2273178, "material": "", "question": "甲乙两人分别录字数相同的稿件,甲的打字速度是乙的打字速度的2.5倍,乙从早上8:00上班就开始录入,而甲需要看A设备,从10:00开始录。甲每录半小时就要看A设备半小时,问甲何时能与乙同时完成?", "type": "单选题", "options": "A. 11:30\nB. 13:10\nC. 15:30\nD. 17:10", "choice": "C", "keypoints": "周期问题-其他;给效率比例型", "most_wrong": "D", "human_count": 693, "human_acc": 59.1630591631, "source": "2014年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第64题", "difficulty": 5, "formulas": 0, "history": [{"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2730470, "material": "", "question": "某喷绘机每次同时单面印刷2张广告布,每印1面需要1分钟,广告布印后需晾干2分钟,现需双面印刷15张广告布,则至少需(    )分钟的印刷时间。", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 19", "choice": "A", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 187738, "human_acc": 24.2492196572, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "工程问题", "给效率比例型"]]}, {"id": 2028536, "material": "", "question": "有研究者认为人类大脑处理高级数学问题的能力与人类使用语言的能力息息相关,语言中的抽象化能力是处理高级数学问题的________,但是,不少数学家和物理学家________这种观点的可靠性,爱因斯坦就曾宣称,“词汇和语言,不管是写下来的还是说出口的,对我的思考过程似乎都没什么用处”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 前提 相信\nB. 关键 否认\nC. 条件 赞同\nD. 起点 质疑", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 2981023, "human_acc": 41.0459094076, "source": "2017年国家公务员录用考试《行测》题(地市级)第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 19039, "material": "", "question": "两家合作公司都不是电脑生产商,这使PC行业原有的模式______。以往,电脑厂商______的销售渠道往往成为软件公司追逐的推广平台,而现在,他们希望手里的资源能吸引电脑厂商主动找上门来合作。", "type": "单选题", "options": "A. 突破 独有\nB. 改变 成熟\nC. 颠覆 广泛\nD. 打破 特殊", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 138411, "human_acc": 29.1732593508, "source": "2011年内蒙古自治区公务员录用考试《行测》题第30题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5487481, "material": "", "question": "学校运动会设置了跑步、投掷、跳跃三类项目,共有46人获奖。其中获得跑步类奖项的有27人,获得投掷类奖项的有19人,获得跳跃类奖项的有21人,获得两类奖项的有11人。现计划从获得三类奖项的学生中选出3人参加区运动会,共有多少种不同的选择方式?", "type": "单选题", "options": "A. 10\nB. 60\nC. 120\nD. 150", "choice": "A", "keypoints": "基础排列组合;三集合", "most_wrong": "C", "human_count": 27860, "human_acc": 24.2175161522, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第52题", "difficulty": 7, "formulas": 0, "history": [{"id": 2773615, "material": "", "question": "学校文艺部有40名成员,其中14人会拉二胡,19人会弹钢琴,22人会弹吉他,12人会其中两种乐器,7人任何一种乐器都不会。现要从二胡、钢琴、吉他三种乐器都会的成员中,选出2人分别参加两个不同的比赛,共有多少种参加方式?", "type": "单选题", "options": "A. 10\nB. 90\nC. 40\nD. 20", "choice": "D", "keypoints": "基础排列组合;三集合", "most_wrong": "C", "human_count": 151369, "human_acc": 16.728656462, "source": "2021上半年省考第六季行测模考大赛(广东卷)第38题", "difficulty": 7, "formulas": 0}, {"id": 5346029, "material": "", "question": "某集团财务部共有28名员工,其中21人具备中级会计师证书,14人具备中级税务师证书,8人具备注册会计师证书,这三种证书都具备的有4人,任何一种证书都不具备的有2人。现计划从财务部抽调5人前往分公司指导工作,要求所抽调人员均至少具备上述证书中的两种,问符合要求的不同抽调方式共有多少种?", "type": "单选题", "options": "A. 1287\nB. 3003\nC. 6188\nD. 154440", "choice": "A", "keypoints": "基础排列组合;三集合", "most_wrong": "C", "human_count": 50944, "human_acc": 11.8659704774, "source": "2022下半年省考第十六季行测模考大赛(北京卷)第85题", "difficulty": 7, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "基础排列组合"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 5127496, "material": "", "question": "某校举行运动会时,按照“4个初一学生、3个初二学生、2个初三学生、4个初一学生、3个初二学生······”的顺序依次站位,排成梯形形状队列进行舞蹈表演。已知第一排有5人,此后每排均比前一排多3人,问第十排中的初二学生有几人?", "type": "单选题", "options": "A. 10\nB. 9\nC. 8\nD. 7", "choice": "A", "keypoints": "周期余数问题;数列问题", "most_wrong": "C", "human_count": 20715, "human_acc": 19.6765628771, "source": "2022下半年省考第三季行测模考大赛(安徽卷)第32题", "difficulty": 7, "formulas": 0, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 49171, "material": "", "question": "2013年是中国农历蛇年。在本世纪余下年份里,农历是蛇年的年份还有:", "type": "单选题", "options": "A. 5个\nB. 6个\nC. 7个\nD. 8个", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 397220, "human_acc": 75.9863551684, "source": "2013年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "数列问题"]]}, {"id": 1702316, "material": "", "question": "某学校要举行一次会议,为了让参会人员正确到达开会地点,需要在途经路上的20棵树上放置3个指示牌,假如树的选择是随机的,那么,3个指示牌等距排列(即相邻两个指示牌间隔的树的数目相同)的概率为:", "type": "单选题", "options": "A. 小于5%\nB. 大于20%\nC. 10%到20%\nD. 5%到10%", "choice": "D", "keypoints": "数列问题;给情况求概率", "most_wrong": "C", "human_count": 198265, "human_acc": 27.1207727032, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第57题", "difficulty": 7, "formulas": 0, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 5035765, "material": "", "question": "某书店有厚度2厘米的科普读物4种,厚度3厘米的小说3种,厚度4厘米的法律书2种,以及厚度5厘米的工具书3种。现在该书店选择2~3本不同的书组成图书盲盒进行促销,盲盒内图书厚度一共10厘米,则一共有多少种不同组合的盲盒?", "type": "单选题", "options": "A. 49\nB. 36\nC. 26\nD. 75", "choice": "A", "keypoints": "统筹规划问题;基础排列组合", "most_wrong": "B", "human_count": 343219, "human_acc": 21.4894863047, "source": "2022上半年省考第二十二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0, "history": [{"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 567163, "material": "", "question": "一架天平,只有5克和30克的砝码各一个,要将300克的食盐平均分成三份,最少需要用天平称几次:", "type": "单选题", "options": "A. 6次\nB. 5次\nC. 4次\nD. 3次", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 203660, "human_acc": 24.8885397231, "source": "2014年河北省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 21109, "material": "", "question": "有一架天平,只有5克和30克的砝码各一个。现在要用这架天平把300克味精分成3等份,那么至少需要称多少次:", "type": "单选题", "options": "A. 3次\nB. 4次\nC. 5次\nD. 6次", "choice": "A", "keypoints": "统筹规划问题", "most_wrong": "B", "human_count": 238120, "human_acc": 23.153452041, "source": "2012年浙江省公务员录用考试《行测》题第59题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "统筹规划问题"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 2795735, "material": "", "question": "村庄B在村庄A的东偏北$30^{\\circ}$方向,两个村庄相距40千米,此时村庄A的正南方向20千米处,有一辆汽车正以30千米/小时的速度匀速向东行驶,问多少小时后,汽车与村庄A、B间的距离之和最短?", "type": "单选题", "options": "A. $\\frac{1}{3}\\sqrt{3}$\nB. $\\frac{4}{9}\\sqrt{3}$\nC. $\\frac{4}{3}\\sqrt{3}$\nD. $\\frac{2}{9}\\sqrt{3}$", "choice": "D", "keypoints": "普通行程;平面几何;非典型最值问题", "most_wrong": "C", "human_count": 52962, "human_acc": 12.7128884861, "source": "2022年国考第一季行测模考大赛(副省级)第71题", "difficulty": 7, "formulas": 419, "history": [{"id": 2819513, "material": "", "question": "刘女士通过手机定位功能寻找走失的小狗,发现小狗从家往正北方向走了600米,然后向西走了1200米,又折返向南走了100米。若此后小狗的位置保持不动,刘女士从家出发以80米/分钟的速度去寻找小狗,最快需要(    )分钟。", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 18", "choice": "C", "keypoints": "普通行程;平面几何;非典型最值问题", "most_wrong": "B", "human_count": 276633, "human_acc": 60.5921925439, "source": "2022年国考第二季行测模考大赛(副省级)第64题", "difficulty": 5, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5509454, "material": "", "question": "AI(人工智能)的技术内核虽然________,但“模拟人类智慧”这一理念本身却并不________。因此,该理念就很容易被一些________的思想先驱者转化为一些艺术形象,由此形成对于技术形态本身的“抢跑”态势。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深奥 超前 敏感\nB. 先进 抽象 前卫\nC. 艰深 晦涩 敏锐\nD. 高端 艰涩 睿智", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 1251038, "human_acc": 39.3553193428, "source": "2023年青海省公务员录用考试《行测》题(网友回忆版)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 2724039, "material": "", "question": "西方文明起源为“__________”型态,然而中华文明起源表现为“连续性”型态。中华文明起源了,但原始氏族社会的诸多因素并没有因文明的出现而消亡,而是获得更具体、更系统的发展。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 分散式\nB. 断裂式\nC. 跳跃式\nD. 断崖式", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 87291, "human_acc": 70.453998694, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 2051582, "material": "", "question": "油菜花遍地的金黄色,虽然没有红色的浓艳,没有绿色的_____,但却开出了一种_____的风格,花香之中让我嗅出了亲切的乡土气息,倍加增添了一种______的思念之情。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 隆重 朴素 强烈\nB. 庄重 淳朴 热烈\nC. 沉重 娇艳 深沉\nD. 厚重 朴实 浓郁", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 904427, "human_acc": 60.8563211846, "source": "2017年422联考《行测》题(陕西卷)第47题", "difficulty": 5, "formulas": 0}, {"id": 4753509, "material": "", "question": "旗袍作为20世纪初的产物,通过其自身特殊的形制完美表达了民国独立女性的修养以及与时代更迭相________的审美气质。这气质中虽有“西风东渐”而来的思想,但从未________中国传统服饰几千年来所延续的“气韵美”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 类似 摆脱\nB. 符合 扬弃\nC. 契合 脱离\nD. 贴合 取代", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 317847, "human_acc": 88.5215213609, "source": "2022上半年省考第九季行测模考大赛(四川卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 21657, "material": "", "question": "越来越多的人表示愿意购买医疗保险产品,但医疗保险产品的销售情况并没有与需求保持________,因为消费者并不单是从开支管理角度来考虑,更多的是受到情感的________,他们真正寻求的是一种心理安定,这往往是销售者所________的。", "type": "单选题", "options": "A. 一致 左右 关注\nB. 协调 干扰 利用\nC. 同步 驱动 忽视\nD. 统一 暗示 追求", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 261378, "human_acc": 74.6616012059, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第9题", "difficulty": 5, "formulas": 0}, {"id": 4823631, "material": "", "question": "信息鸿沟难以消除,但可以通过具有人情味的服务意识来尽可能________。在疫情防控常态化的今天,便捷与高效也应当惠及到本就在信息化时代处于弱势地位的老年人。这既是对现存防疫工作难题的积极解决,也是对一座城市管理人性化的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 跨越 延伸\nB. 消弭 彰显\nC. 打通 体现\nD. 弥合 展现", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 368891, "human_acc": 29.0676649742, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第4题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5330356, "material": "", "question": "读什么书、怎么读书,折射的是一个国家、一个民族的精神状态与发展潜力。一些人读书瞄向“谋生之书”“成功之书”,冷落了经典和“养心之书”,不可避免地陷入急功近利的________与短视之中。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 低俗\nB. 片面\nC. 勇决\nD. 浮躁", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 19764, "human_acc": 76.7860756932, "source": "2022下半年省考第十五季行测模考大赛(浙江A卷)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2448507, "material": "", "question": "当今世界,处于百年未有之大变局。世界多极化、经济全球化________________,人类的命运紧密相连,各国利益深度融合。但同时,各种挑战也日益严峻。变局之中,要合作还是要对立,要开放还是要封闭,要互利共赢还是要________________,人类发展处在何去何从的十字路口。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 有目共睹 各行其是\nB. 高歌猛进 独善其身\nC. 方兴未艾 两败俱伤\nD. 势不可挡 以邻为壑", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 3650883, "human_acc": 43.3265870202, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第34题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255888, "material": "", "question": "“我胸怀坦荡,光明磊落,事情做得好会________,做错了从来不扭扭捏捏、________,无非认个错,赔个不是”。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自我放纵 闻过则喜\nB. 飞扬跋扈 文过则喜\nC. 自鸣得意 文过饰非\nD. 大鸣大放 闻过饰非", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 16612, "human_acc": 61.6421863713, "source": "2016年江西省法检系统招录考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 754225, "material": "", "question": "许多人文社科类著作因对人的处境有着真切的关心,对人的命运有深刻的认识,对人的内心经验有___________的体谅,并精骛八极、_____________ ,因此都应成为我们阅读的重点。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 感同身受 鞭辟入里\nB. 设身处地 深入浅出\nC. 情真意切 入木三分\nD. 细致入微 入情入理", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 1364128, "human_acc": 60.5004808933, "source": "2014年山东省公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2822966, "material": "", "question": "数字化通过影像和数据将传统技艺恒久流传,不同于以往的修修补补,建设“数字档案”,那些不可移动的壁画越过山川海洋,抵达世界任何角落。它可以是一场新奇的遇见,也可以是拿来反复“咀嚼”的参考依据,发挥现代科技力量,不仅为人们提供了解历史的全新角度,更让传统文化风貌____________,“容颜永驻”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 老而弥坚\nB. 历久弥新\nC. 卓尔不群\nD. 日渐式微", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 244860, "human_acc": 92.4818263498, "source": "2021上半年省考第十季行测模考大赛(重庆卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 2144536, "material": "", "question": "传播技术是把双刃剑。如果说真实信息的传递早已能做到________________,不实信息特别是谣言的扩散也________________地便利。从这个意义出发,我们只有用权威消息战胜小道消息,谣言才会无处藏身,真实才能充盈每个人的生活空间。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无孔不入 出人意料\nB. 畅通无阻 左右逢源\nC. 无所不在 始料未及\nD. 无远弗届 前所未有", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 1108837, "human_acc": 58.865640306, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第31题", "difficulty": 5, "formulas": 0}, {"id": 4997687, "material": "", "question": "事实胜于雄辩,再精巧的谎言在亘古未有的历史功绩面前也会____________。当前,仍有一小撮分子炮制关于西藏的谣言,频频打出所谓的“西藏牌”。他们对西藏社会面貌____________、西藏人民生活蒸蒸日上的真相讳莫如深,反而不断制造事端,危害安定团结的大好局面。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 拨云见日 焕然一新\nB. 迎刃而解 与时俱进\nC. 不堪一击 势如破竹\nD. 不攻自破 日新月异", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 207488, "human_acc": 92.199066934, "source": "2022上半年省考第二十季行测模考大赛(陕西卷)第28题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3606598, "material": "", "question": "保安公司每天安排一名保安在单位站岗,已知A保安站岗一天可得60元补贴,B保安站岗一天可得50元补贴,C保安站岗一天可得20元补贴。若同一名保安不能连续站岗两天,则安排保安站岗11天共得到400元补贴的排班方式有多少种?", "type": "单选题", "options": "A. 120\nB. 60\nC. 11\nD. 10", "choice": "C", "keypoints": "不定方程组;基础排列组合", "most_wrong": "B", "human_count": 72678, "human_acc": 42.9304603869, "source": "2021下半年省考第六季行测模考大赛(广东县级卷)第36题", "difficulty": 6, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 2262010, "material": "", "question": "一项考试共有35道试题,答对一题得2分,答错一题扣1分,不答则不得分。一名考生一共得了47分,那么,他最多答对(    )题。", "type": "单选题", "options": "A. 26\nB. 27\nC. 29\nD. 30", "choice": "B", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 130292, "human_acc": 79.9389064563, "source": "广东省2019年选调优秀大学毕业生笔试 思维能力测验(网友回忆版)第59题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "排列组合问题", "基础排列组合"]]}, {"id": 5352986, "material": "", "question": "古代中国人认为“家国同构”,所以《孟子》说“天下之本在国,国之本在家”。现代社会,随着核心家庭的大量出现,以及国家治理体系的日益完善,家和国的含义,都发生了重大的变化,但家国情怀却____________。如何在家庭观念受到外来文化影响越来越大,家国关系日益扁平的当下,________既守正又创新的新时代家国关系,家庭教育指导就成为其中的关键一环。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 历久弥新 维系\nB. 亘古不变 弘扬\nC. 慎终如始 塑造\nD. 一以贯之 重构", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 351193, "human_acc": 24.7547644742, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第27题", "difficulty": 7, "formulas": 0, "history": [{"id": 2050792, "material": "", "question": "故事拥有可以直抵人心的柔性力量。一个故事对_______知识世界的帮助可能是微乎其微,对心灵世界的成长却可能是________________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 构造 无足轻重\nB. 建构 无关大局\nC. 建构 举足轻重\nD. 构造 事关大局", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 959321, "human_acc": 91.6979822187, "source": "2017年422联考《行测》题(江西卷)第7题", "difficulty": 3, "formulas": 0}, {"id": 4674454, "material": "", "question": "诚然,表面看,女性参与劳动率逐年升高,职场“她力量”越来越不可小觑。但现实中,能爬上金字塔尖的“半边天”仍是____________。打破职场“重男轻女”观念,让婚姻家庭分工更为平等的同时,女性也要冲破自我设限的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 茕茕孑立 枷锁\nB. 屈指可数 牵绊\nC. 凤毛麟角 牢笼\nD. 沧海一粟 瓶颈", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 213507, "human_acc": 81.1345763839, "source": "2022上半年省考第二季行测模考大赛(陕西卷)第26题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5050588, "material": "", "question": "甲、乙、丙、丁、戊五人共同从某公交起始站上车,并决定坐在最后一排连续的五个座位上。问甲、乙两人相邻,且均与丁不相邻的概率是多少?", "type": "单选题", "options": "A. $\\frac{1}{5}$\nB. $\\frac{4}{15}$\nC. $\\frac{1}{10}$\nD. $\\frac{1}{15}$", "choice": "A", "keypoints": "不相邻问题;相邻问题;给情况求概率", "most_wrong": "C", "human_count": 337504, "human_acc": 12.914217313, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第8题", "difficulty": 7, "formulas": 398, "history": [{"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}, {"id": 8099, "material": "", "question": "3名学生和2名老师站成一排照相,2名老师必须站在一起且不在边上的不同排法共有:", "type": "单选题", "options": "A. 12种\nB. 24种\nC. 36种\nD. 48种", "choice": "B", "keypoints": "相邻问题", "most_wrong": "A", "human_count": 142697, "human_acc": 66.8682593187, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第8题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "排列组合问题", "相邻问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 46327, "material": "", "question": "老王和老赵分别参加4门培训课的考试,两人的平均分数分别为82分和90分,单个人的每门成绩都为整数且彼此不相等。其中老王成绩最高的一门和老赵成绩最低的一门课分数相同,问老赵成绩最高的一门课最多比老王成绩最低的一门课高多少分:", "type": "单选题", "options": "A. 20\nB. 22\nC. 24\nD. 26", "choice": "D", "keypoints": "不定方程组;构造数列", "most_wrong": "C", "human_count": 200209, "human_acc": 27.5157460454, "source": "2013年北京市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2262010, "material": "", "question": "一项考试共有35道试题,答对一题得2分,答错一题扣1分,不答则不得分。一名考生一共得了47分,那么,他最多答对(    )题。", "type": "单选题", "options": "A. 26\nB. 27\nC. 29\nD. 30", "choice": "B", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 130292, "human_acc": 79.9389064563, "source": "广东省2019年选调优秀大学毕业生笔试 思维能力测验(网友回忆版)第59题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 5102182, "material": "", "question": "奋斗者永远是年轻的。青春与否,无关乎年龄,而在于心境。用奋斗________时代,用拼搏定义未来,这不仅是年轻人该有的追求,更是每个与时代同行者应有的姿态。奋斗不息,青春不朽。让我们以梦为马,不负韶华,在奋勇搏击中放飞青春梦想,在____________中激扬青春力量。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 礼赞 砥砺前行\nB. 拥抱 继往开来\nC. 顺应 一往无前\nD. 讴歌 风雨兼程", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 2015447, "human_acc": 60.6025363108, "source": "2022年湖北省公务员录用考试《行测》题(网友回忆版)第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 16317, "material": "", "question": "发挥宗教在促进社会和谐方面的积极作用命题的提出,不是____________而是深思熟虑,不是一般口号而是________命题,不是权宜之计而是基本政策。\n\n填在横线上最恰当的词语是:", "type": "单选题", "options": "A. 信手拈来 科学\nB. 信口雌黄 科学\nC. 信手拈来 真实\nD. 信口雌黄 真实", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 40764, "human_acc": 42.0297321166, "source": "2009年贵州省公务员录用考试《行测》题第50题", "difficulty": 5, "formulas": 0}, {"id": 5761535, "material": "", "question": "国家的发展进步,不可能只有一条路径,也不应该只有一种模式。制度的选择不能“____________”,需要量体裁衣。一个国家的路走得对不对,关键在于是否符合本国国情。抹黑、打压与己不同的制度,________“唯我独尊”,其本质是一种“制度霸权”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 生搬硬套 传播\nB. 一意孤行 吹嘘\nC. 削足适履 鼓吹\nD. 独断专行 宣传", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 157965, "human_acc": 75.2160288672, "source": "2023下半年省考第二十二季行测模考大赛(广东县级卷)第18题", "difficulty": 4, "formulas": 0}, {"id": 5218482, "material": "", "question": "《百年大党面对面》夹叙夹议、____________,回应了群众思想关切,凝聚了更多共识。____________的讲解、清新简洁的文风,让理论学习如同面对面交谈,助人消除思想困惑、________理想信念、激扬奋进力量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈陈相因 言简意赅 重塑\nB. 娓娓道来 深入浅出 坚定\nC. 循循善诱 含英咀华 树立\nD. 条分缕析 简单明了 落实", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 149755, "human_acc": 89.2210610664, "source": "2022下半年省考第七季行测模考大赛(浙江A卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 5236035, "material": "", "question": "干部是不是实事求是可以从很多方面来看,最根本的要看是不是讲真话、讲实话,是不是干实事、求实效。那些____________、处事圆滑的人,那些掩盖矛盾、粉饰太平的人,那些好大喜功、____________的人,都不是真正的唯物主义者。广大党员干部要坚持以党性立身做事,善于独立思考,坚持求真务实。唯其如此,才能为党和人民________实实在在的业绩。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 面面俱到 急于求成 牟取\nB. 趋炎附势 好逸恶劳 谋求\nC. 见风使舵 急功近利 创造\nD. 八面玲珑 好高骛远 书写", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 140204, "human_acc": 70.3132578243, "source": "2022下半年省考第八季行测模考大赛(深圳卷)第70题", "difficulty": 4, "formulas": 0}, {"id": 5114120, "material": "", "question": "“双碳”目标是全国来看的,不是从某一地区、领域来看的,既不能____________,也不能搞齐步走、一刀切。处理好整体和局部的关系,各级要增强全国一盘棋意识,加强政策措施的衔接协调,确保形成________。既立足当下,一步一个脚印解决具体问题,积小胜为大胜;又放眼长远,克服____________的思想,把握好降碳的节奏和力度,推动经济社会高质量发展不断迈上新台阶。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 各有怀抱 常态 杀鸡取卵\nB. 各自为政 合力 急功近利\nC. 越俎代庖 联动 竭泽而渔\nD. 独断专行 共识 好高骛远", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 90179, "human_acc": 88.5217179166, "source": "2022下半年省考第三季行测模考大赛(四川卷)第25题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2050734, "material": "", "question": "这也许有些_____________,男性和女性都把自己和对方看作平等的人,才是正常的、自然的态度。但文学本来有异于科学。文学家写的是活生生的人,是活的感受和感发,它们是否合乎科学,不是一眼看得出来的。有时看似_______,恰好包含着合乎科学的内容。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 矫枉过正 偏颇\nB. 荒诞不经 偏私\nC. 过犹不及 偏激\nD. 无理取闹 偏执", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 1211729, "human_acc": 70.6699270216, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 764239, "material": "", "question": "在现代社会,公民能独立地表达自己的观点,却不傲慢,对政治表示服从,却不____;看到弱者知道同情,看到邪恶知道_____。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 阿谀奉承 悲愤\nB. 趋炎附势 气愤\nC. 卑躬屈膝 愤怒\nD. 溜须拍马 愤慨", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 531981, "human_acc": 59.7833381267, "source": "2014年黑龙江省公务员录用考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2049516, "material": "", "question": "20世纪90年代,有人________传统书信将被新兴的通信方式取代。然而我们惊奇地发现,传统的纸质书信依然健康发展,与电子通信方式____________,在当下生活中发挥着重要的作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 坦言 并驾齐驱\nB. 预言 并行不悖\nC. 断言 相向而行\nD. 妄言 背道而驰", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 1732982, "human_acc": 84.3041647288, "source": "2017年422联考《行测》题(新疆卷)第6题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5607916, "material": "", "question": "在以往的人类战争史上,对谋略的________一直热度不减,那些创造“以少胜多”经典战例的将帅,一直是军事界顶礼膜拜的战神。而如今,战场正在变得透明,必将进一步挤压在________中顿悟的谋略空间,战争需要精准设计、精准筹划及精确指挥,这一切都离不开数据。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 尊崇 模糊\nB. 青睐 暴露\nC. 信奉 抽象\nD. 拥戴 混乱", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 3707, "human_acc": 62.1796601025, "source": "2023下半年省考第八季行测模考大赛(陕西卷)第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 1746654, "material": "", "question": "作为一种现代产权制度,知识产权制度的本质是通过保护产权形成______,“给天才之火添加利益之油”,使全社会创新活力______,创新成果涌流。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 吸引 释放\nB. 刺激 膨胀\nC. 激励 迸发\nD. 促进 凸显", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 2863400, "human_acc": 90.8967311588, "source": "2016年国家公务员录用考试《行测》题(副省级)第26题", "difficulty": 5, "formulas": 0}, {"id": 2280988, "material": "", "question": "在进化心理学理论中,人类的情绪可以指引和______我们的行为,从而更好地适应周围的环境。早在远古时代,原始人处于______的环境中,就会产生防卫反应,比如,当有野兽进入自己的领域时,便开始不安和愤怒,并试图用凶狠的表情和咆哮吓走侵入者。", "type": "单选题", "options": "A. 调控 危险\nB. 改善 不利\nC. 影响 动荡\nD. 支配 陌生", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 1009275, "human_acc": 80.7178420153, "source": "2018年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第18题", "difficulty": 5, "formulas": 0}, {"id": 5341147, "material": "", "question": "一段时间以来,某些网络文艺作品存在低俗化的________,尺度越来越大、故事越来越离奇,且部分网络作品__________、跟风模仿问题突出,受到网民批评。“网标”实施后,网络文艺创作者主动担负起培根铸魂的使命,网络作品力求拍出生活味、烟火气,展现新时代社会发展新气象。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 趋势 山寨化\nB. 弊病 模式化\nC. 倾向 同质化\nD. 短板 盲从化", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 40133, "human_acc": 63.1325841577, "source": "2022下半年省考第十六季行测模考大赛(深圳卷)第66题", "difficulty": 6, "formulas": 0}, {"id": 4408958, "material": "", "question": "追溯红色经典电影的发展历程,不难发现它一直受到特定时代因素的影响,对革命先烈的摹绘也经历过多次________,由此可见,革命英雄的形象内涵绝不是________的,而是随着时代的演进而不断被赋予了新的内涵,红色经典电影也由对人物外貌的塑造转到对人物精神世界的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 修正 僵化 探讨\nB. 调整 固化 推度\nC. 变动 静止 发掘\nD. 更新 板滞 诠释", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 223450, "human_acc": 18.2318191989, "source": "2021下半年省考第二十四季行测模考大赛(四川卷)第24题", "difficulty": 7, "formulas": 0}, {"id": 2557516, "material": "", "question": "今天的写作教育面临新的任务:它不再仅仅为了培养作家、评论家,而是面向更________的行业领域、更复杂的社会环境;它________创作者的写作天赋和写作热情,但不仅仅面向百里挑一的佼佼者,而是在人才培养目标上兼顾多种类型与________,以满足社会对不同专长、不同水平写作人才的需求。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高端 鼓励 差异\nB. 热门 挖掘 个性\nC. 广阔 保护 层次\nD. 宽泛 激发 题材", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 331489, "human_acc": 37.9807474758, "source": "2021年国考第六季行测模考大赛(地市级)第37题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2729166, "material": "", "question": "目前来看,人工智能分析处理数据的速度远超人类分析师,并且能够找出人脑难以发现的行为模式和规律,但是也会犯下人脑不会犯的错误。原因在于,机器学习算法必须依靠大量数据进行训练,如果数据集过小、不准或是被恶意篡改,那么学习效果就会大打折扣,甚至被误导出现误判。尤其在国家安全和军事领域,数据陷阱带来的有害数据会造成严重后果。一旦人工智能的训练数据集被对手掌握,对手就会设计数据陷阱,提供假数据并诱导人工智能学习错误数据。而由于机器学习算法的内在工作机理晦涩难懂,人们难以察觉人工智能出错。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 避免数据陷阱要确保数据库和算法安全\nB. 人工智能分析处理数据优势与风险共存\nC. 避免数据陷阱需要研发数据筛查校正系统\nD. 重点领域使用人工智能必须警惕数据陷阱", "choice": "D", "keypoints": "程度词", "most_wrong": "B", "human_count": 162475, "human_acc": 53.970764733, "source": "2021上半年省考第一季行测模考大赛(四川卷)第44题", "difficulty": 6, "formulas": 0, "history": [{"id": 28483, "material": "", "question": "中华民族的强国梦一直是百年来国人的追求,实力之强与道德之强是通往强国之路的必经之途。道德是软实力,失去道德之强,绝无实力之强。\n\n本段阐述的主要观点是:", "type": "单选题", "options": "A. 道德是软实力\nB. 实力之强与道德之强同样重要\nC. 实力之强比道德之强重要\nD. 道德之强是实力之强的必要保障", "choice": "D", "keypoints": "程度词", "most_wrong": "B", "human_count": 23716, "human_acc": 85.2673300725, "source": "2008年江苏省公务员录用考试《行测》题(B类)第127题", "difficulty": 4, "formulas": 0}, {"id": 2187733, "material": "", "question": "民俗是文化的一种表现形态,即传统与文化的活态形式。它是经过千百年岁月的淘洗留下来的文化精华与现实结合的产物。民俗对于特定的群体有强烈的认同功能,对于当代社会的建设,具有不可替代的作用。\n\n这段文字是从什么角度来定义“民俗”的?", "type": "单选题", "options": "A. 群体建构\nB. 社会功能\nC. 价值观念\nD. 文化传承", "choice": "B", "keypoints": "程度词", "most_wrong": "D", "human_count": 1018424, "human_acc": 49.4699653582, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第27题", "difficulty": 6, "formulas": 0}, {"id": 44621, "material": "", "question": "平均来说,一个人在一家酒店住宿一晚,所产生的二氧化碳为10至30千克,相当于一辆汽车行驶60至180公里的排放量。在夏季或冬季集中使用空调时,这个数字将达到最高值。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 酒店是碳排放大户\nB. 尽量避免夏冬季住酒店\nC. 住酒店最好少用空调\nD. 短途差旅开车往返较好", "choice": "A", "keypoints": "程度词", "most_wrong": "C", "human_count": 275553, "human_acc": 62.4671115901, "source": "2012年江苏省公务员录用考试《行测》题(C类)第5题", "difficulty": 5, "formulas": 0}, {"id": 5553, "material": "", "question": "如果把地球的历史浓缩为一小时,至最后15分钟时,生命方粉墨登场,在还剩下6分钟的时候,陆地上开始闪现动物的身影,而当第58分钟到来时,一切大局已定。\n\n上面这段话的中心意思是:", "type": "单选题", "options": "A. 地球的历史很漫长\nB. 地球上生命存在的历史很长\nC. 地球上生命出现的时间很晚\nD. 地球上有了生命才大局已定", "choice": "C", "keypoints": "程度词", "most_wrong": "D", "human_count": 37354, "human_acc": 79.0169727472, "source": "2008年河南省公务员录用考试《行测》题第40题", "difficulty": 4, "formulas": 0}, {"id": 4785, "material": "", "question": "随着科学技术、经济、社会的发展和人们认识能力的提高,软科学作为独立的学科开始受到普遍重视。在世界范围内,从当前的发展速度看,软科学必将在广泛的领域发挥越来越大的作用。\n\n这段话强调了:", "type": "单选题", "options": "A. 人们对软科学重要性的认识在不断提高\nB. 软科学应当受到重视\nC. 软科学发展的原因及前景\nD. 人们重视软科学的原因", "choice": "C", "keypoints": "程度词", "most_wrong": "A", "human_count": 37729, "human_acc": 48.4799491108, "source": "2008年河北省公务员录用考试《行测》题第17题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5271097, "material": "", "question": "在生产力并不发达、战事频发、宗教氛围浓厚的铜器时代,古希腊人对具有超凡能力的英雄____________。因此,成为拥有健美身材、智慧大脑和高尚品格的英雄式人物,就成了凡人的心之所向。竞技体育是将个体体能、智慧、意志、技术相结合的产物,能较好________古希腊人的哲学追求、美学倾向和英雄情结。因而,将竞技元素融入祭祀天神宙斯的活动中,可以说是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 津津乐道 体现 实至名归\nB. 情有独钟 契合 水到渠成\nC. 如痴如狂 激发 理所当然\nD. 乐此不疲 迎合 顺理成章", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 164905, "human_acc": 74.8103453504, "source": "2022下半年省考第九季行测模考大赛(浙江A卷)第32题", "difficulty": 4, "formulas": 0, "history": [{"id": 2701793, "material": "", "question": "“排行榜”从某种意义上说,应起到正面________作用,但由于监管不力,这使得“排行榜”成为了唯利是图的“生意”,导致____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推动 良莠不齐\nB. 示范 积非成是\nC. 指导 积重难返\nD. 引导 乱象丛生", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 37536, "human_acc": 87.4600383632, "source": "2020年下半年省考第十四季行测模考大赛(浙江卷)第30题", "difficulty": 4, "formulas": 0}, {"id": 21607, "material": "", "question": "随着商品流通、贸易往来、人际交流的越来越________,远古时代那种依靠步行的交通方式以及手提、肩扛、头顶的运输方式已很难适应社会发展的需要,于是交通运输设施的兴建与运输工具的制造便____________。", "type": "单选题", "options": "A. 突出 迫在眉睫\nB. 重要 备受瞩目\nC. 明显 日新月异\nD. 频繁 应运而生", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 308507, "human_acc": 94.2999672617, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第4题", "difficulty": 3, "formulas": 0}, {"id": 4817742, "material": "", "question": "根植于中华大地的传统文化,是我们的先人在生产实践中________出来的文化精华,它反映了中国人的思维方式和道德观念。然而,由于时代和环境差异,这些传统文化往往被____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 提炼 熟视无睹\nB. 孕育 司空见惯\nC. 浓缩 漠然置之\nD. 总结 束之高阁", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 1739629, "human_acc": 40.3773448247, "source": "2022年四川省公务员录用考试《行测》题(网友回忆版)第22题", "difficulty": 4, "formulas": 0}, {"id": 3523016, "material": "", "question": "国产电影之所以能够在票房上与席卷全球的好莱坞电影____________,很大程度上是因为国产电影这种互联网气质带来的亲切感、平民化,这是好莱坞电影难以比拟的________优势。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 平分秋色 突出\nB. 分庭抗礼 本土\nC. 不相上下 草根\nD. 和衷共济 特别", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 2442971, "human_acc": 65.1730208832, "source": "2021年内蒙古公务员录用考试《行测》题(网友回忆版)第33题", "difficulty": 5, "formulas": 0}, {"id": 2392040, "material": "", "question": "长期受工业文明熏陶的城市人群非常向往体验农村生活,渴望亲近回归自然,释放工作压力。这种回归自然的理念,正是农业文明所________的“顺应自然、天人合一”和谐思想。基于此,近年城市周边的乡村游和农家乐_____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 主张 如火如荼\nB. 强调 此起彼伏\nC. 遵循 崭露头角\nD. 蕴含 方兴未艾", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 21043, "human_acc": 32.8517796892, "source": "2016年黑龙江省公务员录用考试《行测》题(县乡卷)第44题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2377013, "material": "", "question": "打字员小张每10分钟可录入1页文档,平均每页有2个错字;打字员小李每15分钟可录入1页文档,平均每页有1个错字,现有12页、7页、11页、8页、14页和20页的6篇文档需要录入,要求每篇文档由同一人录入,且总共在9个小时内完成。问录入文档的错误率最低可以控制在平均每页多少个错字?", "type": "单选题", "options": "A. 不高于1.4个\nB. 高于1.4个但不高于1.5个\nC. 高于1.5个但不高于1.6个\nD. 高于1.6个", "choice": "C", "keypoints": "统筹规划问题;给具体单位型", "most_wrong": "B", "human_count": 646268, "human_acc": 46.1475734525, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第50题", "difficulty": 6, "formulas": 0, "history": [{"id": 465003, "material": "", "question": "师徒两人生产一产品,每套产品由甲乙配件各1个组成。师傅每天生产150个甲配件或75个乙配件;徒弟每天生产60个甲配件或24个乙配件,师徒决定合作生产,并进行合理分工,则他们工作15天后最多能生产该种产品的套数为:", "type": "单选题", "options": "A. 900\nB. 950\nC. 1000\nD. 1050", "choice": "D", "keypoints": "统筹规划问题;给具体单位型", "most_wrong": "C", "human_count": 320885, "human_acc": 42.4959097496, "source": "2014年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 2694983, "material": "", "question": "甲、乙两个服装厂,生产同一规格的成衣。其中甲厂生产上衣、裤子的效率分别是乙厂的4倍和3倍。现甲厂每月用$\\frac{3}{5}$的时间生产上衣,$\\frac{2}{5}$的时间生产裤子,每月恰好生产1800套成衣。问乙厂每月最多生产多少套成衣?", "type": "单选题", "options": "A. 1500\nB. 750\nC. 1000\nD. 500", "choice": "D", "keypoints": "统筹规划问题;给具体单位型", "most_wrong": "C", "human_count": 225623, "human_acc": 19.2945754644, "source": "2021年国考第二十三季行测模考大赛(副省级)第66题", "difficulty": 7, "formulas": 2}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 567163, "material": "", "question": "一架天平,只有5克和30克的砝码各一个,要将300克的食盐平均分成三份,最少需要用天平称几次:", "type": "单选题", "options": "A. 6次\nB. 5次\nC. 4次\nD. 3次", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 203660, "human_acc": 24.8885397231, "source": "2014年河北省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "统筹规划问题"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 5271074, "material": "", "question": "虽说文学虚构不必遵循生活真实,但显然并非____________。作家对于虚构文本的理解要符合生活上的真实,甚至是________生活之上的真实。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 心血来潮 凌驾\nB. 凭空捏造 贴合\nC. 无中生有 超脱\nD. 突发奇想 立足", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 178781, "human_acc": 60.5019549057, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第27题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4563204, "material": "", "question": "过度依赖数字化阅读,会打破人们传统的阅读习惯,之前甘之如饴的专业书、大部头会变得____________。碎片化阅读变得普遍,但人们很难抓住深层的思想精髓,只是____________。沉溺于碎片化阅读会让人变得功利化与焦虑化,要知道很多学者大家在深度阅读中锤炼自己。在当下众声喧哗的网络时代,深度阅读依然____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 味如鸡肋 断章取义 大有可为\nB. 食不甘味 一目十行 至关重要\nC. 味同嚼蜡 浮光掠影 深得人心\nD. 索然无味 蜻蜓点水 不可或缺", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 312129, "human_acc": 78.6251838182, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第65题", "difficulty": 4, "formulas": 0, "history": [{"id": 2280979, "material": "", "question": "传承红色基因,重要性不言而喻;但如何传承,同样不容忽视。怎样深入挖掘红色传统,生动展示红色基因,让普通人也能感受到力量,让红色基因______,这恐怕是一个不可回避的重大课题。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 代代相传\nB. 发扬光大\nC. 深入人心\nD. 根深蒂固", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 252979, "human_acc": 50.1709628072, "source": "2018年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第16题", "difficulty": 3, "formulas": 0}, {"id": 22629, "material": "", "question": "在职称评审过程中,各级评审组织几乎无法看到申报人的艺术实践能力,只能看到表格栏目里的论文和项目。在唯论文是重的标准下,音乐理论的教师还能体现一些真才实学,而表演艺术的教师则只能扬短避长、_________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 滥竽充数\nB. 削足适履\nC. 委曲求全\nD. 弄虚作假", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 623553, "human_acc": 73.6734487686, "source": "2014年天津市公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0}, {"id": 4516205, "material": "", "question": "惯性思维、老套路、老办法都不可能提升思政质量,而要在思维方式、体制机制上实现全面创新才能达到提高思政质量的预期目标。这里所说的创新不是修修补补、扬汤止沸,而是理念的改变、思路的调整和举措的____________,要力争新瓶装新酒、至少旧酒新瓶装、杜绝旧瓶装旧酒。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 焕然一新\nB. 改头换面\nC. 去芜存菁\nD. 脱胎换骨", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 235299, "human_acc": 29.4642136176, "source": "2021下半年省考第二十九季行测模考大赛(广东乡镇卷)第1题", "difficulty": 7, "formulas": 0}, {"id": 5380111, "material": "", "question": "文学事业建设并非____________,要靠沉淀积累才能产生能量,带来效益。通过老一辈文学家的挖掘,让这些青年作家能够根植于文学这片沃土,茁壮成长,为南京文学之都的建设提供力量,让文化事业愈加____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一日之功 枝繁叶茂\nB. 一蹴而就 蒸蒸日上\nC. 一挥而就 欣欣向荣\nD. 坐享其成 生机盎然", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 279240, "human_acc": 66.6351525569, "source": "2022下半年省考第十九季行测模考大赛(浙江C卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 2388254, "material": "", "question": "一湾清清的沱江水穿城而过,一条条砖红的石板街____________,一排排___________ 的吊脚楼屹立在沱江两岸,一道饱经风雨的古城墙守护着淳朴的湘西人民······这些,构成了这座____________而美丽动人的古城。", "type": "单选题", "options": "A. 饱经沧桑 错落有致 历经风雨\nB. 曲折蜿蜒 饱经沧桑 淳朴厚重\nC. 纵横交错 小巧玲珑 饱经沧桑\nD. 井然有序 参差错落 古朴厚重", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 846814, "human_acc": 23.1403826578, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第34题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4682918, "material": "", "question": "间色在中国古代是非常__________的颜色,比如民间的年画等几乎全用间色。正色只是用在一些礼仪性的场合和正式场合,用途远不如间色的这么________。如果我们穿越到古代去,可能看正色是比较少的,多数的时候看到大量的是间色。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大众化 全面\nB. 日常化 常态\nC. 多元化 普遍\nD. 生活化 广泛", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 134329, "human_acc": 81.8713755034, "source": "2022上半年省考第三季行测模考大赛(四川卷)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 5509449, "material": "", "question": "立于传统之上的创新,远比借________招徕粉丝难得多。因为对传统越是懂,越知道它的________之处在于“增之一分则太长,减之一分则太短”,越不敢越雷池一步。\n\n依次填入画橫线部分最恰当的一项是:", "type": "单选题", "options": "A. 时兴 微妙\nB. 流量 精细\nC. 套路 巧妙\nD. 流俗 精妙", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 1130933, "human_acc": 41.2341845184, "source": "2023年青海省公务员录用考试《行测》题(网友回忆版)第32题", "difficulty": 5, "formulas": 0}, {"id": 2577992, "material": "", "question": "防控疫情,应该多一些“小题大做”的________意识。小题大做,不是无理取闹,更不是渲染紧张气氛,而是体现出对疫情的________,以及对防控疫情的重视。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 警惕 戒备\nB. 大局 防御\nC. 敏锐 监测\nD. 谨慎 预判", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 2172354, "human_acc": 69.3104807043, "source": "2020年湖南公务员考试《行测》试题(网友回忆版)第24题", "difficulty": 4, "formulas": 0}, {"id": 3743840, "material": "", "question": "“欲知大道,必先为史。”历史是__________,蕴含着生生不息的思想力量、文化基因、精神动能。注重学习党史,从历史中获得________,是我们党的优良传统。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 营养剂 教益\nB. 必修课 灵感\nC. 三部曲 经验\nD. 教科书 启迪", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 109807, "human_acc": 51.4775925032, "source": "2021下半年省考第十二季行测模考大赛(四川卷)第21题", "difficulty": 6, "formulas": 0}, {"id": 2030046, "material": "", "question": "MOOC利用使用者的IP地址自动识别地理位置,辨识出不同用户群体,通过________用户学习习惯的更多数据,创造出适合不同学生群体的学习路径,实现教学的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 收集 差异化\nB. 搜集 多样化\nC. 整理 个性化\nD. 处理 灵活化", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 668958, "human_acc": 45.2862511548, "source": "2016年四川省公务员录用考试《行测》题(下半年)第22题", "difficulty": 6, "formulas": 0}, {"id": 5493092, "material": "", "question": "线上服务市场在整体上都面临新的挑战,包括线上自习室在内的线上服务平台,都应该有更多的__________,需要通过重视优化服务来稳住并扩大用户规模。目前线下的付费自习室也越发流行,这实际也是一种直接的市场竞争。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 责任感\nB. 使命感\nC. 危机感\nD. 道义感", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 34918, "human_acc": 90.1311644424, "source": "2023上半年省考第九季行测模考大赛(通用卷)第23题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4642063, "material": "", "question": "一个世纪的研究,基本明确了仰韶文化的特征、时空框架和源流演变,深入探讨了仰韶时代人类社会形态、资源环境、生业模式及文化交流等重大问题,初步________出中华文明孕育时期的历史画卷,在中国百年考古中有着____________、无法替代的作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 描绘 举重若轻\nB. 体现 不可或缺\nC. 临摹 独一无二\nD. 勾勒 举足轻重", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 105629, "human_acc": 66.4637552187, "source": "2021下半年省考第三十六季行测模考大赛(浙江卷)第27题", "difficulty": 4, "formulas": 0, "history": [{"id": 1587183, "material": "", "question": "鲁迅批判中国人的劣根性,批判中国人的面子心理、看客心态、马虎作风,但他的批判是建立在自省和自剖基础上的,不是____,而是带有一种悲悯和____的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 居高临下 无奈\nB. 唯我独尊 伤感\nC. 空穴来风 同情\nD. 疾言厉色 决绝", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 517968, "human_acc": 59.879953974, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第28题", "difficulty": 5, "formulas": 0}, {"id": 3010010, "material": "", "question": "从深海到高山、从沙漠到雨林,地球的每一处都有植物的________。岁月流变、气候变迁、地质运动、生境更迭,植物____________、在不断演化中保持着多样化的世界。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 印记 历久弥新\nB. 行踪 绵延不绝\nC. 注脚 生生不息\nD. 痕迹 震古铄今", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 396839, "human_acc": 25.3319356212, "source": "2022年国考第六季行测模考大赛(副省级)第24题", "difficulty": 7, "formulas": 0}, {"id": 4344696, "material": "", "question": "很多网文作者缺少知识积累,于是讲述的故事____________。没有扎实的存量阅读和深入思考,没有建立在知识修养基础上的美学积淀,作品就会显得苍白与________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 差强人意 空洞\nB. 乏善可陈 肤浅\nC. 引经据典 脆弱\nD. 味同嚼蜡 混乱", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 214775, "human_acc": 68.0838086369, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第29题", "difficulty": 4, "formulas": 0}, {"id": 4811409, "material": "", "question": "真正的自律,从不是自我折磨式成长,不是不允许有丝毫的差池,而是____________,不透支自己,不强求完美。学会正确的自律,不________自己,才是对自己最好的善待。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 循序渐进 迷失\nB. 点到为止 苛待\nC. 张弛有度 消耗\nD. 劳逸结合 虚度", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 373965, "human_acc": 53.3114061476, "source": "2022上半年省考第十一季行测模考大赛(陕西卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 4255546, "material": "", "question": "善于听真话尤其是批评性的话,有利于领导干部了解真实情况,________群众智慧,作出科学决策。如果____________、闭目塞听,就很可能做出错误决策,甚至产生巨大失误、造成重大损失。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 凝聚 抱残守缺\nB. 累积 讳疾忌医\nC. 集聚 刚愎自用\nD. 云集 好大喜功", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 207513, "human_acc": 73.9987374285, "source": "2021下半年省考第二十二季行测模考大赛(广东县级卷)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 51909, "material": "", "question": "中国古代,士的人格风骨最令人敬仰,也最让后人___________,士在这方面的表现,是___________的史书中最___________的部分,也是人们看历史小说时最受感动的故事,虽然士眼中的人格,远没有人类现代文明中关于人的“健全的、完整的”意义,但其精神操守的价值却是永恒的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 羞愧 浩如烟海 感人至深\nB. 汗颜 卷帙浩繁 光彩照人\nC. 羞愧 洋洋洒洒 感人肺腑\nD. 汗颜 汗牛充栋 精彩绝伦", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 490835, "human_acc": 32.1855613394, "source": "2013年陕西省公务员录用考试《行测》题第38题", "difficulty": 6, "formulas": 0, "history": [{"id": 2045556, "material": "", "question": "量子力学认为真空并非“_____________”,而是充斥着大量“虚”的粒子和反粒子对。它们同时产生,刹那之间又相互______。\n\n依次填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 一无所有 淹没\nB. 空谷幽兰 迸发\nC. 熙熙攘攘 吞噬\nD. 空无一物 湮灭", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 879639, "human_acc": 86.6791945332, "source": "2017年广州市公务员录用考试《行测》题(单考区卷)第6题", "difficulty": 4, "formulas": 0}, {"id": 2388253, "material": "", "question": "每一条河流都是一曲古老的赞歌,唱出了远古文明的________,从未看过巨浪翻滚的人,难以想象万马奔腾、____________的壮丽景象。让我们迈开脚步,打开心扉,投入大自然的怀抱。", "type": "单选题", "options": "A. 辉煌 一泻千里\nB. 繁荣 一碧万顷\nC. 兴盛 一往无前\nD. 光芒 一望无际", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 1401873, "human_acc": 63.4726540849, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第22题", "difficulty": 5, "formulas": 0}, {"id": 754223, "material": "", "question": "真正做公益,不是说投入精力或资金以后,自己就可以___________了,而是看我们真正能做多少,怎么使我们的投入最大 ___________地解决问题。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高枕无忧 水平\nB. 一劳永逸 限度\nC. 袖手旁观 效率\nD. 心安理得 范围", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 723161, "human_acc": 67.7294544368, "source": "2014年山东省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050808, "material": "", "question": "中华文化延续着我们的国家和民族的精神血脉,既需要____________、代代守护,也需要与时俱进、推陈出新。为明天________下这个时代的文化精华,正是我们这一代人的文化责任。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 风雨兼程 积淀\nB. 薪火相传 沉淀\nC. 继往开来 留下\nD. 承前启后 提取", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 980100, "human_acc": 85.0901948781, "source": "2017年422联考《行测》题(江西卷)第9题", "difficulty": 4, "formulas": 0}, {"id": 2742169, "material": "", "question": "数字经济其实早已不是什么新鲜事物,只是____________的新冠肺炎疫情,让人们更________、更真切地领略到数字经济的“魔力”,也对我国创新能力、创新成果有了更具象、更深刻的认知。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 猝不及防 具体\nB. 突如其来 直观\nC. 出乎意料 精准\nD. 无孔不入 感性", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 951169, "human_acc": 93.8779543909, "source": "2021年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第32题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4792117, "material": "", "question": "当人类还没有发明文字时,岩画可能就已经诞生了。如今古人记载在绢帛、纸张、器物上的文字多已____________,而凿刻、绘制在石头之上的岩画却被完整地保存了下来。不要小看这些粗放的线条、简单的图形、晦涩的符号,也不要说那些“跃然”石上的羊、牛、马、虎、豹、驼等动物图案过于________,更不要忽略那些狩猎、祭祀、争战、歌舞、交媾的画面,那里面可能都有极为丰富的内涵。\n\n填入横线处的词语最恰当的一项是:", "type": "单选题", "options": "A. 化为乌有 抽象\nB. 不翼而飞 粗糙\nC. 荡然无存 直白\nD. 踪迹难觅 普通", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 2011, "human_acc": 22.1282943809, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第28题", "difficulty": 4, "formulas": 0, "history": [{"id": 2139502, "material": "", "question": "一事当前,人们总要辨真伪、明是非、判丑恶、定取舍。____,以何标准辨之、明之、判之和定之,有截然相反之两种态度。一曰以是非之心为心,二曰以____之心为心。\n\n下列选项中,最适合填入横线的是:", "type": "单选题", "options": "A. 并且 厉害\nB. 但是 厉害\nC. 但是 利害\nD. 甚至 利害", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 35227, "human_acc": 96.752490987, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第16题", "difficulty": 4, "formulas": 0}, {"id": 5344148, "material": "", "question": "艺术创作有其本质,即____________。“类型是个筐,啥都往里装”的简易创作法不是艺术创作的万能配方药,雷同、重复或过于“类型”的作品可能会风靡一时,但不会有观众________为之埋单。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 别出心裁 稳定\nB. 不落窠臼 持续\nC. 出类拔萃 长期\nD. 标新立异 主动", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 306734, "human_acc": 71.9004088233, "source": "2022下半年省考第十六季行测模考大赛(浙江C卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 4674453, "material": "", "question": "我们习惯性地将杂草定义为__________,但准确说来它们是当地传承与遗产的一部分,它们是一种祖传之物,是一个历经岁月的基因库,与这个基因库相比,我们的房屋建筑都是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 入侵者 昙花一现\nB. 外来者 惊鸿一瞥\nC. 流浪者 过眼烟云\nD. 殖民者 雨后春笋", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 242338, "human_acc": 59.980275483, "source": "2022上半年省考第二季行测模考大赛(陕西卷)第25题", "difficulty": 5, "formulas": 0}, {"id": 2188069, "material": "", "question": "依次填入划横线部分最恰当的一组是:\n\n尽力也许并不能让我们的未来______________,但是,_________会让我们的明天__________。因为,真的,人生很贵,请别浪费。", "type": "单选题", "options": "A. 一帆风顺 一定 辉煌灿烂\nB. 风光无限 应该 义无反顾\nC. 无忧无虑 至少 无怨无悔\nD. 万事大吉 可能 天晴月朗", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 840702, "human_acc": 84.8306534301, "source": "2018年421联考《行测》题(吉林乙级)(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 3882425, "material": "", "question": "中华几千年灿若星河的文明中,虽对神秘的天空和丰富多彩的大地有过许多观察和记录,但对它们奥秘的探索却____________,正是缺少了这种对大自然非功利的、穷追不舍的________,使得我们最终没能发展出现代科学。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 语焉不详 追问\nB. 屈指可数 责问\nC. 乏善可陈 叩问\nD. 寥寥无几 拷问", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 97031, "human_acc": 37.1097896549, "source": "2021下半年省考第十六季行测模考大赛(陕西卷)第32题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5407771, "material": "", "question": "网络评论切忌“____________”,想当然地下结论和“自说自话”,而是要注重事件本身的是非曲直。要“下深水摸活鱼”,从基层的角度去________,用鲜活的语言和人民群众喜闻乐见的方式去呈现,真实反映人民群众的心声,才能被人民群众认可,才能写出“热气腾腾”的网络评论。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 人云亦云 思考\nB. 拾人牙慧 观照\nC. 信口开河 睥睨\nD. 闭门造车 审视", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 293589, "human_acc": 48.7327522489, "source": "2023年国考第四十八季行测模考大赛(副省级)第28题", "difficulty": 6, "formulas": 0, "history": [{"id": 2445035, "material": "", "question": "在改革开放的伟大实践中,中国大踏步赶上时代潮流,经济社会面貌发生了____________的变化,________了持续高速发展的人间奇迹。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 翻天覆地 创造\nB. 日新月异 制造\nC. 改弦更张 塑造\nD. 改头换面 打造", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 1303504, "human_acc": 97.7763014153, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5740128, "material": "", "question": "近年来,为帮助老年人更好地融入数字社会,各行各业都在积极推进适老化改造,并取得一定成效。不过,现实生活中仍有一些____________的地方。随着人口老龄化进程不断加快,适老化改造也应当是全方位的:既包括推出线上适老化版本,也包括保留必要的线下渠道,以便让老年人顺畅地参与社会生活,而不是成为被时代发展浪潮抛弃的“__________”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 差强人意 透明人\nB. 不尽人意 边缘人\nC. 不遂人愿 摆渡人\nD. 大失所望 老古董", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 102938, "human_acc": 84.3779750918, "source": "2023下半年省考第二十季行测模考大赛(西藏卷)第5题", "difficulty": 3, "formulas": 0, "history": [{"id": 21763, "material": "", "question": "茶艺是一种综合性的生活艺术,但对于“茶艺”的___________诠释究竟是什么却众说纷纭,即使开茶艺馆的人,也多半___________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 合理 人云亦云\nB. 准确 语焉不详\nC. 精确 各执己见\nD. 全面 一知半解", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 633598, "human_acc": 56.7866375841, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第9题", "difficulty": 5, "formulas": 0}, {"id": 163331, "material": "", "question": "在很久以前,人类就________有一天能呼风唤雨,________风雨雷电,并在战争中加以利用。随着科技进步,小范围的人工干预天气已经能够做到,但是大范围地影响气候,甚至人工制造飓风显然是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 幻想 掌控 天方夜谭\nB. 期盼 支配 鞭长莫及\nC. 想象 号令 好高骛远\nD. 梦想 干预 痴人说梦", "choice": "A", "keypoints": "关联关系-转折关系;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 490495, "human_acc": 76.1457303336, "source": "2013年四川公务员录用考试《行测》题(下半年)第29题", "difficulty": 4, "formulas": 0}, {"id": 21947, "material": "", "question": "在确立以夏、商、周为核心的中国上古史基本框架的基础上,“夏商周断代工程”将历谱推定、文献梳理、考古与碳十四测定等课题研究成果加以整合,提出了夏商周年表。尽管这个年代表还有不够______之处,但它的提出毕竟标志着中国的上古史已不是______的传说,而是可信的历史了。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 细致 子虚乌有\nB. 精准 虚无缥缈\nC. 合理 扑朔迷离\nD. 精确 空穴来风", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 371316, "human_acc": 53.571351625, "source": "2010年国家公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2133558, "material": "", "question": "漆画有其他画种达不到的效果,同时也有它的________。它不能像油画、水粉画那样自由地运用冷暖色彩,不能像素描那样丰富地运用明暗层次,不善于逼真地、________________地再现对象。事实上,在似与不似之间表现对象,才是漆画最________的地方。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 问题 出神入化 出色\nB. 短板 惟妙惟肖 难得\nC. 缺陷 面面俱到 独到\nD. 局限 栩栩如生 擅长", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 3352462, "human_acc": 53.7630851595, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5352998, "material": "", "question": "古诗词中,唐诗无疑是最具________性的体裁之一。经过一千多年的流传,人们依然能在唐诗中找到属于自己的____________,找到与古人强烈共鸣的情感瞬间。那些经过时间洗礼的经典诗句,________着一代又一代中国人。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 象征 酸甜苦辣 教化\nB. 代表 喜怒哀乐 感染\nC. 标志 嬉笑怒骂 熏染\nD. 示范 悲欢离合 浸润", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 294160, "human_acc": 84.0511966277, "source": "2022下半年省考第十七季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 5660823, "material": "", "question": "科学技术发展始终与文化发展____________,科学技术极大地推动了文化生产方式的________和内容的创新,文化也成为技术落地应用的重要领域。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 相得益彰 蜕化\nB. 并行不悖 进步\nC. 并驾齐驱 发展\nD. 相伴相生 变革", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 73815, "human_acc": 47.9035426404, "source": "2023下半年省考第十三季行测模考大赛(四川卷)第14题", "difficulty": 6, "formulas": 0}, {"id": 551119, "material": "", "question": "法律的制定有一个严格程序,理论上也是民意的显示。不能在一时情况下因为民意就改,这会破坏法律的______性。如果开了口子,以后大家______,那就连法律都不要了。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 连贯 一哄而起\nB. 严肃 一如既往\nC. 客观 众口一词\nD. 公正 一唱百和", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 732504, "human_acc": 31.4193506111, "source": "2014年河南省选调生选拔考试 《行政职业能力测验》试卷(精选)第5题", "difficulty": 5, "formulas": 0}, {"id": 5102409, "material": "", "question": "过去你可能有想不起要买什么的时刻,现在不会了,每一样内容里都________了营销,别人购物发了朋友圈会启发你也想买,还有各种各样的广告。现代人就像转笼里的仓鼠,在工作、消费的循环里____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 嵌入 乐此不疲\nB. 融入 周而复始\nC. 植入 疲于奔命\nD. 插入 殚精竭虑", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 1439030, "human_acc": 39.4567868634, "source": "2022年河南省公务员录用考试《行测》题(网友回忆版)第7题", "difficulty": 4, "formulas": 0}, {"id": 5600419, "material": "", "question": "对于平台经济,流量通常意味着经济利益,意味着资本________。但套路太多终失人心。流量为王没错,平台经济的诚信底线更不能突破。____________式的营销手段,最终会失去消费者的信任,资本眷顾更会成为空中楼阁。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 青睐 杀鸡取卵\nB. 推崇 饮鸩止渴\nC. 垂青 扬汤止沸\nD. 觊觎 竭泽而渔", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 48000, "human_acc": 65.9895833333, "source": "2023下半年省考第七季行测模考大赛(四川卷)第17题", "difficulty": 4, "formulas": 0}, {"id": 3532733, "material": "", "question": "随着人们生活水平的提高,越来越多人对“像绣花一样精细”的城市管理充满期待。要做到精细,就切不可____________。真正精细的城市管理,需要一套完备的精细标准来________,变感性认知为理性可参照的数据和规范。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 以点带面 保障\nB. 粗枝大叶 庇护\nC. 敷衍了事 检验\nD. 大而化之 支撑", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 84302, "human_acc": 62.495551707, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第27题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4989851, "material": "", "question": "某饰品生产作坊2名工人3天可制作1200个饰品。制作流程优化后,每个饰品制作的时间比原来减少$\\frac{1}{3}$,且又增加了1名工人,已知每名工人工作效率相同。若一个饰品的利润为3元,那么该作坊要实现盈利1万元至少需要多少天?", "type": "单选题", "options": "A. 3\nB. 4\nC. 11\nD. 12", "choice": "B", "keypoints": "经济利润问题;给具体单位型", "most_wrong": "C", "human_count": 275099, "human_acc": 60.5294821137, "source": "2022上半年省考第十九季行测模考大赛(广东乡镇卷)第36题", "difficulty": 6, "formulas": 1, "history": [{"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 5510095, "material": "", "question": "某商品的利润率是20%。如果进货价降低20%,售价保持不变,此时利润率是多少?", "type": "单选题", "options": "A. 40%\nB. 30%\nC. 60%\nD. 50%", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "A", "human_count": 160341, "human_acc": 60.6943950705, "source": "2023年河北省公务员录用考试《行测》题(网友回忆版)第71题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 3583240, "material": "某省召开两会期间,某6层宾馆分别住着来自S市、H市、L市、W市、N市、T市的代表。已知每层仅入住来自同一个地市的代表,且有以下条件:\n\n(1)H市的代表团比L市的代表团楼层高;\n\n(2)L市的代表团比T市的代表团楼层高;\n\n(3)S市的代表团比N市的代表团楼层低;\n\n(4)T市的代表团与N市的代表团楼层相邻。", "question": "根据题干信息,可以得出以下哪项?", "type": "单选题", "options": "A. S市的代表团只能在第1层或第2层\nB. H市的代表团可能在第4层\nC. L市的代表团一定在第4层\nD. H市的代表团一定比T市高2层", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 31596, "human_acc": 69.6448917585, "source": "2022年国考第十一季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 3710640, "material": "", "question": "近年来,随着互联网技术的发展,特别是自媒体的迅速勃兴,构筑了新型网络舆论场,舆论监督对于司法工作的影响越来越大。这对于拓宽了公众司法参与渠道、维护司法公正,具有积极意义。一些冤假错案的平反昭雪,舆论监督在其中发挥了重要作用。____________________。由于自媒体零门槛、无边界的特点,加上网民知识水平和法律素养方面的不足,某种程度上导致了无序参与的状态。舆论监督“踩过界”的情况时有发生,越俎代庖,充当“媒体判官”,干预独立审判,损害了司法机关的形象。在“人人都有麦克风”的时代,如何构建和推进舆论监督与司法公正的良性互动,已经成为摆在司法机关面前的一道“必答题”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 这并不意味着互联网技术没有任何的缺陷\nB. 然而,网络舆论监督的法律制度还不完善\nC. 但必须正视的是,舆论监督是一把双刃剑\nD. 这意味着它能够维护公平正义和法律尊严", "choice": "C", "keypoints": "中间", "most_wrong": "B", "human_count": 12077, "human_acc": 76.3517429825, "source": "2021下半年省考第十季行测模考大赛(内蒙古卷)第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}, {"id": 11185, "material": "", "question": "1999年起,我国普通高校开始实行扩招。大幅度的扩招____________________,因此出现了高校学生质量滑坡现象。填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 使入学门槛骤然降低\nB. 缓解了学生和家长的思想压力\nC. 给就业带来了巨大的压力\nD. 使更多的学生有了上学的机会", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 65897, "human_acc": 96.1576399533, "source": "2008年湖北省公务员录用考试《行测》题(B类)第18题", "difficulty": 5, "formulas": 0}, {"id": 2256378, "material": "", "question": "如果怀念过去的书信形式,最好的做法是重新拾起情怀,即在写电子邮件或者使用其他即时通讯工具的时候,______,拒绝被新媒体时代轻快、浮躁的交流形式所侵袭。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽量让表达多点诗意\nB. 能够勇敢地说“不”\nC. 能够多一点郑重感\nD. 尽量让交际慢下来", "choice": "C", "keypoints": "中间", "most_wrong": "D", "human_count": 29886, "human_acc": 37.5292779228, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第16题", "difficulty": 5, "formulas": 0}, {"id": 16273, "material": "", "question": "中国人对小说的欣赏习惯,讲究的是无巧不成书,(  ),也就是不喜欢一般化,而喜欢特殊化。", "type": "单选题", "options": "A. 爱看不知道的事情,而不爱看已经清楚知道了的事情\nB. 爱看新鲜的事情,而不爱看已经清楚知道了的事情\nC. 不爱看已经清楚知道了的事情,而爱看不知道的事情\nD. 不爱看陈旧的事情,而爱看新鲜的事情", "choice": "C", "keypoints": "中间", "most_wrong": "D", "human_count": 51816, "human_acc": 40.3388914621, "source": "2009年山西省党群机关录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 5439256, "material": "", "question": "青铜大面具出土后,存在着锈蚀和表面有泥土等附着物的情况,看上去格外“沧桑”。________,面具左耳脱落、左脸颊后方及嘴角处稍有残缺。________在文物出土后,文保专家有针对性地对表面泥渍、泥土覆盖物、硬结物、锈蚀物做了清除,确保文物状态稳定。也正是________大面具已经被精心“整肃”过妆容,________极具“三星堆特色”,才一举被选中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 此外 因此 因为 并且\nB. 此外 因此 由于 或者\nC. 相反 所以 由于 并且\nD. 相反 所以 因为 或者", "choice": "A", "keypoints": "关联关系-并列关系;关联关系-因果关系", "most_wrong": "B", "human_count": 730, "human_acc": 95.0684931507, "source": "2023上半年省考第三季行测模考大赛(深圳卷)第64题", "difficulty": 3, "formulas": 0, "history": [{"id": 4934215, "material": "", "question": "由于现代科技的崛起与日益强大的功能展示,________科技伦理学在现代社会生活中迅速崛起,________在几乎所有方面或层面,影响甚至决定着现代应用伦理学研究的具体开展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 以致 却\nB. 不只 更\nC. 使得 并\nD. 不仅 还", "choice": "C", "keypoints": "关联关系-并列关系;关联关系-因果关系", "most_wrong": "D", "human_count": 5947, "human_acc": 76.5932402892, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第5题", "difficulty": 4, "formulas": 0}, {"id": 4882230, "material": "", "question": "事实表明,哪里的领导干部具有“功成不必在我”、泽被后人的精神境界,哪里的村庄规划工作就会富有成效。________,哪里的领导干部急功近利、心浮气躁,哪里的村庄规划工作就会难以得到重视。________,加快推进村庄规划工作,压紧压实领导干部责任至关重要。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 同时 其实\nB. 反之 可见\nC. 相反 不过\nD. 此外 而且", "choice": "B", "keypoints": "关联关系-并列关系;关联关系-因果关系", "most_wrong": "C", "human_count": 6510, "human_acc": 98.3870967742, "source": "2022上半年省考第十四季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 5651801, "material": "", "question": "趣缘社会的商品生产与销售实际上是由生产者与消费者共同完成的。生产者更注重消费者的需求,________生产者本身也是消费者,________能更好地掌握产品的即时变化,这________在一定程度上改变了过去生产组织方式、营销方式甚至产业模式。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 甚至 因而 也\nB. 所以 只有 才\nC. 因此 如果 就\nD. 何况 与其 更", "choice": "A", "keypoints": "关联关系-并列关系;关联关系-因果关系", "most_wrong": "C", "human_count": 5151, "human_acc": 80.3533294506, "source": "2023下半年省考第十二季行测模考大赛(广东县级卷)第20题", "difficulty": 4, "formulas": 0}, {"id": 5416456, "material": "", "question": "鉴于城市群地区较强的风险抵抗能力和较好的经济表现,深入实施城市群战略能够在短期内助推第四季度和明年经济取得更好成绩,________能确保我国经济长期的可持续高质量发展。________,未来需要从三方面加快城市群战略的实施进程,不断提高城市群战略的发展质量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 也 因此\nB. 才 当然\nC. 或 假如\nD. 但 所以", "choice": "A", "keypoints": "关联关系-并列关系;关联关系-因果关系", "most_wrong": "B", "human_count": 14826, "human_acc": 79.7180628625, "source": "2022下半年省考第二十三季行测模考大赛(广东县级卷)第5题", "difficulty": 4, "formulas": 0}, {"id": 5758620, "material": "", "question": "上消化道出血不能喝酒________不能抽烟,________烟草中含有尼古丁这种有害成分,它对于消化道存在刺激作用,经常喝烈性酒,对胃黏膜有较大刺激及伤害。不要喝浓茶、咖啡,________海鲜和发物也不要吃,刺激性较大,可损伤胃肠黏膜,引起出血。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 也 因为 另外\nB. 甚至 而 还有\nC. 还 即便 因此\nD. 同时 由于 但是", "choice": "A", "keypoints": "关联关系-并列关系;关联关系-因果关系", "most_wrong": "B", "human_count": 10726, "human_acc": 98.5176207347, "source": "2023下半年省考第二十二季行测模考大赛(上海卷)第4题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 4491781, "material": "", "question": "随着互联网的发展,应援打榜、刷量控评、群体对立等“粉丝圈”乱象进入公共视野,各类“粉丝圈”所争相比拼的内容,已经变成各种可量化的“数字榜单”。在各类网络平台上,名目繁多的各类榜单____________,其中,不乏一些有组织的粉丝团头目所引导的灰色产业链在____________,每张“榜”都可以变成“粉丝圈”流量和钱财的“收割机”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 数不胜数 鼎力相助\nB. 源源不断 煽风点火\nC. 不胜枚举 推波助澜\nD. 五花八门 兴风作浪", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 9510, "human_acc": 66.1409043113, "source": "2021下半年省考第二十八季行测模考大赛(西藏卷)第3题", "difficulty": 6, "formulas": 0, "history": [{"id": 4702266, "material": "", "question": "所谓互动式、沉浸式体验,成了当下更高级的怀旧手段。你没想到,有一天,你再也不是眼巴巴羡慕别人的看客,你也可以成为一次主角。你曾经最____________的魔法世界,是为你存在的。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 心猿意马\nB. 神魂颠倒\nC. 心驰神往\nD. 流连忘返", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 316632, "human_acc": 97.4168751105, "source": "2022上半年省考第六季行测模考大赛(广东县级卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 2595661, "material": "", "question": "整治保健食品行业乱象不容犹疑,如果弥合漏洞的时间跨度较长,很可能会使问题越来越多,甚至____________,加大社会风险,加大治理难度。如果能在问题刚露头时就高度重视,精准治理,无疑会____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 死灰复燃 卓有成效\nB. 养痈遗患 一劳永逸\nC. 集腋成裘 万无一失\nD. 积重难返 事半功倍", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 320477, "human_acc": 89.3546182721, "source": "2021年国考第九季行测模考大赛(副省级)第22题", "difficulty": 3, "formulas": 0}, {"id": 5570122, "material": "", "question": "各地在抢高层次人才上可谓____________,除了放开落户,更有购房补贴,可这些优惠政策很少能落到当地务工的农民工头上。高端人才当然是一地发展的重要动力,可作为经济运营基础的产业工人,也不应该被忽视。基础不牢,地动山摇,不想办法让这些一线的产业工人留下来,假以时日,当地的经济发展恐将____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不遗余力 难以为继\nB. 殚精竭虑 日暮途穷\nC. 处心积虑 不温不火\nD. 苦心孤诣 举步维艰", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 41409, "human_acc": 78.0893042575, "source": "2023下半年省考第三季行测模考大赛(广东县级卷)第18题", "difficulty": 4, "formulas": 0}, {"id": 5507553, "material": "", "question": "网上的低俗、恶俗乱象并非是个新问题,在“唯流量”观念下的多方逐利,让其____________。从卖惨审丑到猎奇恶搞,当这些网上的不良文化能够通过流量变现,个别商家、运营者甚至网络平台之间就容易形成错综复杂的利益链条,为了热度罔顾尺度,为了流量放弃质量,甚至____________。因此,当前网络生态治理的不少举措,剑锋所指正是“流量至上、唯利是从”的不良风气。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无以复加 助纣为虐\nB. 愈演愈烈 舍本逐末\nC. 如日中天 为虎作伥\nD. 变本加厉 推波助澜", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 39436, "human_acc": 40.8966426615, "source": "2023上半年省考第十季行测模考大赛(四川卷)第16题", "difficulty": 7, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5008368, "material": "", "question": "《孙子兵法·形篇》曰:“善用兵者,修道而保法,故能为胜败之政”。这一论述已经________“胜败之政”的军事层次,上升到了“战争之源”“用兵之本”的政治和哲学高度。智能化时代,战争与和平的界限越发模糊,正义与非正义的判断越发________,但邪不胜正的历史规律不会改变。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 超越 复杂\nB. 脱离 滞后\nC. 摒弃 笼统\nD. 突破 常态", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 182444, "human_acc": 90.2485146127, "source": "2022上半年省考第二十一季行测模考大赛(陕西卷)第32题", "difficulty": 3, "formulas": 0, "history": [{"id": 4633626, "material": "", "question": "《红楼梦》的情节虽以宝黛钗爱情故事为中心,但________了传统的才子佳人小说。在佳人形象上,更________女儿们的独立审美价值;在主旨大意上,意在打破陈腐旧套。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 摆脱 彰显\nB. 偏离 发掘\nC. 超越 凸显\nD. 超过 标榜", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 256380, "human_acc": 76.2473671893, "source": "2021下半年省考第三十五季行测模考大赛(深圳卷)第62题", "difficulty": 4, "formulas": 0}, {"id": 748685, "material": "", "question": "文化在世界上的分布,反映了权力的分布。贸易可能会、也可能不会跟着国旗走,但文化几乎总是______着权力。历史上,一个文明权力的扩张通常总是伴随着其文化的______,而且这一文明几乎总是运用它的这种权力向其他社会推行其价值观和体制。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 依附 渗透\nB. 追随 繁荣\nC. 附和 普及\nD. 配合 伸张", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "A", "human_count": 363773, "human_acc": 30.9173578028, "source": "2014年青海省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3826803, "material": "", "question": "早在2017年,针对电视上泛滥的“神医广告”现象,相关部门就已开展了集中整治活动。随后,“神医”和“神医广告”基本在电视上消失。然而随着移动互联网的发展、短视频平台的兴旺,各种“神医”大有在网络上____________之势。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 东山再起\nB. 靡然成风\nC. 浴火重生\nD. 死灰复燃", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;成语填空", "most_wrong": "A", "human_count": 115887, "human_acc": 90.9273689025, "source": "2021下半年省考第十五季行测模考大赛(陕西卷)第21题", "difficulty": 3, "formulas": 0, "history": [{"id": 2879664, "material": "", "question": "自2013年“上大学网”首发《中国虚假大学警示榜》至今,已经曝光五批共计400余所虚假大学。而一些虚假大学被曝光后,并没有常见的“曝光死”,而是____________、我行我素。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 靡然成风\nB. 死灰复燃\nC. 异军突起\nD. 蔚然成风", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;成语填空", "most_wrong": "A", "human_count": 35296, "human_acc": 27.7736854034, "source": "2022年国考第四季行测模考大赛(地市级)第23题", "difficulty": 7, "formulas": 0}, {"id": 2737601, "material": "", "question": "在艺术欣赏中我们常常可以遇到这样的情况:有的作品似乎每一个细节都很微妙,感染力却并不强烈;有的作品局部____________,通篇的效果却相当妙。可见,创作者在表现手法上的细密是必须____________的,否则可能弄巧成拙、事与愿违。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 差强人意 中规中矩\nB. 平淡无奇 恰到好处\nC. 乏善可陈 一以贯之\nD. 湮没无闻 适可而止", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;成语填空", "most_wrong": "C", "human_count": 120930, "human_acc": 90.6540974117, "source": "2021上半年省考第二季行测模考大赛(陕西卷)第31题", "difficulty": 3, "formulas": 0}, {"id": 22891, "material": "", "question": "2012赛季国际泳联世界水球联赛男子总决赛在阿拉木图拉开战幕。首日在美国对哈萨克斯坦的比赛中,双方球队在第一节攻防转换节奏较快。开局阶段是以4比4战平,_________;美国队在第二节却_________。随即将分差扩大到8比5;虽然东道主哈萨克斯坦队力拼防守,但是在第三节仍旧_________。最终以11比8主场告负。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 并肩前进 盛气凌人 不堪一击\nB. 齐头并进 气势汹汹 望风披靡\nC. 不分伯仲 势如破竹 回天无力\nD. 不相上下 斗志昂扬 无计可施", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;成语填空", "most_wrong": "D", "human_count": 630771, "human_acc": 92.6294962831, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第39题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3522605, "material": "", "question": "世界上的一万多种鸟,其实各有各的美丽,从各种华丽的羽毛,到鸟喙的形状,到鸣唱的声音,不能不让我们________生物多样性的神奇。进化论之父达尔文在加拉帕戈斯群岛上通过观察当地鸟类发现,虽然这些鸟类很明显长得很相似,有着共同的祖先,但是它们的鸟喙形状却____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 惊叹 大相径庭\nB. 惊奇 毫无二致\nC. 探索 云泥之别\nD. 追寻 异曲同工", "choice": "A", "keypoints": "关联关系-转折关系;混搭填空", "most_wrong": "C", "human_count": 1709846, "human_acc": 93.4850273066, "source": "2021年甘肃公务员录用考试《行测》题(网友回忆版)第32题", "difficulty": 3, "formulas": 0, "history": [{"id": 2259145, "material": "", "question": "和微博相比,微信公众号虽然少了_______,但是在互动及私密性上显然_______。这也是为什么有许多人前仆后继涌入微信公众号的原因。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 开放性 更胜一筹\nB. 关注度 拔得头筹\nC. 前瞻性 独树一帜\nD. 包容性 优劣分明", "choice": "A", "keypoints": "关联关系-转折关系;混搭填空", "most_wrong": "B", "human_count": 8215, "human_acc": 93.5970785149, "source": "2015年江西省法检系统招录考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 2388267, "material": "", "question": "花开是常有的事,花开的香气更是____________。但是在这个只有我一个人的世界里,我就觉得很不________。有花香慰我寂寥,我甚至有点因花香而________了。", "type": "单选题", "options": "A. 见怪不怪 单纯 迷乱\nB. 唾手可得 简单 沉迷\nC. 习以为常 平凡 陶醉\nD. 司空见惯 寻常 沉醉", "choice": "D", "keypoints": "关联关系-转折关系;混搭填空", "most_wrong": "C", "human_count": 857936, "human_acc": 73.0643078272, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 2256333, "material": "", "question": "时间不能倒流,但生活可以同样精彩,不一定是儿时的无知,却可以有当时的______;不一定是此时的四平八稳,却可以像小时候那样______;不一定要抓住过往牢牢不放,却可以珍惜当下创造不凡。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 天真 天马行空\nB. 无邪 颠沛流离\nC. 无邪 天马行空\nD. 天真 颠沛流离", "choice": "C", "keypoints": "关联关系-转折关系;混搭填空", "most_wrong": "A", "human_count": 33581, "human_acc": 52.2319168577, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第11题", "difficulty": 5, "formulas": 0}, {"id": 2439988, "material": "", "question": "形式主义人人喊打,但到底形式主义是什么、怎样克服形式主义,一些人却____________。往往是以形式主义反对形式主义,这种不当________模式,必然导致基层治理空洞化、政策执行空白化、治理对象空心化。\n\n依次填入划横线部分最恰当的词语是:", "type": "单选题", "options": "A. 众说纷纭 认知\nB. 众口难调 运作\nC. 指手画脚 应对\nD. 莫衷一是 思维", "choice": "D", "keypoints": "关联关系-转折关系;混搭填空", "most_wrong": "A", "human_count": 497874, "human_acc": 65.4950851019, "source": "2019年青海省法院、检察院录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 2051246, "material": "", "question": "研究者称,可爱的人真诚善良,平和亲切,他们会让对方放下______,更愿意与之交朋友,适当地在家人和朋友面前学句夸张的“可爱语”,偶尔穿一次可爱的衣服,能让人显得有童趣,但如果一味地脱离年龄,刻意装可爱,只会是______________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 骄傲 事倍功半\nB. 自卑 削足适履\nC. 成见 东施效颦\nD. 戒备 适得其反", "choice": "D", "keypoints": "关联关系-转折关系;混搭填空", "most_wrong": "C", "human_count": 1085591, "human_acc": 92.1389363029, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5660811, "material": "", "question": "很多人以为中国书店是家百十来年的老字号,一走进中国书店就仿佛穿越回古代的书肆,整个人也一下子舒缓下来,不由得____________地翻弄起那些夹着纸签的蓝布函套。可中国书店的历史并不太久,正式挂牌不过是上世纪50年代的事。然而,它又的确与老北京的古旧书行____________,把这一行当独有的经营文化像化石一样保存下来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 慢条斯理 一脉相承\nB. 不疾不徐 相辅相成\nC. 有条不紊 薪火相传\nD. 漫不经心 如出一辙", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 73687, "human_acc": 75.4325729097, "source": "2023下半年省考第十三季行测模考大赛(广东县级卷)第18题", "difficulty": 4, "formulas": 0, "history": [{"id": 1746652, "material": "", "question": "实际上雾霾形成的原因是多方面的,识别污染源是有效治理大气污染至关重要的环节。对京津冀区域而言,认清区域内污染源的共性及差别,有助于区域内地区________地对污染源进行综合治理。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因地制宜\nB. 正本清源\nC. 齐心协力\nD. 有的放矢", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 3186448, "human_acc": 51.4335084081, "source": "2016年国家公务员录用考试《行测》题(副省级)第25题", "difficulty": 5, "formulas": 0}, {"id": 5188152, "material": "", "question": "评书的勃兴,早年和书场的繁荣____________。北方评书,南方弹词,上世纪30年代,伴随着城市文化的兴起,曾经____________,在上海是仅次于电影的第二大娱乐项目,至四五十年代,最多时上海有近600家书场。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 环环相扣 炙手可热\nB. 唇齿相依 风靡一时\nC. 惺惺相惜 名声大噪\nD. 息息相关 交口称赞", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 124710, "human_acc": 77.8454013311, "source": "2022下半年省考第六季行测模考大赛(深圳卷)第63题", "difficulty": 4, "formulas": 0}, {"id": 2043652, "material": "", "question": "读书有两种情形,一种是看大意,_________地看故事消磨时间,一种细细品味,去_________寻找文章的构思,寻找文外的寓意。这就是读书的两种不同的方式和目的。不过,不管是哪一种读书方式都是一种知识的积累。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 走马观花 字斟句酌\nB. 囫囵吞枣 字里行间\nC. 一目十行 全神贯注\nD. 漫不经心 片言只语", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 1007701, "human_acc": 41.6304042568, "source": "2017年江苏省公务员录用考试《行测》题(C类)第43题", "difficulty": 5, "formulas": 0}, {"id": 3532730, "material": "", "question": "许多传统手工造纸行业几乎____________,如今闽西手工造纸当中只有连城的连史纸是省级非物质文化遗产,得到社会各界的关注和支持,尚可生存和走向市场,而其他手工纸槽因为没有经济效益难以维系,那些几百年来留下来的老纸寮让人为之____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消失殆尽 扼腕叹息\nB. 分崩离析 痛心疾首\nC. 荡然无存 追悔莫及\nD. 名存实亡 茫然若失", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 61662, "human_acc": 94.3838993221, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第26题", "difficulty": 3, "formulas": 0}, {"id": 50223, "material": "", "question": "在微博上,不同群体表现出的特征各异:“60后”______,指点江山,______;“70后”______,常制造深度话题;“80后”从不______,参与度较高;“90后”则基本上是娱乐。\n\n从下列选项中选择最恰当的一组填入横线中:", "type": "单选题", "options": "A. 激扬文字 一泻千里 讷言敏行 深思熟虑\nB. 好为人师 胸有成竹 谨言慎行 袖手旁观\nC. 深思熟虑 激扬文字 敏锐多思 袖手旁观\nD. 激扬文字 胸有成竹 袖手旁观 深思熟虑", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 769163, "human_acc": 73.4291691098, "source": "2013年河北省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 51619, "material": "", "question": "对于上海“甜爱路”上出现的种种涂鸦图案和文字,是简单地、一味地去阻止或______,还是______其存在和发展,也在______我们的城管理念。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 取消 鼓励 试验\nB. 无视 重视 拷问\nC. 打击 包容 质问\nD. 取缔 允许 考验", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 458974, "human_acc": 62.2468810869, "source": "2013年广州市公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 4988495, "material": "", "question": "在不断探索与争鸣中,小剧场戏曲走过了20余年的历程。尽管总体仍处于发展阶段,但从陌生到________、从荒芜到繁盛,昭示了小剧场戏曲朝阳似的现在和锦绣般的未来,________着戏曲艺术的繁荣,影响着文化的昌盛。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 知悉 助推\nB. 熟稔 牵系\nC. 谙熟 决定\nD. 知晓 诠释", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 155161, "human_acc": 54.3519312198, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第32题", "difficulty": 6, "formulas": 0}, {"id": 4737368, "material": "", "question": "数字化的媒介________了空间的边界,也模糊了生活的界限。城市文化空间发生了相应的改变。多样化的空间形态开始形成,现实感与虚拟感________,实体空间结构趋于动态,并越来越多地呈现出与虚拟空间亦虚亦实的互动共存。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 弱化 交织\nB. 消弭 交融\nC. 淡化 合契\nD. 重塑 融合", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 326409, "human_acc": 64.3934450337, "source": "2022上半年省考第八季行测模考大赛(四川卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 4563180, "material": "", "question": "数据安全体现为国家机密、商业机密等信息的保密性、可用性,关键在于不被________、篡改或损毁。数据已经成为驱动科技创新和数字经济的新________,助力国家治理能力和治理体系现代化。数据安全和利用能力,已经成为国家能力矩阵中的重要支撑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 破坏 动力\nB. 盗用 思路\nC. 删除 支柱\nD. 窃取 引擎", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 357603, "human_acc": 90.5129431241, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第60题", "difficulty": 3, "formulas": 0}, {"id": 2823096, "material": "", "question": "疗愈音乐是舒缓、平静、不复杂的,音色需要柔和,避免过于沉重的低频,也不具有刺激性的高频,目的是营造一种轻松的氛围感。这种音乐一般没有________的音乐结构,只是一些零散的旋律,有一些________和不明确的情绪表达,但是让人听了之后会感到非常放松,同时又不被旋律所________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 系统 琐碎 骚扰\nB. 完整 模糊 干扰\nC. 特殊 晦涩 扰乱\nD. 严谨 抽象 扰动", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 242554, "human_acc": 83.5471688779, "source": "2021上半年省考第十季行测模考大赛(重庆卷)第40题", "difficulty": 4, "formulas": 0}, {"id": 5637969, "material": "", "question": "常被认为是不毛之地的内盖夫沙漠,占据着当今以色列约60%的面积。三十年前,在内盖夫沙漠养鱼的想法也许会受尽________;而现在,内盖夫沙漠的水产养殖业已经成为以色列的财富来源之一。经过各国科学家的不懈努力,将沙漠养鱼的概念普及到更多的干旱地区。只要地下有含水层,就可以________。美国亚利桑那州就利用这一技术,先后建立了数十座沙漠养鱼场。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 嘲讽 借鉴\nB. 质疑 嫁接\nC. 诟病 学习\nD. 讥讽 复制", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 3357, "human_acc": 61.4238903783, "source": "2023下半年省考第十一季行测模考大赛(陕西卷)第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3606563, "material": "", "question": "小王某日驾车从甲地出发前往乙地,每天匀速行驶5小时,且每天的行驶速度都比前一天下降3千米/小时。最后一天行驶5小时后正好抵达乙地,且当天行驶了90千米。已知驾车行驶时的最高速度是最低速度的4倍,问小王从出发到抵达乙地共行驶了多少天?", "type": "单选题", "options": "A. 17\nB. 19\nC. 20\nD. 21", "choice": "B", "keypoints": "数列问题;普通行程", "most_wrong": "C", "human_count": 75182, "human_acc": 57.7039716954, "source": "2021下半年省考第六季行测模考大赛(广东县级卷)第31题", "difficulty": 6, "formulas": 0, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "行程问题", "普通行程"]]}, {"id": 2576576, "material": "", "question": "曹操败走华容道是著名的三国故事,由此________出的游戏——华容道,带给人们无限的乐趣。华容道游戏以其________、百玩不厌的特点,被许多人所喜爱。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 衍生 变化多端\nB. 催生 反复无常\nC. 滋生 变幻莫测\nD. 派生 风云变幻", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 20352, "human_acc": 89.0428459119, "source": "2020年上半年省考第三十二季行测模考大赛(海南卷)第42题", "difficulty": 3, "formulas": 0, "history": [{"id": 5447455, "material": "", "question": "有了大历史观与大时代观,我们才能在____________的生活表象与喧嚣的信息洪流中深刻把握社会的内在结构,于风起云涌和沧海桑田中清醒、清楚、清晰地认知我们所处的历史方位。由此而来的作品,可以从生活的静水深流中________时代的波澜壮阔,从现实的纷繁复杂中辨析历史的节奏与步伐。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 水陆杂陈 洞察\nB. 盘根错节 窥测\nC. 光怪陆离 预判\nD. 纷繁复杂 窥见", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 202579, "human_acc": 63.6132076869, "source": "2023上半年省考第四季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 11053, "material": "", "question": "允许媒体发言,是一种文明, ______ 允许媒体存在一定的出于真实的谬误,也是保证媒体有效发言的文明。 ______ 这种文明, ______ 祛除任何对于真实的畏惧。", "type": "单选题", "options": "A. 一旦 只有 才能\nB. 甚至 只有 才能\nC. 一旦 只要 就能\nD. 甚至 只要 就能", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-词义侧重", "most_wrong": "A", "human_count": 69856, "human_acc": 91.1145785616, "source": "2008年湖北省公务员录用考试《行测》题(B类)第5题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 249597, "material": "", "question": "他过多地使用安眠药,实在已经达到了________的地步,必须想办法制止他的行为。填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 滥用\nB. 适用\nC. 胡用\nD. 使用", "choice": "A", "keypoints": "词的辨析-程度轻重;实词填空", "most_wrong": "C", "human_count": 19908, "human_acc": 97.619047619, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5391976, "material": "", "question": "根据苏轼、曾纮等对陶渊明诗歌的有关评价,“枯槁”是指表面________但内在丰富的风格,是陶诗最重要的优点。这样一来,杜甫对陶诗内容的批评,变成了对陶诗风格的批评。因为“枯槁”是陶诗的重要优点,杜甫的批评自然就成了不合理的________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 平淡 偏见\nB. 庸俗 成见\nC. 平庸 误解\nD. 常见 误读", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空", "most_wrong": "C", "human_count": 31349, "human_acc": 65.3130881368, "source": "2022下半年省考第二十季行测模考大赛(浙江C卷)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 20023, "material": "", "question": "书法艺术在总体上是一种______美,它与人品的关系,曲折错综。许多性格柔弱的文人却有一副______的笔墨,而沙场猛将的字迹倒未必有______之气。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 形象 奇崛 暴戾\nB. 形象 雄健 杀伐\nC. 形式 雄健 暴戾\nD. 形式 奇崛 杀伐", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空", "most_wrong": "B", "human_count": 535215, "human_acc": 12.7683267472, "source": "2012年江西省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0}, {"id": 21775, "material": "", "question": "当前人们常常感叹于艺术的功利化和庸俗化倾向,这已是有目共睹的现实。这种倾向的本质正在于画家选美精神和文化品格的_________。在油画创作中,技巧固然重要,但这毕竟只是_________,实质起作用的还是画家自身的审美精神和文化品格。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 意识性 外表\nB. 趋向性 铺垫\nC. 鄙俗化 方法\nD. 贫乏化 基础", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空", "most_wrong": "C", "human_count": 596760, "human_acc": 39.2422414371, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第10题", "difficulty": 6, "formulas": 0}, {"id": 5460027, "material": "", "question": "帽儿胡同位于北京老城区鼓楼和地安门之间,虽然经历了岁月________,但依然保存着它原来的风貌。帽儿胡同住宅内有一处花园,被称为可园。可园是仿苏州拙政园、狮子林修建的大四合院,建造________了许多的财富与心思,也因此被专家认为是晚清北京私家园林中最具艺术价值的花园。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 洗礼 付诸\nB. 蹉跎 花费\nC. 侵蚀 挥霍\nD. 蚕食 耗费", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空", "most_wrong": "A", "human_count": 248228, "human_acc": 21.8093849203, "source": "2023上半年省考第六季行测模考大赛(深圳卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 2453278, "material": "", "question": "毋庸置疑,歪曲原意、难以卒读的译文断不可取;但表达与表意、本意与诗意,如同难以兼顾的跷跷板。正如专家所说:从______的逐字翻译到忠实而又自由的重述,到模仿、再创造、变化、解释性的对应,可以排成一个连续性的光谱······从哪一点出发,都可以产生______的译文。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 严格 精彩\nB. 简单 直白\nC. 刻板 妥帖\nD. 认真 恰当", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;实词填空", "most_wrong": "C", "human_count": 1323331, "human_acc": 56.1289654667, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5344164, "material": "", "question": "目前发现最早的汉字是甲骨文,距今约3600年历史,是几乎没有受到任何外来文字影响的__________文字。虽然书写形式上经历了陶符甲骨、夏彝商鼎、秦篆汉隶的字形演变,但构字原理数千年来未曾变化。因此,如果要说哪种文字可以代表文字的自然演化过程和进化规律,汉字____________。五千年的灿烂文明,正是通过千年未绝的汉字媒介传承至今,成为中华民族________世界民族之林的文化基因和精神符号。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自觉性 实至名归 屹立\nB. 自源性 当之无愧 傲立\nC. 独立性 首当其冲 伫立\nD. 主体性 不孚众望 耸立", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 215617, "human_acc": 70.7796695066, "source": "2022下半年省考第十六季行测模考大赛(江苏A卷)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 4633614, "material": "", "question": "有一种谈话,便是跟自己。我不是指出声的____________,而是指自我的沉思默想,但是一般人的心灵承受不了多少________,总需要有一点声音来解救。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自言自语 静默\nB. 众说纷纭 沉寂\nC. 沸沸扬扬 缄默\nD. 自说自话 孤独", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 261188, "human_acc": 80.9707949829, "source": "2021下半年省考第三十五季行测模考大赛(深圳卷)第59题", "difficulty": 4, "formulas": 0}, {"id": 2818784, "material": "", "question": "如果翻看传统注解,会发现古时学者多致力于发现《诗经》诗篇中重章结构的词义变换及其内涵,但问题在于他们犯了____________的毛病,试图将所有重章都从语义角度强行进行解释,因此才引起今人的________。而今人在批驳古人时,又往往走向另一个极端。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 张冠李戴 揶揄\nB. 削足适履 戏谑\nC. 重规叠矩 批判\nD. 一概而论 不满", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 258975, "human_acc": 42.1720243267, "source": "2022年国考第二季行测模考大赛(副省级)第27题", "difficulty": 6, "formulas": 0}, {"id": 2434257, "material": "", "question": "崔颢的《黄鹤楼》与李白的《登金陵凤凰台》两首诗谁高谁下,历代文人纷争不已,但见仁见智,也很难做出________的判决。李白之所以定要在这首诗上争个高下,也许是因为在他擅长的写作手法上崔颢竟然取得了杰出的成就,使他自己也____________吧。\n\n依次填入画横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 绝对 耿耿于怀\nB. 正确 望尘莫及\nC. 科学 心有不甘\nD. 专业 自惭形秽", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 487089, "human_acc": 62.4261685236, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第31题", "difficulty": 5, "formulas": 0}, {"id": 3666609, "material": "", "question": "西非萨赫勒地区是世界上最贫穷的地区之一,国家内乱严重,民族、宗教矛盾________,持续动荡的原因十分复杂,猖獗的恐怖主义只是地区动荡的一种表现而非根源,需要采取更多的综合性治理手段。因此,组建联合部队实施军事反恐,只是____________,并不能实现该地区的长久和平与稳定。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 共存 心劳日拙\nB. 暗合 权宜之计\nC. 交融 徒劳无益\nD. 交织 扬汤止沸", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 92301, "human_acc": 70.8529701737, "source": "2021下半年省考第八季行测模考大赛(甘肃卷)第29题", "difficulty": 4, "formulas": 0}, {"id": 5445776, "material": "", "question": "长期以来,城管执法部门对职责内的执法事项通常是________“用力”,对所有的执法对象“一碗水端平”,以体现执法的公平性、公正性。但对于超大城市而言,由于城管执法事项繁多,涉及市场主体庞杂,而城管执法力量是有限的,实践中很难做到____________,进而可能会影响执法效果和执行力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 精准 滴水不漏\nB. 均衡 百无一失\nC. 精确 精益求精\nD. 平均 面面俱全", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 1507340, "human_acc": 59.5322223254, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5431305, "material": "", "question": "要使中华民族共同体研究为新时代党的民族工作高质量发展服务,为实现中华民族伟大复兴的中国梦服务,就必须深刻理解和准确把握理论与实践之间的辩证统一关系。任何实践若缺少理论的指导,就会带来________的行动;同样,任何理论若脱离实践基础,就会变成________的说教。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 果敢 机械\nB. 迟缓 空泛\nC. 莽撞 刻板\nD. 盲目 空洞", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 63729, "human_acc": 88.3616563888, "source": "2023上半年省考第一季行测模考大赛(陕西卷)第23题", "difficulty": 3, "formulas": 0, "history": [{"id": 4543285, "material": "", "question": "一段时间以来,“家庭作业”成为“家长作业”的现象引起了很多讨论。家庭作业的本意在于加深学生对课堂知识的理解和掌握,是学习的重要组成部分,但将教育责任以作业的形式________给家长,则是一种关系错位。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 转嫁\nB. 转化\nC. 转移\nD. 转换", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 19820, "human_acc": 55.7669021191, "source": "2021下半年省考第三十一季行测模考大赛(内蒙古卷)第22题", "difficulty": 5, "formulas": 0}, {"id": 2388263, "material": "", "question": "人们所肯定和赞赏的血性,应当属于性格评价和审美取向的范畴。血性是个________而又朴拙的词汇,本身就具有张力和亢奋色彩。因此在理解和使用上应该有所________,否则就会混淆粗犷与________、豪壮与莽撞、文明与野蛮、人性与兽性。", "type": "单选题", "options": "A. 中性 限制 粗鲁\nB. 原始 界定 粗野\nC. 古老 区分 粗放\nD. 野性 取舍 粗疏", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 1419759, "human_acc": 57.6387260091, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第24题", "difficulty": 5, "formulas": 0}, {"id": 2144758, "material": "", "question": "如何去________隐藏在已千变万化了的各种学说背后尚未完全遗失的经典原貌,获得真实的体温和人格图谱,从而剥离后世僵化、变异、乏味、随心所欲的解读,尤其是那些自以为智慧的肢解和________,当是目前国学热当中应解决的重要问题。\n\n依次填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 探求 伪造\nB. 搜寻 修改\nC. 发掘 篡改\nD. 挖掘 窜改", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 19059, "human_acc": 67.1703657065, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第26题", "difficulty": 4, "formulas": 0}, {"id": 5451254, "material": "", "question": "大雁北归,寒梅着花。小寒时节,北方的喜鹊________到阳气,开始为来年修筑巢穴。小寒于寒冷中蕴藏着临近春日的生机,于银装素裹中________着生命绽放的力量。生活的美学与生命的智慧在节气更迭间不断延续,纵冰封千里,若心怀信念,便无惧萧索与孤寒。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 感知 滋生\nB. 觉察 孕育\nC. 领会 滋养\nD. 探寻 培育", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 217363, "human_acc": 81.2185146506, "source": "2023上半年省考第五季行测模考大赛(深圳卷)第65题", "difficulty": 4, "formulas": 0}, {"id": 4678592, "material": "", "question": "一直以来,我国文化产业发展方式比较粗放,存在战略规划宏大而实现路径模糊以及生产成本高、附加值低等问题,从长远看,________依靠资源投入来实现发展,必然会影响文化产业发展的质量和收益。因此,实行__________经营,不仅是转变文化产业发展方式的题中应有之义,还是提高文化产业发展水平的必由之路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 过渡 集约化\nB. 过度 集约化\nC. 适当 规模化\nD. 充分 规模化", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 13689, "human_acc": 97.7061874498, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第18题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 1791746, "material": "", "question": "在成文法背景下,法官没有主动创造法律的_________,但在出现法律模糊、空白等情形时,法官只能通过解释法律来发展和________立法。\n\n依次填入划横线处最恰当的一项是(    )。", "type": "单选题", "options": "A. 责权 补充\nB. 权利 完成\nC. 权力 完善\nD. 授权 促成", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 445086, "human_acc": 84.1922684605, "source": "2016年江苏省公务员录用考试《行测》题(C类)第44题", "difficulty": 4, "formulas": 0, "history": [{"id": 4682901, "material": "", "question": "中国举办进博会,向国际社会传递出坚定扩大开放、共享市场机遇的明确信号,这一信号不是短期的脉冲,而是________嘹亮的号角。中国以进博会为________主动扩大进口,将进一步激发国内市场活力,带动国际市场同频共振、共同发展,助力人类社会早日走出疫情阴霾,促进世界经济快速复苏。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 持续 契机\nB. 长期 范本\nC. 恒久 机遇\nD. 高亢 引擎", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 254747, "human_acc": 86.0999344448, "source": "2022上半年省考第三季行测模考大赛(四川卷)第20题", "difficulty": 4, "formulas": 0}, {"id": 5564422, "material": "", "question": "人们可以通过艺术审美得到精神的慰藉和道德的教育,因而需要进一步挖掘闽台地方戏曲艺术的美育特质,________和弘扬其美育精神,为大众提供精神食粮。著名教育家蔡元培先生在《智育十篇》中就曾说过:“吾人急应提倡美育,使人生美化,使人的性灵寄托于美,而将忧患忘却。”话语间可见戏曲对良好习惯养成和高尚情操________有着积极意义。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 整改 滋养\nB. 发扬 渲染\nC. 崇奉 浸染\nD. 传播 熏陶", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 3754, "human_acc": 87.799680341, "source": "2023下半年省考第二季行测模考大赛(陕西卷)第25题", "difficulty": 3, "formulas": 0}, {"id": 5435027, "material": "", "question": "乡村振兴,既要有产业的________,也要有文化的繁盛。文化的土层深厚,才能让村民更好地扎根其上,寻回更多“乡恋”与“乡愁”,与故土故园产生更________的情感联结。正如“村BA”所展示的文化图景:村里组成篮球队、村民成为拉拉队、村际打起友谊赛,都是在“乡村时空”中________了一层“文化时空”,把乡村和村民纳入到了一个“文化磁场”之中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 兴旺 牢固 增添\nB. 蓬勃 清晰 衔接\nC. 发达 稳定 盘活\nD. 崛起 强韧 凝结", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 101591, "human_acc": 89.8248860627, "source": "2023上半年省考第二季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4674652, "material": "", "question": "一项工程,甲的工作效率比乙多$\\frac{1}{3}$,原计划两人合作36天完工。由于器械原因,两人合作若干天后,甲的工作效率比原来降低25%,乙的工作效率比原来降低20%,两人继续合作至完工,且恰好都用整数天。问完成该工程共用多少天?", "type": "单选题", "options": "A. 44\nB. 45\nC. 47\nD. 48", "choice": "A", "keypoints": "给效率比例型;普通不定方程", "most_wrong": "B", "human_count": 213529, "human_acc": 18.1783270656, "source": "2022上半年省考第二季行测模考大赛(四川卷)第48题", "difficulty": 7, "formulas": 1, "history": [{"id": 2034050, "material": "", "question": "两个工人完成一项生产任务,甲单独干一天可以完成任务的$\\frac{1}{4}$,乙单独干两天可以完成任务的$\\frac{3}{4}$。如何安排两人,使其在最少的整数天完成任务?", "type": "单选题", "options": "A. 甲单独干三天\nB. 甲乙一起干一天,乙再干一天\nC. 甲乙一起干两天\nD. 甲单独干一天,乙单独干两天", "choice": "B", "keypoints": "给效率比例型;普通不定方程", "most_wrong": "C", "human_count": 222593, "human_acc": 72.2906829954, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第56题", "difficulty": 4, "formulas": 2}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给效率比例型"], ["数量关系", "数学运算", "不定方程问题", "普通不定方程"]]}, {"id": 8275, "material": "", "question": "现在的标准化考试几乎都变成了考试组织方和应考方斗智斗勇的博弈游戏。考试的主办方____________用一个个小陷阱________考生做错,考生则尽可能地搜集陷阱模式,境界是眼睛一扫题目,就知道对方腰里别的是什么暗器。", "type": "单选题", "options": "A. 千方百计 引诱\nB. 处心积虑 希望\nC. 费尽心机 导致\nD. 殚精竭虑 迫使", "choice": "A", "keypoints": "词的辨析-感情色彩;混搭填空", "most_wrong": "C", "human_count": 86950, "human_acc": 89.8596894767, "source": "2009年广东省公务员录用考试《行测》题第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 11925, "material": "", "question": "电影纪录片的数量正在逐渐下降,能够在影院放映的纪录片已属(  ),“幽暗大厅的芳香”越来越被各种各样无色无味的电子雾(  ),也越来越成为人们心中的记忆。\n\n依次填入括号内的词语,最恰当的一组是:", "type": "单选题", "options": "A. 凤毛麟角 吞噬\nB. 寥寥无几 吞没\nC. 屈指可数 掩盖\nD. 寥若星辰 遮蔽", "choice": "A", "keypoints": "词的辨析-感情色彩;混搭填空", "most_wrong": "B", "human_count": 45628, "human_acc": 60.0771456123, "source": "2009年山西省公务员录用考试《行测》题第41题", "difficulty": 5, "formulas": 0}, {"id": 2376977, "material": "", "question": "引经据典的风气始于西汉初期,大盛于东汉,呈现的是____的趋势。但是,文学毕竟有别于经学,文学创作要取得成就,就必须超越经学的____,尤其要摆脱章句之学的束缚。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 愈演愈烈 藩篱\nB. 变本加厉 藩篱\nC. 愈演愈烈 窠臼\nD. 变本加厉 窠臼", "choice": "A", "keypoints": "词的辨析-感情色彩;混搭填空", "most_wrong": "C", "human_count": 1435796, "human_acc": 63.3297487944, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第8题", "difficulty": 5, "formulas": 0}, {"id": 2765066, "material": "", "question": "创作不能就科幻写科幻,很多时候编剧为了营造视觉悬念,________地融入一些科幻元素,反而容易陷入形式主义的旋涡,使作品徒有充满现代感的躯壳。无论是科幻题材还是现实题材,真正___________的内核仍应该是引发观众情感共鸣的人物和故事。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 隐晦 感同身受\nB. 刻意 咂舌攒眉\nC. 生硬 引人入胜\nD. 巧妙 奇趣横生", "choice": "C", "keypoints": "词的辨析-感情色彩;混搭填空", "most_wrong": "B", "human_count": 141928, "human_acc": 81.830928358, "source": "2021上半年省考第五季行测模考大赛(四川卷)第16题", "difficulty": 4, "formulas": 0}, {"id": 2261848, "material": "", "question": "共享单车中的不文明现象不断见诸报端,一场有关“国民素质高低”的争论也随之而来。实际上,所谓的“低素质者”,只是在无规则规范、无法律约束状态下______的“无监管人群”而已。简单以市民素质低来解释共享单车乱象频发,颇有______之嫌。\n\n依次填入划横线部分的词语,最恰当的一项是:", "type": "单选题", "options": "A. 催生 以偏概全\nB. 纵容 断章取义\nC. 诞生 一叶障目\nD. 孕育 避重就轻", "choice": "A", "keypoints": "词的辨析-感情色彩;混搭填空", "most_wrong": "B", "human_count": 8300, "human_acc": 70.6626506024, "source": "2017年湖北省选调生行测题(精选)第78题", "difficulty": 5, "formulas": 0}, {"id": 2604035, "material": "", "question": "今天我们正处在一个百年未有之变局的大变革时代。技术化社会的高科技正在全方位_________着人们的生活方式,传统的思想观念正面临断崖式塌陷,价值观多元让人们对是非、美丑、善恶的判断力弱化。错综复杂的现实场景让诚信在一些人的头脑中变得模糊不清,甚至与我们的生活____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 颠覆 渐行渐远\nB. 打破 南辕北辙\nC. 革新 背道而驰\nD. 重塑 相去甚远", "choice": "A", "keypoints": "词的辨析-感情色彩;混搭填空", "most_wrong": "C", "human_count": 299624, "human_acc": 57.6152110645, "source": "2021年国考第十季行测模考大赛(副省级)第32题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4673693, "material": "", "question": "他的水墨画一方面继承传统艺术的精粹又摒弃其____________的程式化语言,另一方面汲取一些西方现代艺术观念与构成元素去解构传统笔墨中的暮气,进而重塑一个“有意味形式”的新秩序。他没有固守“____________”式的孤芳自赏,而是将“群众鼓掌”作为一种崇高的追求。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈陈相因 阳春白雪\nB. 一脉相承 顾影自怜\nC. 穿凿附会 束之高阁\nD. 亘古不变 纸上谈兵", "choice": "A", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 50953, "human_acc": 49.1688418739, "source": "2022上半年省考第二季行测模考大赛(西藏卷)第3题", "difficulty": 7, "formulas": 0, "history": [{"id": 2452785, "material": "", "question": "读书,就是与博学的先生对话。他以和缓的语调,告诉我物质的速朽和精神的永恒。譬如当年唐宋,曾________雕梁画栋,而存活于人心________的,却是激扬精神的诗词咏歌。", "type": "单选题", "options": "A. 肥马轻裘 念念不忘\nB. 锦衣玉食 念念不忘\nC. 锦衣玉食 不朽流传\nD. 肥马轻裘 不朽流传", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 230775, "human_acc": 53.7176903911, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第5题", "difficulty": 4, "formulas": 0}, {"id": 2605785, "material": "", "question": "伟大的成就与变革,往往是前所未有的,是____________的,是惊心动魄的,却没有一个是____________的,是信手拈来的,是一蹴而就的。\n\n填入划横线部分最恰当的一组是:", "type": "单选题", "options": "A. 空前绝后 一帆风顺\nB. 开天辟地 空中楼阁\nC. 荡气回肠 轻而易举\nD. 振聋发聩 日行千里", "choice": "C", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 1737482, "human_acc": 53.2271989005, "source": "2020年广东省公务员录用考试《行测》试题(县级卷)(网友回忆版)第5题", "difficulty": 4, "formulas": 0}, {"id": 1378637, "material": "", "question": "中国改革已进入攻坚期和深水区,需要解决的问题格外艰巨,都是难啃的硬骨头。这个时候就要一鼓作气,____________、畏葸不前不仅不能前进,而且可能____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 优柔寡断 半途而废\nB. 三心二意 功败垂成\nC. 迟疑不决 功亏一篑\nD. 瞻前顾后 前功尽弃", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1461683, "human_acc": 64.8814414617, "source": "2015年425联考《行测》题(贵州卷)第26题", "difficulty": 5, "formulas": 0}, {"id": 2270574, "material": "", "question": "如何将一项草根赛事办出声势、办出影响?“谁是球王”给出的答案是:合理调配各种资源,有名将助阵而不________________,让体育爱好者真正成为赛场主角。纵观整个赛事的运作过程,乒乓名将甘愿为草根选手做陪衬的务实心态的确是________________、堪称楷模。", "type": "单选题", "options": "A. 鸠占鹊巢 可圈可点\nB. 喧宾夺主 可圈可点\nC. 鸠占鹊巢 可歌可泣\nD. 喧宾夺主 可歌可泣", "choice": "B", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 9609, "human_acc": 84.5977729212, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第22题", "difficulty": 5, "formulas": 0}, {"id": 2521933, "material": "", "question": "“做正确的事”,要求我们的目标制定要符合实际情况、符合客观规律、符合科学精神,不____________,不脱离实际,只有这样才能做对事;“正确地做事”,要求我们选准措施。效果好不好,很大程度上取决于措施是不是有效,若措施配套不当,再正确的事也可能事倍功半,甚至____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 急功近利 雪上加霜\nB. 好高骛远 适得其反\nC. 投机取巧 事与愿违\nD. 故弄玄虚 功败垂成", "choice": "B", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 239094, "human_acc": 76.153730332, "source": "2021年国考第一季行测模考大赛(副省级)第25题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 764289, "material": "", "question": "某公交车停车场内停着10辆公交车,上午7点整有一辆公交车进入停车场,同时有一辆公交车离开停车场,以后每隔12分钟都有一辆公交车驶入停车场,每隔10分钟有一辆公交车离开停车场,则到当天下午什么时候停车场里的公交车全都开出:", "type": "单选题", "options": "A. 4:30\nB. 4:50\nC. 5:00\nD. 4:10", "choice": "D", "keypoints": "周期相遇问题;和差倍比问题", "most_wrong": "C", "human_count": 189107, "human_acc": 18.7169168777, "source": "2014年黑龙江省公务员录用考试《行测》题第52题", "difficulty": 7, "formulas": 0, "history": [{"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2137116, "material": "", "question": "有一种电子铃,每到整点就响一次铃,每走9分钟亮一次灯。正午12点时,它既亮灯又响铃。它下一次既响铃又亮灯是下午几点钟?", "type": "单选题", "options": "A. 1点钟\nB. 2点钟\nC. 3点钟\nD. 4点钟", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 384741, "human_acc": 81.9218643191, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第73题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 5425556, "material": "", "question": "某部门8人开会,会议室的圆桌刚好有8张椅子。其中,甲和乙因为要主持本次会议须坐在一起,其他人可自由落座,则丙和丁的位置均不与甲和乙相邻的概率为多少?", "type": "单选题", "options": "A. $\\frac{2}{5}$\nB. $\\frac{1}{5}$\nC. $\\frac{2}{7}$\nD. $\\frac{1}{7}$", "choice": "A", "keypoints": "环形排列问题;不相邻问题;相邻问题;给情况求概率", "most_wrong": "C", "human_count": 221842, "human_acc": 11.7827102172, "source": "2022下半年省考第二十四季行测模考大赛(深圳卷)第60题", "difficulty": 7, "formulas": 335, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "排列组合问题", "相邻问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 4525832, "material": "", "question": "灵感不会凭空而来,而是来自广博的阅读,深入的思考,也来自对大千世界、人间烟火的体察和品味。有了灵感,学术研究就不会冰冷生硬、枯燥乏味,而是____________,时时充满了惊喜与发现。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 引人入胜\nB. 相辅相成\nC. 含英咀华\nD. 寓教于乐", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 251116, "human_acc": 54.7117666736, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第23题", "difficulty": 6, "formulas": 0, "history": [{"id": 4576415, "material": "", "question": "占卜的把戏既不高明也不新鲜,为何却能让不少人上当受骗?为何一些年轻人对传统算命____________,却对网络占卜津津乐道?当算命从线下走到线上,眼花缭乱的营销手段、____________的话术套路,很容易让人在不知不觉中跌入圈套。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 嗤之以鼻 故弄玄虚\nB. 不屑一顾 虚张声势\nC. 作壁上观 弄虚作假\nD. 不以为然 高深莫测", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 313113, "human_acc": 88.1745567894, "source": "2021下半年省考第三十三季行测模考大赛(陕西卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 764279, "material": "", "question": "随着科技的发展、物质的丰富,如今的娱乐形式越来越缤纷多样,如电视剧、流行音乐、网络等。它们在给人快乐、满足人的欲望方面,更加快捷方便,也有着更大的刺激性和吸引力,比诗歌有着强得多的优势。人天生是寻求快乐的动物,既然有更好的娱乐方式,可以使人迅速消除烦恼,得到快感和精神享受,那么何必还要阅读诗歌?只有一些俗世高人,他们在空暇之日或夜阑人静时,或许会悄悄打开诗集,去聆听诗人梦幻般的自言自语,分享诗人心灵的孤独。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 快捷多元的娱乐方式导致了诗歌的衰落\nB. 如今只有少数俗世高人能够理解诗人心灵的孤独\nC. 诗歌应与时俱进,积极寻求走出困境的方式\nD. 诗歌不再是能给人带来快感和精神享受的文学样式", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 354250, "human_acc": 58.0014114326, "source": "2014年黑龙江省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 0, "history": [{"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 2011342, "material": "", "question": "广告所推销的不仅仅是商品,与之相伴随的还有商品所被赋予的某种身份、情感和品格,商品在这些象征意义上,成为了“有意义的形象”。 这个句子的意思是(    )。", "type": "单选题", "options": "A. 广告和商品都无意义\nB. 广告并不赋予商品以意义\nC. 商品本身就具有物质和意义的双重性\nD. 商品在广告的推销下,被赋予了某种象征意义", "choice": "D", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 2139, "human_acc": 88.3122954652, "source": "2009年上海市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 7967, "material": "", "question": "环境问题一旦发生,再来治理,非但费事劳神,而且难以转变,甚至不可逆转。因而,“先发展,后治理”的观点不仅是片面的,而且是非常危险的。\n\n这段话主要支持了这样的观点,即:", "type": "单选题", "options": "A. 环境问题是一个复杂的问题\nB. 对环境问题必须防治结合,以防为主\nC. 对重大工程必须先进行环境综合评价\nD. 治理环境问题费事劳神", "choice": "B", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 26315, "human_acc": 89.3064791944, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第30题", "difficulty": 5, "formulas": 0}, {"id": 3559, "material": "", "question": "自然界中,物种间的相互依赖给相关物种带来许多好处。但是当其中一个物种受到灾害影响时也会影响相关物种。因此,依赖昆虫授粉的植物可能会因为授粉昆虫被杀虫剂杀伤而数量减少,面临灭亡。\n这段话主要说明:", "type": "单选题", "options": "A. 物种间的相互依赖的负面效应\nB. 动植物间的相互依赖的事实\nC. 灾害间接导致物种灭绝的过程\nD. 人类行为在自然界中引发的后果", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "D", "human_count": 72057, "human_acc": 70.2416142776, "source": "2008年广东省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 4100555, "material": "", "question": "在生产的全球化水平较低、各国之间主要开展产业间分工的时期,由于外部冲击大多在局部发生,因此其对生产活动的影响也多是__________的。但是在今天,世界各国的供应链____________,相互之间高度依赖。高度细化的全球产业分工在显著提高生产总体效率的同时,也使供应链变得更加________,一旦由于外部冲击造成某个国家或地区的生产停摆,全球范围内的整个产业都可能受到影响。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 区域性 环环相扣 脆弱\nB. 暂时性 密不可分 复杂\nC. 局部性 相互依存 庞大\nD. 隐蔽性 浑然一体 敏感", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 132796, "human_acc": 85.973222085, "source": "2021下半年省考第二十季行测模考大赛(陕西卷)第39题", "difficulty": 3, "formulas": 0, "history": [{"id": 2571743, "material": "", "question": "文字的发展是________的,所以在由前一个时期演变为后一个时期的时候,要有或长或短的新旧形式并用期。新旧形式____________,最后完成交替。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 连续 平分秋色\nB. 自然 相映成趣\nC. 渐变 此消彼长\nD. 缓慢 并行不悖", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 1859744, "human_acc": 76.9660232806, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 5460035, "material": "", "question": "一些基层年轻干部年纪轻轻却抱着“老同志心态”,工作状态表现出慢条斯理“悠着干”、敷衍轻慢“应付干”、墨守成规“照着干”等问题。基层年轻干部“心态老化”的________,同压力过大分不开。基层工作事无巨细,基层干部的责任重大,自上而下的________压力往往使他们喘不过气来。这使得一些基层年轻干部变得____________,对工作的热情也不高。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 成因 考核 庸庸碌碌\nB. 根由 问责 老气横秋\nC. 溯源 监管 暮气沉沉\nD. 缘由 督导 敷衍塞责", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 256364, "human_acc": 42.6674572093, "source": "2023上半年省考第六季行测模考大赛(深圳卷)第70题", "difficulty": 6, "formulas": 0}, {"id": 2187565, "material": "", "question": "汉字自从成了汉语的书面符号,就一直是中华民族文化最重要的载体。它之所以能够______________,正是因为它的生命力来自它的内部结构。汉字是形音义三位一体的结构体,其中,表意是它的主体功能。稳定的形、义使它超越了表音能力的缺陷,尽管古今汉语和南北方言语音发生了重大变化,人们还能“由文知义”。于是,隔代的人可以___________书面阅读,异地的人可以借助文字沟通。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 长盛不衰 共享\nB. 宝刀未老 超越\nC. 永葆青春 凭借\nD. 经久不衰 信赖", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 1668238, "human_acc": 69.8942836694, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第19题", "difficulty": 5, "formulas": 0}, {"id": 4516289, "material": "", "question": "在智能手机的创新空间逐步收窄和市场增量接近饱和的情况下,智能可穿戴产品作为智能终端产业下一个热点已被市场广泛________。市场上可穿戴智能产品种类很多,但一个共同特征是,具备一定的医疗功能成为最____________的功能之一,医疗功能正逐渐成为此类产品标配。在这个功能上,最为________的功效是建立起人与科技全新的交互方式,为用户提供各种有针对性的医疗服务,而其他衍生功效也越来越丰富。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 认同 不可或缺 基础\nB. 覆盖 举足轻重 主流\nC. 接纳 大有可为 直接\nD. 重视 必不可少 先进", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 233062, "human_acc": 66.4896036248, "source": "2021下半年省考第二十九季行测模考大赛(北京乡镇卷)第44题", "difficulty": 4, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4688884, "material": "", "question": "随着空间交会对接技术的________,中国正式进入新的空间站时代。今明两年我国将完成11次发射任务和空间站建造,我国载人航天事业势必以____________的探索和持之以恒的研究,为人类走向梦想和希望的星辰大海留下浓墨重彩的一笔。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 攻克 锲而不舍\nB. 钻研 坚持不懈\nC. 突破 艰苦卓绝\nD. 破解 殚精竭虑", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 227997, "human_acc": 79.7124523568, "source": "2022上半年省考第四季行测模考大赛(陕西卷)第24题", "difficulty": 4, "formulas": 0, "history": [{"id": 14699, "material": "", "question": "在过去六十年中,现代中国的建设走过一条__________的道路,经历过无数艰辛、动荡、摇摆与反复,既有山重水复之___________,也有柳暗花明之转机。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 循环往复 迷惘\nB. 迂回曲折 困惑\nC. 艰难险阻 迷惑\nD. 跌宕起伏 困难", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 156440, "human_acc": 66.8901815392, "source": "2010年浙江省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 3666606, "material": "", "question": "对政府而言,推动乡镇5G建设是一项宏大的工程,不可能____________,而应该抓住重点促其发展,首先保障农村经济发达地区供电畅通,其次补齐地方网络短板,起到________效应,进而带动更广泛区域的5G建设。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一蹴而就 集聚\nB. 一气浑成 榜样\nC. 面面俱到 示范\nD. 事无巨细 倒逼", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 102046, "human_acc": 68.3848460498, "source": "2021下半年省考第八季行测模考大赛(甘肃卷)第26题", "difficulty": 5, "formulas": 0}, {"id": 4661679, "material": "", "question": "降准降息很可能让一线城市高昂的房价更加高昂,但这种负面效应是可________的,毕竟可以通过其他政策的引导来避免负面效应的扩大。降准降息绝不是为了给一线城市的房地产市场____________,而是为了对抗经济下行和通缩。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消除 剜肉补疮\nB. 应对 狗尾续貂\nC. 接受 火上浇油\nD. 牵制 推波助澜", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 153251, "human_acc": 35.5521334282, "source": "2021下半年省考第三十九季行测模考大赛(陕西卷)第24题", "difficulty": 7, "formulas": 0}, {"id": 2770268, "material": "", "question": "仁义朝堂,可以________百姓之家,这是政治向下的作用。但还有另外一面,军事上的弱势,朝堂气质的________,使得宋朝这个梦幻朝代,虽有爱民之心,却无护民之力,让无数后世论者____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 富庶 怯懦 弃若敝屣\nB. 眷顾 凋敝 后悔莫及\nC. 充盈 狡诈 深恶痛绝\nD. 殷实 阴柔 扼腕叹息", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 152363, "human_acc": 81.0675820245, "source": "2021上半年省考第六季行测模考大赛(四川卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 2453003, "material": "", "question": "现实中,不同的地域、气候等因素哺育出____________的文化。与此同时,纷繁多样的时代文化进一步刺激着人们的乡土情结,在多元文化中强调自身文化特色就____________。于是,那些能够彰显文化特色的讨论总是不断地________人们的身份认同。", "type": "单选题", "options": "A. 五光十色,在所难免,唤起\nB. 五光十色,自然而然,引起\nC. 多姿多彩,自然而然,引起\nD. 多姿多彩,在所难免,唤起", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 1254276, "human_acc": 75.5175097028, "source": "2020年上海市公务员录用考试《行测》题(B类)(网友回忆版)第3题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4628135, "material": "", "question": "某知识比赛共10题,规定答对一题得2分,不答不得分,答错扣1分。小王参加比赛后共得3分,已知小王回答题目超过5题,问小王第一题答错的概率是多少?", "type": "单选题", "options": "A. $\\frac{1}{10}$\nB. $\\frac{2}{5}$\nC. $\\frac{3}{20}$\nD. $\\frac{4}{45}$", "choice": "B", "keypoints": "给情况求概率;不定方程组", "most_wrong": "C", "human_count": 377162, "human_acc": 37.0580811429, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第61题", "difficulty": 5, "formulas": 418, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "不定方程问题", "不定方程组"]]}, {"id": 638477, "material": "", "question": "党的十八大以来,高压反贪腐很好地______了腐败官员,在很大程度上______了官场风气,但对权力的监督不能光靠运动,正如王岐山同志所言,治标是在为治本赢得宝贵时间。\n\n依次填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 震撼 转换\nB. 威慑 扭转\nC. 震撼 扭转\nD. 威慑 转换", "choice": "B", "keypoints": "词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 494242, "human_acc": 84.9434082899, "source": "2014年广州市公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139512, "material": "", "question": "陕西林业厅公布了猎人周某用数码相机和胶片相机拍摄的华南虎照片。随后,照片真实性受到来自部分网友、华南虎专家和中科院专家等方面的质疑。华南虎照:真相____,努力____。\n\n下列选项中,最适合填入横线的是:", "type": "单选题", "options": "A. 不致 不只\nB. 不致 不止\nC. 不至 不只\nD. 不至 不止", "choice": "D", "keypoints": "词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 586048, "human_acc": 83.71106121, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第19题", "difficulty": 3, "formulas": 0}, {"id": 622239, "material": "", "question": "像徜徉在夏天夜晚的星空下,为那壮丽的景色而_______,我真的是无限_______于我赖以思考和交往的中国文字,并_______于它的再生活力和奇特魅力。", "type": "单选题", "options": "A. 迷醉 钟情 震惊\nB. 陶醉 偏爱 惊讶\nC. 沉迷 垂青 惊叹\nD. 痴迷 倾心 震撼", "choice": "A", "keypoints": "词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 689635, "human_acc": 32.1897815511, "source": "2014年四川省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 1913, "material": "", "question": "这些机构认为这是一个非常有________的活动,希望借此能加强对科学研究的________作用,激励我国科技人员勇于献身科学,攻克科学难题,普及科学知识,激发青少年热爱科学的兴趣,培养探索未知世界的好奇心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 意义 指导\nB. 意义 导向\nC. 价值 指导\nD. 价值 导向", "choice": "B", "keypoints": "词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 68052, "human_acc": 55.7558925528, "source": "2008年黑龙江省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 9703, "material": "", "question": "依次填入划横线部分最恰当的一组是:\n\n①日本政界的一些人_________篡改日本侵华的历史,引起中日两国人民的强烈反对。\n\n②端午节,民间有在身上挂香荷包的_________,据说这样可以祛除疾病。\n\n③见到这一情景,她那满腔_________,似乎一下子都融解了。", "type": "单选题", "options": "A. 竟然 风俗 怒火\nB. 妄图 习俗 怨恨\nC. 试图 习惯 愤怒\nD. 妄图 风气 怨恨", "choice": "B", "keypoints": "词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 42706, "human_acc": 88.430197162, "source": "2009年河北省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 566529, "material": "", "question": "有位作家说,要想使自己生活的扁舟轻驶,务必要让它________的仅限于必不可少之物,不然轻则________无以进,重则可能________自己的生活之舟。道理很明白,什么都舍不得撒手,往往________什么都不得不________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 装载 徜徉 压塌 致使 割爱\nB. 承载 徜徉 压垮 导致 割爱\nC. 装载 徘徊 压垮 致使 舍弃\nD. 承载 徘徊 压沉 导致 舍弃", "choice": "D", "keypoints": "词的辨析-感情色彩;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 563176, "human_acc": 62.5294756879, "source": "2014年河北省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2139542, "material": "", "question": "美国政府未将中国列入“汇率____国黑名单”的做法是比较理智的,____鉴于中美两国经济目前如此高的相互依存度,____中国的人民币汇率出现大幅度波动,____中国经济会受损,美国经济乃至全球经济都会受到严重影响。\n\n下列选项中,最适合填入横线的是:", "type": "单选题", "options": "A. 操控 因为 而且 不但\nB. 操作 不仅 一旦 如果\nC. 操纵 因为 一旦 不但\nD. 把持 不仅 而且 如果", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 34941, "human_acc": 92.2497925074, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第25题", "difficulty": 3, "formulas": 0, "history": [{"id": 2255940, "material": "", "question": "________21世纪以来,全球范围内产业和城市“双转型”的浪潮________。产业向科技型、知识型、生态型发展,城市向集约型、智慧型、绿色型发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 跨入 风起云涌\nB. 进入 风生水起\nC. 跨入 排浪迭起\nD. 进入 风轻云淡", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 4938, "human_acc": 38.8821385176, "source": "2014年江西省法检系统招录考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 3579858, "material": "", "question": "所谓精准抗疫,就是说抗疫手段的施行要合乎比例,如果为了提高一点微不足道的安全系数,就采取________手段,“一禁了之”“一封了之”,这无异于“重炮打蚊子”,结果只会____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消极 因噎废食\nB. 过激 得不偿失\nC. 武断 事与愿违\nD. 极端 适得其反", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 71343, "human_acc": 48.7812399254, "source": "2021下半年省考第五季行测模考大赛(陕西卷)第31题", "difficulty": 6, "formulas": 0}, {"id": 1746742, "material": "", "question": "海军舰艇中的军辅船是大洋上的“粮草官”,虽不具备强大作战能力,却直接关系着远洋保障。但是,目前中国仅有四艘综合补给舰在海军服役,维持日益_______的远洋训练、护航和演习,显得有些_______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 漫长 顾此失彼\nB. 复杂 无能为力\nC. 繁重 捉襟见肘\nD. 艰苦 苦不堪言", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 2934001, "human_acc": 93.0531721018, "source": "2016年国家公务员录用考试《行测》题(副省级)第35题", "difficulty": 5, "formulas": 0}, {"id": 5407769, "material": "", "question": "数字技术在文化遗产展示和文化信息传播方面具有____________的优势。它能够带来新颖的呈现方式,比如沉浸式体验,让受众在愉悦放松中收获知识,这会增加传统文化的亲近感、吸引力,极大________了文化遗产传播的广度和深度。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 得天独厚 拓展\nB. 与生俱来 挖掘\nC. 不可替代 提升\nD. 无与伦比 延伸", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 293982, "human_acc": 70.6563667163, "source": "2023年国考第四十八季行测模考大赛(副省级)第27题", "difficulty": 4, "formulas": 0}, {"id": 49547, "material": "", "question": "在知识大爆炸的今天,不少人已习惯于浅阅读,这虽在所难免,其________也是明显的。浅阅读虽能够收获一些印象式的谈资,但_______之中透露出的是浮躁心气,很难__________为提升阅读者主体素质的扎实“文化准备”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 代价 走马观花 转换\nB. 影响 浅尝辄止 汲取\nC. 弊端 浮光掠影 沉淀\nD. 局限 言谈举止 锤炼", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 2557460, "human_acc": 56.1514549592, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2051594, "material": "", "question": "人们把随地吐痰、踩踏草坪归咎于道德问题,其实这些举动也透露出对自然的不敬畏,对环境的_____。正是由于这些诸多举手投足的小事,让我们共同的家园变得_____。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 敌意 今非昔比\nB. 破坏 今不如昔\nC. 轻视 面目全非\nD. 亵渎 不堪目睹", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 959729, "human_acc": 54.6491770073, "source": "2017年422联考《行测》题(陕西卷)第51题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4840043, "material": "", "question": "如果对垄断不加以有效治理,任其肆意发展,最终结果将与公平竞争的目标____________。因此,在市场不能自行调节和抑制垄断之际,监管层必须及时出手________。随着反垄断推进,很多行业会出现细分化的行业竞争,中小企业通过差异化策略吸引特定用户,________市场格局。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 分道扬镳 矫正 规范\nB. 相背而行 调节 构建\nC. 背道而驰 纠偏 重塑\nD. 渐行渐远 调整 优化", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 339069, "human_acc": 56.2425347053, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第36题", "difficulty": 6, "formulas": 0, "history": [{"id": 2259179, "material": "", "question": "①地铁一号线这项南昌市重点工程进展顺利,________2015年9月下旬,已完成计划的95%。\n\n②在强大的习惯面前,科学有时也会变得____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 截止 似是而非\nB. 截至 苍白无力\nC. 截止 软弱可欺\nD. 截至 一无是处", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 7337, "human_acc": 83.5082458771, "source": "2015年江西省法检系统招录考试《行测》题第19题", "difficulty": 4, "formulas": 0}, {"id": 4525836, "material": "", "question": "无论从事什么行业,开展什么工作,一个人如果只知道墨守成规,按规矩办事,那工作最多只是________而不可能是卓越。但如果一个人有十足的创新精神,无论____________再怎么多,他都能把工作开展得卓有成效,最终发挥最大限度的社会价值和人生价值。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 稳妥 条条框框\nB. 稳当 条分缕析\nC. 妥帖 繁文缛节\nD. 通达 陈规旧律", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 335918, "human_acc": 84.1574431855, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第26题", "difficulty": 3, "formulas": 0}, {"id": 4817996, "material": "", "question": "我们用世界银行的最新数据,补充安格斯·麦迪森的历史数据,可以清晰地显示中国经济发展在数千年中的____________。在公元1000至1600年之间,中国的人均收入大体上处于世界平均水平;经济规模(GDP总量)长时间保持世界首位,1820年时竟占到世界经济总量的1/3。不过,也正是在那个时刻,中国在世界经济“大分流”中落到了________的国家行列,无论是经济总量占世界的比重,还是与世界平均水平相比的相对人均收入都一路下跌,逐渐把中国推入____________的境地。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 潮起潮落 滞后 一穷二白\nB. 兴衰荣辱 停息 水深火热\nC. 兴衰更替 停滞 积贫积弱\nD. 大起大落 滞缓 万丈深渊", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 1560388, "human_acc": 49.4129665186, "source": "2022年青海省公务员录用考试《行测》题(网友回忆版)第38题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2187509, "material": "", "question": "①雨水刚刚过去,春的气息便扑面而来\n\n②“好雨知时节,当春乃发生。”\n\n③窗外淅沥的春雨,正映衬着杜甫的诗句,原来这春,已经来了\n\n④也是,季节交替总是不经意悄悄地进行着,当你感觉到了时其实早已浸润了大地\n\n⑤那春的讯息最先是在冬时就已经吐露花蕊的梅,所以才会有梅是专门来报春之说\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑤③④①②\nB. ①②③⑤④\nC. ②①③⑤④\nD. ③②①④⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 766937, "human_acc": 41.0323142579, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第45题", "difficulty": 4, "formulas": 0, "history": [{"id": 4678603, "material": "", "question": "对下面6个句子语序排列正确的一项是:\n\n①对于任何一个民族文化而言\n\n②人类历史的前进\n\n③方能获得文化补偿\n\n④拥有文化输出与文化接受的健全机制\n\n⑤离不开文化的交流融合\n\n⑥赢得空间上的拓宽和时间上的延展", "type": "单选题", "options": "A. ①④③⑥②⑤\nB. ②⑤①④⑥③\nC. ②⑤①④③⑥\nD. ①④⑥③②⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 13279, "human_acc": 53.6938022441, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 19723, "material": "", "question": "①像慈母拍着将睡未睡的婴儿似的,它轻轻地拍着石岸;\n\n②水里小小的鱼儿,还有顽皮的小虾儿,在眼前游来游去;\n\n③盈盈的湖水一直荡漾到脚边,却又缓缓地退回去了;\n\n将以上三句话填在“四周的景色秀丽异常”一句的后面,语序最恰当的一组是:", "type": "单选题", "options": "A. ①③②\nB. ③②①\nC. ①②③\nD. ③①②", "choice": "D", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 217291, "human_acc": 86.3201881348, "source": "2011年安徽省公务员录用考试《行测》题第17题", "difficulty": 4, "formulas": 0}, {"id": 27389, "material": "", "question": "为下列句子排列顺序,使其意思连贯。正确的一项是:\n\n①他最初的职能与一个看管自行车的大爷没什么两样\n\n②事实上,世界上最早的金匠银行家是只存不贷的\n\n③时间长了,他开始考虑如何盘活这些沉睡的资产,于是就有了放贷和利息\n\n④存户有了零散的金子就存到他那里,他收取一定的管理费", "type": "单选题", "options": "A. ④①③②\nB. ②④③①\nC. ②④①③\nD. ④①②③", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 429995, "human_acc": 82.9677089268, "source": "2012年河北省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2015494, "material": "", "question": "①大数据将在科学研究和社会生活等各领域“发挥不可估量的作用”\n\n②大数据的核心就是预测\n\n③可以说,谁掌握了大数据,谁就掌握了巨大的商业价值\n\n④沉睡的数据将被“唤醒”\n\n⑤未来,随着大数据的不断积累\n\n⑥处理技术水平的逐步提高\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③④⑤⑥②①\nB. ②⑤⑥④①③\nC. ③②⑤⑥①④\nD. ③④②⑤⑥①", "choice": "B", "keypoints": "确定顺序", "most_wrong": "C", "human_count": 701244, "human_acc": 55.0993662691, "source": "2016年重庆市公务员录用考试《行测》题(下半年)第50题", "difficulty": 5, "formulas": 0}, {"id": 3522422, "material": "", "question": "①获得相对的自由,从而充分地达到自我实现的境界\n\n②“美”是人生的最高境界\n\n③人只有满足自己和社会的需要才能达到“善”\n\n④“善”侧重于掌握人的需要\n\n⑤而“美”则侧重于在“真”“善”的前提下,超越二者的局限性\n\n⑥“真”侧重于人掌握客观规律\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑥④⑤③②①\nB. ④③⑥⑤①②\nC. ②④③⑤⑥①\nD. ②⑥④③⑤①", "choice": "D", "keypoints": "确定顺序", "most_wrong": "A", "human_count": 2104695, "human_acc": 55.5972718137, "source": "2021年云南公务员录用考试《行测》题(网友回忆版)第42题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "确定顺序"]]}, {"id": 2648060, "material": "", "question": "新型毒品____________,有的早就迭代升级,有的在高压打击态势下找到了新替代,有的致幻致瘾方式更加隐匿······在这种情况下,现行的管制目录与管制手段显然是________的。因此升格新型毒品的强制管理,顺理成章,迫在眉睫。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 层出不穷 笼统\nB. 司空见惯 陈旧\nC. 五花八门 滞后\nD. 形形色色 乏力", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 104617, "human_acc": 87.454237839, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第32题", "difficulty": 3, "formulas": 0, "history": [{"id": 2748373, "material": "", "question": "一些戏曲剧目是____________的经典之作,深受群众喜爱。这既是因为其艺术价值高,更是因为其中蕴含着深沉的家国情怀,________着追求正义与美好的理想。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 风靡一时 肩负\nB. 交口称赞 怀揣\nC. 喜闻乐见 秉持\nD. 脍炙人口 承载", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 443460, "human_acc": 72.6820908312, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第50题", "difficulty": 5, "formulas": 0}, {"id": 4702288, "material": "", "question": "创新这项工作往往不可能____________,做好它需要足够的宽容、激励和守望。建立容错机制是激发创新的________。没有容错机制,创新探索者就容易因怕犯错背上思想“包袱”,创新之路上难免畏首畏尾。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 信手拈来 关键\nB. 轻而易举 秘诀\nC. 一蹴而就 前提\nD. 立竿见影 保障", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 275597, "human_acc": 61.1806369445, "source": "2022上半年省考第六季行测模考大赛(广东县级卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 4988458, "material": "", "question": "每个时代都有每个时代上升的通道,但在过去,人们上升的通道是________的。而如今处于市场经济的时代,人们上升的众多通道被打开,如果我们仍然用读书作为衡量人们上升通道的标准,就有点____________了。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可见 削足适履\nB. 单一 缘木求鱼\nC. 狭窄 刻舟求剑\nD. 刻板 指鹿为马", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 315461, "human_acc": 57.6204348557, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 2187613, "material": "", "question": "汉武帝时,私学在官学的影响下得到进一步的发展,汉代私人讲学的事例________________,读书人学成即授徒相当普遍。而家学,是私学的特殊力量。家学所传习的内容很________,并不仅限于经学范畴。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不一而足 宽宏\nB. 不胜枚举 宽泛\nC. 比比皆是 广阔\nD. 数不胜数 广泛", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 1662354, "human_acc": 54.4148839537, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第26题", "difficulty": 6, "formulas": 0}, {"id": 2757968, "material": "", "question": "两三年前,文化类节目兴起,成为综艺中的一股“清流”。真正好的“清流节目”,不能____________,否则很难长期持续下去。“清流节目”在________中国电视底色的同时,当务之急和重中之重是重新聚拢青年一代的目光。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抱残守缺 镌刻\nB. 固步自封 描摹\nC. 曲高和寡 擦亮\nD. 孤芳自赏 渲染", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 200622, "human_acc": 39.7982275124, "source": "2021上半年省考第四季行测模考大赛(广东卷)第3题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2448380, "material": "", "question": "环保局某科室需要对四种水样进行检测,四种水样依次有5、3、2、4份。检测设备完成四种水样每一份的检测时间依次为8分钟、4分钟、6分钟、7分钟。已知该科室本日最多可使用检测设备38分钟,如今天之内要完成尽可能多数量样本的检测,问有多少种不同的检测组合方式?", "type": "单选题", "options": "A. 6\nB. 10\nC. 16\nD. 20", "choice": "A", "keypoints": "基础排列组合;非典型最值问题", "most_wrong": "C", "human_count": 2073097, "human_acc": 24.1247274006, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 2307705, "material": "", "question": "春风街道办事处为丰富老年人文化生活,准备举办老年才艺秀活动。活动项目共有书法、绘画、歌曲演唱、太极拳四项。参加者报名项数不限,每种报名方式最多可报4人。经统计,共有3人同时报名参加书法和绘画项目。据此,参加老年才艺秀活动最多报名(  )人。", "type": "单选题", "options": "A. 68\nB. 73\nC. 45\nD. 47", "choice": "D", "keypoints": "基础排列组合;非典型最值问题", "most_wrong": "C", "human_count": 323767, "human_acc": 24.9747503606, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第63题", "difficulty": 7, "formulas": 0}, {"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "排列组合问题", "基础排列组合"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2654933, "material": "", "question": "思维方式决定着行为方式。思维决定行为、感受和需求。如果思维方式不现实,你将会因此身陷挫折和________之中。如果思维方式过于________,你就会错失生活中很多快乐的事情。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 失望 虚幻\nB. 囹圄 保守\nC. 沮丧 悲观\nD. 痛苦 激进", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 27048, "human_acc": 56.6881100266, "source": "2020年下半年省考第八季行测模考大赛(陕西卷)第23题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5198467, "material": "", "question": "某一手工店制作了若干串手链,每串手链由5种颜色的6颗珠子组成,其中有2颗红色珠子是相邻的。现将做好的手链送给希望小学的女生,每名女生可分得1串手链,问至少有多少名女生拿到手链,才能保证一定有3人拿到的手链完全相同(珠子颜色的排列完全相同)?", "type": "单选题", "options": "A. 48\nB. 49\nC. 25\nD. 24", "choice": "C", "keypoints": "环形排列问题;最不利构造", "most_wrong": "B", "human_count": 127398, "human_acc": 41.5736510777, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第65题", "difficulty": 6, "formulas": 0, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 25299, "material": "", "question": "有5对夫妇参加一场婚宴,他们被安排在一张10个座位的圆桌就餐,但是婚礼操办者并不知道他们彼此之间的关系,只是随机安排座位。问5对夫妇恰好都被安排在一起相邻而坐的概率是多少:", "type": "单选题", "options": "A. 在1‰到5‰之间\nB. 在5‰到1%之间\nC. 超过1%\nD. 不超过1‰", "choice": "A", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 510557, "human_acc": 28.9239007594, "source": "2012年国家公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "最值问题", "最不利构造"]]}, {"id": 2452519, "material": "", "question": "旅行实际上可以让“读万卷书”和“行万里路”同时实现。行万里路会________我们读更多的书,所以旅行是生命中________的内容,也是人生不断自我释放、自我重构的________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 激励 念兹在兹 机缘\nB. 引领 多姿多彩 场合\nC. 引导 无与伦比 场域\nD. 激发 不可或缺 契机", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1248535, "human_acc": 78.7070446563, "source": "2020年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第36题", "difficulty": 4, "formulas": 0, "history": [{"id": 5333579, "material": "", "question": "真正的民歌是老百姓世世代代口口相传的,是经过一代又一代的丰富和润色的,所以真正流传到今天的民歌是____________,因为它________了人民集体的智慧。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 字字珠玑 凝聚\nB. 凤毛麟角 凝滞\nC. 纲举目张 积聚\nD. 弦歌不辍 凝结", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 296920, "human_acc": 59.9649737303, "source": "2022下半年省考第十五季行测模考大赛(浙江C卷)第27题", "difficulty": 5, "formulas": 0}, {"id": 2524621, "material": "", "question": "碑学、金石学的流行固然可以________帖学越来越柔弱的问题,令清代书家的整体风格迥异于前代。但是由于现行的篆隶笔法与二王帖学笔法____________,使得这期间能够领悟二王帖学精髓的书家越来越少。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 扭转 截然不同\nB. 矫正 大相径庭\nC. 改善 背道而驰\nD. 解决 毫无二致", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 171145, "human_acc": 34.9265242923, "source": "2021年国考第二季行测模考大赛(地市级)第23题", "difficulty": 6, "formulas": 0}, {"id": 2049670, "material": "", "question": "从一开始,网络的开拓者们就相信:如果互联网要变成一个全球化的体系,一个开放、合作和透明的管理模式是______________的。而这种模式基于自愿采纳原则,因为分享是它最大的 _________ 。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 必不可少 回报\nB. 与生俱来 亮点\nC. 不可或缺 创新\nD. 事半功倍 动力", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 1168660, "human_acc": 32.8474492153, "source": "2017年422联考《行测》题(山东卷)第4题", "difficulty": 5, "formulas": 0}, {"id": 5600405, "material": "", "question": "由于经书与文学存在着文体上的模糊地带,因此,经学阐释的主体与文学阐释的主体间的界限并非____________。然而,文体的模糊性还不足以使得经学与文学具有亲缘关系,因为二者共同________于古典时期特殊的知识体系——文道传统中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 壁垒森严 发迹\nB. 泾渭分明 根植\nC. 水火不容 贯穿\nD. 黑白分明 归属", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 47121, "human_acc": 70.8304153138, "source": "2023下半年省考第七季行测模考大赛(四川卷)第14题", "difficulty": 4, "formulas": 0}, {"id": 540751, "material": "", "question": "近代中外历史告诉我们,群众的民主权利就像一切个人权利一样,当它没有受到___________的宪政约束时,很容易转变为它的反面,成为一种暴虐的权力。因此,许多思想家对于各种群众领袖挟民意而行独裁的负面作用____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 严格 嗤之以鼻\nB. 良好 讳莫如深\nC. 恰当 忧心忡忡\nD. 普遍 谈虎色变", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1550262, "human_acc": 48.1447007022, "source": "2014年412联考《行测》题(贵州卷)第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 1003049, "material": "", "question": "交流是复杂的艺术,有声语言并不是表达意义的唯一方式,辅以动作和面部表情,可以使表达生动形象,也折射出历史和文化智慧的光芒。各民族间的形体语言,有的形式和意义相同(如握手致意),有的虽然形式相同,意义却___________。如果不能正确解读就可能产生误会,甚至引起严重的后果。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 南辕北辙\nB. 针锋相对\nC. 截然相反\nD. 纷繁复杂", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 2806860, "human_acc": 90.326521451, "source": "2015年国家公务员录用考试《行测》题(省部级)第21题", "difficulty": 5, "formulas": 0, "history": [{"id": 5415920, "material": "", "question": "苏州创业园是国内首批国家级国际企业孵化器之一,先后累计引进培育科技企业2300多家,其中6家已成功上市。园区发展吸引来众多青年创业人才,但辖区内高房租让很多创业人才____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无可奈何\nB. 望而却步\nC. 束手无策\nD. 裹足不前", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 267008, "human_acc": 94.4582184803, "source": "2022下半年省考第二十三季行测模考大赛(四川卷)第16题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 3519070, "material": "", "question": "对经典IP一窝蜂的开发和消费,不仅带来文创的过度商业化,对于传统文化资源来说,也是____________的做法。各种文化类的综艺、动漫、短视频都在争相“抢夺”一些优质文化资源,试图“沾点光”。但文化传播效果却____________,不仅难以实现传统文化的发扬光大,长此以往甚至会对整个传统文化生态造成影响。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 涸泽而渔 不尽人意\nB. 饥不择食 差强人意\nC. 杀鸡取卵 一落千丈\nD. 抛砖引玉 乏善可陈", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 63015, "human_acc": 88.0345949377, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第26题", "difficulty": 3, "formulas": 0, "history": [{"id": 5026469, "material": "", "question": "如今,人们使用汉语拼音如同使用汉字一样____________,却不会想到当初学者们探索汉语拼音之路,制定《汉语拼音方案》的过程是多么的艰辛,以及推行汉语拼音的过程经历的历史风霜和千磨万难。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 按部就班\nB. 驾轻就熟\nC. 波澜不惊\nD. 挥洒自如", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 18086, "human_acc": 83.7719783258, "source": "2023年国考第二十四季行测模考大赛(地市级)第21题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4688067, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n美术创作领域的工匠精神,不仅体现在绘画技能的继承和发展方面,更呈现在美术创作所渗透的创造力和求真精神中。____________________。____________________,____________________。____________________,不利于社会正能量、优秀文化的传播。\n\n①在进行艺术创作时,首先考虑的不是艺术性,而是市场认不认可、接不接受\n\n②这源于一些创作者忘记了艺术创作应表达内心真实情感的初心\n\n③在这种情况下创作出来的作品无疑是违背艺术创作规律、缺乏艺术感染力的\n\n④当下,部分美术作品缺乏文化内涵,作品形式趋于世俗化、商业化、数码化", "type": "单选题", "options": "A. ②③①④\nB. ②③④①\nC. ④②③①\nD. ④②①③", "choice": "D", "keypoints": "非首句特征;确定捆绑", "most_wrong": "C", "human_count": 96195, "human_acc": 78.5612557825, "source": "2022上半年省考第四季行测模考大赛(陕西卷)第60题", "difficulty": 4, "formulas": 0, "history": [{"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 2066950, "material": "", "question": "①但是,在读书中,就是要过河拆桥\n\n②既然知道了那个意思以后\n\n③这就是古人所说的“得意忘言”\n\n④语言文字是帮助了解书的意思的拐棍\n\n⑤最好扔了拐棍\n\n⑥在人与人的关系中,过河拆桥是不道德的事\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④②⑤③⑥①\nB. ⑥①③④②⑤\nC. ④⑤②⑥①③\nD. ②⑤⑥③①④", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "B", "human_count": 337420, "human_acc": 46.5165076166, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 754287, "material": "", "question": "①人类的哲学是历史的进步和发展的哲学\n\n②才能历史地为人类提供“最高的支撑点”\n\n③人类的历史是进步和发展的历史\n\n④这就是哲学发展的历史与逻辑\n\n⑤因此,只有塑造和引导新的时代精神的哲学才是真正的“时代精神的精华”\n\n⑥才能把人类不断地推进到更为崇高的境界\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③④①⑤②⑥\nB. ①③④⑤⑥②\nC. ③①⑤②⑥④\nD. ④①③⑤②⑥", "choice": "C", "keypoints": "非首句特征;确定捆绑", "most_wrong": "B", "human_count": 1424531, "human_acc": 63.7332567701, "source": "2014年山东省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 551137, "material": "", "question": "①草原上的大量事例已经证明这些帝国都是昙花一现\n\n②这些民族在历史上是一股巨大的力量\n\n③这种压力不断地影响着这些地区历史的发展\n\n④世界上的游牧民族大都生息在欧亚大草原上\n\n⑤他们的历史重要性在于他们向东、向西流动时,对中国、波斯、印度和欧洲所产生的压力\n\n⑥他们的历史重要性主要不在于他们所建立的帝国", "type": "单选题", "options": "A. ①④⑥⑤③②\nB. ①⑥⑤③④②\nC. ④②⑥①⑤③\nD. ④①⑥⑤②③", "choice": "C", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 925503, "human_acc": 84.4419737159, "source": "2014年412联考《行测》题(宁夏卷)第32题", "difficulty": 5, "formulas": 0}, {"id": 2062808, "material": "", "question": "将下列句子组成一段逻辑连贯、语言流畅的文字,排列顺序最合理的是:\n\n①时代在变化,城市也在生长,在理解过往的同时,不妨赋予它新的内涵。\n\n②若是正好有历史典故可以化用其中当然好,但若没有也不必牵强刻意。\n\n③这些新内涵,或许就是后人想要追溯的曾经。\n\n④不是无视过去,而是尊重当下。\n\n⑤取好地名不必局限于向历史找补。", "type": "单选题", "options": "A. ③④①②⑤\nB. ⑤②④①③\nC. ④③②⑤①\nD. ①②⑤③④", "choice": "B", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 473256, "human_acc": 89.5014537586, "source": "2016年广州市公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 2184653, "material": "", "question": "政府部门对各类新业态、新模式应有“包容审慎”的态度。各地方、各部门要________,不能用老办法去管制新业态,现行的法律法规大都是针对传统经济,面对新业态、新模式时显得不适应,各地政府部门也往往无所适从,不知该如何监管,经常走一律禁止或________的极端。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 革故鼎新 兼容并包\nB. 顺势而为 放任自流\nC. 因势利导 视而不见\nD. 有的放矢 推波助澜", "choice": "B", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1028861, "human_acc": 55.7594271724, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 1770718, "material": "", "question": "这几家百货公司不仅是美国零售领域的佼佼者,其电商业务也做得(    ),然而,在中国,这种线上线下通吃的情形却不存在。中国的电子商务企业和传统零售企业之间隔着一座天堑——一个难落地,一个难上网。\n\n填入括号内最恰当的一项是:", "type": "单选题", "options": "A. 声势浩大\nB. 有声有色\nC. 声势汹汹\nD. 绘声绘色", "choice": "B", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 903859, "human_acc": 87.03780125, "source": "2016年深圳市公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 826073, "material": "", "question": "一年以来,欧美国家示威、罢工活动____________,暴力事件频发,社会乱象____________,显示出在经济持续不景气的背景下西方发达国家内部矛盾激化,社会危机加剧。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 此消彼长 惊心动魄\nB. 此起彼伏 层出不穷\nC. 愈演愈烈 屡见不鲜\nD. 如火如荼 变本加厉", "choice": "B", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 873382, "human_acc": 51.7309722435, "source": "2014年四川省公务员录用考试《行测》题(下半年)第22题", "difficulty": 5, "formulas": 0}, {"id": 5612717, "material": "", "question": "“多边主义不仅是一种选择,更是一种需要。”摒弃____________的集团政治、回归多边主义的初心本源,不仅是国际社会践行真正多边主义的客观要求,更是维护以联合国为核心的国际体系、维护以国际法为基础的国际秩序的迫切任务。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 异军突起\nB. 激浊扬清\nC. 沉渣泛起\nD. 振臂高呼", "choice": "C", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 2242, "human_acc": 68.7332738626, "source": "2023下半年省考第九季行测模考大赛(青海卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 5696546, "material": "", "question": "高等教育的根本目的不是教年轻人如何去谋生,而是鼓励人们去勇敢创造生活、追求理想。不管学习的是什么专业,有热情、有动力,才有可能干出一番事业,闯出一片天地。相反,如果从一开始就绞尽脑汁、____________为今后的就业做打算,为了得到更丰厚的报酬而选择没有兴趣的人生道路,终有一天可能会感到厌倦和疲惫。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 呕心沥血\nB. 挖空心思\nC. 枉费心机\nD. 殚精竭虑", "choice": "B", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 2331, "human_acc": 79.9656799657, "source": "2023下半年省考第十六季行测模考大赛(青海卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 2564000, "material": "", "question": "网售处方药究竟是“松绑”还是“收紧”,关系一个千亿元级的市场。如此庞大的市场蛋糕,企业无不____________。在这个过程中,出于对药品安全和质量的考虑,各方态度不一,政策悬而不决,而这也让医药电商们举棋不定、____________,网售处方药的“正确打开方式”究竟应该是什么。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蠢蠢欲动 犹豫不决\nB. 摩拳擦掌 无所适从\nC. 跃跃欲试 踟蹰不前\nD. 争先恐后 首鼠两端", "choice": "C", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 410130, "human_acc": 45.9654255968, "source": "2021年国考第七季行测模考大赛(副省级)第29题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2439994, "material": "", "question": "她是大清重臣之后,生长在____________之家,她的外祖父曾为挽救大清危局,殚精竭虑,____________,虽未成功,但值得敬佩。\n\n依次填入划横线部分最恰当的词语是:", "type": "单选题", "options": "A. 花天酒地 苦心经营\nB. 钟鸣鼎食 惨淡经营\nC. 鼎鼎有名 费尽心机\nD. 鲜衣美食 挖空心思", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 492223, "human_acc": 58.4375374576, "source": "2019年青海省法院、检察院录用考试《行测》题第53题", "difficulty": 5, "formulas": 0, "history": [{"id": 5344151, "material": "", "question": "在平凡岗位上____________,追求职业技能的完美和极致,技术工人才能成为一个领域不可或缺的人才。其实,无论从事什么劳动,只要具有“择一事终一生”的执着专注、“干一行钻一行”的精益求精、“偏毫厘不敢安”的____________,就能在平凡岗位上干出不平凡的业绩。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 孜孜以求 一丝不苟\nB. 精益求精 无微不至\nC. 潜精研思 畏首畏尾\nD. 皓首穷经 细致入微", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 254342, "human_acc": 75.9693640846, "source": "2022下半年省考第十六季行测模考大赛(浙江C卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 4454611, "material": "", "question": "网络文艺在“野蛮生长”的初期阶段泥沙俱下,甚至出现利用年轻人青春逆反心理____________,用“艺术创新”“艺术个性”等诱导“去历史化”“去主流化”的现象。这里面既有资本市场的___________,也有西方价值观的借机渗透,更有创作个体的浮躁和___________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 偷换概念 推波助澜 急功近利\nB. 哗众取宠 添砖加瓦 投机取巧\nC. 助纣为虐 煽风点火 唯利是图\nD. 欲盖弥彰 兴风作浪 雪上加霜", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 188084, "human_acc": 69.5449905361, "source": "2021下半年省考第二十五季行测模考大赛(深圳卷)第64题", "difficulty": 4, "formulas": 0}, {"id": 4597418, "material": "", "question": "开展哲学社会科学领域的意识形态斗争,要旗帜鲜明坚持党性原则,不能躲躲闪闪、____________,坚持什么、反对什么,说什么话、做什么事,都要符合党的要求;要科学把握一切反马克思主义思潮的方法论特点,做到____________,通过有效的批判和斗争,不断缩小错误思潮在哲学社会科学领域的传播面和影响力,坚定维护马克思主义的指导地位。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 夸夸其谈 知己知彼\nB. 轻描淡写 取长补短\nC. 深入浅出 正本清源\nD. 含糊其辞 有的放矢", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 8475, "human_acc": 88.9321533923, "source": "2021下半年省考第三十四季行测模考大赛(西藏卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 4988499, "material": "", "question": "某集团违规将小兴安岭周围的林地出租种人参,周围的群众曾多次提出异议,但涉案集团____________,仍然____________,而地方监管部门更是对违法违规问题“睁一只眼闭一只眼”。相关部门不作为,仿佛“与己无关”,好似“____________”。这背后是否存在见不得光的“利益输送”,恐怕要好好查查,给公众一个负责任的交代。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不以为然 无动于衷 局外之人\nB. 置若罔闻 以身试法 甩手掌柜\nC. 视而不见 明知故犯 超然物外\nD. 置之度外 熟视无睹 闲云野鹤", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 228807, "human_acc": 55.0949053132, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第33题", "difficulty": 6, "formulas": 0}, {"id": 5607607, "material": "", "question": "电影从诞生起,就一直在技术层面追求变革、创新和突破。但如果超出了人类感官的生理极限,那些细致入微的声音处理、那些____________的画面质感,观众一旦____________,就会熟视无睹。与电影技术日新月异形成对比的,是电影内容以及讲故事的方式似乎常常“老调重弹”。或许,正因为电影的题材或主题难以取得革命性的突破,电影创作者才转而在技术层面____________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 无微不至 不以为然 突飞猛进\nB. 纤毫毕现 习以为常 日益精进\nC. 惟妙惟肖 屡见不鲜 扶摇直上\nD. 一清二楚 司空见惯 无孔不入", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 44128, "human_acc": 92.8390137781, "source": "2023下半年省考第八季行测模考大赛(陕西卷)第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4658488, "material": "", "question": "经历快速增长后,社交媒体如今却面临用户倦怠的尴尬局面。说到底,社交媒体只是人们彼此之间用来分享意见、见解、经验和观点的工具,如何使用好、管理好是关键。对广大网民而言,用好社交媒体,真诚与人交流、获取优质信息才是正道。一方面,要不断提升自身的媒介素养,学会去粗存精,生产更多优质的内容;另一方面,积极管理自己的行为,规避社交媒体产生的负面影响。对社交媒体平台而言,要引导用户生产更加优质的内容,切实保障平台用户的信息安全。管理者既要优化平台的功能和设计,还要加强隐私保护。\n\n这段文字回答了下列哪一问题?", "type": "单选题", "options": "A. 如何用好、管理好社交媒体\nB. 用户为何对社交媒体失去兴趣\nC. 社交媒体如何保证用户信息安全\nD. 用户如何通过社交媒体获取优质信息", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "B", "human_count": 1527681, "human_acc": 87.588050123, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第37题", "difficulty": 3, "formulas": 0, "history": [{"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 4619, "material": "", "question": "不要过分地依赖语言。不要总是企图在语言上占上风。语言解不开的,事实可以解开。语言解开了而事实没有解开的话,语言会失去价值,甚至于只能添乱。\n\n这段话的主要观点是:", "type": "单选题", "options": "A. 事实比语言更有力量\nB. 平常不要说太多的话以免惹出是非\nC. 没有事实基础的语言是毫无价值的\nD. 语言是不重要的,事实才是重要的", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "C", "human_count": 39770, "human_acc": 41.7525773196, "source": "2008年河北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 5701816, "material": "", "question": "离职了,但因此能完成向往已久的旅行;分手了,但因此整个人充满了力量。别人眼中的失败,可以是你自己认定的成功。反正成功有很多样子:会煮面,会劝架,会踢球······都是某种成功。\n\n下面语段的主要意思是________。", "type": "单选题", "options": "A. 人生根本没有成败之分\nB. 大众对成败的定义有问题\nC. 失败是成功之母\nD. 要为自己设立成败的标准", "choice": "D", "keypoints": "行文脉络-分总分", "most_wrong": "A", "human_count": 111, "human_acc": 66.6666666667, "source": "2016年上海市行政执法类考试《行测》试题(网友回忆版)第12题", "difficulty": 4, "formulas": 0}, {"id": 16407, "material": "", "question": "听莫扎特的音乐能提高智商,这被称为“莫扎特效应”。无论“莫扎特效应”有无这样的神奇效果,音乐在陶冶情操、抚慰心灵上的作用正在逐步显现出来。人类离不开音乐也是显而易见的事实。\n\n通过这段对话,可以知道的是:", "type": "单选题", "options": "A. 作者认同“莫扎特效应”\nB. 作者认为音乐能提高智商\nC. 看不出作者是否认同“莫扎特效应”\nD. 音乐在大脑的开发方面起关键作用", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "A", "human_count": 29640, "human_acc": 74.1363022942, "source": "2009年山西省党群机关录用考试《行测》题第44题", "difficulty": 5, "formulas": 0}, {"id": 16447, "material": "", "question": "很少有地方比行进中的飞机、轮船和火车更容易让人倾听到内心的声音。我们眼前的景观同我们脑子里可能产生的想法之间往往存在着某种奇妙的联系:宏阔的思考常常需要壮阔的景观,而新的观点往往也产生于陌生的所在。这段文字意在说明:", "type": "单选题", "options": "A. 旅行能使人眼界开阔\nB. 旅途中的景观常能引起思考\nC. 旅行者的角色能使人增加人生体验\nD. 人的思维角度容易受所处环境的影响", "choice": "D", "keypoints": "行文脉络-分总分", "most_wrong": "B", "human_count": 240838, "human_acc": 61.8299437796, "source": "2010年贵州省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 4714302, "material": "", "question": "全民关注、参与高考作文的盛况,说到底还是件好事情。一个社会当然应该崇尚文化、具有情怀,不要斯文扫地、粗鄙低俗。然而________的是,这种热情每年都不过高考前后的三五天,犹如____________。在剩下的时间里,文化和情怀很难成为社会话题的中心。人们津津乐道的,更多还是金钱财富和八卦娱乐。\n\n填入划横线最恰当的一项:", "type": "单选题", "options": "A. 尴尬 空中楼阁\nB. 遗憾 昙花一现\nC. 可惜 望梅止渴\nD. 可悲 海市蜃楼", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 140139, "human_acc": 95.4224020437, "source": "2018年福建省选调生考试《行政职业能力测验》第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 4704625, "material": "", "question": "在面对二战造成的灾难时,日本政府往往一味________日本受到的伤害,而对被侵略的国家人民遭受的创伤,却____________,而且,根本不提谢罪之事。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 强调 轻描淡写\nB. 强辩 一笔带过\nC. 强化 蜻蜓点水\nD. 强加 浮光掠影", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 230232, "human_acc": 78.5016852566, "source": "2019年福建省选调生考试《行政职业能力测验》第38题", "difficulty": 4, "formulas": 0}, {"id": 2067024, "material": "", "question": "按常理_____做出的消费决策应该更稳固,而事实恰恰相反,他们的结论往往更容易_____,这种现象尤其在人们需要进行高消费如购房,买车时表现得更突出。\n\n依次填入画横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 深思熟虑 动摇\nB. 深谋远虑 改变\nC. 思前想后 推翻\nD. 老谋深算 变化", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 58307, "human_acc": 81.9181230384, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 49799, "material": "", "question": "幸福有没有标准?我认为,现实生活离不开比较,但是幸福的比拼,本身就是比较_________的事情。幸福耐不住人家打扰,经不起科学研究,当幸福成为指数、成为概念、成为一批标准时,也就变得_________了。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 混乱 一文不值\nB. 私密 可有可无\nC. 模糊 无足轻重\nD. 荒诞 遥不可及", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 844175, "human_acc": 42.9984304202, "source": "2013年山东省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2595664, "material": "", "question": "大数据时代,数据________是促进产业发展的重要基础,但这并不意味着数据可以任意使用,而要有法定界限。只有明晰数据交易边界,才能让供应者更放心地将数据拿出来流通。由此而言,政府通过立法建立健全数据交易管理制度,规范数据交易行为,可谓____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 共享 水到渠成\nB. 安全 切中要害\nC. 开放 恰逢其时\nD. 挖掘 势在必行", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 319867, "human_acc": 51.8549897301, "source": "2021年国考第九季行测模考大赛(副省级)第25题", "difficulty": 6, "formulas": 0}, {"id": 4768466, "material": "", "question": "在艺术创作的世界里,我们常常需要放飞想象,尝试着做一些不可能的事情,比如,“把自己和椅子一起搬起来”就是我们很熟悉的一个________。但是,我们真的不能在想象的世界里实现一次这种看上去不可能的事情吗?其实,艺术创作完全可以建立在____________的想象基础上。\n\n填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 规律 异想天开\nB. 谬论 天马行空\nC. 悖论 自圆其说\nD. 原理 合情合理", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 178172, "human_acc": 17.5235166019, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4648891, "material": "", "question": "组织工作容错空间小、容错时间短。组工干部既要敢于斗争、善于攻坚,同问题隐患“拼刺刀”,更要抓好巩固、____________,对成果“求长效”,发挥好组织优势,把广大党员干部和各方面人才组织起来,团结凝聚人民群众,下好防范风险“先手棋”,打好应对风险挑战“主动仗”,做到未雨绸缪防得早、见微知著防得细、____________防得实。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 行稳致远 江心补漏\nB. 稳扎稳打 釜底抽薪\nC. 迎难而上 步步为营\nD. 行而不辍 亡羊补牢", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 102770, "human_acc": 42.0648049042, "source": "2021下半年省考第三十七季行测模考大赛(四川卷)第19题", "difficulty": 7, "formulas": 0, "history": [{"id": 4918743, "material": "", "question": "“未被发现物种地图”让人摸不着头脑:都列入地图了,到底是发现了还是没发现?准确来说,这其实是一份根据已知物种数据库,分析推断、____________,寻找最有可能发现未知物种地点的“寻宝图”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 按图索骥\nB. 追本溯源\nC. 顺藤摸瓜\nD. 有的放矢", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 278088, "human_acc": 46.1677598458, "source": "2022上半年省考第十六季行测模考大赛(陕西卷)第22题", "difficulty": 7, "formulas": 0}, {"id": 5144201, "material": "", "question": "展现新时代的壮阔气象,描绘新时代的壮美画卷,书写新时代的恢宏史诗,是当代中国文学的神圣使命。开辟新时代文学的新境界,需要文学观念的____________、文章内容的匠心独运、行文风格的多元探索。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 与时俱进\nB. 独出心裁\nC. 异彩纷呈\nD. 精雕细刻", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 93616, "human_acc": 88.5671252777, "source": "2022下半年省考第四季行测模考大赛(青海卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 4668760, "material": "", "question": "古往今来的事实足以证明,____________,不求变革,不求创新,社会的进步就无法实现。历史长河____________,时代的车轮滚滚向前,推动着人类社会生生不息。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 恪守成规 川流不息\nB. 得过且过 亘古不变\nC. 因循守旧 奔腾不息\nD. 泥古拘方 源远流长", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1496076, "human_acc": 74.2762399771, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 4626503, "material": "", "question": "没有老师,就自学自悟;没有资料,就现学现译;没有设备,就用算盘算尺。凭借对家国的____________、对科学的钻研精神,彭士禄带领团队从零开始、____________,破解了一个又一个技术难题。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鞠躬尽瘁 白手起家\nB. 满腔热情 共襄盛举\nC. 一腔热血 自力更生\nD. 一腔热忱 凝心聚力", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 35437, "human_acc": 57.5697717075, "source": "2021下半年省考第三十五季行测模考大赛(西藏卷)第2题", "difficulty": 5, "formulas": 0}, {"id": 4576377, "material": "", "question": "2021年1月25日,习主席在世界经济论坛“达沃斯议程”对话会上强调:实践一再证明,任何____________的做法,任何单打独斗的思路,任何孤芳自赏的傲慢,最终都必然归于失败!让我们携起手来,让多边主义火炬照亮人类前行之路,向着构建人类命运共同体不断迈进!\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自以为是\nB. 以邻为壑\nC. 坐而论道\nD. 首鼠两端", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 379271, "human_acc": 63.7965992654, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5597049, "material": "", "question": "从前,人们对文字充满敬重,矗立起“惜字塔”,但凡字纸都要诚心诚意在其中烧净。而今,对于身处数字化浪潮的人们来说,握鼠标和拿笔杆并不________,每个提笔写字的机会都值得珍惜。在一笔一画中唤醒对于母语和文字的情感,在一字一句中________文化之美、感受艺术之妙,何尝不是美好的文化体验。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冲突 发掘\nB. 对立 诠释\nC. 偏离 领略\nD. 矛盾 体悟", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 52152, "human_acc": 74.3538119343, "source": "2023下半年省考第六季行测模考大赛(上海卷)第1题", "difficulty": 4, "formulas": 0, "history": [{"id": 2042158, "material": "", "question": "多名全国人大代表提出议案,建议修订我国土地管理法,兼顾土地的资源与资产双重______,坚持物权平等保护______,提高______补偿标准。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 特征 规定 征用\nB. 要素 法案 征调\nC. 标准 措施 征集\nD. 属性 原则 征收", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 1359723, "human_acc": 79.1717871949, "source": "2017年江苏省公务员录用考试《行测》题(C类)第50题", "difficulty": 4, "formulas": 0}, {"id": 163333, "material": "", "question": "牡丹没有花谢花败之时,要么烁于枝头,要么归于泥土,它________萎顿和衰老,由青春而死亡,由美丽而________。它虽美却不________生命,即使告别,也要最后留给人一次惊心动魄的体味。", "type": "单选题", "options": "A. 超越 消失 吝啬\nB. 跨越 消逝 吝惜\nC. 穿越 消亡 怜惜\nD. 跨过 消遁 在意", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 528238, "human_acc": 85.3054872993, "source": "2013年四川公务员录用考试《行测》题(下半年)第30题", "difficulty": 5, "formulas": 0}, {"id": 2782246, "material": "", "question": "人才是创新活动中最为________、最为积极的因素,实现科技自立自强离不开人才支撑。要准确把握高等教育进入普及化阶段对创新人才培养的新要求,把产教融合理念________人才培养全过程。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 根本 落实\nB. 稀缺 渗透\nC. 特殊 贯彻\nD. 活跃 融入", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 223055, "human_acc": 60.1923292462, "source": "2021上半年省考第七季行测模考大赛(广东卷)第3题", "difficulty": 5, "formulas": 0}, {"id": 5422088, "material": "", "question": "乡村振兴大的政策背景,叠加消费市场趋于个性化等的变化,发展特色产业正逢其时。地方特色食品产业应该敏锐________市场的需求,加大创新研发,以高质量和产业化占领市场,再不断完善配套、________品牌。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 把握 夯实\nB. 洞悉 宣传\nC. 打量 打造\nD. 满足 树立", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 56450, "human_acc": 42.3578387954, "source": "2022下半年省考第二十四季行测模考大赛(深圳卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 5166441, "material": "", "question": "在管理型政府向服务型政府的转型过程中,传统的以政府为主导的单向营销模式已呈现________之势,而反映大众审美、汇聚民间智慧、代表时代潮流的“草根”阶层正在走向前台,成为一股势不可挡的________力量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 凋零 攻坚\nB. 失利 兴旺\nC. 式微 蓬勃\nD. 腐败 勃兴", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 4112, "human_acc": 87.4270428016, "source": "2022下半年省考第五季行测模考大赛(青海卷)第25题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2264407, "material": "", "question": "①当时的塞纳省省长奥斯曼规划了一座地下之城,将巴黎发展成一座立体化的城市\n\n②从中世纪延续而来的平面化城市已经难以满足经济社会飞速发展的新需要\n\n③后来,这个以下水道系统为基础的地下巴黎,随着公共产品种类的增加而不断添入新功能\n\n④现在,地上的巴黎光彩照人,地下的巴黎默默付出,二者共同承载着这座千年古都的迷人风情\n\n⑤城市形态由地上向地下延展,拓展了城市的空间\n\n⑥作为法国的政治、经济和文化中心,19世纪的巴黎面临着一场迫切的现代化转型\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑥④③⑤①\nB. ④⑥③⑤①②\nC. ⑥②①⑤③④\nD. ①⑥④⑤②③", "choice": "C", "keypoints": "非首句特征;确定顺序", "most_wrong": "A", "human_count": 3552495, "human_acc": 90.0758762504, "source": "2019年国家公务员录用考试《行测》题(副省级网友回忆版)第42题", "difficulty": 4, "formulas": 0, "history": [{"id": 1689102, "material": "", "question": "①在大比例尺的地图上有详细的地理背景资料时\n\n②在小比例尺的地图上很难做到真正意义上的定位布点\n\n③可以准确地布点以反映其实际分布\n\n④定位布点的精确程度取决于地图比例尺和资料的详细程度\n\n将以上几个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④①③②\nB. ③①②④\nC. ①②③④\nD. ②①③④", "choice": "A", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 16069, "human_acc": 94.1377808202, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第30题", "difficulty": 3, "formulas": 0}, {"id": 25063, "material": "", "question": "①在这里,人们已经从浮躁的、高速的城市发展中沉淀下来,希望获得内在的平衡\n\n②二十多年以来,从外表上看,那里的变化并不是非常巨大\n\n③整个城市显得平和恬静\n\n④每年,我仍旧有机会飞往硅谷,参加各种年会\n\n⑤包括节能减排的新举措\n\n⑥但是生活在那里的人正在源源不断地为它注入各种生机\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④②⑥⑤①③\nB. ②④⑤⑥①③\nC. ②④①③⑤⑥\nD. ④①③②⑥⑤", "choice": "A", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 902975, "human_acc": 70.0414740164, "source": "2012年国家公务员录用考试《行测》题第55题", "difficulty": 5, "formulas": 0}, {"id": 2393608, "material": "", "question": "①这个制玉工具直到现在还是主要工具\n\n②俗语说:“玉不琢,不成器”\n\n③历代只不过在精致及便利方面有所改进罢了\n\n④因为玉的硬度很高,古代青铜或铁的刀具都刻画不动它\n\n⑤所以很早就有了琢磨之法,就是用比它硬度更高的金刚砂、解玉砂来磨它\n\n⑥据考古发掘所得的证明,殷商时代的玉器制作中已有旋车的工具\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑥②④⑤\nB. ②④⑤⑥①③\nC. ④⑤②⑥③①\nD. ⑥①③②④⑤", "choice": "B", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 9667, "human_acc": 84.0488259026, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第49题", "difficulty": 5, "formulas": 0}, {"id": 2453068, "material": "", "question": "①由于蛋黄的比重小于蛋白,选择将鸡蛋的大头向上直立存放,即使蛋白变稀,也不会很快发生蛋黄贴皮现象。\n\n②这是因为鲜鸡蛋的蛋清是浓稠的,但随着存放时间的延长以及外界温度的变化,蛋白会逐渐变稀,从而失去固定蛋黄的作用。\n\n③储存鸡蛋时要将鸡蛋竖着放,而且要将鸡蛋的大头朝上。\n\n④这样既可防止微生物侵入蛋黄,也有利于保证蛋品的质量。\n\n下列语句按照合理的逻辑顺序,排列正确的一项是:", "type": "单选题", "options": "A. ②①③④\nB. ①④③②\nC. ③②①④\nD. ③④②①", "choice": "C", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 684261, "human_acc": 71.2616969256, "source": "2020年上海市公务员录用考试《行测》题(A类)(网友回忆版)第9题", "difficulty": 5, "formulas": 0}, {"id": 2443123, "material": "", "question": "将下列6个句子重新排列,语序正确的是:\n\n①这条河贯穿南北,盯着一条河看,其实就是纲举目张,在打量一个辽阔而古老的中国\n\n②它与空间一起支撑起一个勘探世界奥秘的坐标\n\n③时间是历史,也是文化,还是解决一个个疑问的真相\n\n④世界沿着运河像布匹一样在我的想象里展开\n\n⑤在时空交错的坐标里探寻一条河,我相信我看见的是一个复杂、浩瀚的世界\n\n⑥它还给了我另一个想象世界的维度,那就是时间", "type": "单选题", "options": "A. ①⑤⑥③②④\nB. ④⑥③②⑤①\nC. ⑤①④⑥②③\nD. ③②⑤④⑥①", "choice": "B", "keypoints": "非首句特征;确定顺序", "most_wrong": "C", "human_count": 461084, "human_acc": 51.8532414918, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第60题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"]]}, {"id": 754361, "material": "", "question": "往返A市和B市的长途汽车以同样的发车间隔从两个城市分别发车,以每小时40公里的速度前往目标城市。上午9点多,李先生以每小时50公里的速度开车从A市长途汽车站前往B市长途汽车站,路途中总共追上了3辆从A市开往B市的长途汽车。问他在路途中最多能迎面遇到多少辆从B市开往A市的长途汽车:", "type": "单选题", "options": "A. 27\nB. 25\nC. 36\nD. 34", "choice": "C", "keypoints": "相遇追及;非典型最值问题", "most_wrong": "B", "human_count": 425878, "human_acc": 36.2427737521, "source": "2014年山东省公务员录用考试《行测》题第64题", "difficulty": 6, "formulas": 0, "history": [{"id": 2742210, "material": "", "question": "已知A、B两地相距9公里,甲乙两人沿同一条路从A地匀速去往B地,甲的速度为6公里/小时,每走半小时休息15分钟;乙比甲早15分钟出发,中途不休息。若他们在途中(不包括起点和终点)至少相遇2次,则甲、乙两人到达B地的时间最多相差:", "type": "单选题", "options": "A. 30分钟\nB. 45分钟\nC. 60分钟\nD. 75分钟", "choice": "B", "keypoints": "相遇追及;非典型最值问题", "most_wrong": "C", "human_count": 320808, "human_acc": 43.9212862522, "source": "2021年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第62题", "difficulty": 6, "formulas": 0}, {"id": 1797246, "material": "", "question": "上午8点,甲、乙两车同时从A站出发开往1000公里外的B站。甲车初始速度为40公里/小时,且在行驶过程中均匀加速,1小时后速度为42公里/小时;乙车初始速度为50公里/小时,且在行驶过程中均匀减速,1小时后速度为48公里/小时。问中午12点前,两车最大距离为多少公里?", "type": "单选题", "options": "A. 8\nB. 12.5\nC. 16\nD. 25", "choice": "B", "keypoints": "相遇追及;非典型最值问题", "most_wrong": "C", "human_count": 357572, "human_acc": 46.26788451, "source": "2016年山东省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 5050580, "material": "", "question": "甲、乙两车均从A地出发沿一条限速100km/h的道路匀速赶往B地,已知乙车以80km/h的速度行驶25分钟后,甲车才以90km/h的速度从A地出发,两车在A、B两地中点位置相遇,此时甲车由于故障需要停车修理一段时间,乙车继续按原速行驶。若最终甲车与乙车同时到达B地,那么甲车修车时间最长为多少?", "type": "单选题", "options": "A. 15分钟\nB. 20分钟\nC. 25分钟\nD. 45分钟", "choice": "D", "keypoints": "相遇追及;非典型最值问题", "most_wrong": "C", "human_count": 339295, "human_acc": 10.0487776124, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第4题", "difficulty": 7, "formulas": 0}, {"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "相遇追及"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2557501, "material": "", "question": "少儿编程行业近来不太平。行业内的几家头部公司打法都不一样,录播、直播、一对一、小班、大班等多种模式探索都在齐头并进,但高获客成本、慢速的市场渗透、非刚需的课程让不少企业____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 进退维谷\nB. 寸步难行\nC. 步履维艰\nD. 一筹莫展", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;成语填空", "most_wrong": "A", "human_count": 199334, "human_acc": 72.9408931743, "source": "2021年国考第六季行测模考大赛(副省级)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5188233, "material": "", "question": "在关于非法中小学生测评中心的公共讨论中,有一种略带________的声音认为,这是迎合并利用了“鸡娃”家长急于求成的心态。家长以为一纸等级证明能助力孩子升学,因而放松了警惕,并____________为此“买单”。其实,单靠个人所掌握的知识或各种技巧,完全不足以抵挡各色骗局。资质认定、排查社会组织合法性等事项本就是相关政府部门的分内之责,类似查缺补漏的责任不宜也无法________给个体来承担。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 批评 趋之若鹜 转送\nB. 遗憾 毫不犹豫 移交\nC. 揶揄 心甘情愿 转嫁\nD. 嘲弄 慷慨解囊 转移", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 123403, "human_acc": 79.052373119, "source": "2022下半年省考第六季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 16715, "material": "", "question": "每年“世界读书日”前后,“阅读”都会成为一个热门话题。在____________地广泛提倡读书之外,近年来,“阅读”领域内的一些新变化,如迅速________开来的“浅阅读”现象,也越来越引起人们的关注。", "type": "单选题", "options": "A. 一如既往 流行\nB. 大张旗鼓 蔓延\nC. 始终如一 活跃\nD. 不遗余力 扩展", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 293006, "human_acc": 60.7659911401, "source": "2010年湖北省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 16723, "material": "", "question": "蝶,是一个(    )的名字,如昙花,如流星,生命在破茧后的几天里(    )。但有时生命的消亡并不意味着精神的(    ),就像蝶,它们会成为庄生梦里的化身,会传送梁祝生死不渝的约定。", "type": "单选题", "options": "A. 虚幻 一闪而逝 幻灭\nB. 震撼 倏忽而逝 泯灭\nC. 感动 转瞬即逝 消灭\nD. 惊艳 匆匆而逝 毁灭", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 339422, "human_acc": 36.578948919, "source": "2010年四川省公务员录用考试《行测》题(下半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2672403, "material": "", "question": "在“重刑轻民”传统依然____________的中国,编纂民法典首先就要更新观念,强化对公民私权利的立法________,弘扬权利平等、意思自治、诚实信用、契约自由等民法的精神。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 源远流长 解释\nB. 根深蒂固 保障\nC. 薪火相传 认识\nD. 陈陈相因 宗旨", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 3276, "human_acc": 93.0097680098, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第72题", "difficulty": 4, "formulas": 0}, {"id": 2377099, "material": "", "question": "有的摄影者对“后期”的重视几乎超过前期拍摄,作品全都美得不行。当“美”______的时候,应该是有问题了。就像舞台上极为相似的明星一样,迷信“后期”只会消除自我,这样的作品创作,只是数量的______而已,创造者的个性被模糊了。", "type": "单选题", "options": "A. 千篇一律 叠加\nB. 俯仰可拾 堆砌\nC. 不胜枚举 积累\nD. 一成不变 提升", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 1959059, "human_acc": 24.582516402, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第11题", "difficulty": 5, "formulas": 0}, {"id": 5443201, "material": "", "question": "今年以来,在背街小巷提升改造过程中,新城区皇城东路____________,不仅路面整修一新,就连路边的墙壁上,历史文化浮雕与唐诗宋词扇面,在绿植鲜花的________下,也显得古朴又厚重,清新又雅致。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 脱胎换骨 润色\nB. 改头换面 烘托\nC. 洗尽铅华 点缀\nD. 焕然一新 映衬", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 173984, "human_acc": 83.0248758507, "source": "2023上半年省考第三季行测模考大赛(天津卷)第18题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5380089, "material": "", "question": "把握住技术革命带来的司法改革红利,需要法院系统自上而下地传递短视频平台的重要性。应主动提升各级法院对短视频开通运行的重要性认识,打破怕出问题、怕出风头的藩篱,杜绝____________的心态。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 谈虎色变\nB. 畏首畏尾\nC. 如履薄冰\nD. 进退维谷", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 244990, "human_acc": 87.2084574881, "source": "2022下半年省考第十九季行测模考大赛(新疆兵团卷)第21题", "difficulty": 3, "formulas": 0, "history": [{"id": 4737340, "material": "", "question": "中文国际教育的深入开展将从侧面推动中文成为更多国际组织的官方语言和工作语言。语言教育能够增加语言的使用人口,拓展中文的使用范围。当使用人数和使用范围有了明显变化时,中文会自然成为国际交往中____________的语言。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不可或缺\nB. 首屈一指\nC. 举重若轻\nD. 振聋发聩", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 400015, "human_acc": 85.6522880392, "source": "2022上半年省考第八季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 19851, "material": "", "question": "在一个开放竞争的市场环境中,不会有永远的垄断巨头。市场竞争永远____________,无论你是百年老店,还是在市场份额中占据绝对的优势,都不可能在竞争中____________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 刀光剑影 屹立不倒\nB. 危机四伏 稳操胜券\nC. 此起彼伏 稳如磐石\nD. 此消彼长 一劳永逸", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 592352, "human_acc": 42.6474461131, "source": "2012年江苏省公务员录用考试《行测》题(A类)第11题", "difficulty": 5, "formulas": 0, "history": [{"id": 2649213, "material": "", "question": "有论者认为,西方“模仿说”经由柏拉图、亚里士多德等人的不断完善,并未随着古罗马的衰亡而消失,反而____________,在文艺复兴、新古典主义、浪漫主义、现实主义和自然主义等时期不断得到新的诠释。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 经久不衰\nB. 耳熟能详\nC. 独辟蹊径\nD. 历久弥新", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 89465, "human_acc": 82.8681607332, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 5028909, "material": "", "question": "夏日来临,雪糕渐火。____________的双黄蛋、椰子灰等“老款网红”风光不再,取而代之的则是造型更加千奇百怪、口味更加夸张离谱的“新晋网红”。此外,还有不少雪糕打出“无蔗糖”“吃不胖”的旗号,尝试以此圈粉。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 家喻户晓\nB. 蔚然成风\nC. 风靡一时\nD. 显赫一时", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 358093, "human_acc": 88.6875755739, "source": "2022上半年省考第二十二季行测模考大赛(广东县级卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 4824901, "material": "", "question": "进入本世纪以来,在信息、生物、纳米、认知等领域科技创新的带动下,大数据、人工智能、基因编辑、脑机接口等技术____________,人类社会逐渐走向深度科技化时代,我国从科技后发国家发展为科技大国,并正努力以高质量的研究与创新迈向科技强国。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 水到渠成\nB. 方兴未艾\nC. 独领风骚\nD. 如日中天", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 16923, "human_acc": 58.4175382615, "source": "2023年国考第十四季行测模考大赛(地市级)第21题", "difficulty": 6, "formulas": 0}, {"id": 2307799, "material": "", "question": "今天心情不好,我独自走在街头,______的街灯无法吸引我,街边小贩的叫卖我无动于衷,可是令人______的是,我的朋友们拿着蛋糕,来为我庆祝生日,更让我欣喜若狂的是,我的爸妈竟然和他们在一起。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 熠熠生辉 料想不到\nB. 流光溢彩 出乎意料\nC. 五彩斑斓 始料不及\nD. 绚丽多彩 难以想象", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 878373, "human_acc": 31.9735465457, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 5714597, "material": "", "question": "乡村振兴____________,很多地方取得了显著的成效,老百姓生活水平提高了,居住环境提升了,获得感和幸福感也都得到了极大的增强。但是,也有一些地方的乡村振兴之路,产生了偏差乃至是“____________”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 有条不紊 异政殊俗\nB. 如火如荼 误入歧途\nC. 不绝于耳 南辕北辙\nD. 紧锣密鼓 因小失大", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 107117, "human_acc": 83.7570133592, "source": "2023下半年省考第十八季行测模考大赛(四川卷)第16题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5401286, "material": "", "question": "相信很多人都有过类似经历:拆开快递的第一时间就发现商品有明显质量问题,找商家要求退换货时,却被后者以“已签收”为__________,百般推脱。而相关规定的出台,为相关侵权纠纷的审理提供了依据,同时也能够________商家守法合规经营。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 保护伞 敦促\nB. 护身符 监督\nC. 挡箭牌 倒逼\nD. 防火墙 迫使", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 239352, "human_acc": 90.0414452355, "source": "2023年国考第四十七季行测模考大赛(副省级)第29题", "difficulty": 3, "formulas": 0, "history": [{"id": 3723084, "material": "", "question": "当下,人们的休闲观念出现了娱乐化倾向,有人在对娱乐享受的追逐中陷入了肤浅碎化与精神虚无的窠臼。休闲的娱乐化________了人们对意义与价值的追求,人们的主体性和对美好生活的体验在表层化、虚空化的欢娱嬉笑中被遮蔽。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 扼杀\nB. 消解\nC. 摒除\nD. 彰显", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 15515, "human_acc": 52.3235578472, "source": "2021下半年省考第十一季行测模考大赛(内蒙古卷)第22题", "difficulty": 6, "formulas": 0}, {"id": 4823684, "material": "", "question": "安史之乱是唐代历史的__________。诗人们不得不从繁华中走出来,走向动乱,走向困苦,走向边关,并且外观内省:写什么?怎样写?诗人的眼光由此变得冷峻清醒,并以不安焦虑去________现实。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 分水岭 揣度\nB. 标志牌 书写\nC. 分界线 观照\nD. 里程碑 体悟", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 237926, "human_acc": 49.0043122652, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第31题", "difficulty": 6, "formulas": 0}, {"id": 5717239, "material": "", "question": "北京诸多革命纪念地利用新媒体平台________革命文物,让革命文物由特定的纪念馆走向人民群众尤其是走进青年人的视野。这也启示我们,新媒体时代,革命文物及纪念地的宣传,必须要与新媒体技术结合,与时代精神________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推介 共振\nB. 宣扬 交响\nC. 鼓吹 呼应\nD. 传承 同频", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 4645, "human_acc": 75.1345532831, "source": "2023下半年省考第十八季行测模考大赛(陕西卷)第26题", "difficulty": 4, "formulas": 0}, {"id": 4932770, "material": "", "question": "未来智能化战争将彻底________现有的作战模式,将使“科幻”中的武器装备越来越多地走向现实。科幻思维能使人们在研究智能化战争时,运用创新的智慧、________的逻辑进行充分而又广阔的想象,从而________智能化战争的制胜机理,达成在战略上先人一步的目的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 打破 详细 获悉\nB. 重构 严谨 揭露\nC. 异化 周密 推测\nD. 颠覆 缜密 洞悉", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 243817, "human_acc": 90.4087901992, "source": "2022上半年省考第十七季行测模考大赛(陕西卷)第34题", "difficulty": 3, "formulas": 0}, {"id": 4932744, "material": "", "question": "年画是流传于中国民间并为中国老百姓喜闻乐见的艺术形式,在中国,年画不仅是年节的艺术________,还承载着文化传承和道德教育的功能。年画形式语言大多采用大红大绿的色彩,充满喜庆的气氛,造型上善用夸张的手法,极具__________,其中的人物、动物等生动可爱,富有活力,体现了中国民间的艺术创造力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 点缀 艺术性\nB. 代表 大众性\nC. 附庸 文化性\nD. 粉饰 趣味性", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 267989, "human_acc": 63.3343159607, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2701685, "material": "", "question": "列举负面清单的方式并不能真正解决童书难选的困境。童书市场的庞大和____________使得个体的排查显得微不足道,纵使部分家长能够合力________ 所谓的“童书黑名单”,其消耗的精力与难以预知的阅读影响相比依旧是得不偿失。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 滥竽充数 填充\nB. 瞬息万变 举报\nC. 泥沙俱下 消灭\nD. 鱼龙混杂 扩大", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 278282, "human_acc": 50.3327559813, "source": "2021年国考终极行测模考大赛(副省级)第26题", "difficulty": 6, "formulas": 0, "history": [{"id": 16737, "material": "", "question": "容易犯错误是我们人类无法避免的一个弱点,不管科技发展到什么程度,事故总是会在不经意间发生。懂得这个道理,我们就可以“____________”,只有这样,或许我们才能________应对一切可能出现的麻烦。", "type": "单选题", "options": "A. 未卜先知 巧妙\nB. 未雨绸缪 从容\nC. 先发制人 完美\nD. 稳操胜券 主动", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 304978, "human_acc": 94.2110578468, "source": "2010年湖北省公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5300111, "material": "", "question": "吐鲁番柏孜克里克千佛洞由于地处偏僻,游客稀少,在景点演奏传统乐器的老人生意冷清。一旦________了活生生的日常场景,原本那种极具感染力的艺术形式,就有可能____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 脱离 黯然失色\nB. 剥离 无所适从\nC. 偏离 形同虚设\nD. 背离 无人问津", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 185251, "human_acc": 81.1833674312, "source": "2022下半年省考第十二季行测模考大赛(浙江C卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 2776138, "material": "", "question": "竹被文人高士用来表现脱俗的情趣、正直的气节、虚心的品质,墨竹成了书、画、道的__________,成了人格、人品的写照,寓意兴寄愈益丰厚,成为中国画史____________的题材。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 粘合剂 历久弥新\nB. 代表作 独树一帜\nC. 综合体 经久不衰\nD. 标志物 引人注目", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 1968222, "human_acc": 57.593706401, "source": "2021年浙江省公务员录用考试《行测》题(B类)(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 3788443, "material": "", "question": "圈层文化并非网络时代的特有产物,网络作为催化剂,________了圈层文化的发展。青少年在快乐融入圈层的同时,不能做圈内的____________。实际上,外面的世界很精彩,青少年应走出思维和审美盲区。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推动 瓮中之鳖\nB. 加速 井底之蛙\nC. 推进 涸辙之鲋\nD. 加快 漏网之鱼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 84094, "human_acc": 93.7855257212, "source": "2021下半年省考第十四季行测模考大赛(陕西卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 2259161, "material": "", "question": "宋代文体学的核心问题是本色与破体的错综纠葛、_______。宋代的文体本色论深入细致,在理论层面占优势地位,但破体相参在理论层面基本上是匮乏甚至_______的,所以会表现出一种自相矛盾的情形。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 相互影响 缺乏\nB. 相辅相成 缺乏\nC. 相反相成 缺位\nD. 相得益彰 缺位", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 8853, "human_acc": 65.3450807636, "source": "2015年江西省法检系统招录考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5595409, "material": "", "question": "午休是很多人都有的好习惯,________中小学生们想要好好睡个午觉,却常常遭遇一些困难。即便安排了午休,往往只能“趴睡”,极易产生脚麻、手麻、脊柱侧弯等问题,睡得不舒服,也不健康。实施中小学午休“舒心躺睡”工程,________要对场地设备等进行相应改造,转变观念________是关键。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可 同时 更\nB. 而 不仅 仍\nC. 但 除了 也\nD. 且 一边 一边", "choice": "C", "keypoints": "关联关系-转折关系;关联关系-并列关系", "most_wrong": "A", "human_count": 4868, "human_acc": 77.8964667214, "source": "2023下半年省考第六季行测模考大赛(上海卷)第4题", "difficulty": 4, "formulas": 0, "history": [{"id": 2378256, "material": "", "question": "她作品中的诗情和诗意,像清江锦石,像溪流清澈,可以是微波荡漾的滇池,也可以是烟水迷蒙的太湖,______不是“波撼岳阳城”的云梦洞庭,______不是“波浪兼天”的长江,______不是“咆哮万里”的黄河。", "type": "单选题", "options": "A. 却 也 还\nB. 可 也 而\nC. 而 亦 更\nD. 但 也 更", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-并列关系", "most_wrong": "C", "human_count": 937854, "human_acc": 41.012033856, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 5144719, "material": "", "question": "百年变局和世纪疫情叠加影响,国际形势中不稳定、不确定、不安全因素日益突出。________和平与发展的时代主题没有变,各国人民对美好生活的追求没有变,国际社会同舟共济、合作共赢的历史使命________没有变。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 但是 也\nB. 既然 就\nC. 如果 就\nD. 然而 更", "choice": "A", "keypoints": "关联关系-转折关系;关联关系-并列关系", "most_wrong": "D", "human_count": 8232, "human_acc": 55.7094266278, "source": "2022下半年省考第四季行测模考大赛(广东县级卷)第5题", "difficulty": 5, "formulas": 0}, {"id": 2050758, "material": "", "question": "在音乐的理论中,有所谓的“音乐的语言”;在语文形式美的理论中,应该_____有所谓的“语言的音乐”。________音乐和语言不是一回事,_________二者之间有一个共同点:音乐和语言都是靠声音来表现的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 也 尽管 但是\nB. 还 虽然 但是\nC. 也 不仅 而且\nD. 还 不但 而且", "choice": "A", "keypoints": "关联关系-转折关系;关联关系-并列关系", "most_wrong": "B", "human_count": 862958, "human_acc": 80.924216474, "source": "2017年422联考《行测》题(江西卷)第2题", "difficulty": 3, "formulas": 0}, {"id": 4640917, "material": "", "question": "我国新冠肺炎疫情防控取得了重大战略成果,________,这并不意味着我们可以掉以轻心。此轮疫情的发生,给疫情防控工作再次敲响了警钟。一边是日趋恢复正常的工作生活,________,另一边是全球疫情形势依然严峻,“外防输入、内防反弹”的任务仍然艰巨。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 所以 反之\nB. 但是 同时\nC. 可是 而且\nD. 因此 并且", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系", "most_wrong": "C", "human_count": 59585, "human_acc": 96.8951917429, "source": "2021下半年省考第三十六季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 5521231, "material": "", "question": "将下列选项中的词语依次填入各句横线处,最恰当的一组是(    )。\n\n晚上睡前靠在床头刷手机,________是许多人一天中最舒心惬意的时刻,________需要提醒的是,长期的睡前玩手机,________会造成入睡困难,降低睡眠质量,_______可能诱发抑郁情绪。", "type": "单选题", "options": "A. 虽然 但 如果 就\nB. 既然 也 不仅 还\nC. 虽然 但 不仅 还\nD. 既然 也 如果 就", "choice": "C", "keypoints": "关联关系-转折关系;关联关系-并列关系", "most_wrong": "A", "human_count": 338962, "human_acc": 97.8962243555, "source": "2023年深圳市考公务员录用考试《行测》试题(网友回忆版)第67题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 2402438, "material": "", "question": "“逻辑是不可战胜的,因为反对逻辑也必须使用逻辑。”\n\n若要使上面的陈述成立,还必须以以下哪一项为前提?", "type": "单选题", "options": "A. 反对逻辑的人,不一定会使用逻辑\nB. 凡是使用逻辑的人,一定不会反对逻辑\nC. 除非反对逻辑也必须使用逻辑,否则逻辑是可以战胜的\nD. 如果反对逻辑也必须使用逻辑,那么逻辑是不可战胜的", "choice": "D", "keypoints": "搭桥;常规翻译", "most_wrong": "C", "human_count": 439223, "human_acc": 59.4021715621, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第95题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"], ["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 5305247, "material": "", "question": "中医的境况不仅是在国外甚至在国内,许多地方已经到了只是一个辅助治疗手段,或者说是一个____________的角色。有人认为,中医在理性与经验等方面与西医相比都____________。现在人们有一种____________的思维模式,即西方哲学科学思维都是正确的。所以,为了扭转这种情况,中医必须从中国文化的根本上走自己的路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无足轻重 黯然失色 根深蒂固\nB. 味同嚼蜡 望尘莫及 积重难返\nC. 无关紧要 相形见绌 坚不可摧\nD. 可有可无 差强人意 积习难改", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 8159, "human_acc": 84.0299056257, "source": "2022下半年省考第十三季行测模考大赛(新疆兵团卷)第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 2255896, "material": "", "question": "某省农村改革的成效,现在是________了,七千四百亿斤粮食和八千万担棉花便是献给改革者的花束。这虽然是开头,却预示着改革之势________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一睹为快 如火如荼\nB. 惨不忍睹 功败垂成\nC. 板上钉钉 星火燎原\nD. 有目共睹 方兴未艾", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 13721, "human_acc": 88.7253115662, "source": "2016年江西省法检系统招录考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4718203, "material": "", "question": "专家们提供的育儿经验只是针对大多数孩子的普遍情况,并非一成不变的绝对真理。把此作为唯一标准,____________,就会忽略了孩子的“个性”和特有的生长发育轨迹,反而对孩子的健康成长产生不利的影响。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 顺藤摸瓜\nB. 按图索骥\nC. 大而化之\nD. 唯命是从", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 378338, "human_acc": 55.1792312694, "source": "2022上半年省考第七季行测模考大赛(四川卷)第16题", "difficulty": 5, "formulas": 0}, {"id": 2187736, "material": "", "question": "“大众娱乐”这个标签并非贬义,恰恰相反,要想让消费者_______地为娱乐埋单,其实很是考验创作者的能力。艺术家们或许会对商业叙事作品的生产者们开发出的一整套完备的叙事模式_______,但这也是一种能力的体现。", "type": "单选题", "options": "A. 乐此不疲 漠然置之\nB. 毫不犹豫 不屑一顾\nC. 心甘情愿 嗤之以鼻\nD. 趋之若鹜 冷眼相对", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 1103181, "human_acc": 87.6052977707, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第10题", "difficulty": 4, "formulas": 0}, {"id": 5102652, "material": "", "question": "走进榆阳乡村,田成方、树成行,渠成网、路相通,一幢幢农家院落____________,一个个乡村旅游景点别具特色,一张张笑脸幸福满满,蓝天白云与阡陌纵横的农田交相辉映,诗意盎然的田园画卷____________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鳞次栉比 美轮美奂\nB. 错落有致 美不胜收\nC. 风格迥异 赏心悦目\nD. 星罗棋布 尽收眼底", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 1245265, "human_acc": 61.0209875007, "source": "2022年陕西省公务员录用考试《行测》题(网友回忆版)第21题", "difficulty": 5, "formulas": 0}, {"id": 5114098, "material": "", "question": "培养干部不容易,要管理好、监督好,让他们始终有____________的警觉。一些年轻干部的偏航之举不能及时得到纠正,就有可能开始追求高高在上的优越感和以权谋私的愉悦感,在飘飘然中走上了违纪违法道路,需要通过谈话提醒等方式____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 杯弓蛇影 敲山震虎\nB. 如履薄冰 防患未然\nC. 安不忘虞 摄人心魂\nD. 如临深渊 防微杜渐", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 80142, "human_acc": 36.7198223154, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第29题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2719357, "material": "", "question": "噬菌体是一种侵袭细菌的病毒,虽然它们很早就被发现,但由于一次只能攻击一种特定的细菌而未受关注。然而,曾经不那么受欢迎的__________,如今却成了它们最大的吸引力。由于过度使用抗生素,人类无意中________了目前最强大、最具耐药性的超级细菌,而噬菌体无疑是对付它们的潜在有效武器。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 敏感性 培育\nB. 特异性 催生\nC. 单一性 激活\nD. 局限性 发现", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 2887052, "human_acc": 53.5795683625, "source": "2021年国家公务员录用考试《行测》题(副省级网友回忆版)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 2742303, "material": "", "question": "在艺术加工时,为了制造情节冲突难免会和现实之间产生“折射”,导致________偏差,在一些情况下,只要“无关大雅”便“相安无事”。因此,我们不能过于________地要求电影等同现实。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 观点 简单\nB. 主题 严厉\nC. 线索 粗暴\nD. 细节 苛刻", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 489902, "human_acc": 93.7775310164, "source": "2021年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第38题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 1723418, "material": "", "question": "莫高窟是古代先民聪明智慧的结晶。莫高窟选址在戈壁荒漠的绿洲之中,体现了佛教与世俗隔离、与自然融合的思想。洞窟依山面水,河水滋润着莫高窟周围的绿树,形成了独特的清幽风光。莫高窟呈蜂窝状排列的洞窟最高处不超过40米。冬季,从西边刮来的风沙经窟顶而过,吹不到洞窟;夏季,对面的三危山又成了天然屏障,使东边刮来的风沙无法威胁到洞窟。这样,莫高窟便成了干燥区域里一个最安全的地带。正因如此,莫高窟虽经千年,仍完好保存了11个朝代的492个洞窟及大量的壁画和雕塑,为世界留下了珍贵的文化艺术遗产。\n\n这段文字主要说明了:", "type": "单选题", "options": "A. 莫高窟设计建造中的天人合一思想\nB. 莫高窟在世界文化史上的重要价值\nC. 莫高窟及其中壁画完好保存的原因\nD. 莫高窟的自然环境和独特清幽的风光", "choice": "C", "keypoints": "关联词-因果;行文脉络-分总", "most_wrong": "A", "human_count": 698183, "human_acc": 86.4443849249, "source": "2015年河南省公务员录用考试《行测》题第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 12723, "material": "", "question": "历史上的书法家多雅人高士,故所能风度潇洒,韵味醇古,于笔墨以外,则有一种静穆之气,幽雅之思,为常人凡夫所不及。此即将人格移入于作品之中,使之人格化,故能感人最深而为书法之上上乘也。\n\n根据这段话,作者想告诉我们:", "type": "单选题", "options": "A. 人品影响作品\nB. 作品影响人品\nC. 人品比作品重要\nD. 作品比人品重要", "choice": "A", "keypoints": "关联词-因果;行文脉络-分总", "most_wrong": "C", "human_count": 15834, "human_acc": 93.1350258936, "source": "2009年广西壮族自治区公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}, {"id": 4004684, "material": "", "question": "有人认为只有当经济发展到一定水平,才有可能有效地去治理环境。但是如果等到了严重污染后,再行治理,就需要花费数倍乃至数十倍的经济代价。因此,“先污染,后治理”的观点是不可取的。\n\n这段文字主要支持的观点是:", "type": "单选题", "options": "A. 环境治理花费较大\nB. 环境治理应防治结合,以防为主\nC. 环境问题事关个人切身利益\nD. 经济发展要与环境相适应", "choice": "B", "keypoints": "关联词-因果;行文脉络-分总", "most_wrong": "D", "human_count": 371593, "human_acc": 68.082821797, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 2261636, "material": "", "question": "目前人造关节所用的材料不外乎金属和塑料两大类。由于人体内钾、钠、氯等化学物质可能使金属材料腐蚀生锈,塑料老化,所以选用的金属和塑料的化学性质必须高度稳定。\n\n这段话的主要观点是(    )。", "type": "单选题", "options": "A. 人造关节用金属或塑料制造不合适\nB. 塑料人造关节容易老化\nC. 人体内钾、钠、氯等化学物质很活跃,有腐蚀作用\nD. 制造人造关节必须选用化学性质高度稳定的金属和塑料", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总", "most_wrong": "C", "human_count": 2994, "human_acc": 97.995991984, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第22题", "difficulty": 5, "formulas": 0}, {"id": 9189, "material": "", "question": "读书是个人的一种生活习惯,是由文化素养决定的。没有对知识的追求、没有对文化的爱好,很难想象能让人静下心来去读书。阅读的习惯,要从小培养,从小处做起,只有对文化知识的热爱和追求,才能让我们习惯于阅读。国人的读书习惯和爱好绝非一个青少年读书节就能解决的。所以,阅读还是靠平日的习惯。\n\n这段文字的中心议题是:", "type": "单选题", "options": "A. 阅读习惯\nB. 倡导读书\nC. 从小爱读书\nD. 追求知识", "choice": "A", "keypoints": "关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 31367, "human_acc": 81.4550323588, "source": "2009年安徽省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 3971, "material": "", "question": "由于信息革命的出现,在世纪交替之际,我们的教育理论和教育模式正面临着一场重大的变革和挑战。在未来几年内,交互式多媒体系统将以其丰富的功能、强有力的影响、方便便宜的特点在教育界得到广泛的应用,从而掀起一场新型教育革命。\n\n这段话的中心思想是:", "type": "单选题", "options": "A. 人类社会已出现信息革命\nB. 教育面临着挑战\nC. 功能强大的多媒体在教育界的应用将引发一场新型的教育革命\nD. 多媒体的功能很强大", "choice": "C", "keypoints": "关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 20432, "human_acc": 94.0045027408, "source": "2008年内蒙古自治区公务员录用考试《行测》题第18题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 2262753, "material": "", "question": "冷冰冰的标语口号,不仅令人 ________,起不到警示教育作用,反而让人产生反感和抵触情绪。在我们文明程度日益提高的今天,我们的口号标语是不是也应该 ________,多一点感情和温度,多一点幸福的提醒呢?\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 心生厌恶 顺应潮流\nB. 望而生畏 与时俱进\nC. 侧目相视 推陈出新\nD. 发指眦裂 开拓创新", "choice": "B", "keypoints": "成语填空", "most_wrong": "A", "human_count": 25417, "human_acc": 49.1364047685, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第23题", "difficulty": 5, "formulas": 0, "history": [{"id": 161409, "material": "", "question": "消极完美主义者总是非常仔细地检查任何事情的细枝末节,有时竟达到________的地步。他们缺少一种适时放弃的智慧,他们所追求的“完美”,不是美学意义上的“完美”,而是一种非常刻板而教条式的“完美”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抱残守缺\nB. 宁缺毋滥\nC. 冥顽不灵\nD. 吹毛求疵", "choice": "D", "keypoints": "成语填空", "most_wrong": "C", "human_count": 2113103, "human_acc": 87.5924647308, "source": "2014年国家公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0}, {"id": 1365057, "material": "", "question": "由于竞选活动需要雇用工作人员、制作竞选标语和招贴画、布置演讲场地、发布广播和电视广告等,因此花费高昂,这是近代民主政治的普遍现象。而在美国,总统选举从党内初选到两党全国代表大会再到最后投票历时至少一年,选举费用更是____。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 事随境迁\nB. 水涨船高\nC. 居高不下\nD. 居高临下", "choice": "C", "keypoints": "成语填空", "most_wrong": "B", "human_count": 665821, "human_acc": 67.4523633229, "source": "2015年天津市公务员录用考试《行测》题第23题", "difficulty": 4, "formulas": 0}, {"id": 3636642, "material": "", "question": "一些投资方之所以选择古代神话故事,并不是真的对其____________,而是这些故事已有成熟的套路,剧情开发成本较低,资本回报周期更短,甚至可以打着振兴传统文化的旗号____________。看到《西游记之大圣归来》《白蛇:缘起》《哪吒之魔童降世》等动画电影陆续斩获票房佳绩,越来越多的投资方把目光放到国民____________的神话题材上。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如数家珍 坐收渔利 家喻户晓\nB. 爱不释手 得过且过 深入人心\nC. 情有独钟 坐吃山空 耳熟能详\nD. 刮目相看 不劳而获 长盛不衰", "choice": "C", "keypoints": "成语填空", "most_wrong": "A", "human_count": 82809, "human_acc": 58.7907111546, "source": "2021下半年省考第七季行测模考大赛(陕西卷)第40题", "difficulty": 6, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2694989, "material": "", "question": "学校组织初三年级共200名学生参加文史知识竞赛,共出了A、B、C三道题。其中,做对A题的有75名,做对B题的有83名,做对C题的有52名,三道题都做错的学生有20名。现从三道题都答对的学生中选出2名参加省里的总决赛,则最多有多少种选择方案?", "type": "单选题", "options": "A. 870\nB. 435\nC. 210\nD. 105", "choice": "D", "keypoints": "基础排列组合;非典型最值问题;三集合", "most_wrong": "C", "human_count": 58247, "human_acc": 13.4341682833, "source": "2021年国考第二十三季行测模考大赛(副省级)第72题", "difficulty": 7, "formulas": 0, "history": [{"id": 622537, "material": "", "question": "数字3、5至少都出现一次的三位数有多少个:", "type": "单选题", "options": "A. 48\nB. 52\nC. 54\nD. 60", "choice": "B", "keypoints": "基础排列组合", "most_wrong": "C", "human_count": 293172, "human_acc": 33.2347563887, "source": "2014年四川省公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 1759, "material": "", "question": "在一条线段中间另有6个点,则这8个点可以构成多少条线段?", "type": "单选题", "options": "A. 15\nB. 21\nC. 28\nD. 36", "choice": "C", "keypoints": "基础排列组合", "most_wrong": "D", "human_count": 176002, "human_acc": 73.454847104, "source": "2008年陕西省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "排列组合问题", "基础排列组合"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 5745120, "material": "", "question": "长久以来,股市谣言之所以____________,一个重要原因就是调查取证、诉讼追责的程序繁琐、成本过高,投资者进行自主维权的难度较大。许多人即使因谣言惨遭财产损失,也只能无奈自认倒霉,而这种退让心态又恰恰间接纵容了谣言的横行,使得不法之徒愈发____________,频频以此谋取非法利益。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 层出不穷 跃跃欲试\nB. 骇人听闻 明火执仗\nC. 屡禁不绝 肆无忌惮\nD. 遍地开花 为所欲为", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 118891, "human_acc": 94.7001875668, "source": "2023下半年省考第二十一季行测模考大赛(四川卷)第15题", "difficulty": 3, "formulas": 0, "history": [{"id": 3593388, "material": "", "question": "只有当你掌握了文字的丰富内涵后,你在阅读时面对这些文字也许才会产生更多的联想,因为那一个个安静地躺在纸上的文字就像是一个个蕴藏着巨大活力的信息库,每走进一个字,彼时都会让你____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 朝思暮想\nB. 奇思妙想\nC. 痴心妄想\nD. 浮想联翩", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 83563, "human_acc": 84.7623948398, "source": "2021下半年省考第六季行测模考大赛(广东县级卷)第1题", "difficulty": 4, "formulas": 0}, {"id": 2654057, "material": "", "question": "作为社会主要生产力人群,中青年人所承受的躯体和精神压力____________,从生活方式上看,中青年人常常存在着营养过剩、过量饮酒、久坐办公、运动减少、熬夜等问题,这些不良生活方式导致肥胖、高脂血症、糖尿病、痛风等疾病频发,____________,以致突发心脑血管疾病。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不言而喻 习以为常\nB. 水涨船高 日积月累\nC. 不可小觑 周而复始\nD. 与日俱增 积重难返", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 168191, "human_acc": 68.4204267767, "source": "2021年国考第十八季行测模考大赛(副省级)第22题", "difficulty": 4, "formulas": 0}, {"id": 5581605, "material": "", "question": "遭遇商家的不公对待时,消费者有权维护自己的合法权益,这本来是____________的常识。但在许多消费者看来,维权需要投入的时间成本,可能远远超过他们能够争得的赔偿。因此,维权常常被认为是一件苦差事,许多消费者也在这种心态的驱使之下,一再选择____________,从而放弃维权。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 人尽皆知 委曲求全\nB. 众所周知 忍辱负重\nC. 不言自明 曲意逢迎\nD. 路人皆知 忍气吞声", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 43035, "human_acc": 34.2837225514, "source": "2023下半年省考第四季行测模考大赛(广东县级卷)第18题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2387501, "material": "", "question": "智能机器人在众多行业中____________,这不禁让一些人担忧,自己的工作是否迟早也要被机器人代替。对此,我们大可不必____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大显身手 杞人忧天\nB. 脱颖而出 瞻前顾后\nC. 崭露头角 左右为难\nD. 一枝独秀 庸人自扰", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 40231, "human_acc": 90.9969923691, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第36题", "difficulty": 4, "formulas": 0, "history": [{"id": 3743844, "material": "", "question": "蹭社会热点看似____________,实则是对市场诚信基础的巨大伤害,尤其是与资本“共谋”的行为,还涉嫌操纵市场。上市公司蹭热点不可取,被鼓动的投资者“追”热点同样无异于____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无伤大雅 火中取栗\nB. 无足挂齿 急功近利\nC. 无足轻重 虎口夺食\nD. 无可厚非 投机取巧", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 102007, "human_acc": 71.7509582676, "source": "2021下半年省考第十二季行测模考大赛(广东县级卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 2030038, "material": "", "question": "从默片到有声,从黑白到彩色,人类社会的影像表达和传播都与媒介生态和技术变革________,当新媒体成为影像传播的新载体和新平台,微电影、迷你剧、微纪录片、恶搞短片、自拍秀甚至动态图片都成为与新媒体________的新的影像表达形式。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 息息相关 相生相伴\nB. 紧密相连 相得益彰\nC. 休戚相关 相辅相成\nD. 一脉相连 相濡以沫", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 845399, "human_acc": 58.5672564079, "source": "2016年四川省公务员录用考试《行测》题(下半年)第20题", "difficulty": 5, "formulas": 0}, {"id": 2030050, "material": "", "question": "互联网新的运营模式不断出现,技术发展________,这对版权保护也提出了更多挑战。从当前的司法实践来看,各地法院对网络运营商的责任认定也常常存在差异。著作权法的立法宗旨是“尊重智慧,鼓励创作和传播”,这在网络时代也应该________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 突飞猛进 亘古不变\nB. 层出不穷 始终如一\nC. 一日千里 一以贯之\nD. 日新月异 坚明约束", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 771535, "human_acc": 66.071403112, "source": "2016年四川省公务员录用考试《行测》题(下半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 5162051, "material": "", "question": "对于国家间的合作与发展,要____________,共同开创两国关系的广阔前景。世界逐渐多极化、国际关系民主化开始取代单边主义、霸权主义已是历史的必然,冷战结盟、地缘对抗那一套早已不得人心。不要为他人做火中取栗的事情,也不要走上____________的歧途。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因势利导 落井下石\nB. 顺其自然 损人利己\nC. 顺势而为 以邻为壑\nD. 审时度势 穷兵黩武", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 99201, "human_acc": 58.1072771444, "source": "2022下半年省考第五季行测模考大赛(新疆卷)第30题", "difficulty": 6, "formulas": 0}, {"id": 4637535, "material": "", "question": "建筑工程投入巨大,一旦建成再做拆改可谓____________。对此,需要完善设计规范和管理制度,从方案设计一开始就强化监管审核,确保建筑物在形体、色彩、体量、高度和空间环境等方面符合城市设计要求,避免陷入“____________”的窘境,最大程度地维护公共利益。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 徒劳无功 覆水难收\nB. 劳民伤财 木已成舟\nC. 得不偿失 尾大不掉\nD. 血本无归 闭门造车", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 2073550, "human_acc": 67.8462057824, "source": "2022年国家公务员录用考试《行测》题(副省级网友回忆版)第25题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 49289, "material": "", "question": "美国的“龙”飞船未能接近国际空间站,___________发射升空后不久,其四组推进器___________有三组出现故障,而美国航空局的飞行规章要求,___________有三组推进器在运行,“龙”飞船才能获准接近空间站。", "type": "单选题", "options": "A. 因为 就 至少\nB. 由于 果然 必须\nC. 尽管 已 必须\nD. 虽然 突然 至少", "choice": "A", "keypoints": "关联关系-因果关系", "most_wrong": "C", "human_count": 976102, "human_acc": 90.1831980674, "source": "2013年江苏省公务员录用考试《行测》题(C类)第11题", "difficulty": 5, "formulas": 0, "history": [{"id": 8551, "material": "", "question": "对于任何一个家庭而言,组建成功的继亲家庭最基本的条件是关爱、仁慈以及相互尊重,( ),仅有爱情是不够的,( ),爱情肯定是任何家庭建立的基石,( ),建立一个成功的继亲家庭,还涉及到很多其他的重要因素。", "type": "单选题", "options": "A. 可见,然而,当然\nB. 总之,但是,因为\nC. 然而,因为,所以\nD. 所以,当然,但是", "choice": "D", "keypoints": "关联关系-因果关系", "most_wrong": "A", "human_count": 80105, "human_acc": 61.4418575619, "source": "2009年四川省公务员录用考试《行测》题(下半年)第17题", "difficulty": 5, "formulas": 0}, {"id": 4233348, "material": "", "question": "学者、诗人闻一多曾说:“诗人对诗的贡献是次要问题,重要的是使人精神有所寄托。”古典诗词________能传承千载、经久不衰,________它寄托着中国人的精神追求,承载着中国人的诗情与诗心。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 不仅 还\nB. 尽管 但是\nC. 非但 而且\nD. 之所以 正因为", "choice": "D", "keypoints": "关联关系-因果关系", "most_wrong": "C", "human_count": 13532, "human_acc": 95.1152822938, "source": "2021下半年省考第二十二季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 5367808, "material": "", "question": "蚁穴虽小能溃大堤。当“花钱办事”的潜规则大行其道,必然带来整个社会风气的扭曲,________动摇党的执政根基,影响国家长治久安。正如一名基层干部所说:一百次服务换来的认可,不敌一次“花钱办事”带来的伤害。________,老虎要打,苍蝇也要拍,整治腐败,必须“无微不至”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 甚至 所以\nB. 或许 因此\nC. 乃至 因为\nD. 也 那么", "choice": "A", "keypoints": "关联关系-因果关系", "most_wrong": "C", "human_count": 14922, "human_acc": 97.8689183756, "source": "2022下半年省考第十八季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 1685858, "material": "", "question": "______说早期环境污染是由于人类认识水平的历史局限,______近十多年来随着人类活动范围的扩大和全球经济一体化进程的加快,国际污染日益严重,就是人类唯利是图的贪婪所致了。这不是哪个国家能独自解决的,______国家间共同协调行动,______实现人类和自然的重新和谐。", "type": "单选题", "options": "A. 如果 可是 只要 就\nB. 如果 那么 只有 才能\nC. 尽管 然而 只要 就\nD. 尽管 那么 只有 才能", "choice": "B", "keypoints": "关联关系-因果关系", "most_wrong": "D", "human_count": 437874, "human_acc": 94.4180289307, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第43题", "difficulty": 5, "formulas": 0}, {"id": 5717006, "material": "", "question": "对于开发商来说,现房销售对现金流、施工能力的要求更高,________推行起来难度较大。在现阶段,________土地价格、建设成本不变,现售会抬高购房成本,从而影响这类房子的销售。________现售制度下,必须要求政府在地价上让利,以降低开发成本,进而稳定房价预期,也能降低购房的成本。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因而 假如 进而\nB. 然而 即使 以致\nC. 不过 虽然 故而\nD. 因此 如果 所以", "choice": "D", "keypoints": "关联关系-因果关系", "most_wrong": "A", "human_count": 8950, "human_acc": 87.8994413408, "source": "2023下半年省考第十八季行测模考大赛(上海卷)第4题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 5451245, "material": "", "question": "改革开放40年来,中国成功跻身世界第二大经济体,创造了发展传奇。在物质更加充盈的背景下,人们的精神文化需求也____________。奋进在创造美好生活的道路上,大家拥有了更高的文化追求。因此,以交响乐为代表的高雅艺术的发展,正是人们文化生活不断丰富、欣赏能力不断提升的一个生动________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 甚嚣尘上 缩影\nB. 日甚一日 呈现\nC. 水涨船高 注脚\nD. 与日俱增 补充", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 280535, "human_acc": 41.8093998966, "source": "2023上半年省考第五季行测模考大赛(陕西卷)第29题", "difficulty": 7, "formulas": 0, "history": [{"id": 2281000, "material": "", "question": "互联网海量的视听内容使观众的注意力成了稀缺资源。很多观众不再自主选择节目,而是根据网络评论______。所以,节目要主动走到观众中去,了解观众所需,主动______自己,进而让观众变成自己的“推销员”。", "type": "单选题", "options": "A. 按图索骥 推荐\nB. 人云亦云 介绍\nC. 披沙拣金 包装\nD. 短中取长 评价", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 1362193, "human_acc": 68.0115813251, "source": "2018年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第21题", "difficulty": 5, "formulas": 0}, {"id": 5658569, "material": "", "question": "许多上合组织成员国处于丝绸之路经济带上,各国的发展规划可以与丝绸之路经济带建设有机结合、____________。未来,上合组织框架内的经济合作步伐将显著_______,合作水平将提升至一个全新的高度。\n\n依次填入画线部分最恰当的是________。", "type": "单选题", "options": "A. 水乳交融 加快\nB. 水乳交融 减慢\nC. 相得益彰 减慢\nD. 相得益彰 加快", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 555, "human_acc": 74.0540540541, "source": "2020年上海市行政执法类考试《行测》试题(网友回忆版)第1题", "difficulty": 4, "formulas": 0}, {"id": 5430266, "material": "", "question": "并非所有的阅读都是一场对抗,一次____________的对话。有谁未曾被一篇扣人心弦、____________的论述所折服,未曾________在他人的思维里,而又被一声电话铃声或其他干扰拽回现实?\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 唇枪舌剑 字字珠玑 沉醉\nB. 雄辩高谈 丝丝入扣 迷醉\nC. 舌战群儒 笔底生花 沉浸\nD. 剑拔弩张 巧舌如簧 陶醉", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 882826, "human_acc": 60.6796809337, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第61题", "difficulty": 5, "formulas": 0}, {"id": 5570124, "material": "", "question": "创新应用不是简单制造________和炒作概念,而是要围绕用户的真正需求,创造出有价值的产品和服务,从而提高工作效率。现实中,科技领域的热点概念一旦出现,往往容易被盲目追崇,在资本裹挟下____________,既迷惑了大众,也浪费了资源。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 卖点 云趋鹜赴\nB. 先机 一拥而上\nC. 幌子 执鞭坠镫\nD. 噱头 一哄而上", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 45444, "human_acc": 72.1701434733, "source": "2023下半年省考第三季行测模考大赛(广东县级卷)第19题", "difficulty": 4, "formulas": 0}, {"id": 2701679, "material": "", "question": "对于礼尚往来成为________、人情消费“猛于虎”,不能止于批评和抱怨,而应当站在____________的高度,从每个人自身的努力做起,正确处理“面子”和“里子”的关系,转变观念并________新事新办,把人情消费从“负担”变成“互利”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 负担 革故鼎新 倡导\nB. 责任 返璞归真 坚持\nC. 习惯 脱胎换骨 主张\nD. 累赘 改头换面 维护", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 211755, "human_acc": 91.2460154424, "source": "2021年国考终极行测模考大赛(地市级)第24题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2758335, "material": "", "question": "某公司先后招聘了三批新员工,第一批比第二批多1倍,第三批比第二批少$\\frac{2}{3}$,后两批比第一批少20人。现安排三批新员工一起参加岗前培训,需将他们分成若干小组,且要求任意两组的人数都不相同。当所分组数最多时,人数最多的一组最少有多少人?", "type": "单选题", "options": "A. 13\nB. 15\nC. 16\nD. 14", "choice": "D", "keypoints": "最不利构造;构造数列", "most_wrong": "B", "human_count": 156511, "human_acc": 19.9685645098, "source": "2021上半年省考第四季行测模考大赛(广东卷)第31题", "difficulty": 7, "formulas": 1, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 51923, "material": "", "question": "2012年,当每个中国人都在讨论《舌尖上的中国》里各式_____________的美食时,“据说一个中国人死了,拍扁了就是一张元素周期表”的挖苦和自嘲在网络上流行,这源于中国人多年来对食品安全___________的焦虑和不安。在微博上,对食品安全的议论,比过去一年增加了近10倍。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 令人垂涎 根深蒂固\nB. 垂涎三尺 刻骨铭心\nC. 千奇百怪 彻头彻尾\nD. 花样繁多 深恶痛绝", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 500019, "human_acc": 79.0143974529, "source": "2013年陕西省公务员录用考试《行测》题第45题", "difficulty": 3, "formulas": 0, "history": [{"id": 5041487, "material": "", "question": "14世纪是奥斯曼帝国向欧洲扩张的一百年,欧洲各国均被卷入了这场____________的战争,使得东西方之间的交通长期受阻,贸易经常中断。这在一定程度上削弱了西方对中国丝绸、瓷器以及东南亚物产的需求。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遥遥无期\nB. 突如其来\nC. 旷日持久\nD. 经年累月", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 19386, "human_acc": 89.0178479315, "source": "2023年国考第二十五季行测模考大赛(地市级)第21题", "difficulty": 3, "formulas": 0}, {"id": 4653959, "material": "", "question": "1953年,还是高中生的韦其麟就在《新观察》上发表长诗《玫瑰花的故事》,从此步入缪斯的殿堂。他多年来____________,先后出版了各类作品集十余部。这位早慧的诗人,构成了一种可予探讨的诗歌现象。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 废寝忘食\nB. 韦编三绝\nC. 青灯黄卷\nD. 笔耕不辍", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 221265, "human_acc": 87.7716764965, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 4772018, "material": "", "question": "作为上世纪“速度突防”理念指导下诞生的战略远程轰炸机,图-160在新的时代终究还是有些____________。过去引以为傲的突防速度,在新式防空反导系统与超高声速武器面前,也逐渐____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抱残守缺 乏善可陈\nB. 相形见绌 无所适从\nC. 力不从心 黯然失色\nD. 作茧自缚 望尘莫及", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 422631, "human_acc": 86.7423355125, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第3题", "difficulty": 3, "formulas": 0}, {"id": 5276696, "material": "", "question": "一些地方领导干部在错误思想的引导下,____________,不顾成本收益地谋划一些脱离实际的文旅项目,把本该成为“城市地标”的建筑搞成了“四不像”。他们往往外行指导内行,把自己当成城市的“总规划师”,而让真正懂规划的专业人员成为落实他们意志的“画图工具”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 急功近利\nB. 纸上谈兵\nC. 越俎代庖\nD. 乘间取利", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 169240, "human_acc": 47.5, "source": "2022下半年省考第十季行测模考大赛(浙江A卷)第22题", "difficulty": 7, "formulas": 0}, {"id": 4648896, "material": "", "question": "诚然,现实中的形式主义,往往都是“扎扎实实走程序、认认真真走过场”,通常也会摆出很多____________的理由,令人难以甄别、甚至不好“抵抗”。但不管使上什么“障眼法”,只要用结果这把“尺子”去衡量,就能让其____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 光明正大 水落石出\nB. 徒有虚名 无所遁形\nC. 顺理成章 真相大白\nD. 冠冕堂皇 原形毕露", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 72069, "human_acc": 93.7906728274, "source": "2021下半年省考第三十七季行测模考大赛(陕西卷)第30题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2792096, "material": "", "question": "①因为城市并不必然代表先进,农村更不意味着落后\n\n②如果单纯依据经济效率,则自然用地必然比不上农用地,而农用地又必然比不上工业和城市用地\n\n③在健康的城市化进程中,城市不能以剥夺农村为手段来发展自己\n\n④工业区边界的推进和农田的退缩也非天然正当的\n\n⑤在延续传统的基础上实现了现代化的农村,将成为现代城市居民的精神家园\n\n⑥但这不是城市无止境地侵蚀农村的理由。发达国家的经验证明,农村的价值会随着现代化的进程不断增加\n\n对上述语句排序正确的一项是:", "type": "单选题", "options": "A. ③①④②⑥⑤\nB. ③④⑥②①⑤\nC. ④③⑤①②⑥\nD. ④②①⑤③⑥", "choice": "A", "keypoints": "确定捆绑", "most_wrong": "B", "human_count": 28653, "human_acc": 92.5871636478, "source": "2021上半年省考第八季行测模考大赛(河南卷)第34题", "difficulty": 3, "formulas": 0, "history": [{"id": 4668891, "material": "", "question": "①现有的公共服务水平和广大人民群众的要求还有较大差距\n\n②公共产品供给总是持续增长\n\n③但由于多种因素的制约\n\n④公共服务总量形势仍然不容忽视\n\n⑤近年来,我国公共服务体系建设不断加强\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②③⑤④①\nB. ⑤②③④①\nC. ②⑤③①④\nD. ⑤③④②①", "choice": "B", "keypoints": "确定捆绑", "most_wrong": "D", "human_count": 1174592, "human_acc": 71.0965169182, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第42题", "difficulty": 4, "formulas": 0}, {"id": 17067, "material": "", "question": "①以体现一个国家经济形势的危机状况\n\n②并不预示着一个国家马上就会改换门庭\n\n③国家有别于企业的最显著特点是“国家主权神圣不可侵犯”\n\n④“国家破产”更像是一个形容词\n\n⑤而不是一个动词\n\n将以上5个句子重新排序,语序正确的是:", "type": "单选题", "options": "A. ④①⑤③②\nB. ④⑤①②③\nC. ③④①⑤②\nD. ③①②④⑤", "choice": "C", "keypoints": "确定捆绑", "most_wrong": "B", "human_count": 266862, "human_acc": 37.7412295494, "source": "2010年湖北省公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 2377003, "material": "", "question": "①才算是完全成熟的国家\n\n②另一方面,它使某种不够一个国家的东西变成了一个完全的国家\n\n③外交承认的独特性就在于\n\n④一个国家只有得到其他国家的承认\n\n⑤一方面,它显然只是承认某种已经存在的东西\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④①③②⑤\nB. ④③②⑤①\nC. ④①③⑤②\nD. ④③⑤②①", "choice": "C", "keypoints": "确定捆绑", "most_wrong": "D", "human_count": 1405704, "human_acc": 93.3506627284, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第12题", "difficulty": 3, "formulas": 0}, {"id": 2376992, "material": "", "question": "①要坚定文化自信、把握时代脉搏、聆听时代声音\n\n②坚持与时代同步伐、以人民为中心\n\n③新时代呼唤着杰出的文学家、艺术家、理论家\n\n④以精品奉献人民、用明德引领风尚\n\n⑤文艺创作、学术创新拥有无比广阔的空间\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③⑤①②④\nB. ⑤①④②③\nC. ①③⑤④②\nD. ①②③⑤④", "choice": "A", "keypoints": "确定捆绑", "most_wrong": "D", "human_count": 1254728, "human_acc": 64.8554108938, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第14题", "difficulty": 5, "formulas": 0}, {"id": 43335, "material": "", "question": "下面几个句子按顺序排列,语意最连贯的一项是:\n\n①奖牌背面镶嵌玉璧\n\n②即站立的胜利女神和希腊潘纳辛纳科竞技场全景\n\n③奖牌正面使用国际奥委会统一规定的图案\n\n④奖牌的挂钩由中国传统玉双龙蒲纹璜演变而成\n\n⑤玉璧正中的金属图形上镌刻着北京奥运会的会徽", "type": "单选题", "options": "A. ③②①⑤④\nB. ④③②①⑤\nC. ③②④①⑤\nD. ①⑤③②④", "choice": "A", "keypoints": "确定捆绑", "most_wrong": "B", "human_count": 262096, "human_acc": 70.9781911971, "source": "2012年上海市公务员录用考试《行测》题(B类)第10题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 2255889, "material": "", "question": "①从前治安环境不好,总有一伙人在这一带称王称霸,_________,光天化日,为非作歹。\n\n②在这次点钞票的比赛中,她无可争议地_________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独占鳌头 名列前茅\nB. 不可一世 独占鳌头\nC. 独占鳌头 一枝独秀\nD. 一枝独秀 独占鳌头", "choice": "B", "keypoints": "词的辨析-感情色彩;成语填空", "most_wrong": "A", "human_count": 9032, "human_acc": 87.0017714792, "source": "2016年江西省法检系统招录考试《行测》题第11题", "difficulty": 5, "formulas": 0, "history": [{"id": 1541921, "material": "", "question": "免费与管理并不冲突,反而可以______。把管理等同于收费,甚至把收费当成管理的目标,免费了就______地“不收费不担责”,疏于管理,甚至无人过问,这不仅有违公共管理的价值追求,而且难以将免费的实惠落到实处。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 取长补短 顺理成章\nB. 相得益彰 堂而皇之\nC. 求同存异 理直气壮\nD. 合二为一 冠冕堂皇", "choice": "B", "keypoints": "词的辨析-感情色彩;成语填空", "most_wrong": "A", "human_count": 1108360, "human_acc": 66.8042874156, "source": "2015年山东省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 21691, "material": "", "question": "卡夫卡生活在世界形势激烈动荡的时期,他看到西方社会的内在危机,但无法找到解决这些危机的出路。他孤独、苦恼,___________,心情矛盾,他的小说大多描写人的孤独和犯罪心理,或人在重重压迫下不了解自己的命运以致异化的现象,内容___________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自怨自艾 怪诞离奇\nB. 垂头丧气 荒谬绝伦\nC. 怨天尤人 光怪陆离\nD. 愤世嫉俗 荒诞不经", "choice": "A", "keypoints": "词的辨析-感情色彩;成语填空", "most_wrong": "D", "human_count": 716578, "human_acc": 61.0435988825, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第3题", "difficulty": 5, "formulas": 0}, {"id": 748673, "material": "", "question": "报刊、广播、电视等传统媒体不再是信息唯一的大规模传播渠道,普通人也能成为主动的发声者,既可以______,更可以独家进行报道,甚至成为社会舆论的焦点。然而,有的人发出的却是噪声,甚至是不实之词、______ ,直接影响到了社会的和谐。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 各抒己见 恶意中伤\nB. 众声喧哗 造谣生事\nC. 慷慨陈词 捕风捉影\nD. 集思广益 风言风语", "choice": "A", "keypoints": "词的辨析-感情色彩;成语填空", "most_wrong": "D", "human_count": 425902, "human_acc": 50.6168085616, "source": "2014年青海省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 4772988, "material": "", "question": "水军营销是指多人参与的对商业信息展开的网络推广。然而面对“集团式作战”的营销水军,普通人几乎没有任何防御能力。为了躲避“陷阱”和“雷区”,网友们____________地避开所谓“头部大号”,而对“素人账号”____________。因为“素人账号”更容易被资本忽略,他们的声音往往更能代表真实的一面。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 噤若寒蝉 青眼有加\nB. 小心翼翼 情有独钟\nC. 左支右绌 心向往之\nD. 谨小慎微 趋之若鹜", "choice": "B", "keypoints": "词的辨析-感情色彩;成语填空", "most_wrong": "D", "human_count": 54281, "human_acc": 73.9227353954, "source": "2022上半年省考第十季行测模考大赛(西藏卷)第1题", "difficulty": 4, "formulas": 0}, {"id": 5105836, "material": "", "question": "在《新艺术运动之回顾与前瞻》一文中,徐悲鸿说:“此著名之《芥子园画谱》,可谓划时代之‘杰作’。因由此书出版,乃断送了中国绘画。因其便利,当时披靡,八股家之乡愿学画,____________,而压低一切也。”其实,《芥子园画谱》并非一无是处,想学画的人可以将其作为启蒙书,然后再去写生,加强自己对实物的观察、思考和想象以及提炼,两相结合就可以有所成。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 登峰造极\nB. 附庸风雅\nC. 升堂入室\nD. 推崇备至", "choice": "B", "keypoints": "词的辨析-感情色彩;成语填空", "most_wrong": "D", "human_count": 92754, "human_acc": 24.4636349915, "source": "2022下半年省考第二季行测模考大赛(新疆卷)第26题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2578745, "material": "", "question": "作为一种依靠界笔、直尺等工具创作的绘画,界画主要表现的是宫室、楼榭等宏伟建筑,而这类建筑的________之处往往在于土木结构的复杂精巧,所以能画得准确细腻已是极为不易,而要在此基础上________出风神气象,就更需洞悉无遗、铢积寸累。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 新奇 表现\nB. 高妙 传达\nC. 独特 渲染\nD. 非凡 勾勒", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 1527397, "human_acc": 31.775170437, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第17题", "difficulty": 6, "formulas": 0, "history": [{"id": 2557680, "material": "", "question": "津湾广场,是天津金融城的标志性区域,其秀丽的建筑________了近代建筑的多种风格与要素,在整体上以完美的空间序列和优美的天际线而达到高度的统一,具有________的西方近代城市气息。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 象征 浓厚\nB. 兼容 浓郁\nC. 容纳 浓重\nD. 采纳 浓烈", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 35674, "human_acc": 85.8664573639, "source": "2020年上半年省考第三十季行测模考大赛(湖南卷)第19题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4814335, "material": "", "question": "甲、乙两个团队需制作1750个元宵节花灯,已知乙队每天制作25个花灯,甲队中由于有新技工,故第一天仅制作15个花灯,随着技术逐渐娴熟,往后每一天都比前一天多制作d个花灯。若任务完成时甲队比乙队多制作750个花灯,则第几天甲、乙两队日产量之和是第一天的2倍?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "C", "keypoints": "数列问题;工程问题-其他", "most_wrong": "B", "human_count": 151215, "human_acc": 50.670237741, "source": "2022上半年省考第十一季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 5510216, "material": "", "question": "某地举办了“铁人三项”体育活动,先进行蛙跳,后游泳,最后竞走到达终点。一位选手在上午7点出发,9点到达了终点,全程未休息,其蛙跳、游泳和竞走的速度分别为每小时2千米、3千米和6千米。如果蛙跳和竞走的路程相同,则所有项目的总路程是(    )。", "type": "单选题", "options": "A. 无法计算\nB. 6千米\nC. 8千米\nD. 12千米", "choice": "B", "keypoints": "普通行程;平均速度", "most_wrong": "C", "human_count": 211028, "human_acc": 45.324791023, "source": "2023年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 2694984, "material": "", "question": "小明开车从A地去B地出差,按照原计划速度行驶3小时可到达B地。在行驶了30千米之后提速$25\\%$,为了能够尽快到达目的地,在走完剩余路程的一半时又提速$20\\%$,最终到达B地所用的时间比原计划时间少了40分钟。求AB两地的距离是多少千米?", "type": "单选题", "options": "A. 120\nB. 150\nC. 180\nD. 240", "choice": "C", "keypoints": "普通行程;平均速度", "most_wrong": "B", "human_count": 223304, "human_acc": 51.4661627199, "source": "2021年国考第二十三季行测模考大赛(副省级)第67题", "difficulty": 6, "formulas": 2}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 1379027, "material": "", "question": "科学就是不断接近真理的过程,我们深信不疑的事情中很大部分是会过期的,所以理解这一点的人都明白在发展过程中不断更新知识才是科学进步的正道。然而这个过程有时会令人困惑和不安。\n\n如果以下各项为真,最能质疑上述论断的是:", "type": "单选题", "options": "A. 婴儿该仰睡还是趴着睡,孕妇抽烟喝酒是否安全,答案一代和一代不同\nB. 医学院的老师会告诉学生,五年内他们所学的知识里有一半都不会适用\nC. 我一直以为“雷龙”这个名字正确无误,但后来才发现根本没有雷龙\nD. 吸烟有害健康被大量科学研究和事实所证实,这一结论至今难以改变", "choice": "D", "keypoints": "削弱论据", "most_wrong": "B", "human_count": 964785, "human_acc": 87.7715760506, "source": "2015年425联考《行测》题(贵州卷)第95题", "difficulty": 4, "formulas": 0, "history": [{"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 4004840, "material": "", "question": "某公司发生失窃案,公安机关经过调查锁定了犯罪嫌疑人是该公司会计张某。办案民警小王说:“一定不是他”,办案民警小李发表了反对观点:“当其他可能性被排除了,剩下的不管看起来多么不可能,但一定是事情的真相。”\n\n以下哪项如果为真,最能削弱小李的说法?", "type": "单选题", "options": "A. 追究违法行为最重要的是用证据说话\nB. 办案民警无法极尽所有可能性\nC. 办案民警小王比小李更了解案件经过\nD. 公司职员评价张某平时为人老实诚恳", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 178912, "human_acc": 76.9590636738, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第91题", "difficulty": 5, "formulas": 0}, {"id": 4658543, "material": "", "question": "德国的一项研究显示,长期居住在天寒地冻、杳无人烟的南极洲,人的大脑平均会缩小7%,学习、记忆以及与人交往能力随之减弱。因此,生活在炎热地区的人比生活在寒冷地区的人更聪明。\n\n以下哪项如果为真,最能削弱上述论证?", "type": "单选题", "options": "A. 该项研究成果尚未公开发表\nB. 气候会对人的智力产生巨大的影响\nC. 寒冷令人们为保存更多能量,倾向于减少学习及社交活动\nD. 该研究结果是可逆的,离开南极洲一段时间后人的大脑基本恢复正常水平", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 1126762, "human_acc": 52.4565968678, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第78题", "difficulty": 5, "formulas": 0}, {"id": 1679314, "material": "", "question": "一项民意调查结果显示,在1000多名参与投票的网友中,六成网友支持延长女性产假至三年,以便更好地照顾宝宝;四成网友表示反对,认为产假太长,会增加企业负担,进而增加女性就业难度,不可行。\n\n以下哪项如果为真,最能质疑上述反对者的观点?", "type": "单选题", "options": "A. 企业除了追求利润之外,也应当承担社会责任\nB. 女性产假延长的成本,由财政或社保基金来承担\nC. 这份调查样本量不够大,不足以代表真正的民意\nD. 法律应强制规定企业必须招聘一定比例的女性", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 485630, "human_acc": 84.9737454441, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第79题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 2443915, "material": "", "question": "只是欣赏花容玉颜、海誓山盟,是欣赏者的肤浅。只是欣赏______、拍马溜须,是欣赏者的低劣。平庸者的欣赏只在有字处读书有声中听乐。深刻者的欣赏在于欣赏纹络里______的思想无声处滚动的惊雷。要善于欣赏他人——善于欣赏对手,他才可以襟怀磊落,______。\n\n填入划线部分最恰当的一项是:", "type": "单选题", "options": "A. 百依百顺 携带 知己知彼\nB. 俯首贴耳 镌刻 避短扬长\nC. 唯命是从 留存 心中有数\nD. 人云亦云 雕刻 明察秋毫", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 404878, "human_acc": 56.5483923552, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第1题", "difficulty": 5, "formulas": 0, "history": [{"id": 2443916, "material": "", "question": "其实生活中本没有那么多烦恼,一切只不过是______。只要我们稍微停下脚步,就可以更好地珍惜生命本原的美丽,那时候,你将发现,在人生的幽僻处、______处,都闪耀着光芒。\n\n填入划线部分最恰当的一项是:", "type": "单选题", "options": "A. 自找麻烦 僻静\nB. 自怨自艾 细微\nC. 庸人自扰 细小\nD. 杞人忧天 琐碎", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 178156, "human_acc": 39.7960214643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第2题", "difficulty": 5, "formulas": 0}, {"id": 3636475, "material": "", "question": "放眼全球,中国企业数字化智能化转型不仅带来更加________的生活体验,而且在经济发展中释放出巨大的效率红利。疫情催发的新科技不会_____________,而将持续内嵌于我们的生活,加速数字化转型。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 便利 昙花一现\nB. 贴心 弄虚作假\nC. 公平 徒有其表\nD. 真实 形同虚设", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 96075, "human_acc": 96.9784022899, "source": "2021下半年省考第七季行测模考大赛(陕西卷)第29题", "difficulty": 3, "formulas": 0}, {"id": 2443921, "material": "", "question": "日复一日,年复一年,杨树默默地孤守着一块养育自己的故土,高昂着不屈的头颅,坚挺着伟岸的身躯,______着沙漠瀚海,狂风恶浪。神情是那么的庄重威严,姿态是那么的动人浪漫,生命是那么的强大旺盛。真令人望而生敬,______。\n\n填入划线部分最恰当的一项是:", "type": "单选题", "options": "A. 雄视 叹为观止\nB. 傲视 拍案叫绝\nC. 凝视 望而生畏\nD. 注视 高山仰止", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 580249, "human_acc": 52.4052605002, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第7题", "difficulty": 5, "formulas": 0}, {"id": 2742230, "material": "", "question": "生命意识、风骨气韵、家国情怀,这三者____________,成为中国古典诗词积淀于文化中的审美基因。它们深隐于华夏灵魂深处,昂而不傲,光而不妖。它们________、融达。成就了中华文化昂扬的自信:“不要人夸颜色好,只留清气满乾坤”。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 相辅相成 收敛\nB. 交相辉映 含蓄\nC. 合而为一 内敛\nD. 浑然一体 谦和", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 949150, "human_acc": 29.6356740241, "source": "2021年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 5, "formulas": 0}, {"id": 2536356, "material": "", "question": "每年春天,漫天飘舞的柳絮成为许多地方的一个景观。在柳树扎堆的地方,纷扬的柳絮似鹅毛大雪,遮天蔽日。当然,柳絮并不像雪花那样让人____________,而是让人莫名烦躁。无孔不入的柳絮,对于过敏体质的人来说就更是________,或涕泪横流或喷嚏不断。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 心花怒放 痛苦\nB. 赏心悦目 郁闷\nC. 心旷神怡 难受\nD. 寒气刺骨 煎熬", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 272181, "human_acc": 71.5134414232, "source": "2021年国考第四季行测模考大赛(副省级)第25题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 48929, "material": "", "question": "市场经济最神奇也最让人______之处,就是市场中不同的主体通过自发的博弈与______而各得其所。对所谓完美、超然、成熟改革方案的渴望与膜拜,其实仍然是典型的计划思维,指望用一套方案打遍天下更是南辕北辙、______。\n\n依次填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 奇特 取舍 刻舟求剑\nB. 惊喜 碰撞 离题万里\nC. 赞叹 磨合 缘木求鱼\nD. 佩服 交汇 天壤之别", "choice": "C", "keypoints": "关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 574977, "human_acc": 67.1618169075, "source": "2013年江苏省公务员录用考试《行测》题(B类)第74题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255946, "material": "", "question": "作家用笑的形式告别过去,在人性失态中发现人性的________,面对那个________、黑白颠倒的岁月,小说选择了与之相配的话语游戏化风格,淋漓痛快,少有节制。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 常识 指鹿为马\nB. 常态 风牛马不相及\nC. 常态 指鹿为马\nD. 常识 汗牛充栋", "choice": "C", "keypoints": "关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 4838, "human_acc": 94.6258784622, "source": "2014年江西省法检系统招录考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 2261974, "material": "", "question": "浩瀚而宝贵的历史知识,既是人类总结昨天的(    ),也是人类把握今天,创造明天的向导。", "type": "单选题", "options": "A. 记录\nB. 经历\nC. 方式\nD. 回忆", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 108761, "human_acc": 54.5416095843, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第25题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5344161, "material": "", "question": "当俄罗斯这一石油大国卷入一场冲突时,极容易引发石油市场________。油气行业的代表呼吁扩大钻探规模,并表示这将解决当前因石油供不应求而导致的价格________问题。其实,即使发放更多的石油钻探许可证,并且让每家石油公司都参与其中,这也不会给消费者带来________的缓解。平均而言,从联邦土地钻探租约签发到生产可销售的油气,需要10年以上的时间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不安 波动 及时\nB. 恐慌 高涨 有效\nC. 低迷 虚高 适时\nD. 动荡 高企 即时", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 272856, "human_acc": 44.8929105462, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第5题", "difficulty": 7, "formulas": 0, "history": [{"id": 2388268, "material": "", "question": "每种植物都有自己________的气味。植物和动物也可以利用这些气味进行复杂的________。比如花的香气可以吸引授粉者,果实的香气也可以吸引采摘者,这些都有利于种群的________。", "type": "单选题", "options": "A. 独特 交际 壮大\nB. 特有 对话 延续\nC. 独到 沟通 发展\nD. 特殊 交流 繁衍", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 1319151, "human_acc": 64.0271659575, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 1003207, "material": "", "question": "缺乏必要的试错机制,很多政府部门和领导干部对改革创新都心存_______情绪,“不求有功,但求无过”,导致改革创新动力普遍不足。以此来看,_______“改革失败”的责任,创造一个宽容的创新环境,才能让更多的政府部门和官员“甩开膀子”谋改革、搞创新。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 畏难 豁免\nB. 紧张 宽恕\nC. 侥幸 淡化\nD. 抵触 忽略", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 2587539, "human_acc": 66.6657777912, "source": "2015年国家公务员录用考试《行测》题(省部级)第25题", "difficulty": 5, "formulas": 0}, {"id": 3973281, "material": "", "question": "我们这一生都很难逃社会的评价、外人的评价以及自我评价的体系,当年轻的我们还没有建立起正确的自我评价体系时,往往会被外在的评价体系所________;而当我们建立起正确的自我评价体系时,就不会为世俗潮流所________,就能过上胜券在握的“自洽”人生。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 影响 埋没\nB. 僵化 误导\nC. 左右 裹挟\nD. 弱化 蒙蔽", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 165671, "human_acc": 89.2220123015, "source": "2021下半年省考第十八季行测模考大赛(广东县级卷)第2题", "difficulty": 3, "formulas": 0}, {"id": 161425, "material": "", "question": "在早已对漂亮假花、假树司空见惯的现代人眼里,干枯苍白的植物标本或许难有多少魅力可言。但在标本馆中,每一份看似不起眼的植物标本都代表着它在地球上的_______。它们虽然远离了阳光雨露,告别了生长的土地,却在科学殿堂中________了自己的生命。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 物种 证明\nB. 经历 重现\nC. 存在 超越\nD. 同类 延续", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 1577418, "human_acc": 50.5816467163, "source": "2014年国家公务员录用考试《行测》题第31题", "difficulty": 5, "formulas": 0}, {"id": 3519088, "material": "", "question": "有消费就会有纠纷,就会有消费者的维权,从这点上说,直播带货引发的矛盾和维权不________。然而在现实中,消费者对于“主播是否就是经营者”的问题认知较为________,这导致人们有意维权,却找不到合适的对象,因而平台要明确带货责任,畅通消费者维权通道。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 新鲜 模糊\nB. 罕见 陈旧\nC. 意外 肤浅\nD. 容易 狭隘", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 56353, "human_acc": 85.4559650773, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第32题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5432005, "material": "", "question": "根据某外卖平台统计,A、B、C三名外卖骑手当月送餐总共行驶了7700公里,平均时速分别为15、18、20公里/小时,其中A骑手的行驶路程是C骑手的1.5倍,B骑手的行驶时间与A、C两名骑手行驶的平均时间相等,问B骑手当月送餐总计行驶了多少小时?", "type": "单选题", "options": "A. 100\nB. 150\nC. 180\nD. 200", "choice": "B", "keypoints": "普通行程;和差倍比问题", "most_wrong": "C", "human_count": 327997, "human_acc": 57.4480864154, "source": "2023上半年省考第一季行测模考大赛(深圳卷)第51题", "difficulty": 6, "formulas": 0, "history": [{"id": 2660835, "material": "", "question": "在一次马拉松比赛中,男子组和女子组从同一起点开始沿相同路线行进。已知男子组和女子组在前半程所用时间之比为5:6,跑后半程所用时间之比为4:5;男子组跑前、后半程所用时间之比为3:4。假定男子组和女子组前、后半程都是匀速跑,则女子组跑前、后半程所用时间之比为:", "type": "单选题", "options": "A. 25:32\nB. 2:3\nC. 7:8\nD. 18:25", "choice": "D", "keypoints": "普通行程;和差倍比问题", "most_wrong": "C", "human_count": 2864, "human_acc": 51.8854748603, "source": "2018年山东省选调应届优秀高校毕业生到基层工作笔试行政职业能力测验第49题", "difficulty": 3, "formulas": 0}, {"id": 2573702, "material": "", "question": "甲开车从A地到B地旅行,因汽车发生故障,从第2天开始只好徒步旅行。已知第2天走了剩余路程的$\\frac{1}{5}$,之后每天所走的路程都比前一天少$\\frac{1}{2}$,出发5天后剩余路程占总路程的$\\frac{1}{4}$。问甲第1天开车行驶的路程占总路程的:", "type": "单选题", "options": "A. $\\frac{3}{5}$\nB. $\\frac{3}{8}$\nC. $\\frac{1}{2}$\nD. $\\frac{2}{5}$", "choice": "A", "keypoints": "普通行程;和差倍比问题", "most_wrong": "B", "human_count": 294507, "human_acc": 15.7473336797, "source": "2021年国考第八季行测模考大赛(副省级)第69题", "difficulty": 7, "formulas": 422}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 4918449, "material": "", "question": "①在中国,法文化植根于社会,具有历代传承的因袭性\n\n②唐律“于礼以为出入”的总体规定,标志着儒家化的基本完成。不仅如此,唐律还为邻国日本、高丽各国制定法律所取法,使这些国家纳入中华法系中\n\n③汉律的主要创新之处在于儒家化。这是建立大一统的专制主义的西汉王朝所需要的\n\n④中国法律文化首尾相衔、辗转相承、代有兴革,表现了鲜明的时代烙印,显示了清晰的螺旋上升的轨迹\n\n⑤但基于不同时期社会生产方式与社会关系的变化,中华法律文化也形成了特有的时代性\n\n⑥晋朝是士族掌权,政治腐败,却出现了张斐、杜预、刘颂等一批杰出的法学家。他们主持修订的晋律,也是具有代表性的创新之作\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑤③⑥②④\nB. ④⑤③⑥②①\nC. ①③⑥②④⑤\nD. ④①⑤③②⑥", "choice": "A", "keypoints": "确定顺序;确定捆绑", "most_wrong": "D", "human_count": 22645, "human_acc": 78.9843232502, "source": "2023年国考第十八季行测模考大赛(行政执法类)第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 21755, "material": "", "question": "①连残荷也消逝得无影无踪\n\n②池塘里的荷叶虽然仍然是绿油油一片\n\n③好像是一下子从夏天转入秋天\n\n④但是看来变成残荷之日也不会太远了\n\n⑤再过一两个月,池水一结冰\n\n⑥连日来,天气突然变寒\n\n对上述语句排序正确的一项是:", "type": "单选题", "options": "A. ⑤①②⑥③④\nB. ⑥③②④⑤①\nC. ②⑥③④⑤①\nD. ⑥⑤①③②④", "choice": "B", "keypoints": "确定顺序;确定捆绑", "most_wrong": "D", "human_count": 363491, "human_acc": 92.175872305, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第16题", "difficulty": 3, "formulas": 0}, {"id": 2659909, "material": "", "question": "①在相对论出现之前,人们解释说太阳内部的物质燃烧而释放出能量\n\n②相对论诞生后,则解释为原子核的聚变产生出的巨大的能量\n\n③太阳在亿万年的历史长河中忠于职守地为地球提供着热量,它的能源是什么\n\n④这两种解释使人类面临的抉择将是痛苦的\n\n⑤这是一个催人探索的问题\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①②③④⑤\nB. ①②④③⑤\nC. ③④①②⑤\nD. ③⑤①②④", "choice": "D", "keypoints": "确定顺序;确定捆绑", "most_wrong": "B", "human_count": 3692, "human_acc": 93.6348862405, "source": "2018年山东省选调应届优秀高校毕业生到基层工作笔试行政职业能力测验第26题", "difficulty": 3, "formulas": 0}, {"id": 2616123, "material": "", "question": "①虽然农村留守儿童的生活状态令人担忧,所需的关爱力度更大\n\n②长此以往,势必会加重城市留守儿童问题\n\n③当前,留守儿童关爱措施主要是针对农村留守儿童\n\n④但长期以来,城市留守儿童问题始终被边缘化\n\n⑤从而给社会造成新的难题\n\n⑥既无过多关注,也无相应关爱措施\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①④⑥②⑤\nB. ③①②⑥④⑤\nC. ①③④②⑤⑥\nD. ①④③②⑥⑤", "choice": "A", "keypoints": "确定顺序;确定捆绑", "most_wrong": "D", "human_count": 1576956, "human_acc": 89.4441569708, "source": "2020年海南公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 3, "formulas": 0}, {"id": 2376987, "material": "", "question": "①在对外斗争中,我们要拿起法律武器\n\n②全球治理体系正处于调整变革的关键时期\n\n③占领法治制高点,敢于向破坏者、搅局者说不\n\n④我们要积极参与国际规则制定\n\n⑤中国走向世界,以负责任大国参与国际事务,必须善于运用法治\n\n⑥做全球治理变革进程的参与者、推动者、引领者\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤②④⑥\nB. ⑤①③②④⑥\nC. ②①⑤③④⑥\nD. ⑤③②④①⑥", "choice": "B", "keypoints": "确定顺序;确定捆绑", "most_wrong": "C", "human_count": 1256330, "human_acc": 63.2907755128, "source": "2019年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(网友回忆版)第13题", "difficulty": 5, "formulas": 0}, {"id": 2776133, "material": "", "question": "①最富有创造性的著作往往是少而精的\n\n②无论是学术著作还是小说,动辄数十万言,有的甚至百万字以上\n\n③例如,王国维的《人间词话》,只不过四万字\n\n④读书贵于精,包括精选、精读和精思\n\n⑤可是,现在图书的体量越来越大,字数也越来越多\n\n⑥这是每一个名家读书的共同心得\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑤②④⑥③\nB. ④⑥⑤②①③\nC. ①③⑤④②⑥\nD. ④③⑤②①⑥", "choice": "B", "keypoints": "确定顺序;确定捆绑", "most_wrong": "D", "human_count": 1871469, "human_acc": 68.2249078131, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第39题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "确定顺序"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 2144546, "material": "", "question": "任何时候,内容推送不能少了“总编辑”,再好的传播渠道也要有“看门人”,即使在技术为王的时代,也不能完全让算法________内容。这一方面需要更完善的法律法规、更理性健康的舆论空间,为互联网算法时代的信息传播________________,但更少不了作为内容提供者的智能平台,肩负起应该承担的社会责任,扬长避短,让技术和算法真正造福这个时代。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 干预 添砖加瓦\nB. 决定 保驾护航\nC. 影响 遮风挡雨\nD. 代替 披荆斩棘", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 1180501, "human_acc": 92.4848009447, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 4490243, "material": "", "question": "有的园林处处有匾额、步步有书法,每以金粉髹饰、盘龙环绕,与情景交融的造境功能________,徒为炫富装饰。还有的园林,这处景点的文字介绍放在他处,____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 趋同 敷衍了事\nB. 相悖 张冠李戴\nC. 疏远 附庸风雅\nD. 矛盾 指鹿为马", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 229177, "human_acc": 96.1147933693, "source": "2021下半年省考第二十七季行测模考大赛(深圳卷)第59题", "difficulty": 3, "formulas": 0}, {"id": 2187566, "material": "", "question": "我们的整个文明都建立在自然生态之上,它们跟不上我们的步伐,终将令我们也随之____。将责任推给“适者生存”,任凭野生动物在我们制造的阴影中_______,这不但是一件残忍的事情,更是一件愚蠢的事情。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消亡 自谋生路\nB. 崩塌 自生自灭\nC. 瓦解 自取灭亡\nD. 崩溃 自求多福", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 1646606, "human_acc": 57.5439419023, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第21题", "difficulty": 5, "formulas": 0}, {"id": 4651730, "material": "", "question": "面对国际金融危机冲击,我们之所以能____________,率先重返平稳较快发展轨道,靠的就是扩大内需,以内需的确定性和稳定性________外需的不确定性和不稳定性。相应地,我国经济的对外依存度有了明显下降。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 处变不惊 缓解\nB. 化险为夷 对冲\nC. 有惊无险 消弭\nD. 处之泰然 中和", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 1097244, "human_acc": 60.2298121475, "source": "2022年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第32题", "difficulty": 4, "formulas": 0}, {"id": 3541945, "material": "", "question": "开放夜场能够让更多人走进博物馆,了解历史,增长知识,对于提升公众文化艺术修养____________。对于博物馆来说,通过优质的服务发挥自身在城市晚间的影响力,才能________城市的晚间休闲和消费体系之中。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 受益匪浅 进入\nB. 大有裨益 融入\nC. 举足轻重 加入\nD. 不可或缺 渗入", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 74408, "human_acc": 97.0715514461, "source": "2021下半年省考第三季行测模考大赛(陕西卷)第30题", "difficulty": 3, "formulas": 0}, {"id": 4772002, "material": "", "question": "事实上,相对于图像与声响,气味是一种更为________的感官体验。再者,与味道相比,它保持着一定的距离,后者在口中,因而是侵入性的。在视觉、听觉与味觉之间,嗅觉提供了一种____________的感官体验。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 抽象 云泥之别\nB. 缥缈 无与伦比\nC. 亲密 若即若离\nD. 空虚 恰到好处", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 433348, "human_acc": 30.2359766285, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第24题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5445723, "material": "", "question": "单位将10个培训名额分配给4个分公司,要求在每个分公司至少分配1个名额的所有分配方案中,随机选择1个方案实施,问4个分公司中有3个分配名额数量相同的概率为多少?", "type": "单选题", "options": "A. $\\frac{3}{50}$\nB. $\\frac{1}{10}$\nC. $\\frac{3}{25}$\nD. $\\frac{1}{7}$", "choice": "D", "keypoints": "公倍数与公约数问题;给情况求概率", "most_wrong": "C", "human_count": 651668, "human_acc": 18.7911635986, "source": "2023年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第66题", "difficulty": 5, "formulas": 398, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 4801487, "material": "", "question": "一个数有6个约数,其最小的3个约数之和为11,满足条件的所有数之和是多少?", "type": "单选题", "options": "A. 210\nB. 343\nC. 798\nD. 840", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 1577, "human_acc": 9.8287888396, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "概率问题", "给情况求概率"]]}, {"id": 5548408, "material": "", "question": "美育有助于陶冶情操、提升审美趣味,________心灵之余,也有助于激发个人的创新创造活力。未来的美术教育应致力于构建社会美育公共服务体系,以更好________和塑造民族灵魂,蕴含全新的国家文化竞争力。同时,高等教育要提升美术学、设计学、艺术学理论等学科发展,优化专业布局,________ “后浪”梯队人才。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浸润 激发 培养\nB. 熏染 涵养 勉励\nC. 温润 滋养 培育\nD. 荡涤 磨练 打造", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 7688, "human_acc": 59.3262226847, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第39题", "difficulty": 6, "formulas": 0, "history": [{"id": 4669295, "material": "", "question": "何为“带怒党”?简言之,就是我们常说的“带节奏者”。他们致力于________冲突事件,推动舆论快速走向极端化。如果说网络舆情贵在个体发声,“带怒党”则是激发戾气、________民意的操盘手。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 放大 引领\nB. 漫延 操纵\nC. 滋生 影响\nD. 扩散 裹挟", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 199709, "human_acc": 60.5821470239, "source": "2022上半年省考第一季行测模考大赛(四川卷)第23题", "difficulty": 5, "formulas": 0}, {"id": 2878648, "material": "", "question": "古老的语音常常保存在更偏僻闭塞的村落,封闭有利于语音保持________。然而,实际上,我们的方言是在几千年的历史中,于一次次人口大迁徙中层层________而形成的,它的层次中蕴含着人口流动的信息和________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鲜活 沉淀 踪迹\nB. 新奇 积累 印记\nC. 稳定 垒叠 痕迹\nD. 纯正 堆砌 印证", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 301058, "human_acc": 58.6328880149, "source": "2022年国考第四季行测模考大赛(副省级)第34题", "difficulty": 6, "formulas": 0}, {"id": 4255750, "material": "", "question": "“发思古之幽情”是人类一种共同的心理结构,人们总爱从文物中感受历史的________。加之社会整体文化层次的提升,大众已经具备了相当的历史审美,考古也不再被视为一个________的小众话题。相反,它以一种更加亲民的形态嵌入了人们生活的日常。整个社会的文化品位,事实上都能借由考古话题的________而得到提升。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 源头 枯燥 浸润\nB. 脉络 神秘 反哺\nC. 过往 高深 熏染\nD. 踪迹 离奇 滋养", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 135348, "human_acc": 34.4186836895, "source": "2021下半年省考第二十二季行测模考大赛(陕西卷)第38题", "difficulty": 7, "formulas": 0}, {"id": 5548375, "material": "", "question": "风险与挑战多为不速之客,没有未雨绸缪的________,就会在骤至的风险面前手足无措、顾此失彼。实现“两个一百年”奋斗目标、实现中华民族伟大复兴的中国梦,还有许多“娄山关”“腊子口”需要________。我们必须加强分析研判,科学预见“大变局”发展走势和隐藏其中的风险挑战,时刻做好________重大风险、克服重大阻力、解决重大矛盾的准备。要把困难和挑战估计得充分一些,把应对预案做得________一些,千方百计“托底”“守底”“保底”,确保在风险可控范围内实现发展目标。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 布局 翻越 应对 完备\nB. 预判 跨越 防范 清晰\nC. 谋划 征服 抵御 周密\nD. 臆测 攀登 化解 详细", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 3087, "human_acc": 30.5150631681, "source": "2023下半年省考第一季行测模考大赛(河南卷)第15题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2660706, "material": "", "question": "雷锋用一件件平凡的小事成就了不平凡的人生,用____________的坚守筑起了中华民族的道德坐标,温暖着我们的社会。我们要以实际行动弘扬雷锋精神,让学习雷锋精神在祖国大地____________,为实现中华民族伟大复兴的中国梦发光发热。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 细水长流 无孔不入\nB. 坚忍不拔 落地生根\nC. 矢志不渝 蔚然成风\nD. 持之以恒 发扬光大", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 184714, "human_acc": 46.0154617409, "source": "2021年国考第十九季行测模考大赛(副省级)第29题", "difficulty": 7, "formulas": 0, "history": [{"id": 2453271, "material": "", "question": "伴随新型智能终端的加速普及,以5G为代表的移动通信技术有力地推动着人工智能、物联网、大数据、云计算等技术蓬勃发展,连接服务的内涵正在从人与人通信延伸到人与物、物与物的智能连接,万物互联的5G时代______。\n\n填入画横线部分最恰当的一项是", "type": "单选题", "options": "A. 初露头角\nB. 迫在眉睫\nC. 粉墨登场\nD. 指日可待", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 1356278, "human_acc": 66.3591092682, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第37题", "difficulty": 4, "formulas": 0}, {"id": 8749, "material": "", "question": "从下列四个选项中选择最合适的词语填入横线中:\n\n网络并不是文学经典遭遇尴尬的_________,但网络_________的癖性,确实将文学经典本来就脆弱的存在又推入到了一个更加感伤的历史时空。", "type": "单选题", "options": "A. 元凶巨恶 首当其冲\nB. 罪魁祸首 无懈可击\nC. 元凶巨恶 钻头觅缝\nD. 罪魁祸首 无孔不入", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "C", "human_count": 65616, "human_acc": 82.7496342356, "source": "2009年河南省公务员录用考试《行测》题第8题", "difficulty": 5, "formulas": 0}, {"id": 3556971, "material": "", "question": "短视频这块阵地,主流声音不去占领,低俗内容自然就会____________。各级党委政府、传统媒体、权威媒体要转变作风,制作发布更接地气、群众更____________的精神食粮,用正能量的宣传来倒逼劣质、低俗内容“退场”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蔚然成风 脍炙人口\nB. 异军突起 津津乐道\nC. 沉渣泛起 耳目一新\nD. 大行其道 喜闻乐见", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "C", "human_count": 75108, "human_acc": 85.1999786973, "source": "2021下半年省考第四季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 5407753, "material": "", "question": "要深刻认识做好脱贫人口稳岗就业工作的重大意义,以高度的自觉性和 “____________”的使命感、“____________”的紧迫感,担当作为、迎难而上,咬定既定目标任务不放松,全力破解难题,强力推进落实,促进脱贫人口实现更高质量、更加稳定就业。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 义不容辞 如履薄冰\nB. 责无旁贷 时不我待\nC. 任重道远 首当其冲\nD. 势在必行 只争朝夕", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 267100, "human_acc": 87.3279670535, "source": "2023年国考第四十八季行测模考大赛(副省级)第24题", "difficulty": 3, "formulas": 0}, {"id": 4793899, "material": "", "question": "“数字化”是一个____________的词汇,与“信息化”伴生。工业革命4.0时代之前,“数字化”已经展现出巨大的对产业的颠覆性革新能力,造就了数字经济的巨大体量。如今,技术协同进步,“数字化”对传统工业生产的资源转化、流程模式与结果产出产生了____________的影响。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 约定俗成 不堪设想\nB. 与时俱进 源源不断\nC. 应运而生 旷日持久\nD. 由来已久 不可估量", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "C", "human_count": 50032, "human_acc": 66.4434761752, "source": "2022上半年省考第十一季行测模考大赛(西藏卷)第2题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2439989, "material": "", "question": "巡视巡察坚持发现问题、形成震慑,成为了管党治党的重要利器。一些有问题的干部心中不安,可又不想____________,于是便____________干扰巡视巡察。\n\n依次填入划横线部分最恰当的词语是:", "type": "单选题", "options": "A. 束手就擒 铤而走险\nB. 坐以待毙 奋不顾身\nC. 粉身碎骨 孤注一掷\nD. 听天由命 负隅顽抗", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 463414, "human_acc": 84.2259836777, "source": "2019年青海省法院、检察院录用考试《行测》题第48题", "difficulty": 5, "formulas": 0, "history": [{"id": 5716967, "material": "", "question": "文旅部发布的数据显示,“十一”期间,房车露营、周边自驾成为旅游市场的新热点。露营作为新兴的出游方式,在旅游业可谓____________。露营市场走热的背后,是在后疫情时代,悄然诞生的更加细化的消费新需求。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如日中天\nB. 异军突起\nC. 大行其道\nD. 独占鳌头", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 2361, "human_acc": 59.7628123676, "source": "2023下半年省考第十八季行测模考大赛(青海卷)第22题", "difficulty": 6, "formulas": 0}, {"id": 4645394, "material": "", "question": "2020年1月17日,国家统计局发布的数据显示,我国整体城镇化率为60.60%,首次突破了60%拐点。从欧美国家的城市化发展进程来看,在这一拐点之后,____________的城市化将逐渐放缓,将从大规模扩张的增量时代,过渡到以城市更新为主的存量时代。运转几十年的土地财政逻辑已经不可持续,走向人文是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 方兴未艾 当务之急\nB. 如火如荼 万全之策\nC. 愈演愈烈 人心所向\nD. 高歌猛进 大势所趋", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 26623, "human_acc": 93.3929309244, "source": "2021下半年省考第三十七季行测模考大赛(浙江卷)第23题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4704615, "material": "", "question": "任何一项伟大的事业,都不会一帆风顺。在历史进程中,突破与阻力、________与守旧,永远是对相生相克的孪生姐妹。古代被称为贤君的,用今天的话讲,都是能________社会矛盾的成功者。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 创新 调和\nB. 前进 缓和\nC. 开放 化解\nD. 革新 解决", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 13173, "human_acc": 46.9976467016, "source": "2019年福建省选调生考试《行政职业能力测验》第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 52135, "material": "", "question": "在传统的社会中,____________没有当下所谓“诚信档案”,____________一个人的诚信档案存在于全体社区成员的心里与口碑中,____________可以代际相传,诚信缺失的风险成本很高。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 虽然 但是 而且\nB. 不但 而且 所以\nC. 因为 所以 并且\nD. 即使 但是 甚至", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配", "most_wrong": "D", "human_count": 501142, "human_acc": 61.9864230098, "source": "2012年广州市公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 638495, "material": "", "question": "依次填入下列横线处的词语,最恰当的一组是:\n\n命与运_______如骨肉之不可剥离,然而倘作理性研究,________医学上的生理解剖,________需先就骨论骨,就肉论肉。", "type": "单选题", "options": "A. 必然 如 也\nB. 必然 同 则\nC. 固然 同 也\nD. 固然 如 则", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配", "most_wrong": "C", "human_count": 556120, "human_acc": 61.8959936704, "source": "2014年广州市公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 638491, "material": "", "question": "依次填入下列横线处的词语,最恰当的一组是:\n\n________《现代世界的诞生》《政治秩序的起源》等书并未冠以“现代化”的字眼,________都是紧紧围绕现代化的某些侧面展开的,________它们也都出于各自的理论视角重点探讨了中国现代化问题。", "type": "单选题", "options": "A. 因为 所以 并且\nB. 尽管 但是 而且\nC. 既然 并非 虽然\nD. 如果 除非 那么", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配", "most_wrong": "A", "human_count": 510828, "human_acc": 93.3690009162, "source": "2014年广州市公务员录用考试《行测》题第8题", "difficulty": 5, "formulas": 0}, {"id": 5745403, "material": "", "question": "《有声的中国》的出版可以说是“人文史丛书”迎来的又一部重磅作品。作者希望借钩稽演说的前世今生,描摹现场氛围,追踪来龙去脉,还原特定的历史语境,唯有此________有可能找回那些早已消失在历史深处的“演说”。关注文学史、艺术史、学术史、思想史、教育史、媒介史等,________不是简单拼合,________在各种结合部用力,透过相互间的区隔、纠缠与对话,挖掘其中蕴涵的时代精神与文化变迁。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 就 可是 就是\nB. 才 但 而是\nC. 也 所以 还是\nD. 更 因此 也是", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配", "most_wrong": "C", "human_count": 9760, "human_acc": 98.1659836066, "source": "2023下半年省考第二十一季行测模考大赛(广东县级卷)第20题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"]]}, {"id": 3707497, "material": "", "question": "“日出而作,日落而息”的田园生活,在现实中或许并不容易实现,而慢直播、慢综艺,恰恰为我们搭建了一个“拟态环境”。作为一种调味品,慢直播、慢综艺,自有其味道,但若沉浸其中,与现实生活脱节,看不到真实生活里的美好,无异于____________。倘若把“云自在”作为一种________,那么我们最终收获的,不是精神的富足充盈,而是退缩萎靡。相反,如果把云上的生活作为一贴清凉散,观照内心,撇去浮躁,继续向更美好的生活进发,精神上才有可能饱满自在。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因噎废食 陪衬\nB. 买椟还珠 逃避\nC. 掩耳盗铃 追求\nD. 舍本逐末 补偿", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 82311, "human_acc": 37.4822320225, "source": "2021下半年省考第十季行测模考大赛(陕西卷)第31题", "difficulty": 7, "formulas": 0, "history": [{"id": 4563190, "material": "", "question": "纠正“指尖上的形式主义”,要注意不应过于________,不能全部“一刀切”解散,或不顾实际情况“一关了之”。破除“指尖上的形式主义”,难在持续深入,贵在____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 死板 不屈不挠\nB. 极端 一往而深\nC. 机械 久久为功\nD. 空泛 常抓不懈", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 342160, "human_acc": 50.4030278232, "source": "2021下半年省考第三十二季行测模考大赛(北京乡镇卷)第41题", "difficulty": 6, "formulas": 0}, {"id": 2452795, "material": "", "question": "作为伟大的人道主义者,马克思致力于________资本的剥削与人的异化,追求人的解放与自由全面发展。这种人民至上的立场情怀代表了一种极其高远的价值追求,这种价值使得马克思及其提出的理念图景高踞于人类道义的________。", "type": "单选题", "options": "A. 批驳 出发点\nB. 批判 制高点\nC. 反驳 落脚点\nD. 批评 支撑点", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 241410, "human_acc": 89.6305041216, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第11题", "difficulty": 5, "formulas": 0}, {"id": 5101852, "material": "", "question": "就我国而言,汉语受到英语等其他外语的影响是不可避免的,但我们也不必过于____________,语言自有其净化________的内在机制,它会在与其他语言的交流中,取其精华,去其糟粕。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 惴惴不安 提升\nB. 谈虎色变 创新\nC. 杞人忧天 筛选\nD. 心灰意冷 融合", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 2022958, "human_acc": 79.2536473817, "source": "2022年甘肃公务员录用考试《行测》题(网友回忆版)第26题", "difficulty": 4, "formulas": 0}, {"id": 16649, "material": "", "question": "苏东坡成全了黄州,黄州也成全了苏东坡,这实在是一种____________的有趣关系。东坡写于黄州的那些杰作,既宣告着黄州进入了一个新的美学等级,也宣告着东坡进入了一个新的人生阶段,两方面一起________,谁也离不开谁。", "type": "单选题", "options": "A. 相辅相成 提升\nB. 水乳交融 闻名\nC. 如影随形 升华\nD. 同舟共济 流传", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 325201, "human_acc": 81.1218292687, "source": "2010年湖北省公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 4630432, "material": "", "question": "中国历史很长,地域广袤,社会发展的状况也不尽相同,经常有新的东西出现。因此,研究和学习历史,一定要有________,靠一个人的力量要兼顾到各方面是不可能的,必致____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 侧重 事半功倍\nB. 取舍 囫囵吞枣\nC. 重点 挂一漏万\nD. 方向 顾此失彼", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 1167887, "human_acc": 21.191519385, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第28题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2719325, "material": "", "question": "某工厂在做好防疫工作的前提下全面复工复产,复工后第1天的产能即恢复到停工前日产能的$60\\%$,复工后每生产4天,日产能都会比前4天的水平提高1000件/日。已知复工80天后,总产量相当于停工前88天的产量,问复工后的总产量达到100万件是在复工后的第几天?", "type": "单选题", "options": "A. 56\nB. 54\nC. 60\nD. 58", "choice": "A", "keypoints": "数列问题;周期问题-其他", "most_wrong": "C", "human_count": 1129543, "human_acc": 14.4033471944, "source": "2021年国家公务员录用考试《行测》题(地市级网友回忆版)第70题", "difficulty": 5, "formulas": 1, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 20937, "material": "", "question": "四个连续奇数的和为32,则它们的积为多少:", "type": "单选题", "options": "A. 945\nB. 1875\nC. 2745\nD. 3465", "choice": "D", "keypoints": "数列问题", "most_wrong": "C", "human_count": 256296, "human_acc": 80.0995723694, "source": "2012年浙江省公务员录用考试《行测》题第49题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "周期问题", "周期问题-其他"]]}, {"id": 4525838, "material": "", "question": "好的网络漫画要有接地气的美学表达。在手机读屏时代,受众欣赏网络漫画多是利用零碎时间或休闲时间,往往____________,不会凝神细察、反复咀嚼,这就要求网络漫画要具有通俗易懂、____________的风格。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 走马观花 短小精悍\nB. 浅尝辄止 微言大义\nC. 食古不化 简明扼要\nD. 一目十行 一目了然", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 267157, "human_acc": 37.8646264182, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第28题", "difficulty": 7, "formulas": 0, "history": [{"id": 2144770, "material": "", "question": "制定一项公共政策时就算再____________、未雨绸缪,也不能无视广大基层民众的心声,无视“公平”二字,否则只能成为____________了。\n\n依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 管中窥豹 众叛亲离\nB. 居安思危 无的放矢\nC. 高谈弘论 千夫所指\nD. 高瞻远瞩 众矢之的", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 667199, "human_acc": 78.4428633736, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第32题", "difficulty": 4, "formulas": 0}, {"id": 4793905, "material": "", "question": "在北京冬奥会三大赛区,建设者____________地施工,冬奥会筹办工作加速冲刺;在制造业大省广东,参加技能培训、技能大赛____________;在许多领域和行业,新经济活力奔涌、新职业不断涌现······劳动的荣光分外耀眼、奋斗的旋律激荡人心,火热的劳动现场成为广袤大地上最亮丽的风景线。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 夜以继日 风靡一时\nB. 马不停蹄 蔚然成风\nC. 紧锣密鼓 屡见不鲜\nD. 热火朝天 司空见惯", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 50045, "human_acc": 55.1923269058, "source": "2022上半年省考第十一季行测模考大赛(西藏卷)第3题", "difficulty": 6, "formulas": 0}, {"id": 4485684, "material": "", "question": "任何时代的文艺实践都在呼应历史的风云际会。没有改革开放的如火如荼,就没有改革文学的横空出世;没有互联网技术的蓬勃发展,就没有网络文学的____________。换言之,中国历史的独特性造就中国文艺实践的独特性。用英诗分析法分析汉语诗句,难免生搬硬套,而用法国结构主义叙事学解读中国小说,则容易____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 纵横捭阖 舍本逐末\nB. 蔚然成风 挂一漏万\nC. 异军突起 隔靴搔痒\nD. 星火燎原 无所适从", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 201045, "human_acc": 50.4096097889, "source": "2021下半年省考第二十六季行测模考大赛(广东县级卷)第3题", "difficulty": 6, "formulas": 0}, {"id": 4682920, "material": "", "question": "语文教材中不乏以爱情为题材的诗歌,如《关雎》《蒹葭》《氓》《孔雀东南飞》等。爱情的花朵常常隐秘地萌发在学生的心田,拨动他们的情思,引起他们的共鸣。但课堂教学中,教师或____________、欲言又止,或____________、一带而过,或____________、枯燥乏味,无法让学生真正感受到爱情的纯洁、高尚与美好。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 语焉不详 只言片语 咬文嚼字\nB. 避而不谈 浅尝辄止 穿凿附会\nC. 讳莫如深 蜻蜓点水 照本宣科\nD. 讳疾忌医 走马观花 味同嚼蜡", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 127809, "human_acc": 69.3613125836, "source": "2022上半年省考第三季行测模考大赛(陕西卷)第33题", "difficulty": 4, "formulas": 0}, {"id": 4823668, "material": "", "question": "走在各地大街上,总能见到一些拗口难懂、不知所云的建筑名称,它们容易对大众产生误导。比如使用御府、官邸、宫廷、世家等有既定含义的词语,可谓____________。建筑物名称是社会基本公共信息,也承载着一定的文化属性。一个好的名称,应当贴近人民生活,既音律优美、____________,又能兼具文化底蕴;一个糟糕的名称,往往让人摸不到头脑,不仅拗口难记,甚至还会传递封建糟粕文化或崇洋媚外思想。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 故弄玄虚 朗朗上口\nB. 哗众取宠 抑扬顿挫\nC. 华而不实 铿锵有力\nD. 附庸风雅 字正腔圆", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 245307, "human_acc": 74.0325388187, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第30题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2593687, "material": "", "question": "粉笔组织教师风采大赛,已知A老师和B老师获得特等奖的概率均为$50\\%$,但二人同时获得特等奖的概率只有$10\\%$。则两人都未获得特等奖的概率是A老师单独获特等奖概率的:", "type": "单选题", "options": "A. $\\frac{1}{4}$\nB. $\\frac{1}{2}$\nC. $\\frac{1}{3}$\nD. $\\frac{5}{4}$", "choice": "A", "keypoints": "给概率求概率;两集合", "most_wrong": "C", "human_count": 100767, "human_acc": 11.7528555976, "source": "2021年国考第九季行测模考大赛(副省级)第73题", "difficulty": 7, "formulas": 337, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 1130069, "material": "", "question": "某部门共有82人,其中男性62人,本省籍42人,不是本省籍的女性11人,则本省籍的男性人数有:", "type": "单选题", "options": "A. 33\nB. 21\nC. 22\nD. 23", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 55491, "human_acc": 84.125353661, "source": "2010年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 3, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 2939, "material": "", "question": "出于对进城农民工生活的深切关怀,作家们在叙述农民进城的故事时,大都会情不自禁地持有一种严正的道德立场,这些故事往往被简化为一种苦难叙事或控诉文学,在这种叙事图景中,城市和农村往往被抽象化为两个相对立的价值世界,农民们在城市中的挣扎,也总是被演绎为一曲关于质朴价值遭到毁灭的挽歌。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 现代文学创作应更多关注进城农民工的生活\nB. “三农问题”积重难返,城乡差距日益扩大,进城农民工生活艰难\nC. 文学创作关于农民进城故事的叙述,有利于引起社会对他们的关注\nD. 关于进城农民工的文学创作,不应局限于简单的价值判断", "choice": "D", "keypoints": "中心理解题", "most_wrong": "C", "human_count": 58956, "human_acc": 87.6925164529, "source": "2008年浙江省公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题"]]}, {"id": 5714637, "material": "", "question": "考古学始终以研究古代遗址的结构与布局为首责,小到水井、房址,大到墓地、作坊,____________,都是构成遗址的核心要素。每一位考古学家都曾梦想把所有要素揭示清楚,但往往____________,难以实现。如果加入时间与空间维度,遗址的发掘与研究就更为复杂而持久,很多大型都城遗址都是几代考古人接续努力,才取得丰硕的成果,但新的问题又____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不胜枚举 不尽人意 呼之欲出\nB. 擢发难数 欲速不达 纤毫毕现\nC. 不计其数 尾大不掉 难以捉摸\nD. 林林总总 事与愿违 接踵而至", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 93843, "human_acc": 89.8862994576, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第70题", "difficulty": 3, "formulas": 0, "history": [{"id": 3931780, "material": "", "question": "对于舞台艺术创作来说,技术一直发挥着基础和保障作用。随着观众对舞台艺术作品视听效果要求的日益提升,多媒体技术的重要性愈发凸显。然而,让技术为艺术服务,既滴水不漏又不____________,并不是一件容易的事。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 卑躬屈膝\nB. 喧宾夺主\nC. 为所欲为\nD. 出类拔萃", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 140881, "human_acc": 90.4912656781, "source": "2021下半年省考第十七季行测模考大赛(广东乡镇卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 5600413, "material": "", "question": "每支球队都有独特的足球土壤,这块独特的足球土壤又滋养出球队独特的精神气质、战术打法,这是每支球队的根与魂。现代足球固然不断追求进步,力图迅速融合新的技战术,但创新与融合均须建立在球队的根脉上。舍弃球队的根与魂,在打法上____________,虽能一时炫目,但终将____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 改弦更张 一败涂地\nB. 另辟蹊径 销声匿迹\nC. 别出机杼 功败垂成\nD. 另起炉灶 昙花一现", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 42359, "human_acc": 50.4804173847, "source": "2023下半年省考第七季行测模考大赛(四川卷)第16题", "difficulty": 6, "formulas": 0}, {"id": 3667227, "material": "", "question": "网络直播行业繁荣,成为民众线上娱乐的重要组成部分。然而,繁荣之下____________。从商业角度来看,眼球经济滋生直播乱象,当用户注意力可直接转化为一定的经济利益,直播平台很容易成为“博出位”的舞台,或色情露骨,或____________,或传播谣言,许多网络主播不惜代价传递不良信息,触及法律底线,造成负面社会影响。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鱼目混珠 妖言惑众\nB. 扑朔迷离 口不择言\nC. 鱼龙混杂 哗众取宠\nD. 泥沙俱下 三缄其口", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 10931, "human_acc": 93.4864147836, "source": "2021下半年省考第八季行测模考大赛(西藏卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4737337, "material": "", "question": "人类通过大脑认知世界,却对认知世界的大脑____________。人脑是一个由1000亿神经元和1015个神经联接构成的复杂神经网络,是一块难以碰触的“禁地”。因此,脑科学研究也成为世界各国科技人员角逐的前沿。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不以为意\nB. 知之甚少\nC. 习焉不察\nD. 一无所知", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 434998, "human_acc": 94.3243417211, "source": "2022上半年省考第八季行测模考大赛(广东县级卷)第1题", "difficulty": 3, "formulas": 0, "history": [{"id": 5008952, "material": "", "question": "真正能受到公众欢迎的自媒体账号,并不是靠____________地快餐式输出,而是往往结合了专业度和趣味性。他们自身具备一定的专业知识储备,在内容制作时,还会对背景知识进一步了解。在形式上,力求转化成大众喜闻乐见的方式,____________,且易于传播。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 哗众取宠 通俗易懂\nB. 随波逐流 独出心裁\nC. 骇人听闻 妙趣横生\nD. 千篇一律 耳目一新", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 58511, "human_acc": 62.3677599084, "source": "2022上半年省考第二十一季行测模考大赛(西藏卷)第1题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5451635, "material": "", "question": "某部门组织团建活动,若将部门员工平分为4个小组,每个小组各自围着一张圆桌就餐,则每个小组均有120种座位安排方式。就餐结束后进入游戏环节,有3位部门领导加入,若将参加游戏的人员平均分为多个小组,并让每个小组的人员都围成一圈站好,则分组后每个小组最少有多少种站法?", "type": "单选题", "options": "A. 2\nB. 6\nC. 24\nD. 120", "choice": "A", "keypoints": "环形排列问题;非典型最值问题", "most_wrong": "C", "human_count": 329854, "human_acc": 8.5292280827, "source": "2023上半年省考第五季行测模考大赛(深圳卷)第57题", "difficulty": 7, "formulas": 0, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 25299, "material": "", "question": "有5对夫妇参加一场婚宴,他们被安排在一张10个座位的圆桌就餐,但是婚礼操办者并不知道他们彼此之间的关系,只是随机安排座位。问5对夫妇恰好都被安排在一起相邻而坐的概率是多少:", "type": "单选题", "options": "A. 在1‰到5‰之间\nB. 在5‰到1%之间\nC. 超过1%\nD. 不超过1‰", "choice": "A", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 510557, "human_acc": 28.9239007594, "source": "2012年国家公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5019172, "material": "", "question": "有四个抽奖盒子,每个盒子中均装有若干个代表一、二、三等奖的小球。已知球数最多的盒子中有10个小球,其他盒子中共有23个小球。则从球数最少的盒子中抽中一等奖的概率最低是多少?", "type": "单选题", "options": "A. $\\frac{7}{9}$\nB. $\\frac{1}{9}$\nC. $\\frac{5}{7}$\nD. $\\frac{1}{7}$", "choice": "D", "keypoints": "给情况求概率;构造数列", "most_wrong": "C", "human_count": 139145, "human_acc": 25.4748643501, "source": "2022上半年省考第二十一季行测模考大赛(河南卷)第65题", "difficulty": 7, "formulas": 419, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 5696625, "material": "", "question": "全民图书交换活动期间,甲、乙、丙三名同学各自准备了一些图书,其中,甲原有图书的数量比丙多1本。若第一次交换时乙将读完的4本书给丙,第二次交换时甲将读完的2本书给乙,第三次交换时丙将读完的3本书给甲,此时三名同学的图书数量恰好构成一个等差数列。问乙原有图书数量最多比丙多多少本?", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "数列问题;和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 94382, "human_acc": 44.2467843445, "source": "2023下半年省考第十六季行测模考大赛(广东县级卷)第32题", "difficulty": 6, "formulas": 0, "history": [{"id": 2620247, "material": "", "question": "张老师给某考场内的座位写座位号,座位号以两位数来表示,例如:1号座位记作01,2号座位记作02······,以此类推。写完之后,所有考生座位号数字的平均数恰好是某一位考生的座位号,且他共写了15次“1”。则这个考场内1号考生和最后一位考生之间最多隔多少个座位号?", "type": "单选题", "options": "A. 47\nB. 48\nC. 49\nD. 50", "choice": "A", "keypoints": "数列问题;和差倍比问题;非典型最值问题", "most_wrong": "C", "human_count": 86773, "human_acc": 7.3882428866, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2729140, "material": "", "question": "在碎片化的短视频中,人物的性格与心理逻辑被________为“人设”,冲突的发展与激化被精简为“名场面”,观众看似看懂了剧情,但作品的节奏被破坏了,价值和意义的输出也沦为了口号。电视剧既是文化产品又是艺术作品,“碎片化”追剧是对经济循环的________,却也堵塞了意义循环的要道。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浓缩 保护\nB. 戏谑 推动\nC. 升华 串联\nD. 简化 疏通", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 175346, "human_acc": 76.5594880978, "source": "2021上半年省考第一季行测模考大赛(四川卷)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 2444723, "material": "", "question": "香樟树就像那些正直而沉静的老实人,它们看似________,内里却极为优雅,无论世道怎样杂乱,自身如何被________被忽视,也没有放弃底线,只管静默生存,兀自风华,清冷而优美,沉静却光明。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迟钝 排挤\nB. 平庸 埋没\nC. 木讷 压抑\nD. 沉闷 误解", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 1110346, "human_acc": 65.6904244263, "source": "2019年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第18题", "difficulty": 5, "formulas": 0}, {"id": 4674460, "material": "", "question": "真人秀,是在既定游戏规则和________内呈现参与者真实表现的秀场,它介于非虚构与戏剧性之间。虽然在真人秀节目“求真”的总体原则下,参与者被要求只需以本色表现做好自己,但受到“游戏”假定性和行为规则的影响,参与者不仅会表现,也会________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 秩序 攀比\nB. 框架 表演\nC. 剧本 显摆\nD. 范式 做戏", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 137162, "human_acc": 85.8466630699, "source": "2022上半年省考第二季行测模考大赛(四川卷)第23题", "difficulty": 3, "formulas": 0}, {"id": 2448508, "material": "", "question": "过去,我国生产能力滞后,因而把工作重点放在扩大投资、提高生产能力上。现在,产能总体过剩,仍___________靠扩大规模投资抬高速度,作用有限且边际效用递减。虽然短期内投资可以成为拉动经济增长的重要动力,但最终消费才是经济增长的_____________动力。在扩大有效投资、发挥投资关键作用的同时,必须更加有效地发挥消费对增长的_____________作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一味 持久 基础\nB. 片面 根本 决定\nC. 盲目 核心 一般\nD. 单纯 长期 实质", "choice": "A", "keypoints": "关联关系-转折关系;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 3732740, "human_acc": 44.2513274431, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第35题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4670695, "material": "", "question": "研究人员从学校招募了100名学生,给每名学生都戴上睡眠监测设备,记录学生的睡眠时长和醒来频率。学期结束时,研究人员查看了学生考试期间的睡眠数据,然后将这些数据与学生的考试成绩进行比较。结果显示,睡眠不足的学生的考试成绩往往不佳。因此,研究人员认为睡眠不足会导致成绩不佳。\n\n以下哪项如果为真,最能质疑上述结论?", "type": "单选题", "options": "A. 为了保障学生获得充足睡眠,学校应加强科学睡眠宣传教育并减轻课业压力\nB. 平时成绩排名靠后的学生才会在考试期间熬夜学习,希望取得一个不错的成绩\nC. 很多可穿戴睡眠监测设备很难持续精确地监测睡眠状况,甚至还会影响睡眠\nD. 一些学生在考试期间准时睡觉,保证充足的睡眠,但其考试成绩并未达到预期", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 246286, "human_acc": 63.8404131782, "source": "2022上半年省考第一季行测模考大赛(四川卷)第80题", "difficulty": 6, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 2184694, "material": "", "question": "在2000多年前的古丝绸之路上,人们就已留下了早期全球化经贸往来的足迹。在当今信息时代,交通、通讯如此发达,经济全球化潮流更是_________________。然而,面对保护主义、民粹主义等逆全球化思潮抬头,经济全球化急需新的_________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 势不可挡 推动力\nB. 势在必行 保护伞\nC. 所向披靡 火车头\nD. 来势汹汹 创造力", "choice": "A", "keypoints": "词的辨析-程度轻重;混搭填空", "most_wrong": "B", "human_count": 1111331, "human_acc": 81.721647286, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第16题", "difficulty": 4, "formulas": 0, "history": [{"id": 2184714, "material": "", "question": "过度依赖于我们所知的世界会产生惯性。总是欣然接受普遍认知的事物会导致我们不愿意感知和________改变,甚至当改变已________________的时候,我们也可能选择无视。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 探寻 近在咫尺\nB. 正视 千钧一发\nC. 面对 回天无力\nD. 接纳 迫在眉睫", "choice": "D", "keypoints": "词的辨析-程度轻重;混搭填空", "most_wrong": "A", "human_count": 996643, "human_acc": 48.6940659795, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2172316, "material": "", "question": "近年来,农业生产上利用残渣食物链进行食物生产越来越多,______食用菌为纽带的生态模式效果明显。微生物菌体以其丰富的蛋白质、氨基酸及维生素含量列为重要营养食品,许多食用菌品种还以其突出的抗癌、降脂及提高机体免疫力的功效而成为______的保健食品。\n\n依次填入划横线处最恰当的一项是", "type": "单选题", "options": "A. 多以 不可取代\nB. 尤以 首屈一指\nC. 素以 交口称赞\nD. 却以 无与伦比", "choice": "B", "keypoints": "词的辨析-程度轻重;混搭填空", "most_wrong": "C", "human_count": 1381008, "human_acc": 82.3783786915, "source": "2018年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第31题", "difficulty": 5, "formulas": 0}, {"id": 2188438, "material": "", "question": "现在,死海的湖水正以每年超过1立方米的速度消失,而极为少见的巨大沙坑正以每年________________的速度形成,而且这个速度还可能继续加快。尽管官方没有公布沙坑的破坏程度,但许多电源线、公路以及活动住宅正被________,甚至曾有游客掉入沙坑受伤。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不计其数 淹没\nB. 数不胜数 湮灭\nC. 数以百计 吞噬\nD. 不可胜数 毁灭", "choice": "C", "keypoints": "词的辨析-程度轻重;混搭填空", "most_wrong": "A", "human_count": 1035061, "human_acc": 79.5301919404, "source": "2018年421联考《行测》题(湖南卷)(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 3743862, "material": "", "question": "前不久召开的中共中央政治局常委会会议提出,疫情的防控具有长期性和艰巨性,应强化社区防控网格化管理,采取更加周密精准、更加有效的________,防止疫情蔓延。如果对社区疫情防控掉以轻心、疏于部署,就有可能给整个疫情防控工作带来巨大挑战,甚至____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 手段 功败垂成\nB. 措施 前功尽弃\nC. 举措 功亏一篑\nD. 办法 畏葸不前", "choice": "B", "keypoints": "词的辨析-程度轻重;混搭填空", "most_wrong": "C", "human_count": 101863, "human_acc": 64.0026309848, "source": "2021下半年省考第十二季行测模考大赛(陕西卷)第31题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2144768, "material": "", "question": "文物保护有时与大众的想法因出发点不同而会产生分歧,比如出于保护的考虑,很多墓葬遗址能不发掘就不发掘,______知道里面可能有价值连城的文物,______文物本身蕴含的历史价值和文化价值更重要。\n\n依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 因为 但\nB. 不但 而且\nC. 即使 但\nD. 既 又", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应", "most_wrong": "A", "human_count": 12986, "human_acc": 91.8989681195, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第31题", "difficulty": 3, "formulas": 0, "history": [{"id": 4484783, "material": "", "question": "“艺术来源于生活,却又高于生活”。原生态地展现生活________可以突出生活“真”的一面,________不利于“善”和“美”的传达。只有以典型化的方式进行精加工,文学才能更好地反映生活,“真”“善”“美”的价值理念才能更好地传达出来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不仅 且\nB. 固然 却\nC. 即使 但\nD. 因为 所以", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应", "most_wrong": "C", "human_count": 14032, "human_acc": 91.8828392246, "source": "2021下半年省考第二十六季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 4170230, "material": "", "question": "“跟我学,长白毛。白毛老,吃青草。”这种俗称“顺口溜儿”的句子,其实是几千年农业文明积攒下来的生活智慧。________在小说中,这种本来应该是某种老成和经验象征的话语,________都是出于孩童之口,________成为他们之间日常比赛性的游戏。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 可 还 而且\nB. 但 竟 因此\nC. 而 却 甚至\nD. 且 也 并且", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应", "most_wrong": "B", "human_count": 8347, "human_acc": 93.159218881, "source": "2021下半年省考第二十一季行测模考大赛(广东乡镇卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 5661942, "material": "", "question": "数据的记录和传播________能一定程度直观呈现工作进展情况,________凡事过犹不及,________把教师视之为“数字劳工”,动辄强制他们参与“转评赞”,将其困在非教学类工作的泥淖,片面追求数据,这其实也是一种虚浮的形式主义,无益于教书育人。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽管 可 除非\nB. 既然 那 甚至\nC. 虽然 但 倘若\nD. 如果 就 何况", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应", "most_wrong": "A", "human_count": 6532, "human_acc": 96.1420698102, "source": "2023下半年省考第十三季行测模考大赛(广东县级卷)第20题", "difficulty": 3, "formulas": 0}, {"id": 19891, "material": "", "question": "人类应该有所敬畏。对敬畏感的褒扬并非意味着宣传愚昧和迷信,抹杀人的主体性,________主张对人的主体性加以适度限制,即对人的自负浅薄、妄自尊大、不自量力等予以合理规约。这种限制和规约,可以使人类________毫无顾忌地为所欲为,________得以拥有自己的自然和精神家园,这有助于人类心灵的净化、人格的完善。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 而且 无法 进一步\nB. 而是 难以 况且\nC. 却是 不能 并且\nD. 而是 不至于 进而", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应", "most_wrong": "A", "human_count": 596979, "human_acc": 89.4250886547, "source": "2012年江苏省公务员录用考试《行测》题(A类)第15题", "difficulty": 5, "formulas": 0}, {"id": 2450935, "material": "", "question": "科技带来的便捷与高效不可否认,(    )这世上始终有一些事情并不执着于效率。相较于即时通信的便捷,存留在纸张中的温情(    )弥足珍贵,值得反复回味。(    )今天我们拥有更加快速便捷的网络,也无须面对“烽火连三月”的岁月,家书(    )抵万金。这,就是不能忘却的情感涵养和文化传承。", "type": "单选题", "options": "A. 然而 或许 而且 依旧\nB. 即使 反而 尽管 不再\nC. 但 更 纵然 依然\nD. 可 也 或许 始终", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应", "most_wrong": "B", "human_count": 113101, "human_acc": 93.0539959859, "source": "广东省2020年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第55题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"]]}, {"id": 2452523, "material": "", "question": "解决气候变化不是一个零和博弈,而是需要多种方案____________。我们的确需要保护和更有效地管理森林,但对森林碳汇能力也不能____________,需要更加严谨的考证计算。归根到底,科学有效地制定并执行减排政策,才是解决气候变化问题的真正灵药。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 博采众长 夸大其辞\nB. 集思广益 过度依赖\nC. 统筹兼顾 无所作为\nD. 齐头并进 盲目乐观", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 1500461, "human_acc": 58.3996518403, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第37题", "difficulty": 5, "formulas": 0, "history": [{"id": 3541943, "material": "", "question": "工作生活理应存在界限,但为人处事应____________。对于工作之外的社交场合,哪怕是同事聚会,也不妨多一些____________、平等交流,少一些虚与委蛇、官威官气。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 不偏不倚 开诚布公\nB. 一以贯之 推心置腹\nC. 始终如一 平易近人\nD. 公私分明 设身处地", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 75943, "human_acc": 35.9480136418, "source": "2021下半年省考第三季行测模考大赛(陕西卷)第28题", "difficulty": 7, "formulas": 0}, {"id": 3634369, "material": "", "question": "常规的资产交易,买卖双方讨价还价,往往寸步不让、____________,表面上双方公平协商,权利义务也均衡对等。但有些交易,看似合情合理,实则蹊跷不少。比如,有的公司打算斥资收购控股股东的煤化工资产,但这些资产大多处于在建状态,之后还需投入上百亿元的资金,而在交易时仅把资产前景描述得很丰满,却对现实情况____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 睚眦必报 视而不见\nB. 锱铢必较 只字不提\nC. 斤斤计较 置若罔闻\nD. 得月较先 缄口不言", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 10958, "human_acc": 91.5678043439, "source": "2021下半年省考第七季行测模考大赛(西藏卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5358947, "material": "", "question": "甲、乙、丙3队合作完成一项生产任务,已知效率最高的2队效率之和是效率最低的2队的效率之和的1.5倍。若任选其中1队单独完成,最慢需要15天整,最快需要7天整。现要求每天只由1队生产,工作期间3队都参与了生产且每队工作的天数恰好都是整数。若总完工时间最短,则效率最高的队生产了几天?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "给完工时间型;普通不定方程", "most_wrong": "B", "human_count": 306956, "human_acc": 40.6905224202, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0, "history": [{"id": 3667783, "material": "", "question": "小张和小李是同一家公司的安装师傅,现有一批零件需要安装,若由小张单独完成需15天,由小李单独完成需21天。为尽快完成安装,二人均参与工作,已知在工作完成时,二人工作、休息天数均为整数,且小李休息的时间是小张工作时间的$\\frac{1}{2}$,则小张在工作过程中休息了多少天?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "给完工时间型;普通不定方程", "most_wrong": "C", "human_count": 28483, "human_acc": 47.5476600077, "source": "2021下半年省考第八季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 1}, {"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"], ["数量关系", "数学运算", "不定方程问题", "普通不定方程"]]}, {"id": 2770232, "material": "", "question": "令人欣慰的是,皮亚拉生前虽然是孤独的,但在他身后,他的电影作品却受到观众的________。无论褒奖还是批评,在历史长河中都显得微不足道,因为留下的________会陪伴不同时代的观众一起白头到老。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 青睐 影像\nB. 膜拜 浪花\nC. 垂青 玩味\nD. 倚重 记忆", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 170865, "human_acc": 84.8073040119, "source": "2021上半年省考第六季行测模考大赛(四川卷)第20题", "difficulty": 4, "formulas": 0, "history": [{"id": 5318689, "material": "", "question": "18世纪,中国的绘画也许是受到欧洲绘画的影响,产生了一个自然主义风格的分支。人们仍然________着装饰画的风格,绘画技巧和绘画方式都延续着传统的风格,但人们开始________绘本的影响,直接模仿自然,描绘自然。这个时期从传统中部分地解放,以及对自然的研究,导致原本在绘画书本中不常出现的禽鸟走兽受到画家的________,他们在野外的自然中仔细观察,将它们的各种姿态与动作描绘出来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 保持 考虑 追捧\nB. 遵循 顾及 垂青\nC. 秉持 摆脱 青睐\nD. 尊崇 挣脱 关注", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "D", "human_count": 33852, "human_acc": 83.0024813896, "source": "2022下半年省考第十四季行测模考大赛(浙江A卷)第33题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2434262, "material": "", "question": "一批药品需要检测,若第一天由甲检测,第二天由乙检测,按此方式交替完成的天数为整数。若第一天由乙检测,第二天由甲检测,按此轮替,那么在按前者轮流方式完工的天数后,还有56个药品未检测。已知甲、乙工作效率之比为$9\\colon5$。问甲每天检测多少个药品?(    )", "type": "单选题", "options": "A. 72\nB. 99\nC. 112\nD. 126", "choice": "D", "keypoints": "周期问题-其他;给具体单位型", "most_wrong": "C", "human_count": 165954, "human_acc": 50.0216927582, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第59题", "difficulty": 4, "formulas": 1, "history": [{"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 50657, "material": "", "question": "师傅每小时加工25个零件,徒弟每小时加工20个零件,按每天工作8小时计算,师傅一天加工的零件比徒弟多几个:", "type": "单选题", "options": "A. 10\nB. 20\nC. 40\nD. 80", "choice": "C", "keypoints": "给具体单位型", "most_wrong": "B", "human_count": 672744, "human_acc": 93.9364750931, "source": "2013年广东省公务员录用考试《行测》题(一)第8题", "difficulty": 3, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 2042438, "material": "", "question": "甲、乙两人用相同工作时间共生产了484个零件,已知生产1个零件甲需5分钟、乙需6分钟,则甲比乙多生产的零件数是:", "type": "单选题", "options": "A. 40个\nB. 44个\nC. 45个\nD. 46个", "choice": "B", "keypoints": "给具体单位型", "most_wrong": "C", "human_count": 671741, "human_acc": 82.5627734499, "source": "2017年江苏省公务员录用考试《行测》题(C类)第61题", "difficulty": 4, "formulas": 0}, {"id": 2730470, "material": "", "question": "某喷绘机每次同时单面印刷2张广告布,每印1面需要1分钟,广告布印后需晾干2分钟,现需双面印刷15张广告布,则至少需(    )分钟的印刷时间。", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 19", "choice": "A", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 187738, "human_acc": 24.2492196572, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "工程问题", "给具体单位型"]]}, {"id": 5714607, "material": "", "question": "作为增进民生福祉的关键因素,艺术不应是深藏于展馆的____________,也不应是独乐于书斋的文人雅事,而应是写在乡村大地上的诗、哼在百姓嘴边的歌。只有这样,艺术才能发挥________心灵的作用,为一切愿意用辛勤劳动创造美好生活的人搭建起通向美好生活的阶梯。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一纸空文 抚慰\nB. 阳春白雪 滋养\nC. 诘屈聱牙 熏陶\nD. 顾影自怜 洗礼", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 121365, "human_acc": 73.1504140403, "source": "2023下半年省考第十八季行测模考大赛(四川卷)第17题", "difficulty": 4, "formulas": 0, "history": [{"id": 2557689, "material": "", "question": "搭载着“互联网$+$”的平台,多种多样的新形式、新技术________了文化的传统呈现方式,不断丰富着网络文化的资源,也不断更新着人们的体验,即便无法亲赴现场,也有如____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 打破 身临其境\nB. 颠覆 春风化雨\nC. 取代 耳濡目染\nD. 优化 设身处地", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;混搭填空", "most_wrong": "D", "human_count": 19525, "human_acc": 93.3623559539, "source": "2020年上半年省考第三十季行测模考大赛(海南卷)第41题", "difficulty": 3, "formulas": 1}, {"id": 3973314, "material": "", "question": "一个时代,诗者如云,但能把“脚印留落”在历史的原野,可以说____________。现代的诗人大多没有“人过留名”,这是因为他们的诗没有自己的审美________,没能兴发感动,打动人们的心灵。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 乏善可陈 格调\nB. 屈指可数 传统\nC. 难以为继 个性\nD. 寥若晨星 特质", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 106376, "human_acc": 89.0304203956, "source": "2021下半年省考第十八季行测模考大赛(陕西卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 2579710, "material": "", "question": "抗战小说因为题材的特殊性,一般强调英雄人物的“神圣使命”,强调军人形象塑造,________百姓形象。而在《怒吼的平原》中,作者将普通群众纳入群像之中,军与民的笔墨虽不是____________,却同样饱含深情。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 忽视 厚此薄彼\nB. 削弱 等量齐观\nC. 忽略 伯仲之间\nD. 淡化 平分秋色", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 1622508, "human_acc": 54.9874022193, "source": "2020年浙江公务员考试《行测》(B类)试题(网友回忆版)第21题", "difficulty": 4, "formulas": 0}, {"id": 2660963, "material": "", "question": "老师和学生,本是一对亲密的矛盾体。但随着“00后”走进大学,不少教师发现以往传统教学方法变得越来越“失灵”,师生关系出现一定程度的________。学习面前,学生经常“不感冒”,老师则感觉____________,甚至出现本领恐慌。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 疏离 力不从心\nB. 龟裂 精疲力尽\nC. 恶化 无计可施\nD. 紧张 措手不及", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 20848, "human_acc": 78.2329240215, "source": "2020年下半年省考第九季行测模考大赛(浙江卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 5445774, "material": "", "question": "在普通人看来,法律都是____________的,自己一辈子都不会和法律打交道。但在瞬息万变的社会里,人们随时可能触及法律的红线。很多人平时法律观念和意识不强,柔性执法不仅可以起到________作用,而且有利于提高群众的学法懂法意识。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高高在上 教育\nB. 高深莫测 预防\nC. 遥不可及 警戒\nD. 事不关己 提醒", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;混搭填空", "most_wrong": "D", "human_count": 1495393, "human_acc": 54.0896607113, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第34题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2031566, "material": "", "question": "一个木制正方体在表面涂上颜色,将它的每条棱三等分,然后从等分点将正方体展开,得到27个小正方体,将这些小正方体充分混合后,装入一个口袋,从这个口袋中随机取出两个小正方体,其中一个正方体只有一个面涂有颜色,另一个至少有2个面涂有颜色的概率约为(    )。", "type": "单选题", "options": "A. 0.05\nB. 0.17\nC. 0.34\nD. 0.67", "choice": "C", "keypoints": "给情况求概率;立体几何", "most_wrong": "B", "human_count": 414202, "human_acc": 47.094412871, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第45题", "difficulty": 6, "formulas": 0, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 5365098, "material": "", "question": "尽管我们有不少作家来自乡村,或在乡村生活、工作过,但主要生活和工作环境却是远离乡村的,与乡村是有________的。于是,我们一方面在城市丛林中奔波拼搏,另一方面在心底却时常向往着田园牧歌,有意无意地给乡村抹上一层________的色彩。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 隔膜 浪漫\nB. 壁垒 主观\nC. 距离 玄幻\nD. 嫌隙 诗意", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 51170, "human_acc": 58.0515927301, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第65题", "difficulty": 6, "formulas": 0, "history": [{"id": 4330554, "material": "", "question": "患生于所忽,祸起于细微。一个个深刻惨痛的教训、一场场追悔莫及的悲剧,无不源于日常中对安全生产的________。不管是抢工期、赶进度、增效益的利益考量,还是设备检修、作业流程的管理失位,任何一个环节的漫不经心,都可能成为点燃事故的引信。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 漠视\nB. 无视\nC. 蔑视\nD. 藐视", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 22079, "human_acc": 75.6691879161, "source": "2021下半年省考第二十三季行测模考大赛(内蒙古卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 4772029, "material": "", "question": "当一个年轻人走进大学校园,意味着他开始逐渐摆脱家庭庇护,在个人角色和生活环境转变的过程中,一步步走向________。这个过程中,焦虑本身并非以一个________词汇的形式出现,适度的焦虑也可能会激发潜能、催人上进。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可靠 苛刻\nB. 自主 极端\nC. 独立 偏颇\nD. 成熟 消极", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 384836, "human_acc": 77.5561537902, "source": "2022上半年省考第十季行测模考大赛(四川卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 161413, "material": "", "question": "读书时对感兴趣的东西深钻细研,无疑有助于我们更全面、系统、深入地了解这些东西。但不感兴趣的东西,有的也可能恰恰是我们所_____________的。这不仅因为兴趣本身有一定的局限性,而且因为在特定领域浸染日久,往往会_____________这种兴趣,形成越不感兴趣越排斥的恶性循环,导致短板更短。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 需要 泛化\nB. 忽视 僵化\nC. 欠缺 固化\nD. 提倡 弱化", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1942870, "human_acc": 77.6483758563, "source": "2014年国家公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 2557695, "material": "", "question": "通俗文学与严肃文学并无绝对分野,通俗与通雅可以相互转化。严肃文学更追求艺术性,通俗文学更注重大众性,但一味追求高深而忽视大众文学认同,文学将________读者;一味________读者口味,缺乏艺术追求,文学也将失去精神引领作用。严肃文学也可写得通俗,通俗文学亦可成就经典,大众性与艺术性的________才是文学的理想境界。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 失去 迁就 统一\nB. 背叛 照顾 结合\nC. 远离 迎合 融合\nD. 分裂 满足 兼容", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 20420, "human_acc": 76.1018609207, "source": "2020年上半年省考第三十季行测模考大赛(海南卷)第44题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4998493, "material": "", "question": "近日,某网贷公司在短视频平台投放的一条广告内容引发了舆论热议。除了荒唐的情节内容引人侧目,更值得注意的是,这种令观者感到不适的“辣眼睛”广告,正在一些社交平台上____________。虽然投放公司各不相同,这些广告的核心情节和拍摄手法却____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大行其道 如出一辙\nB. 叱咤风云 异曲同工\nC. 风生水起 不谋而合\nD. 蔚然成风 大同小异", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "D", "human_count": 55146, "human_acc": 87.4424255612, "source": "2022上半年省考第二十季行测模考大赛(西藏卷)第2题", "difficulty": 4, "formulas": 0, "history": [{"id": 5519248, "material": "", "question": "依靠发展,我国经济实力、科技实力、国防实力以及综合国力跃上新台阶,中华民族正以崭新姿态屹立于世界的东方。然而,我们绝不能____________,面对波诡云谲的国际形势,我们要始终保持高度警惕,更加重视实现更安全的发展。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高枕无忧\nB. 以逸待劳\nC. 安然无虞\nD. 居安思危", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 37708, "human_acc": 72.3506948128, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第11题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 21679, "material": "", "question": "有了国内外巨大的价差,石油企业更愿意将成品油销往海外。同时,国际石油投机商也迅速抓住了这个机会,以来料加工为__,将低价成品油大量出口到境外大赚一笔,这样的情况又造成国内成品油供应紧张,__了国内油品市场。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 手段  影响\nB. 掩护  扭曲\nC. 名义  抑制\nD. 幌子  牺牲", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "D", "human_count": 224359, "human_acc": 22.5625002786, "source": "2008年国家公务员录用考试《行测》题第32题", "difficulty": 7, "formulas": 0, "history": [{"id": 566495, "material": "", "question": "①澳大利亚国防部长3月25日发表声明称,在马航失联客机的搜寻工作中,澳方没有________任何真相。\n\n②调查表明,当前有许多中小学生________了互相攀比、讲究吃穿、不爱劳动、懒惰自私、贪占便宜、花钱大手大脚的不良习气。\n\n③如果只注意脚上和身上穿得暖和而不戴帽子,人体就会像一个没盖瓶塞的暖瓶一样,大量的热量就会从头上________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 暗藏 污染 散失\nB. 暗藏 沾染 消失\nC. 隐藏 沾染 散失\nD. 隐藏 污染 消失", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "B", "human_count": 404638, "human_acc": 97.4752741957, "source": "2014年河北省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5286985, "material": "", "question": "在一个环形跑道上,小明顺时针步行,40分钟走了全程的一半,此时小强从同一地点逆时针跑步出发,在第二次与小明相遇时,小明走了全程的$\\frac{3}{4}$。若第二次相遇后,小明开始保持与小强相同的速度跑步前往出发点,问跑到出发点可比步行到出发点提前多长时间?", "type": "单选题", "options": "A. 16分钟\nB. 15分钟\nC. 12分钟\nD. 7分钟", "choice": "A", "keypoints": "行程问题-其他;相遇追及", "most_wrong": "C", "human_count": 5990, "human_acc": 15.6427378965, "source": "2022下半年省考第十季行测模考大赛(浙江C卷)第69题", "difficulty": 7, "formulas": 1, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 5647243, "material": "", "question": "现有一个长、宽、高分别为20m、12m、8m的长方体模具,需将这个长方体模具恰好无剩余地切割成若干个边长是整数米、大小相同的正方体模具,并将这些正方体模具的所有外表面刷上漆。已知一桶漆可以刷$40m^{2}$,那么按要求将所有的正方体模具的所有外表面刷完至少需要多少桶漆?", "type": "单选题", "options": "A. 84\nB. 72\nC. 60\nD. 48", "choice": "B", "keypoints": "公倍数与公约数问题;非典型最值问题;立体几何", "most_wrong": "C", "human_count": 12729, "human_acc": 49.2811689842, "source": "2023下半年省考第十二季行测模考大赛(山西卷)第71题", "difficulty": 6, "formulas": 1, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 5422045, "material": "", "question": "专业课程思政元素指蕴含在专业课程知识体系中,有助于对学生开展思想政治教育、价值引导或德育培养的教育元素。专业课程思政元素的重要特征主要表现在以下方面:一是兼具专业教育与思政教育双重属性。课程思政的教学载体是专业课程,思政元素来源于专业课程,属于专业课程内容的自然拓展和延伸,保留了专业课程内容的本质属性,但其在教育功能上与思政课程同向同行,其根本功能是立德树人。二是分布广泛形态多样。课程思政元素广泛存在于每门课程的教学内容、教学素材、教学方法、教学条件与师生互动等多个方面,但其形态存在显隐性程度不同之分。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 专业课程教育元素 专业课程内容 形态性质不同\nB. 专业课程教育元素 教育功能齐全 分布广形态多\nC. 专业课程思政元素 课程教学载体 形态性质不同\nD. 专业课程思政元素 兼具双重属性 分布广形态多", "choice": "D", "keypoints": "主题词;特殊问法", "most_wrong": "C", "human_count": 1650, "human_acc": 83.0303030303, "source": "2022下半年省考第二十四季行测模考大赛(新疆兵团卷)第49题", "difficulty": 4, "formulas": 0, "history": [{"id": 1701960, "material": "", "question": "“多数情况下我们并不是先理解后定义,而是先定义后理解。置身于庞杂喧嚣的外部世界,我们一眼就能认出早已为我们定义好的自己的文化,我们也倾向于按照我们的文化所给定的、我们所熟悉的方式去理解。” 以上是美国传播学者李普曼《公众舆论》中的一段论述,请判断他论述的关键词是(  )。", "type": "单选题", "options": "A. 文化\nB. 传播\nC. 成见\nD. 舆论", "choice": "C", "keypoints": "主题词;特殊问法", "most_wrong": "A", "human_count": 434008, "human_acc": 41.5395568745, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第28题", "difficulty": 5, "formulas": 0}, {"id": 14465, "material": "", "question": "所有的作物都是自野生品种演化而来的,这意味着,用达尔文主义的说法就是,野生品种在漫长的时间里获得了生存所需的适应能力。然而在驯化与种植中,发生了遗传侵蚀,这种适应力也遭受损失,甚至其野生祖先也可能灭绝。因此今天的很多作物一旦突然间无人种植,直接就会消亡。\n\n这段文字的关键词是:", "type": "单选题", "options": "A. 适应能力\nB. 驯化过程\nC. 遗传侵蚀\nD. 野生物种", "choice": "C", "keypoints": "主题词;特殊问法", "most_wrong": "A", "human_count": 91985, "human_acc": 49.2960808828, "source": "2010年江苏省公务员录用考试《行测》题(A类)第10题", "difficulty": 5, "formulas": 0}, {"id": 2731018, "material": "", "question": "地缘是从商业里发展出来的社会关系。血缘是身份社会的基础,而地缘却是契约社会的基础。契约是指陌生人中所作的约定。在订定契约时,各人有选择的自由,在契约进行中,一方面有信用,一方面有法律。法律需要一个同意的权力去支持。契约的完成是权利义务的清算,须要精密的计算、确当的单位、可靠的媒介。\n\n提取语段的关键词,以下选项最恰当的是:", "type": "单选题", "options": "A. 地缘 血缘\nB. 地缘 契约\nC. 契约 法律\nD. 身份 契约", "choice": "B", "keypoints": "主题词;特殊问法", "most_wrong": "C", "human_count": 729269, "human_acc": 75.1308502075, "source": "2021年上海市公务员录用考试《行测》题(B类)(网友回忆版)第15题", "difficulty": 5, "formulas": 0}, {"id": 2035224, "material": "", "question": "新媒体时代是信息爆炸的时代,信息爆炸给人们带来了福利,使人们生活在一个更透明的社会中。但这种爆炸也给人们带来了信息骚扰。且不说每天无数娱乐至死的垃圾信息耗散着我们的注意力,充斥于空间中的种种虚假信息更让人头疼。从“深圳最美女孩”到“流浪汉成千万富翁”,再到让人目瞪口呆的“打车假新闻”,假新闻不断突破着公众想象力。\n\n从内容上看,该文段的中心词是:", "type": "单选题", "options": "A. 新媒体\nB. 信息爆炸\nC. 信息骚扰\nD. 假新闻", "choice": "D", "keypoints": "主题词;特殊问法", "most_wrong": "C", "human_count": 442811, "human_acc": 26.9239020711, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第39题", "difficulty": 4, "formulas": 0}, {"id": 410587, "material": "", "question": "中央纪委监察部发出通知,要求党员领导干部在2013年元旦、春节期间,切实改进工作作风,加强廉洁自律。不仅整体要求,还规定了细节。比如:“严禁领导干部擅自驾驶公车”“严禁用公款搞相互走访、送礼、宴请等拜年活动”。但只靠规定力度有限,关键在于一切放在阳光下,让所有的公务支出、官员财产都置于纳税人的监督之下,才能达到真正的廉洁。\n\n这段文字的关键词是:", "type": "单选题", "options": "A. 通知 廉洁\nB. 规定 廉洁\nC. 廉洁 节日\nD. 廉洁 监督", "choice": "D", "keypoints": "主题词;特殊问法", "most_wrong": "B", "human_count": 402261, "human_acc": 83.9693631747, "source": "2014年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5276708, "material": "", "question": "释梦理论认为,梦是人脑尝试对____________的或被歪曲的信息进行合理化整合或修正的过程。而这种合理化整合或修正的素材,来自做梦者白天的生活经历。不管梦境是多么的____________,但归根结底都离不开大脑记忆的范畴,最直观的表达便是梦到曾经的生活场景。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 残缺不全 无稽之谈\nB. 面目全非 天马行空\nC. 支离破碎 荒诞不经\nD. 吉光片羽 光怪陆离", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 148286, "human_acc": 80.1080344739, "source": "2022下半年省考第十季行测模考大赛(浙江C卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 22731, "material": "", "question": "总体上,当前国家统计内容以经济统计为主,且经济统计发展比较全面系统;相对来说人口社会统计受到重视可能稍微弱一些。实际上,对于国家统计机构来说,尤其是发达国家的统计机构,人口社会统计和经济统计应该是__________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 化整为零\nB. 不分彼此\nC. 并驾齐驱\nD. 各有所长", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 665018, "human_acc": 87.7249939099, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第24题", "difficulty": 5, "formulas": 0}, {"id": 5424748, "material": "", "question": "语言不够“纯净”,据说是新诗的通病。然而将不同的因素冶于一炉,而使之产生____________的美感效果,是诗歌艺术的可贵之处。诗是经验的艺术化的表现,不是日常会话的达意。其次,文言在日常生活上虽已僵硬难用,但在艺术品中,经诗人的巧妙安排,却能“____________”,加强美感。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 和光同尘 柳暗花明\nB. 水乳交融 妙手回春\nC. 浑然一体 起死回生\nD. 交相辉映 焕然一新", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 201379, "human_acc": 34.1604636035, "source": "2022下半年省考第二十四季行测模考大赛(河南卷)第10题", "difficulty": 7, "formulas": 0}, {"id": 4516579, "material": "", "question": "二战结束以来,美国为实现和维护其世界霸主地位先后6次大幅调整军事战略,然而这些军事战略争霸世界的本质却____________。为保持和获得对大国竞争对手的优势,美军必须使用新的作战概念来实现对大国竞争对手的长期性优势。马赛克战作战概念一旦实现,其所带来的作战效果将____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 始终如一 不容小觑\nB. 深入人心 毋庸置疑\nC. 一如既往 无从得知\nD. 颠扑不破 不可估量", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "D", "human_count": 9453, "human_acc": 79.688987623, "source": "2021下半年省考第二十九季行测模考大赛(西藏卷)第3题", "difficulty": 4, "formulas": 0}, {"id": 5443203, "material": "", "question": "如今在网络上,可以包治百病,药到病除的各类保健品广告屡见不鲜,这类把戏并不新奇,为何却能让不少人上当受骗?为何一些人对线下保健品____________,却对网上的保健品趋之若鹜?当保健品从线下走到线上,费尽心机的营销手段,____________的话术套路,很容易让人在不知不觉中跌入圈套。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不置可否 环环相扣\nB. 敬而远之 五花八门\nC. 置若罔闻 滔滔不绝\nD. 嗤之以鼻 故弄玄虚", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 211725, "human_acc": 47.9711890424, "source": "2023上半年省考第三季行测模考大赛(广东县级卷)第4题", "difficulty": 6, "formulas": 0}, {"id": 4576397, "material": "", "question": "在中国观众对异国通俗文化的观看与消费中,泰剧成为独特的一道风景,多次引发热议,且一度与欧美电视文本呈现出____________之势。有趣的是,泰剧作为一种在很多人眼里不可理喻但却令人____________的通俗文本代表,吸引了越来越多的观众,同时泰剧及相关视觉文化作品在国内市场蓬勃兴起,获取了广泛的观看群。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 分庭抗礼 欲罢不能\nB. 平分秋色 匪夷所思\nC. 星火燎原 刮目相看\nD. 参差不齐 拍案叫绝", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 354440, "human_acc": 91.2292630629, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第58题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2737556, "material": "", "question": "毫无疑问,中国古人在对待植物的态度上是极其________的,在《南方草木状》中就记录了人们日常生活中经常会碰到的荔枝、柿子等植物,并详细考察了它们的食用及药用价值。但这并不妨碍那些只是承载了人类情感的植物也进入书中,比如各种各样的竹子。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 严谨\nB. 科学\nC. 乐观\nD. 务实", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 162444, "human_acc": 52.4870109084, "source": "2021上半年省考第二季行测模考大赛(四川卷)第18题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4815, "material": "", "question": "王强不适合担任如意酒店大堂经理的职务。因为近半年来,只要他向总经理请假,就说自己身体不舒服。\n\n为使上述论证成立,以下哪项是必须要假设的:\n\nⅠ胜任大堂经理的职务,必须要身体健康。\n\nⅡ王强向总经理请假的理由是真实的。\n\nⅢ近半年来,王强经常向总经理请假。", "type": "单选题", "options": "A. 只有Ⅰ\nB. 只有Ⅱ\nC. 只有Ⅱ和Ⅲ\nD. Ⅰ、Ⅱ、Ⅲ", "choice": "D", "keypoints": "搭桥;必要条件", "most_wrong": "A", "human_count": 18159, "human_acc": 61.3690181177, "source": "2009年北京市公务员录用考试《行测》题(社招)第39题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"], ["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 5221968, "material": "", "question": "历史学的价值,首先体现在其自觉保持人类自我记忆功能上。历史记录保留记忆,人们对历史信息进行提炼、研究、总结进而形成文化认知。历史学的这一功能,可视为人类保持自我记忆、传承文化、不断反思自我的同时又得以延续族群的自我认同。历史学的价值还体现在历史学科学的思维方式尤其是“历史感”的培育上。所谓历史感,就是一种长时段、大视野的综合整体把握的“通感”;一种将人、事、物置于特定时空与历史过程中去认知、把握、审视和定位的自觉与思维习惯;一种对社会、人、事与环境的关联性、延续性和变迁性的关注和深度认识。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 历史学价值 历史信息提炼 增强文化底蕴\nB. 历史学价值 历史文化认知 挖掘历史深度\nC. 历史学价值 保持记忆功能 培育“历史感”\nD. 历史学价值 历史知识构成 关注历史变迁", "choice": "C", "keypoints": "主题词;关联词-并列;特殊问法", "most_wrong": "B", "human_count": 19146, "human_acc": 89.6636373133, "source": "2022下半年省考第八季行测模考大赛(新疆兵团卷)第49题", "difficulty": 3, "formulas": 0, "history": [{"id": 2010250, "material": "", "question": "五十年代,人们对幸福的憧憬是“楼上楼下,电灯电话”;六七十年代,是“三转一响”(自行车、缝纫机、电风扇、收音机),是进国营工厂或穿上军装;八十年代是“万元户”;九十年代是有房有车;新世纪的幸福感呢,则和总理最近提出的“尊严”息息相关。 这段文字的关键词是(    )。", "type": "单选题", "options": "A. 新世纪\nB. 幸福\nC. 尊严\nD. 幸福感", "choice": "D", "keypoints": "主题词;关联词-并列;特殊问法", "most_wrong": "B", "human_count": 11000, "human_acc": 63.3727272727, "source": "2010年江苏省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 1541913, "material": "", "question": "智慧以一定的知识为前提,在人的思考和实践中体现出来,但它本身是不稳定的、非规范性的,表现为某种洞幽烛微、触类旁通、融会贯通、举重若轻的能力。知识可以让人按照已有的方式思考和行动,智慧则使人立足已知探索未知,善于发现问题、提出问题、分析问题,进而自主地创造性解决问题。而哲学思想是人类智慧的结晶。理解已有的哲学、感悟其中闪耀的智慧之光,有助于启迪、催化我们本已有根的智慧。\n\n这段文字的关键词可概括为:", "type": "单选题", "options": "A. 智慧 能力 问题\nB. 智慧 知识 哲学\nC. 知识 思考 实践\nD. 知识 哲学 创造", "choice": "B", "keypoints": "主题词;关联词-并列;特殊问法", "most_wrong": "A", "human_count": 873290, "human_acc": 92.7562436304, "source": "2015年山东省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}, {"id": 5548378, "material": "", "question": "个体劳动的社会性为劳动的商品性提供了合法性,劳动交换成为人类社会生活的基本内容之一。在中国,个体用双脚走路在一天之内可以往返的半径是以劳易劳的极限空间。事实上,在给定形式、内容和数量的前提下,如果再给定劳动时间,则空间范围会大大缩小。以劳易物在形式、内容、时空上有了扩展,也有了转换。最重要的转换是把曾经自然发生的“易”变成了一种专门劳动。以劳易物的出现不仅从“劳”中衍生出“易”,也让传统的“劳”超出以劳易劳的范围,让“劳”有了更多样化的人尽其力的机会。以劳易资则从根本上改变了劳动的本质属性,将劳动与对等劳动或对等物质分离,将“劳”转换为“资”,让劳动成为可以进行普遍交易的商品。\n\n这段文字中提取的关键词最恰当的一项是:", "type": "单选题", "options": "A. 劳动时间 以劳易劳 以劳易资\nB. 以劳易劳 以劳易物 以劳易资\nC. 劳动交换 劳动属性 劳动时间\nD. 以劳易物 人尽其力 以劳易资", "choice": "B", "keypoints": "主题词;关联词-并列;特殊问法", "most_wrong": "C", "human_count": 5518, "human_acc": 77.2381297572, "source": "2023下半年省考第一季行测模考大赛(江苏C卷)第30题", "difficulty": 4, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 2184697, "material": "", "question": "如今,年轻的新生代家长普遍接受过完善的高等教育,一些人还有海外学习和生活的经历,对子女的启蒙教育有着自己的理解和要求。进口的动画片,无论在叙事风格还是在表现手法上,都更接近他们的审美标准。与此同时,儿童的理解能力也在上升,他们可以更早地观察和理解世界。其实,国内并非没有这样的动画资源,像《西游记》之所以成为经典,屡被改编,屡受欢迎,就因为它的神话体系是现实的投射。关键的问题还是在于国内的制作人有没有深度思索、挖掘现实的能力。\n\n从这段文字可以看出作者的观点是:", "type": "单选题", "options": "A. 国产动画的不景气源于制作人不佳\nB. 我国动画产业应多向国外同行学习\nC. 国产动画应跟上观众群的审美要求\nD. 国内实际并不缺少优秀的动画素材", "choice": "A", "keypoints": "关联词-转折;程度词", "most_wrong": "D", "human_count": 984251, "human_acc": 44.2638107556, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第37题", "difficulty": 6, "formulas": 0, "history": [{"id": 2036610, "material": "", "question": "我国环境保护和治理污染的重心在城市,特别是中心城市,而相对忽视了广大的农村。其实,我国农村最需要环境保护、环境治理和生态建设。\n\n这段文字主要说明了:( )", "type": "单选题", "options": "A. 环境保护和治理污染的重心在城市\nB. 环境保护和治理污染需要城市与农村联动\nC. 环境保护和治理污染的重心要向农村转移\nD. 环境保护和治理污染的难点在农村", "choice": "C", "keypoints": "关联词-转折;程度词", "most_wrong": "B", "human_count": 32169, "human_acc": 69.8343125369, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第23题", "difficulty": 4, "formulas": 0}, {"id": 2139494, "material": "", "question": "虽然某些防火建筑的主要部分都是由耐火材料建成,但却可通过门厅和其他通道里的易燃材料使火势蔓延以至于完全被摧毁。这些建筑甚至可能由于金属梁、柱的坍倒而遭到严重的结构破坏。这段话主要支持了这样一种论点,即某些防火建筑:", "type": "单选题", "options": "A. 拥有特殊结构的走廊和门厅\nB. 对建筑物内各种设施的保护不如一般建筑\nC. 可能会遭到火的严重破坏\nD. 受火的损坏少于受金属支撑物坍倒的损坏", "choice": "C", "keypoints": "关联词-转折;程度词", "most_wrong": "D", "human_count": 37673, "human_acc": 82.0720409843, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2270532, "material": "", "question": "虽然目前民政医疗救助总体上取得了较大成效,但庞大的低保边缘群体,尤其是因大病导致的支出型贫困群体被排除在救助体系之外,从而形成“悬崖效应”:呼救者濒临悬崖时无法施救,掉下悬崖后才能得到救助的境况,影响了医疗救助的科学性和合理性。\n\n这段文字用“悬崖效应”来说明:", "type": "单选题", "options": "A. 民政医疗救助的救穷不救急\nB. 低保边缘人群被大病压垮\nC. 民政医疗救助对患大病群体成效甚微\nD. 支出型贫困群体不能获得民政医疗救助", "choice": "A", "keypoints": "关联词-转折;程度词", "most_wrong": "D", "human_count": 1127, "human_acc": 35.4037267081, "source": "2015年浙江省选调村官考试 行政职业能力测验试卷(精选)第12题", "difficulty": 5, "formulas": 0}, {"id": 2579719, "material": "", "question": "家长们担心孩子过度依赖手机会损害视力、看到不良信息。但值得注意的是,除了这些浅表层次的影响外,最重要的在于移动学习提高了学生的信息搜索能力,却也因答案的易得性而忽略了学生分析能力、创造能力的训练,这些才是学习最重要、最核心的部分。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 家长们为孩子过度依赖手机感到焦虑\nB. 过度依赖手机会对学生身体健康不利\nC. 移动学习提高了学生的信息搜索能力\nD. 移动学习对训练分析和创造能力不利", "choice": "D", "keypoints": "关联词-转折;程度词", "most_wrong": "C", "human_count": 1583848, "human_acc": 93.1932230871, "source": "2020年浙江公务员考试《行测》(B类)试题(网友回忆版)第45题", "difficulty": 3, "formulas": 0}, {"id": 12593, "material": "", "question": "建立社会保障制度的主要目的是为了更好地体现公平原则,但公平与效率之间存在矛盾,公平只能是相对的,特别是对我国这样一个发展中国家来说,经济发展水平还比较低,发展生产力,提高效率应放在第一位,只有生产力和生产效率提高了,才能更好地实现社会公平。\n\n这段话主要支持的观点是:", "type": "单选题", "options": "A. 从我国当前经济发展水平较低的情况来看,片面追求公平是不合适的\nB. 只要经济发展水平上不去,就不能实现社会公平\nC. 生产力决定社会公平原则的实现程度\nD. 公平在任何国家都只能是相对的", "choice": "A", "keypoints": "关联词-转折;程度词", "most_wrong": "C", "human_count": 16349, "human_acc": 58.7069545538, "source": "2009年广西壮族自治区公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5662719, "material": "", "question": "对视听艺术文本进行简单划分,一类可归入与现实关联不强的________作品,如玄幻、魔幻题材的影视剧,另一类是基于历史或现实创作的作品。如果说年轻观众对第一类作品的喜欢,主要源于对猎奇心理、虚幻想象的满足,那么第二类作品要想________年轻观众,创作的关键则在于与时代建立强链接,拓展作品与青年群体的对话空间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 杜撰 感染\nB. 虚构 俘获\nC. 捏造 吸引\nD. 臆造 激发", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 3742, "human_acc": 90.7001603421, "source": "2023下半年省考第十三季行测模考大赛(陕西卷)第26题", "difficulty": 3, "formulas": 0, "history": [{"id": 5571833, "material": "", "question": "全民阅读事业没有最好,只有更好。在提升公共文化服务水平这条漫漫长路上,我们还要一如既往地花大功夫、下大力气。氤氲书香浸润全民阅读,________文明气质。________浓厚读书氛围,各地图书馆“一直在路上”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 培养 塑造\nB. 涵养 营造\nC. 滋生 制造\nD. 滋润 营建", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 4117, "human_acc": 92.5674034491, "source": "2023下半年省考第三季行测模考大赛(陕西卷)第29题", "difficulty": 3, "formulas": 0}, {"id": 5428299, "material": "", "question": "大众所讨论的要不要取消公摊面积,焦点是讨论要不要把公摊面积________商品房销售的计价范畴。由于公摊面积计算复杂、不透明,已成为开发商牟利的工具,常常在房屋交易中引发________。尤其是在缺乏明确标准的情况下,很容易导致公摊面积________增加,出现同等建筑面积的房屋实际使用面积相差悬殊的情况。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 植入 纠纷 混乱\nB. 计入 冲突 自由\nC. 纳入 矛盾 无序\nD. 介入 争议 随意", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 97343, "human_acc": 77.1005619305, "source": "2023上半年省考第一季行测模考大赛(陕西卷)第40题", "difficulty": 4, "formulas": 0}, {"id": 3973335, "material": "", "question": "说到底,社会性别观念的进步,靠的不是东风与西风的缠斗,而是在具体而微的生活细节中,一点点________男性和女性的相同和差异之处、家庭和自我之间的融合与边界所在,从中识别出最具有__________的议题,例如扶助困难群体、保障女童教育、纠正就业歧视、完善养老体系等等,通过社会基底的改善来逐步________观念的变迁。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 廓清 社会性 带动\nB. 研究 阶级性 助推\nC. 分析 讨论性 熏染\nD. 梳理 公共性 引导", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 151467, "human_acc": 42.8258300488, "source": "2021下半年省考第十八季行测模考大赛(四川卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 5077514, "material": "", "question": "高校为了更好地管理各个学院分区,会选择修建围墙或限制外人进入,尤其是在电子设备更新升级以后,24小时全方位监控不仅让校外人士心有________,就连校内学生也不敢随意闯入禁区。当然,并非所有的大学都会因为有无围墙而饱受各方意见________。作为国内顶尖的军事院校,国防科技大学不仅有围墙和校门,甚至戒备森严,几乎不开放参观业务,但却无一人________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不甘 指导 反对\nB. 顾虑 指责 违反\nC. 愤懑 指示 违抗\nD. 芥蒂 指摘 反驳", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 12709, "human_acc": 54.3001022897, "source": "2022下半年省考第一季行测模考大赛(青海卷)第39题", "difficulty": 6, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5740131, "material": "", "question": "雪不常有,好在古人洋洋洒洒的文字,为我们留下了无限的想象空间。毫无疑问,古人是爱雪的,为雪起的别称,可谓____________。如六花、琼华、柳絮、梅片、瑞叶、碎米、银粟、飞花······其中,最让人感觉____________的,是雪在岭南的别名——犬狂。此名的由来,应该归功于柳宗元:“大雪逾岭,被南越中数州,州中之犬,皆仓黄吠噬,狂走者累日。”\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 别具一格 荡气回肠\nB. 五花八门 荒诞不经\nC. 独出机杼 脑洞大开\nD. 耳目一新 匪夷所思", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 129943, "human_acc": 35.6579423286, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第69题", "difficulty": 7, "formulas": 0, "history": [{"id": 49575, "material": "", "question": "前些年翻看先生的这本书时,尽管自己对民国话题有着欲说还休的浓厚兴味,对这本话语剪辑独出心裁的编排方式下潜藏的___________常常默契会心,但读完仍是感到__________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 至理名言 戛然而止\nB. 妙言要道 耳目一新\nC. 不经之谈 百读不厌\nD. 微言大义 意犹未尽", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 2463671, "human_acc": 66.1881801588, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第49题", "difficulty": 5, "formulas": 0}, {"id": 5651825, "material": "", "question": "企业信用风险分类管理,是基于各类信用风险信息对企业违法失信的可能性进行研判,推进实施企业信用风险分类管理。对失信企业或处于高风险等级企业,实行严格监管,有针对性地大幅提高抽查比例和频次,必要时主动实施现场检查,做到“____________”。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 司空见惯\nB. 潜移默化\nC. 遍地开花\nD. 无处不在", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 1843, "human_acc": 57.8947368421, "source": "2023下半年省考第十二季行测模考大赛(青海卷)第21题", "difficulty": 6, "formulas": 0}, {"id": 5144199, "material": "", "question": "在治理与保护生态环境工作中,不作为、懒作为、假整改等现象____________。比如,有些地方忽视全流域保护的长远生态意义,“边开发边审批、边破坏边治理”;有些地方“不督察不动弹”,挺过上级排查就默认“过关”;还有些地方政商“亲清不分”,存在复杂的利益关系。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蔚然成风\nB. 屡见不鲜\nC. 发人深省\nD. 甚嚣尘上", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 73872, "human_acc": 80.5041152263, "source": "2023年国考第三十季行测模考大赛(地市级)第21题", "difficulty": 4, "formulas": 0}, {"id": 3826955, "material": "", "question": "《觉醒年代》堪称经典的是对人物形象的塑造,既有晚清遗老,也有在近现代中华文化史上留下____________的诸多人物。除了对陈独秀、李大钊、蔡元培、胡适等人物的____________外,其他人物虽寥寥数笔却极为传神,就连跟随辜鸿铭的两个封建忠仆的特点也刻画得____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 吉光片羽 字斟句酌 活灵活现\nB. 雪泥鸿爪 精雕细琢 入木三分\nC. 丰功伟绩 鸿篇巨制 惟妙惟肖\nD. 浓墨重彩 长篇大论 栩栩如生", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 112993, "human_acc": 43.1814360182, "source": "2021下半年省考第十五季行测模考大赛(陕西卷)第35题", "difficulty": 6, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4918405, "material": "", "question": "①从文字书信出现时算起,中国的书信文化已有2000多年的历史\n\n②今天,当我们重读杜甫的“烽火连三月,家书抵万金”,张籍的“欲作家书意万重”时,依然可以窥见书信在历代人们情感交流中的重要地位\n\n③书信文化是中国传统文化的一个重要组成部分\n\n④传统的书信,浓缩了人们对历史的记忆,也保留了我国传统文化的“原生态”味道\n\n⑤在中国广为流传的成语典故中,书信文化也留下了深深的印记,如鱼传尺素、鸿雁传书等,不一而足\n\n⑥它是富有神韵的中华优秀文化的载体,是中华悠久文明的历史见证\n\n将以上6个句子重新排序,语序正确的是:", "type": "单选题", "options": "A. ①③④②⑥⑤\nB. ②④⑥①⑤③\nC. ③①⑤②④⑥\nD. ④⑥①③⑤②", "choice": "C", "keypoints": "首句特征", "most_wrong": "D", "human_count": 15406, "human_acc": 71.3618070881, "source": "2023年国考第十八季行测模考大赛(地市级)第58题", "difficulty": 4, "formulas": 0, "history": [{"id": 15087, "material": "", "question": "①无论一个人在哪儿,只要他在一扇关着的门的后面,他就能使自己不受拘束。\n\n②没有门的屋子不是屋子,而是走廊。\n\n③在关着的门内,头脑的工作最为有效。\n\n④人不是在一起放牧的马群。\n\n⑤门是隐秘、回避的象征,是心灵躲进极乐的静谧或悲伤的秘密搏斗的象征。", "type": "单选题", "options": "A. ②①③④⑤\nB. ④①③②⑤\nC. ①③④⑤②\nD. ⑤②①③④", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 7175, "human_acc": 43.2891986063, "source": "2008年重庆市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 2271375, "material": "", "question": "①土地流转应该是一个水到渠成的过程,并不是越快越好。\n\n②要稳妥审慎推进,政府要充当好“向导”和“服务”的角色。\n\n③因此,农村土地问题一直是社会各界关注的热点。\n\n④土地是农民最基本的生产资料,也是农民最基本的生活保障。\n\n⑤警惕农村土地流转中“越俎代庖”。\n\n⑥土地流转不流转,要什么价格,流转多长时间,都应该由农民说了算。\n\n上述语句的顺序排列为:", "type": "单选题", "options": "A. ①③②④⑤⑥\nB. ⑥④②③①⑤\nC. ④③①⑤②⑥\nD. ⑤④③①②⑥", "choice": "C", "keypoints": "首句特征", "most_wrong": "D", "human_count": 983, "human_acc": 85.2492370295, "source": "2015年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第45题", "difficulty": 3, "formulas": 0}, {"id": 1797870, "material": "", "question": "①最早的单质碘便是法国人从海藻中发现的,海藻也是最早的碘生产原料 \n\n②我国大部分地区都缺碘,碘不足可能会引起甲状腺肿病和地方性克汀病 \n\n③近年来,随着人们对食品纯天然的追求,海藻碘盐越来越受到欢迎 \n\n④碘在自然界中比较稀少,但是海洋中的藻类却有较高的含碘量 \n\n⑤碘是人体必需的微量元素之一,有“智力元素”之称 \n\n⑥因此从1995年起,我国开始实施食盐强制加碘 \n\n将以上六个句子重新排列,语序正确的是:(  )", "type": "单选题", "options": "A. ②⑤⑥③①④\nB. ③①④⑤②⑥\nC. ④③①⑤⑥②\nD. ⑤②⑥④①③", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 1541637, "human_acc": 73.2556367031, "source": "2016年423联考《行测》题(贵州卷)第43题", "difficulty": 5, "formulas": 0}, {"id": 163351, "material": "", "question": "①经调查,失读症在西方人中比较多见,而在中国人极其少见\n\n②让思考者先学习汉语,再将语言材料用英文和汉字分两边认读,丧失的英文阅读能力竟然得到了部分恢复\n\n③失读症指人因大脑局部受到损伤而丧失文字阅读能力\n\n④根据文字认知的特点,西方发明了一种奇特的失读症治疗法\n\n⑤所以使用汉字的人因局部脑损伤而导致失读的可能性也就大大减少了\n\n⑥其原因就在于汉字的认知是左右脑并用,而非只有左脑在单独发挥作用\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①②⑥③⑤④\nB. ②③⑤④⑥①\nC. ③①⑥⑤④②\nD. ④②⑥③①⑤", "choice": "C", "keypoints": "首句特征", "most_wrong": "D", "human_count": 511670, "human_acc": 91.3885903023, "source": "2013年四川公务员录用考试《行测》题(下半年)第39题", "difficulty": 5, "formulas": 0}, {"id": 5187733, "material": "", "question": "下列几个句子按顺序排列,语意最连贯的是:\n\n①原始设计是一台1200千瓦的活塞发动机,高压性能很差,故障很多\n\n②在运输、救援、反潜、观光、攻击、侦察、医疗救援等方面,直升机应用广泛\n\n③虽然如此,有还是比没有强太多,我国生产了500多架,应用于军民各个方面,直5直升机在自卫反击战时用于运输受伤士兵,几乎降低了90%的死亡率\n\n④我国在1958年引进苏联米4直升机,仿制后改称直5直升机,虽然仿制成功了,但是质量很差,非常不可靠\n\n⑤直升机是重要的交通运输工具,可以在任意地点垂直起飞,任意地点垂直着陆", "type": "单选题", "options": "A. ②⑤①④③\nB. ②④③①⑤\nC. ⑤④①③②\nD. ⑤②④①③", "choice": "D", "keypoints": "首句特征", "most_wrong": "C", "human_count": 5207, "human_acc": 84.0215095064, "source": "2022下半年省考第六季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"]]}, {"id": 5320758, "material": "", "question": "《张卫国的夏天》这部戏________汇聚着各种无奈的中年危机,________没有夸大这份焦虑,这_________一种积极价值观的传递,________一种心理按摩。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不仅 还 是 更是\nB. 虽然 但是 既是 也是\nC. 不仅 还 既是 也是\nD. 虽然 但是 不是 而是", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "D", "human_count": 2108, "human_acc": 89.9430740038, "source": "2022下半年省考第十四季行测模考大赛(深圳卷)第64题", "difficulty": 3, "formulas": 0, "history": [{"id": 5341405, "material": "", "question": "我们来比较一下中西方关于艺术的话语形式,而非内容、思想。以康德或黑格尔的著作为普遍典型的西方方法,是高度分析性的,同时也是非常系统的,创造了一种复杂的思想体系。这无疑是它的长处,________考虑到它有时弯弯绕绕、难以消化的语言,这也是它的弱点。________,中国的话语是非系统的、暗示性的,有时还是诗意的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 或 反之\nB. 既 而且\nC. 但 相反\nD. 可 因为", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "D", "human_count": 13664, "human_acc": 91.525175644, "source": "2022下半年省考第十六季行测模考大赛(广东县级卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 4330491, "material": "", "question": "春节防疫要做到科学精准,就必须准确把握客观实际,做到对症下药、靶向治疗。应该看到,________今年很多人选择就地过年,________春节期间人员流动规模依然较大。________,春节的很多节俗都可能造成人员聚集,________是在农村地区,各种聚集性活动会随节日来临而增多,这些都会增加疫情传播的风险。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如果 那么 甚至 特别\nB. 尽管 但是 同时 尤其\nC. 由于 所以 而且 反而\nD. 虽然 但是 或者 以致", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "A", "human_count": 8746, "human_acc": 96.7528012806, "source": "2021下半年省考第二十三季行测模考大赛(广东乡镇卷)第5题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 2524936, "material": "", "question": "甲、乙、丙三人站在某环形跑道的同一点。甲、乙两人同时出发反向而行,5秒后丙沿甲出发的方向进行追及,再过20秒后,甲、乙、丙三人恰好同时相遇。此时甲跑过的路程比乙多$\\frac{1}{3}$,若乙立即调转方向,速度保持不变,问再过多长时间三人再次相遇?", "type": "单选题", "options": "A. 2分55秒\nB. 3分05秒\nC. 4分45秒\nD. 5分50秒", "choice": "A", "keypoints": "周期相遇问题;相遇追及", "most_wrong": "C", "human_count": 240312, "human_acc": 11.2487100103, "source": "2020年上半年省考第二十六季行测模考大赛(浙江卷)第60题", "difficulty": 7, "formulas": 1, "history": [{"id": 2525198, "material": "", "question": "甲、乙、丙三人站在某环形跑道的同一点。甲、乙两人同时出发反向而行,5秒后丙沿甲出发的方向进行追及,再过20秒后,甲、乙、丙三人恰好同时相遇。此时甲跑过的路程比乙多$\\frac{1}{3}$,若乙立即调转方向,速度保持不变,问再过多长时间三人再次相遇?", "type": "单选题", "options": "A. 2分55秒\nB. 3分05秒\nC. 3分55秒\nD. 4分05秒\nE. 4分45秒\nF. 5分05秒\nG. 5分50秒\nH. 6分05秒", "choice": "A", "keypoints": "周期相遇问题;相遇追及", "most_wrong": "C", "human_count": 7084, "human_acc": 7.8204404291, "source": "2020年上半年省考第二十六季行测模考大赛(陕西卷)第120题", "difficulty": 7, "formulas": 1}, {"id": 6025, "material": "", "question": "有一个电子钟,每走8分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是几点钟:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "周期相遇问题", "most_wrong": "C", "human_count": 28602, "human_acc": 74.2011048178, "source": "2008年云南省公务员录用考试《行测》题第9题", "difficulty": 4, "formulas": 0}, {"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 2270922, "material": "", "question": "有一个电子钟,每走9分钟亮一次灯,每到整点响一次铃。中午12点整,电子钟响铃又亮灯。下一次既响铃又亮灯是:", "type": "单选题", "options": "A. 下午1点\nB. 下午2点\nC. 下午3点\nD. 下午4点", "choice": "C", "keypoints": "周期相遇问题", "most_wrong": "B", "human_count": 3351, "human_acc": 77.4097284393, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第10题", "difficulty": 3, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期相遇问题"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 24341, "material": "", "question": "持之以恒的精神固然可贵,但如果我们所坚持,所固守的是________甚至错误的,那坚持到底的结果只能是一错再错,人生允许____________,敢于放弃不切实际的理想,也是一种生存智慧。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 消极 无功而返\nB. 盲目 知错就改\nC. 反面 偃旗息鼓\nD. 偏颇 改弦易辙", "choice": "D", "keypoints": "混搭填空", "most_wrong": "B", "human_count": 926948, "human_acc": 64.4669388143, "source": "2012年国家公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 43737, "material": "", "question": "在人类历史上,科技发明和人工工程曾导致不少“出人意料”“始料不及”甚至“______”的结果。如果想少出一些这样的事,我们就应该对大自然始终保持一份______,在推广新技术、上马新工程之前多一些研究评估,少一些独断专行。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 事与愿违 敬畏\nB. 事倍功半 谨慎\nC. 针锋相对 尊重\nD. 南辕北辙 克制", "choice": "A", "keypoints": "混搭填空", "most_wrong": "B", "human_count": 1859571, "human_acc": 92.7005744873, "source": "2013年国家公务员录用考试《行测》题第22题", "difficulty": 3, "formulas": 0}, {"id": 2443922, "material": "", "question": "故园的山水间,每逢农历正月,满山遍野地开出杜鹃花,______了山野,恰似燃烧的霞霭弥漫于林海奇峰,至少有万绿丛中千点红那么多,因此,乡里人都叫它映山红。映山红花树灰黄色而柔软纤薄的外层树皮,犹如层层粘贴的纸屑,似用了粘不牢的树脂,用手轻轻一抚就会______地飞起。束状的红花,每朵都象一个红色的小喇叭,而且是五瓣镶嵌的,几十朵聚在一起更显得______。\n\n填入划线部分最恰当的一项是:", "type": "单选题", "options": "A. 染红 纷纷扬扬 红艳妖娆\nB. 开遍 扬扬洒洒 繁花似锦\nC. 布满 纷纷扬扬 烂漫遍野\nD. 浸红 扬扬洒洒 花团锦簇", "choice": "A", "keypoints": "混搭填空", "most_wrong": "D", "human_count": 406247, "human_acc": 77.7940514022, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第8题", "difficulty": 5, "formulas": 0}, {"id": 9519, "material": "", "question": "依次填入下列划横线部分最恰当的一组是:\n\n①英国是一个议会制的君主立宪国家,它的君主是世袭的,但议会并没给他过多的_________,国家的一切决定都要经过漫长的协商。\n\n②据了解,北京市目前拥有家庭装修监理上岗证的监理员只有100多人,即使这个数字再_________,也无法满足众多家庭用户的需求。\n\n③我去过江浙一带,几乎每到一个县,都发现那里的博物馆会有一张登有几个_________几十个中过状元的人的名单表,这真令我瞠目结舌。", "type": "单选题", "options": "A. 权力 翻一翻 以及\nB. 权力 翻一番 甚至\nC. 权利 翻一番 以及\nD. 权利 翻一翻 甚至", "choice": "B", "keypoints": "混搭填空", "most_wrong": "D", "human_count": 52237, "human_acc": 95.0820299788, "source": "2009年河北省公务员录用考试《行测》题第37题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 5665223, "material": "", "question": "药品过期就意味着失效,人一旦服用后,轻则________病情,重则________中毒。", "type": "单选题", "options": "A. 延误 导致\nB. 贻误 至于\nC. 耽搁 甚至\nD. 延宕 致使", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 275, "human_acc": 80.7272727273, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第3题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 14789, "material": "", "question": "毫无疑问,在今日武断批判中医的人中,不乏以“科学”代言人自居者,将各种自己不懂的知识系统一棍子打死,归入__________,这种态度不能不使人怀疑其言论与知识的讨论无关,另有用意。不过,在抗拒这种学霸的同时,我们也不必要陷入相反的__________,坦率地说,身为一个“中医”,我以为目前的中医面临的最大危机不是外来的,而是内在的,中医沦落到今天这个地步,一定程度上可谓是__________。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 邪说 境地 罪有应得\nB. 异端 泥潭 咎由自取\nC. 异己 泥潭 责无旁贷\nD. 异类 困境 作茧自缚", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 149268, "human_acc": 60.9253155398, "source": "2010年浙江省公务员录用考试《行测》题(A类)第5题", "difficulty": 5, "formulas": 0, "history": [{"id": 2136500, "material": "", "question": "在这个经济高速发展的时代,工作________着我们的业余时间。工作与家的关系,不是非得舍弃哪一方才能成全另一方,而是可以兼顾的,我们不能________________,忽略生命中最珍贵的东西,而在未来老去时空留悔恨和遗憾。", "type": "单选题", "options": "A. 占据 三心二意\nB. 消磨 本末倒置\nC. 侵占 半途而废\nD. 蚕食 舍本逐末", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 1150044, "human_acc": 73.8165670183, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第9题", "difficulty": 4, "formulas": 0}, {"id": 4772010, "material": "", "question": "文学批评,需要“积学以储宝,酌理以富才”,博览群书,取精用宏,有开阔的视野和________的洞察力。唯其如此,面对文学作品时,方能独具慧眼,提出自己独到的见解和主张,并能____________,令人信服。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 切实 纲举目张\nB. 精准 举一反三\nC. 敏锐 妙趣横生\nD. 深刻 有理有据", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 406748, "human_acc": 40.8719895365, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第25题", "difficulty": 7, "formulas": 0}, {"id": 4823587, "material": "", "question": "监督检查不能打无准备之仗,不能____________,热热闹闹走过场。只有准备充分,才能精准发现问题线索,提高监督检查质效。不打无准备之仗,既是工作方法,也能________工作作风。对于政治性、政策性极强的纪检监察工作来说,尤为如此。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浅尝辄止 投射\nB. 走马观花 折射\nC. 人浮于事 反映\nD. 蜻蜓点水 揭示", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 363744, "human_acc": 67.5164401337, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 2144494, "material": "", "question": "不少人有这样的阅读经历:偶一日拿起一本书来,竟然一读就________________,超然物外,沉浸书中,数小时流逝而不觉。而那一度浮躁的心气竟然也________下来,有一种难得的静谧,更仿佛有一种沁人心脾的馨香在缭绕。这便是阅读的力量。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 欲罢不能 沉静\nB. 手不释卷 沉稳\nC. 乐此不疲 安宁\nD. 爱不释手 安定", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 1244556, "human_acc": 61.1486345331, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第22题", "difficulty": 5, "formulas": 0}, {"id": 1829, "material": "", "question": "改革开放以来,中国农学会________“献身、创新、求实、协作”的宗旨,始终不渝地坚持以推动农业科技进步、促进农村发展为己任,大力开展学术交流和科技普及,积极____________和举荐人才,为提高广大农民科技素质、加快农业科技进步做出了重要贡献。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 继承 出谋划策\nB. 继承 建言献策\nC. 秉承 建言献策\nD. 秉承 出谋划策", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 47586, "human_acc": 91.3461942588, "source": "2008年黑龙江省公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4661683, "material": "", "question": "立法前评估与立法后评估分别存在于不同的时间段,所评估的内容也有所差异,但实际上,两者之间也未必有不可________的界限。因为立法后评估的结果可能就是下一次立法的预测和________,二者都是为了提高立法质量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 逾越 指导\nB. 飞跃 决定\nC. 跨越 开导\nD. 僭越 参考", "choice": "A", "keypoints": "关联关系-转折关系;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 182622, "human_acc": 64.4626605776, "source": "2021下半年省考第三十九季行测模考大赛(广东乡镇卷)第3题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 1797296, "material": "", "question": "①但实证是手段而不是目的,史学的真正使命是探索社会变迁的内在逻辑与规律,为文明的提升提供借鉴与参考\n\n②清儒章学诚强调“言性命者必究于史”,反对离事而言理,体现了史学在真理探索中的重要作用\n\n③史学是一门科学,其最显著的学术特点是实证\n\n④力图通过对社会关系、社会形态的反思,通过对人和自然关系的反思,总结出有普遍意义的历史结论\n\n⑤真正的史学家从来都将认识人类的命运作为自己全部学术活动的出发点\n\n⑥事实上,高层次的史学活动从来都是思辨性的,充满了理性的睿智\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑥①③⑤④\nB. ②⑤④⑥③①\nC. ③④②⑥①⑤\nD. ③①⑤④②⑥", "choice": "D", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "C", "human_count": 837738, "human_acc": 84.2018626349, "source": "2016年山东省公务员录用考试《行测》题第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 25197, "material": "", "question": "①它们没有超过一千年的家谱\n\n②金鱼是世界上养殖最普遍的宠物鱼类\n\n③不过有一件事是可以确定的\n\n④却没有多少证据证实它们是什么时候被驯养的\n\n⑤只有少数几个国家还没有引进\n\n⑥尽管我们知道金鱼原产于中国\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤③①⑥④\nB. ②⑤③⑥④①\nC. ②⑤⑥④③①\nD. ⑥④③①②⑤", "choice": "C", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 433895, "human_acc": 68.2326369283, "source": "2011年国家公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}, {"id": 20735, "material": "", "question": "①新兴城市也有杂乱的居民大院,但那不是严格意义上的杂院\n\n②居住者不是高官显贵,便是富商大贾\n\n③大杂院是城市的“特产”\n\n④产大杂院的城市得有一把年纪\n\n⑤大杂院是什么时候出现的,没看过有关的考证,猜想大约在晚清之后\n\n⑥晚清之前这些院子就都存在了,但那时不叫大杂院,叫府第或大宅门\n\n将以上6个句子的顺序重新排列,语序正确的是:", "type": "单选题", "options": "A. ③④①⑤⑥②\nB. ③⑤④⑥②①\nC. ⑤⑥②③①④\nD. ⑤③④②⑥①", "choice": "A", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "B", "human_count": 610892, "human_acc": 53.7780818868, "source": "2012年山东省公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 1385877, "material": "", "question": "①员工一般通过深层扮演和表层扮演这两种方式来实现情绪劳动\n\n②情绪劳动是指员工为了给顾客提供更为优质的服务而表达出组织所需情绪的行为\n\n③此时员工的情绪体验并没有改变,改变的只是对其服务对象的情绪表达\n\n④从本质上来说,深层扮演是员工改变自己情绪体验的过程\n\n⑤情绪劳动对组织而言有更多的积极效应,对员工个人来说则消极影响更多\n\n⑥表层扮演是员工通过掩饰、夸大或抑制等方式来调整自己的情绪表达\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②③①④⑥⑤\nB. ②①④⑥③⑤\nC. ⑤②③①④⑥\nD. ⑤①④⑥②③", "choice": "B", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 1424977, "human_acc": 80.8655157241, "source": "2015年425联考《行测》题(贵州卷)第55题", "difficulty": 4, "formulas": 0}, {"id": 3519141, "material": "", "question": "①而那些能够在核心期刊发表论文的作者,确实需具备深厚的理论功底与不凡的学术成就\n\n②不能把学术权力交给期刊的编辑和审稿人,那谁更有资格客观、公正评价一个人的学术水平?智者见智,目前尚无定论\n\n③毋庸置疑,发表论文数量是检验学术能力的一个重要标准\n\n④一个基本的共识是,社会需要构建多元化的学术评价体系。对此,国内顶尖院校也进行了一系列有益的探索与尝试\n\n⑤学术期刊是一种经过同行评审的期刊,展现着学术界的最新动态与成果,具有一定的权威性与专业性\n\n⑥但旗帜鲜明地反对“唯论文论”仍是必要态度\n\n对上述语句排序正确的一项是:", "type": "单选题", "options": "A. ②⑥③⑤①④\nB. ②③⑥①⑤④\nC. ⑤③①④⑥②\nD. ⑤①③⑥②④", "choice": "D", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "C", "human_count": 66390, "human_acc": 71.7803886127, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第44题", "difficulty": 4, "formulas": 0}, {"id": 4100687, "material": "", "question": "①人们将黏土和砂石以一定比例搅拌均匀后,浇筑少量的水,黏土和砂石的比例以及含水量,会直接影响墙体的质量\n\n②夯土建筑是结合现代生土建筑技术的建筑形式,是囊谦地区传统建筑领域普遍采用的建筑形式之一,尤其是寺院和家境较为富有的家庭广泛采用\n\n③打夯时,人们站在木板夹层间一字排开,手持夯锤,配以一定的唱词步调,且歌且舞层层向上夯建\n\n④因此这个工序需要有经验的人专门负责监督\n\n⑤这种劳动与娱乐相结合的劳动形式,能够有效缓解疲劳,增加劳动的趣味性和效率,是藏族劳动文化的一大特点\n\n⑥夯土建筑具有较好的保暖性和隔音效果\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑥①⑤③④\nB. ②⑥①④③⑤\nC. ⑥④⑤②③①\nD. ⑥④②①⑤③", "choice": "B", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 154511, "human_acc": 95.106497272, "source": "2021下半年省考第二十季行测模考大赛(四川卷)第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 1797358, "material": "", "question": "设计师让新的梦想世界有了创建的可能,在这个世界中,商品被视为唾手可得的魔法物品,而不是工厂生产出来的产品。也正是这些设计师们,赋予这些商品流线造型的一体化塑料外壳,将它们各不相同、不规整的零部件隐藏了起来。无数技术复杂的产品被强烈统一的视觉特征转化为艺术品,产品的操作流程也全都被掩盖了,成为一种具有鲜明个性的产品。由于利用模塑制造成型,塑料产品往往呈曲线形态,殊不知竟然因此助长了流线型风格的热潮,并使之成为了现代时尚的同义词。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 设计师利用塑料使产品成为艺术\nB. 时尚和工业化共同催生塑料产品\nC. 产品实用性与审美性应有机结合\nD. 工业化产品需靠设计获得生命力", "choice": "A", "keypoints": "主题词;程度词", "most_wrong": "D", "human_count": 956825, "human_acc": 62.8182792047, "source": "2016年山东省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 2036614, "material": "", "question": "人以食为天,食品安全尤其是粮食安全是根本,在水土资源刚性约束的条件下,种业成为挖掘增产潜力、保障食品安全的关键,它不仅是农业发展的战略产物,也决定着农业发展的水平和竞争力,而且是人类赖以持续生存发展的战略。\n\n这段文字主要说明了:()", "type": "单选题", "options": "A. 种业的重要性\nB. 粮食安全的重要性\nC. 环境保护的重要性\nD. 农业发展的重要性", "choice": "A", "keypoints": "主题词;程度词", "most_wrong": "B", "human_count": 29817, "human_acc": 75.0176074052, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第25题", "difficulty": 4, "formulas": 0}, {"id": 15475, "material": "", "question": "现在的社会是讲竞争实力的社会,要的是真才实学,城市只是一个载体,学生能否学到知识,增强实力,今后能否有大的发展,更重要的是你能否考上一所好的大学,而不是你是否到了一个大城市。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 大学生增强实力才能参与竞争\nB. 现代社会最重要的是竞争实力\nC. 学生考上好大学一定有好的发展\nD. 到大城市并非等于一定要有好的发展", "choice": "A", "keypoints": "主题词;程度词", "most_wrong": "D", "human_count": 77687, "human_acc": 23.5380436881, "source": "2011年江苏省公务员录用考试《行测》题(C类)第1题", "difficulty": 7, "formulas": 0}, {"id": 2036612, "material": "", "question": "如果说中央政府改革是上篇,地方政府改革就是下篇,需要整体构思,通盘考虑、上下贯通,把政府改革的整篇文章做好。地方政府职能转变和机构改革,是党和国家改革开放事业大局的重要内容,也是深化行政体制改革的重要组成部分。\n\n这段文字主要说明了:", "type": "单选题", "options": "A. 取消地方行政审批的重要性\nB. 搞好地方政府改革的重要性\nC. 调整优化机构编制的重要性\nD. 加快政府职能转变的重要性", "choice": "B", "keypoints": "主题词;程度词", "most_wrong": "D", "human_count": 664849, "human_acc": 82.4569187891, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第24题", "difficulty": 5, "formulas": 0}, {"id": 2042430, "material": "", "question": "在日益开放的市场经济活动中,无论是来自城市还是来自农村的市场参与者,都被抛进不断更新的陌生空间中。市场的交易主体、交易行为、交易制度和交易商品,都在日新月异地变化着。尤其是考虑到经济生活信息化和网络化,市场经济的陌生关系就呈现出更为复杂的状态。\n\n这段文字重在说明:", "type": "单选题", "options": "A. 市场经济活动中人们面对的是陌生关系\nB. 市场经济的主要特点就是信息不断更新\nC. 市场经济生活变得越来越信息化网络化\nD. 市场经济使得人与人之间的关系复杂化", "choice": "A", "keypoints": "主题词;程度词", "most_wrong": "D", "human_count": 1238223, "human_acc": 42.4873387104, "source": "2017年江苏省公务员录用考试《行测》题(A类)第22题", "difficulty": 6, "formulas": 0}, {"id": 2045690, "material": "", "question": "文化是一个国家、一个民族的灵魂。历史和现实都表明,一个抛弃了或者背叛了自己历史文化的民族,不仅不可能发展起来,而且很可能上演一幕幕历史悲剧。文化自信,是更基础、更广泛、更深厚的自信,是更基本、更深沉、更持久的力量。坚定文化自信,是事关国运兴衰、事关文化安全、事关民族精神独立性的大问题。没有文化自信,不可能写出有骨气、有个性、有神采的作品。\n\n这段文字主要说明了:", "type": "单选题", "options": "A. 文化自信的内涵\nB. 文化自信的重要性\nC. 文化与国运兴衰的关系\nD. 优秀作品必须体现文化自信", "choice": "B", "keypoints": "主题词;程度词", "most_wrong": "D", "human_count": 773962, "human_acc": 92.8179936483, "source": "2017年广州市公务员录用考试《行测》题(单考区卷)第12题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 1786986, "material": "", "question": "法律作为上层建筑,其产生和发展都要受到经济基础的决定和社会发展的______,因此依法治国也不可能______、______地推进,必然要受到经济、政治、社会、文化、科技等各方面因素的影响。\n\n依次填入画横线处的词语,最恰当的一组是(    )。", "type": "单选题", "options": "A. 牵绊,孤独,静态\nB. 约束,独立,静止\nC. 限制,单独,片面\nD. 制约,孤立,静止", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 423849, "human_acc": 41.5128972818, "source": "2015年广州市公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 1791764, "material": "", "question": "由于知识产权的保护客体主要是智力劳动成果,所以知识产权在保护金融创新方面具有________的优越性,对金融创新产品的知识产权保护主要包括商标权,著作权,专利权以及商业秘密保护等方式的综合________。\n\n依次填入划横线处最恰当的一项是(    )。", "type": "单选题", "options": "A. 天生 采用\nB. 天然 应用\nC. 无比 运用\nD. 无穷 利用", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 559008, "human_acc": 75.7590231267, "source": "2016年江苏省公务员录用考试《行测》题(C类)第52题", "difficulty": 5, "formulas": 0}, {"id": 826101, "material": "", "question": "黄土高原的形成和青藏高原的隆升,_____了侵蚀和风化的速度,使得高原周围的低洼地区____了大量卵石、沙子和更细的颗粒。每当大风骤起,西部地区便____飞沙走石、尘土弥漫的景象。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 提升 沉淀 产生\nB. 加快 堆积 形成\nC. 提高 聚集 呈现\nD. 加剧 散落 造成", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 718269, "human_acc": 79.5108796287, "source": "2014年四川省公务员录用考试《行测》题(下半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 1365043, "material": "", "question": "(1)我还记得傅先生蹲在_______的牛舍中挤牛奶。(2)翅膀长在你的肩上,太在乎别人对于飞行姿势的______,所以你飞不起来。(3)几米之遥,一盏昏黄的台灯,淡化在_____的夜色中。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 阴暗 评价 无尽\nB. 昏暗 批评 无垠\nC. 阴暗 批评 无尽\nD. 昏暗 评价 无垠", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 574754, "human_acc": 9.3015446608, "source": "2015年天津市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 5430325, "material": "", "question": "电影技术的运用,逐渐由“炫目”向为视听表现和角色叙事服务转变。大量高质量特效的运用,使不少国产电影的视觉________达到世界顶尖水平。而动作捕捉技术和人工智能深度学习技术的应用,直接________了电影的叙事能力,使电影的艺术表达更为生动和丰富。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 体验 强化\nB. 呈现 提升\nC. 冲击 拓展\nD. 享受 升华", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 819179, "human_acc": 59.5880753779, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第56题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 202391, "material": "", "question": "依次填入下列各句横线上的词语,最恰当的一组是:\n\n①不说你无用,反来怨我,真是________,唯知饮食之徒。\n\n②我半生以来不作________,不取不义之财,有何罪过,要遭此报应呢?\n\n③她自恃年轻漂亮,态度傲慢,________,目中无人,是一朵带刺的玫瑰。", "type": "单选题", "options": "A. 饭囊衣架 非分之想 孤高自许\nB. 饭糗茹草 非池中物 孤芳自赏\nC. 饭囊衣架 非分之想 孤芳自赏\nD. 饭糗茹草 非池中物 孤高自许", "choice": "C", "keypoints": "关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 589614, "human_acc": 29.2538847449, "source": "2013年深圳市公务员录用考试《行测》题第61题", "difficulty": 5, "formulas": 0, "history": [{"id": 5101711, "material": "", "question": "儿童多动症的注意力缺陷症状延续到成人期,表现为做事拖延,时间管理能力差,组织性差,效率低等;而儿童期的多动或冲动症状,也常常以“____________”的形式表现出来,比如计划多却难以坚持,频繁辞职更换工作,情绪控制能力差等。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 顾此失彼\nB. 似是而非\nC. 莫名其妙\nD. 改头换面", "choice": "D", "keypoints": "关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 1970486, "human_acc": 39.9335493883, "source": "2022年河南省公务员录用考试《行测》题(网友回忆版)第2题", "difficulty": 4, "formulas": 0}, {"id": 5539924, "material": "", "question": "践行真正的多边主义要合作共赢,不要零和博弈;要公平正义,不要霸凌霸道;要聚焦行动,不要____________;要尊重多样,不要____________。这是国际社会的普遍愿望,也符合当今世界的潮流。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 坐而论道 唯我独尊\nB. 徒托空言 以邻为壑\nC. 闭门造车 独善其身\nD. 纸上谈兵 兄弟阋墙", "choice": "A", "keypoints": "关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41399, "human_acc": 78.9994927414, "source": "2023上半年省考第十三季行测模考大赛(四川卷)第15题", "difficulty": 4, "formulas": 0}, {"id": 4697553, "material": "", "question": "在几千年历史长河中,中国人民始终辛勤劳作、发明创造,今天,中国人民的创造精神正在前所未有地迸发出来,推动我国日新月异向前发展;始终____________、自强不息,今天,中国人民拥有的一切,浸透着中国人的辛勤汗水,蕴涵着中国人的巨大牺牲;始终团结一心、____________,今天,中国取得的令世人瞩目的发展成就,更是全国各族人民____________、同心同向努力的结果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推陈出新 众志成城 风雨兼程\nB. 与时俱进 休戚与共 步调一致\nC. 辉光日新 守望相助 同室操戈\nD. 革故鼎新 同舟共济 同心同德", "choice": "D", "keypoints": "关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 187574, "human_acc": 50.6349494066, "source": "2022上半年省考第五季行测模考大赛(陕西卷)第40题", "difficulty": 6, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5738178, "material": "", "question": "深山里的孩子,这样一个极少有人关切的群体,不仅自身逐步接受和享受了诗歌的________,从而变得更为坚强和成熟。只有在此刻,我们才会忘却他们还只是孩子的事实,从心灵深处和他们________、拥抱。换言之,诗歌,让我们彼此放下地域和人生经历的__________,极力走近,共同取暖,勉力同行。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 滋养 呼应 随机性\nB. 润泽 共振 差异性\nC. 浸润 融合 多元性\nD. 滋补 共情 独特性", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 7656, "human_acc": 89.3808777429, "source": "2023下半年省考第二十季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 2737545, "material": "", "question": "大数据技术所提供的________的观察视角,是人脑难以企及的。通过多维感知设备收集到的海量战场数据,大数据技术可从中挖掘出战场敌我态势情报,使决策者能够________掌握敌方作战行动趋势,帮助其制订最佳行动方案。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独特 准确\nB. 全面 清晰\nC. 广阔 迅速\nD. 丰富 灵活", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 162939, "human_acc": 39.9517610885, "source": "2021上半年省考第二季行测模考大赛(四川卷)第16题", "difficulty": 7, "formulas": 0}, {"id": 2392033, "material": "", "question": "近年来,国家有关部门加大了对非法盗版活动的打击力度,通过建立群众举报、定期检查等制度,有效________了非法盗版活动的势头。随着市场法律环境的日趋________,这种广大人民群众深恶痛绝的社会丑恶现象,终究会被根除。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 制止 完美\nB. 遏止 完备\nC. 扼制 完整\nD. 遏制 完善", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 26709, "human_acc": 90.11569134, "source": "2016年黑龙江省公务员录用考试《行测》题(县乡卷)第40题", "difficulty": 4, "formulas": 0}, {"id": 2678806, "material": "", "question": "传统动画电影观影模式是人坐在座位上观看屏幕播放的内容,屏幕播放什么观众就看什么,是________接受。互动动画电影观影模式完全________了传统观影模式,如利用VR、可穿戴设备等,观众会站在电影里,周边360度都是场景,使观众感觉就是影片当中的一个角色,“现场交流”是互动动画电影的极大优势。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 消极 摆脱\nB. 被动 颠覆\nC. 全盘 取代\nD. 有效 扭转", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 39993, "human_acc": 98.187182757, "source": "2020年下半年省考第十一季行测模考大赛(新疆卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 5564424, "material": "", "question": "当前,互联网进入大数据、人工智能的发展阶段,数字生活几乎可以说已被算法________。打开手机视频APP,都是你“爱看”的短视频,购物APP上,都是你“想买”的东西······算法通过为用户量身打造、主动推荐信息服务,使得个人获得了需求被满足的愉悦,商家更________地触达到了客户,拼团、直播带货更加高效,确确实实为经济社会发展等方面注入了新动能。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 裹挟 精确\nB. 操控 从容\nC. 主导 精准\nD. 引领 专业", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 3819, "human_acc": 84.5509295627, "source": "2023下半年省考第二季行测模考大赛(陕西卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 5509849, "material": "", "question": "少数民族传统技艺是中华民族文化重要的组成部分之一,是各族人民劳动与智慧创造的结晶,更是铸牢中华民族共同体意识的重要________。然而,随着经济社会的不断发展,尤其是现代生产生活方式,给少数民族文化传承保护和发展工作带来了不少的________,许多民间技艺面临着核心内容流失严重、技艺失传,民族特色减弱,传承人才断层等________。\n\n填入画横线部分最恰当的一组是:", "type": "单选题", "options": "A. 标识 遗憾 风险\nB. 载体 冲击 挑战\nC. 路径 牵绊 缺失\nD. 媒介 疑惑 困扰", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 975907, "human_acc": 90.046797492, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第32题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5188071, "material": "", "question": "有人将教育比作“静待花开的过程”,也有人说这是“带着蜗牛去散步”,侧重点不同,但无不说明教育不应是一种____________行为。只有更丰富、更实际、更高质量的综合教育,才能给予孩子们自由生长的环境,减少家长们无谓的焦虑与负担。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 本末倒置\nB. 急功近利\nC. 揠苗助长\nD. 潜移默化", "choice": "B", "keypoints": "关联关系-转折关系;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 144283, "human_acc": 53.7506151106, "source": "2022下半年省考第六季行测模考大赛(浙江A卷)第22题", "difficulty": 6, "formulas": 0, "history": [{"id": 2247249, "material": "", "question": "许多家长为了让孩子感受一下世界名校的氛围,趁暑假到海外转一圈,本______,然而,在对海外游学的目的和内容缺乏成熟考虑的情况下,不顾自身条件盲目跟风,这就值得商榷了。有家长抱怨,“花了钱心疼得不踏实,不花钱对不起孩子更不踏实”,显然这是因缺乏正确认识而______的结果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无可厚非 随波逐流\nB. 言之有理 照猫画虎\nC. 顺理成章 亦步亦趋\nD. 合情合理 东施效颦", "choice": "A", "keypoints": "关联关系-转折关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 23209, "human_acc": 83.7002886811, "source": "2018年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第27题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5101824, "material": "", "question": "音乐是什么?也许永远无法得出________的答案,但是这个问题本身就有不可忽视的哲学分量。也许“做音乐”回应了人类比创造更________的需求:交流。声音向另一个人证明了我们的存在,转变成人际互动的形式,就是歌唱。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 确切 深刻\nB. 公认 普遍\nC. 精确 基本\nD. 公允 迫切", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 1875837, "human_acc": 41.8359910802, "source": "2022年甘肃公务员录用考试《行测》题(网友回忆版)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 4653983, "material": "", "question": "魔鬼鱼为了适应底栖生活,它们的胸鳍扩张,直至与躯干愈合,逐渐________为身体极度扁平的扇形或圆形,多潜伏于具有泥沙底质的平坦海底,以捕食小型鱼类与甲壳类为生。然而科学家发现,漫游憨鱼有着和魔鬼鱼________的外鳃孔,位于头甲的腹面。这说明,漫游憨鱼可能也漫游于具泥沙质基底的平坦海底,以________海底有机碎屑为生。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 演变 类似 滤食\nB. 进化 迥异 获取\nC. 衍生 相近 汲取\nD. 蜕变 悬殊 捕捞", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 73516, "human_acc": 88.7765928505, "source": "2021下半年省考第三十八季行测模考大赛(四川卷)第24题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4654299, "material": "", "question": "某单位举办庆祝建党100周年文艺晚会,设置了朗诵表演、歌舞表演和话剧表演三类节目。参加话剧表演的有15人,参加歌舞表演和朗诵表演的人数之比为7:6,只参加两类节目的人数是总人数的$\\frac{1}{4}$,三类节目都参加的有2人。假设所有人都参加了晚会节目,则该单位可能有多少人?", "type": "单选题", "options": "A. 43\nB. 38\nC. 32\nD. 40", "choice": "D", "keypoints": "普通不定方程;三集合", "most_wrong": "C", "human_count": 201256, "human_acc": 27.2051516477, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第31题", "difficulty": 7, "formulas": 1, "history": [{"id": 1751786, "material": "", "question": "设a,b均为正整数,若11a+7b=84,则a的值为(  )。", "type": "单选题", "options": "A. 4\nB. 5\nC. 7\nD. 8", "choice": "C", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 221061, "human_acc": 90.0235681554, "source": "2015年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 3, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 1751344, "material": "", "question": "设a、b均为正整数,且有等式11a+7b=132成立,则a的值为:", "type": "单选题", "options": "A. 6\nB. 4\nC. 3\nD. 5", "choice": "D", "keypoints": "普通不定方程", "most_wrong": "B", "human_count": 321773, "human_acc": 81.4857057615, "source": "2015年江苏省公务员录用考试《行测》题(B类)第36题", "difficulty": 5, "formulas": 0}, {"id": 5115455, "material": "", "question": "某班级有学生30人,自愿参加田径运动会,报名长跑的有3人,报名短跑的有8人,报名跳高的有5人,且有18人没有报名任何项目,则只报名两个项目的最多有多少人?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 86911, "human_acc": 34.7033171865, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 18309, "material": "", "question": "一个质数的3倍与另一个质数的2倍之和等于20,那么这两个质数的和是:", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "A", "keypoints": "普通不定方程;和差倍比问题", "most_wrong": "C", "human_count": 200614, "human_acc": 72.4650323507, "source": "2011年吉林省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "普通不定方程"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 2730953, "material": "", "question": "将下列选项中的词语依次填入句子横线处,最恰当的一组是:\n\n(1)在金大的四年中,程先生如饥似渴地吸取营养,学问大进,他在晚年深情回忆:“在大学四年中,诸位老师各有专长,已使我____________,枵腹日充。”\n\n(2)张旭诗云:“山无物态弄春晖,莫为轻阴便拟归”,可见在日常生活,斜风细雨也可能成为____________的借口。", "type": "单选题", "options": "A. 耳濡目染、裹足不前\nB. 通达谙练、停滞不前\nC. 耳濡目染、停滞不前\nD. 通达谙练、裹足不前", "choice": "A", "keypoints": "词的辨析-感情色彩;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 869414, "human_acc": 28.7676526948, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第56题", "difficulty": 4, "formulas": 0, "history": [{"id": 14909, "material": "", "question": "作为启蒙思想家,他们的思想和言论激烈、出格,乃至“悖于常理”,这都在情理之中,因为思想的创造需要那种“虽千万人,吾往矣”的对抗俗世的气概与意志,所以“__________”并非思想家的缺陷,也绝非衡量思想之深度、广度乃至力度的标准。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 危言耸听\nB. 虚张声势\nC. 夸夸其谈\nD. 豪言壮语", "choice": "A", "keypoints": "词的辨析-感情色彩;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 167788, "human_acc": 41.8885736763, "source": "2010年浙江省公务员录用考试《行测》题(A类)第11题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5063266, "material": "", "question": "甲、乙两人自驾从A地到B地游玩,甲、乙两人单独开到B地分别需要10小时、12小时。为避免疲劳驾驶,按“甲-乙-甲······”的顺序循环开车,每人开2小时。假设两人开车速度始终保持不变,则到达B地后,乙共驾驶了多长时间?(途中休息和换驾驶员的时间忽略不计)", "type": "单选题", "options": "A. 4小时\nB. 6小时\nC. 5小时32分钟\nD. 4小时48分钟", "choice": "D", "keypoints": "周期余数问题;行程问题-其他", "most_wrong": "C", "human_count": 386307, "human_acc": 30.5267572164, "source": "2022上半年省考第二十四季行测模考大赛(北京卷)第72题", "difficulty": 7, "formulas": 0, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 49171, "material": "", "question": "2013年是中国农历蛇年。在本世纪余下年份里,农历是蛇年的年份还有:", "type": "单选题", "options": "A. 5个\nB. 6个\nC. 7个\nD. 8个", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 397220, "human_acc": 75.9863551684, "source": "2013年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 2724701, "material": "", "question": "某科研组对人们日常食用味精的量和他们的皮肤情况做了统计,发现爱吃味精的人脸部容易产生色斑。出现这种情况的原因可能在于味精中含有大量的氯酸钠成分,这种成分会导致身体中的血液与锌相结合,影响身体对于锌的吸收,影响身体抵抗力,使皮肤的胶原蛋白流失速度加快,易形成色素沉着,使皮肤变得暗沉。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 不少经常食用味精的人产生了对味精的依赖性\nB. 爱吃味精的人很喜欢护肤,如经常敷面膜\nC. 爱吃味精的人经常参加户外活动,经受风吹日晒\nD. 有很多人不吃味精,他们的皮肤非常好", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 162002, "human_acc": 93.3716867693, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第113题", "difficulty": 5, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 4984895, "material": "", "question": "失信行为认定的本意是给失信联合惩戒机制提供目标指引,从而减少失信问题,但由于失信行为概念的模糊、认定标准不统一,产生了失信行为认定泛化的现象。失信行为认定泛化是将失信行为的道德意义和法律意义进行混淆,甚至出现过分扩大,将不属于社会信用领域的问题用社会信用手段进行规制。失信行为认定泛化会异化为部分行政机关的新型权力工具。当失信行为认定泛化的制度被广泛实施时,就会形成制度惯性。这种制度惯性通过泛化失信行为的认定来扩大失信惩戒机制的适用范围。如果监管者过于迷信失信惩戒的作用,则容易形成路径依赖,其本质是一种“懒政”。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 失信行为认定泛化的根本目的\nB. 监管者应当避免形成路径依赖\nC. 失信行为认定泛化的内涵及负面影响\nD. 制度惯性与失信行为认定泛化的关联", "choice": "C", "keypoints": "主题词;关联词-并列", "most_wrong": "B", "human_count": 24497, "human_acc": 77.3523288566, "source": "2023年国考第二十一季行测模考大赛(行政执法类)第57题", "difficulty": 4, "formulas": 0, "history": [{"id": 2034126, "material": "", "question": "英国伦敦大学的一个研究小组对6500名50岁以上的英国老人进行长达7年的跟踪调查后发现,与那些社交活动多姿多彩的人相比,落落寡欢的老人即便自己不以孤独为烦恼,死亡的概率也要高出$26\\%$。\n\n对这一段落概括最准确的是:", "type": "单选题", "options": "A. 交朋友越多越长寿\nB. 孤独是人类的杀手\nC. 性格外向者比内向者长寿\nD. 离群索居者寿命缩短26%", "choice": "B", "keypoints": "主题词;关联词-并列", "most_wrong": "C", "human_count": 312076, "human_acc": 57.3113600533, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第42题", "difficulty": 5, "formulas": 1}, {"id": 5197, "material": "", "question": "自从新文学运动以来,散文一直是文坛的主力,虽然不如诗与小说那么勇于实验而变化多端,却也不像这两种文体那么历经欧美风雨而迷惑于各种主义、各种门派。\n\n这段文字的主要意思是:", "type": "单选题", "options": "A. 散文的发展比较稳健,受外国影响较小\nB. 新文学运动以后,诗与小说受欧美影响很大\nC. 诗与小说不断变化,而且勇于进行新的探索\nD. 新文学运动以后,散文一直占据着文坛的主导地位", "choice": "A", "keypoints": "主题词;关联词-并列", "most_wrong": "D", "human_count": 24505, "human_acc": 71.7608651296, "source": "2009年上海市公务员录用考试《行测》题第44题", "difficulty": 5, "formulas": 0}, {"id": 2295323, "material": "", "question": "对我来说,只有这样的人才是真正的哲学家——他能同世界上所有的人和睦相处;他爱那些不赞同他的思维方式的人。应该以高尚的热情指出人类理智的谬误,但不应带有仇恨。要告诉人,他错了,并且说明他为什么错了;但不要刺伤他的心,不要叫他是疯子。\n\n这段话主要揭示的哲学家品格有:", "type": "单选题", "options": "A. 睿智、友善和宽容\nB. 敏锐、深刻和睿智\nC. 热情、坚守和友善\nD. 深刻、含蓄和思辨", "choice": "A", "keypoints": "主题词;关联词-并列", "most_wrong": "C", "human_count": 23125, "human_acc": 82.6421621622, "source": "2019年上海市公务员录用考试《行测》题(B类)(网友回忆版)第15题", "difficulty": 5, "formulas": 0}, {"id": 10219, "material": "", "question": "虽有秋风秋霜,白菜却茂盛成长。深秋里的成片新绿并不多见。此时,田野百花凋零,白菜仍旧水灵。叶柄宽而肥厚,瓷勺状的叶瓣弯弯的往上翘,在阳光下欢喜地仰着脸,叫人生出希望。白菜的白和南瓜的黄、辣椒的红一样,都是美的极点。\n\n最能概括这段文字的话是:", "type": "单选题", "options": "A. 霜降对植物是一种历练\nB. 家常白菜生成美的极点\nC. 霜打过的白菜有回味的甘甜\nD. 白菜溢出了生活本真的气息", "choice": "D", "keypoints": "主题词;关联词-并列", "most_wrong": "B", "human_count": 36312, "human_acc": 53.5415289711, "source": "2009年山东省公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 1324149, "material": "", "question": "当前意义上的人民福祉已经不同于历史上简单的温饱状态,而是包括极为丰富的内容:既包括人民的权利和尊严,也包括人民的收入和消费,同时也涉及自由、安全、社会保障和精神生活等方面。\n\n这段文字主要说明了:", "type": "单选题", "options": "A. 人民福祉的内涵相比以往有了巨大的变化\nB. 人民已经不仅仅满足于温饱状态了\nC. 人民福祉的含义在历史发展过程中会不断丰富\nD. 人民福祉已经从物质层面向精神层面过渡", "choice": "A", "keypoints": "主题词;关联词-并列", "most_wrong": "C", "human_count": 692545, "human_acc": 48.8584857302, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第13题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"]]}, {"id": 5637672, "material": "", "question": "无论是城市规划还是城市建设,无论是新城区建设还是老城区改造,都要坚持以人民为中心,聚焦人民群众的需求。人口密度大、土地更加稀缺,是城市的客观现实;道路纵横、楼宇林立,是城市生活的现实需要。也因此,出门见绿、开窗是景,对城市居民而言更是加倍的幸福感获得感提升。因地制宜,巧妙利用有限的资源和条件,以城市居民的需求为出发点和落脚点,合理安排城市生产、生活、生态空间,宜业、宜居、宜乐、宜游的良好城市环境正在变为可感可享的现实。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 城市改造应聚焦群众之需\nB. 城市应成为人民的城市\nC. 生态空间决定了民生福祉\nD. 合理规划城市空间布局", "choice": "B", "keypoints": "标题填入题", "most_wrong": "A", "human_count": 48375, "human_acc": 30.5012919897, "source": "2023下半年省考第十一季行测模考大赛(四川卷)第33题", "difficulty": 7, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 4648907, "material": "", "question": "今年市场上____________的中秋月饼不但在馅料、外观上多种多样,而且充满了文化韵味,变成了“有文化的月饼”。我们不否认这些“有文化的月饼”的推出,有市场与经济角度的考虑,确实令人____________。但是也需要注意,再有文化韵味的月饼,最终也还是为了吃,所以月饼产品一定不能光有颜值,光有文化,而产品的口感、卫生、质量却没有保障,那无疑是一种____________的做法。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 五花八门 喜闻乐见 因噎废食\nB. 纷繁芜杂 目不暇接 喧宾夺主\nC. 形形色色 刮目相看 矫枉过正\nD. 琳琅满目 耳目一新 本末倒置", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 72022, "human_acc": 92.7133375913, "source": "2021下半年省考第三十七季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 5415921, "material": "", "question": "众智谋事必明,众力举事必成。当务之急,各地区各部门要将政策____________地落地、落实、落细,帮助农民工切实享受到政策红利,提高农民工的再就业能力,让每个人都有通过勤奋劳动实现自身发展的机会,他们的生活一定会芝麻开花节节高。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 彻头彻尾\nB. 不折不扣\nC. 一丝不苟\nD. 不遗余力", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 179160, "human_acc": 67.6038178165, "source": "2022下半年省考第二十三季行测模考大赛(新疆兵团卷)第22题", "difficulty": 4, "formulas": 0}, {"id": 3968427, "material": "", "question": "盗版图书已成出版行业毒瘤,面对这种现象,印刷企业要守好职业与法规底线,不与盗版厂家____________,否则,极可能承担盗版的连带责任。消费者同样不能____________。应加大版权保护意识,自觉抵制盗版图书,不因其价格便宜就对侵犯知识产权行为予以妥协,让盗版图书再无市场。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 同气连枝 作壁上观\nB. 同舟共济 袖手旁观\nC. 同流合污 置身事外\nD. 狼狈为奸 明哲保身", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 10332, "human_acc": 96.089818041, "source": "2021下半年省考第十八季行测模考大赛(西藏卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 4563182, "material": "", "question": "所谓“天坑”专业,坑在哪里?有专家____________地指出,“坑”是因为跟生化环材一样辛苦的专业拿的钱比生化环材多得多,跟生化环材一样穷的专业工作强度比生化环材低得多。被戏称为“天坑”的生化环材只是传统工科专业的一角,随着信息化、数字化的飞速发展,“传统工科被边缘化”的说法____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 高屋建瓴 愈演愈烈\nB. 一针见血 甚嚣尘上\nC. 直言不讳 根深蒂固\nD. 高谈弘论 变本加厉", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 292356, "human_acc": 82.52028349, "source": "2021下半年省考第三十二季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 3968441, "material": "", "question": "律师办理案件靠的是证据而决不是当事人的陈述,即律师需要注重证据,对每一个接手的案件,首先要从最坏处着想。然而实践中,有些律师总是____________,对自己过分自信,满脑子都是无罪的理由而容不下对不利因素的考量。这种认识不仅蒙蔽了自己也蒙蔽了当事人,结果往往会____________。此时的失败也在意料之中了。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 好大喜功 过犹不及\nB. 盲目乐观 适得其反\nC. 胸有成竹 事倍功半\nD. 刚愎自用 事半功倍", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 10337, "human_acc": 90.4034052433, "source": "2021下半年省考第十八季行测模考大赛(西藏卷)第2题", "difficulty": 3, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 455267, "material": "", "question": "虽然政府与企业、家庭一起共同参与国民经济,但其行为方式和目的______。企业和居民是以收益最大化为前提和目标。而政府的经济活动一方面不能______收益和成本,另一方面又必须以全社会的公正和公平为前提。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大相径庭 忽视\nB. 截然相反 忽略\nC. 不尽相同 无视\nD. 泾渭分明 轻视", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;混搭填空", "most_wrong": "C", "human_count": 670872, "human_acc": 59.1786510691, "source": "2014年浙江省公务员录用考试《行测》题(B类)第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 2444752, "material": "", "question": "儒家贤能政治从人性本善出发,试图以人格“修齐”的方式实现道德政治,但往往因人性的善变而____________;而民主政治以人性本恶为立论前提,特别强调权力来源的正当性、权力行使过程的外部制约性,将法度、制度嵌于个人道德与合理的政治之间,这就使得政治运行及其结果成为一件可以________的事情。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 功败垂成 监督\nB. 力所不及 把控\nC. 不可端倪 预判\nD. 难以名状 干预", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;混搭填空", "most_wrong": "B", "human_count": 675619, "human_acc": 17.1962304198, "source": "2019年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第23题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4718246, "material": "", "question": "尽管至今也没有治愈老年痴呆的办法,但它是可以________的。大量研究表明,建立良好的生活习惯,例如保证充足的睡眠、合理安排饮食、坚持锻炼身体、丰富日常生活,都能降低罹患老年痴呆的风险,甚至________病情的进展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 避免 拖慢\nB. 防范 缓解\nC. 预防 延缓\nD. 克服 延宕", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 336241, "human_acc": 92.0512370591, "source": "2022上半年省考第七季行测模考大赛(广东乡镇卷)第4题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4932737, "material": "", "question": "中书外译的历史就是中外文化的交流史。它随着国家与民族之间的________、互鉴、互利应运而生。20世纪以来,中国对外交流与传播的需求上升,越来越多的国内译者参与到“中译外”的事业中。但是,熟悉翻译的人都知道,由于语言能力和思维方式等因素,中国译者的译文虽然没有错误,但显得有些________。外语和翻译专业的师生也深切体会到,“中译外”的难度远远超过“外译中”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 交流 凝练\nB. 沟通 误差\nC. 互通 生硬\nD. 互促 死板", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 328195, "human_acc": 95.597739149, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第3题", "difficulty": 3, "formulas": 0, "history": [{"id": 2724050, "material": "", "question": "发现与创新的过程,是一个________、论证、反驳、修正和提出新假说的过程。对客观知识的独创性发现,本质上也是一种主观创造的过程,但这种创新绝非完全是________的,必须接受严格的实证检验,必须尊重科学研究的规律。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 定性 臆想\nB. 猜想 臆造\nC. 假设 梦想\nD. 推断 逸想", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 125665, "human_acc": 87.290017109, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 5368939, "material": "", "question": "近年来,“网生”剧动辄宣称点击率破百亿,实则________着各种“注水”玄机,催生出刷播放量、刷互动的黑色产业链。云山雾罩的数据造假,除了________出一派自欺欺人的“数字繁荣”的景象之外,还________出大量粗制滥造的“视听垃圾”。更为严重的是,劣币驱逐良币的市场环境,本身就是对优质内容的________和打压。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 隐藏 呈现 编造 剥夺\nB. 暗藏 营造 炮制 挤兑\nC. 蕴藏 伪造 炒作 限制\nD. 内藏 塑造 催生 排挤", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 3587, "human_acc": 81.2656816281, "source": "2022下半年省考第十八季行测模考大赛(上海卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2621049, "material": "", "question": "西游记播出34年,至今豆瓣评分9.6分。那个年代的剧似乎都有着____________的特质,可以穿越岁月的考验,然而想在现在的剧中挑几部精品其实并不容易,有时堪比____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 历久弥新 大海捞针\nB. 与时俱进 铁树开花\nC. 经久不衰 水中捞月\nD. 推陈出新 雾里看花", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 130304, "human_acc": 82.6528732809, "source": "2021年国考第十三季行测模考大赛(副省级)第23题", "difficulty": 3, "formulas": 0, "history": [{"id": 5539949, "material": "", "question": "考古不仅是在研究遥远的过去,其价值更在于以古鉴今,与社会公众____________ 。今人通过考古研究民族起源、文明发展,并从中获得文明交流、构建人民命运共同体的启示,探究中华文化的根与魂。在考古社会化的过程中,公众会受到一些影视剧、综艺节目、文学作品的影响,将考古同盗墓____________。而实际上考古和盗墓是____________的,一个是科学研究,一个是违法行为。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 唇齿相依 不分轩轾 判若云泥\nB. 同气连枝 相提并论 相去甚远\nC. 紧密相连 等量齐观 大相径庭\nD. 息息相关 混为一谈 截然不同", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 34270, "human_acc": 93.562882988, "source": "2023上半年省考第十三季行测模考大赛(江苏C卷)第39题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 1688544, "material": "", "question": "在法国城市,除博物馆、火车站、音乐厅、教堂等城市标志性建筑外,单体建筑看上去都____________,但建筑与建筑之间相互________和呼应,________统一和谐的整体美。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 平淡无奇 融合 营造\nB. 波澜不惊 交融 营建\nC. 毫无新意 契合 创造\nD. 栩栩如生 配合 构建", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;混搭填空", "most_wrong": "C", "human_count": 328548, "human_acc": 81.059084213, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 24479, "material": "", "question": "现在一些谈中国科技落后的文章,经常以晚清保守派把西方科技作为“奇技淫巧”的例子来说明中国封建社会________科学技术。这只是一种____________的说法。实际中国传统上并不排斥科学技术,中国早期学者对此前影响生产力变化和社会变迁的重大发明创造都是相当看重的,并对它们给予了没有任何神秘色彩的记述和肯定。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 排斥 以点带面\nB. 抵制 断章取义\nC. 鄙夷 信口开河\nD. 轻视 以偏概全", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;混搭填空", "most_wrong": "D", "human_count": 932106, "human_acc": 46.2693084263, "source": "2012年国家公务员录用考试《行测》题第33题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5509847, "material": "", "question": "在很多人看来,南极遍布冰川,气候应该很湿润。但____________,南极气候除了十分寒冷以外,还特别干燥。恶劣的气候环境,也容易导致设备出现故障,所以修理设备就成了____________。\n\n填入画横线部分最恰当的一组是:", "type": "单选题", "options": "A. 其实不然 家常便饭\nB. 天壤之别 当务之急\nC. 适得其反 看家本领\nD. 事与愿违 例行公事", "choice": "A", "keypoints": "关联关系-转折关系;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 950257, "human_acc": 95.3858798199, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第27题", "difficulty": 3, "formulas": 0, "history": [{"id": 4768451, "material": "", "question": "提到人工智能,很多人都会想起谷歌AlphaGo与棋手之间的“围棋人机大战”。AlphaGo在比赛中的出色表现,至今仍然让人们____________,但与此同时,“____________”的人工智能也引发了不少人的担忧:人工智能会不会像科幻电影所描述的那样取代人类呢?\n\n填入划横线处最恰当的一项是:", "type": "单选题", "options": "A. 记忆犹新 异军突起\nB. 惊叹不已 咄咄逼人\nC. 心有余悸 风起云涌\nD. 津津乐道 来势汹汹", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 176773, "human_acc": 35.6219558417, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第12题", "difficulty": 6, "formulas": 0}, {"id": 1688894, "material": "", "question": "当你去商场买东西时,往往看得眼花缭乱,结果却什么也没买成就回家了。由于你____________,所以想买的东西,能很快地选出来。但是,在付账的过程中,如果你又看到了同样种类的其他东西,你就会____________了。不仅在购物时,在人际关系上,决心也是非常重要的。如果在最后的瞬间你突然产生迷惑,无法决定的感觉的话,这是相当糟糕的事情。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 立场坚定 毫不犹豫\nB. 旗帜鲜明 坚持己见\nC. 暧昧不明 进退两难\nD. 爱憎分明 左右为难", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 16329, "human_acc": 83.1710453794, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第5题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5105838, "material": "", "question": "中国人口正在面临规模压力与结构挑战并存的严峻形势,实施三孩生育政策或许不是立竿见影的,但从中长期来看,新增的人口会转变为新增的劳动力,相对________社会压力。因此有必要通过一系列措施来鼓励生育,例如育儿津贴、托幼服务等等都要跟上,而且配套措施要____________,不能是跳跃性的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 缓解 循序渐进\nB. 扭转 稳扎稳打\nC. 纾解 因人而异\nD. 解决 按部就班", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 102254, "human_acc": 98.5457781603, "source": "2022下半年省考第二季行测模考大赛(四川卷)第19题", "difficulty": 3, "formulas": 0, "history": [{"id": 5102253, "material": "", "question": "在斗争中诞生、在斗争中发展、在斗争中壮大,一百年来,不怕牺牲、英勇斗争的伟大精神贯穿于革命、建设、改革各个时期,________成我们党历经百年风雨而风华正茂、饱经磨难而____________的精神基因。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 锤炼 永不言败\nB. 锻造 百折不挠\nC. 磨炼 九死不悔\nD. 熔铸 生生不息", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 1766220, "human_acc": 30.8642751186, "source": "2022年湖北省公务员录用考试《行测》题(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 2187556, "material": "", "question": "我们往往因成功而狂喜不已,或往往因挫折而_______,当然,开怀大笑与嚎啕大哭都是生命的自然____,然而我们千万不要将微笑遗忘。唯有微笑能使我们享受到生命底蕴的____,超越悲欢。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 肝肠寸断 律动 底味\nB. 灰心丧气 运动 韵味\nC. 伤心欲绝 活动 本味\nD. 痛不欲生 悸动 醇味", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 1543371, "human_acc": 25.3080432378, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 4772051, "material": "", "question": "办不办婚礼,是涉及感情观、金钱观、生活观的一种综合________,也是牵扯时间、精力的一种现实选择。张灯结彩、人声鼎沸也好,____________、干脆利索也罢,决定婚姻质量的关键在于更长久的陪伴、更努力的________。毕竟,只要有心,人生时时都可以成为搭建仪式感、提升亲密感的舞台。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 打量 直截了当 经营\nB. 估量 简简单单 探索\nC. 考量 删繁就简 耕耘\nD. 衡量 平铺直叙 维系", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 370062, "human_acc": 74.6380336268, "source": "2022上半年省考第十季行测模考大赛(陕西卷)第36题", "difficulty": 4, "formulas": 0}, {"id": 3519077, "material": "", "question": "“老板街头排队被工人挑”更多折射了就业观念转变和用工结构性短缺之间的矛盾。一方面,这会倒逼相关企业转变观念,改进用工模式,创造更好的就业环境,以此________用工短缺问题。另一方面,年轻一代的劳动者,也不能____________,而是要根据自身条件和特长等各方面实际择业、就业,不妨先就业后发展,逐步实现自己的职业规划。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 破解 敝帚自珍\nB. 纾解 好高骛远\nC. 缓解 浑水摸鱼\nD. 消解 滥竽充数", "choice": "B", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 56537, "human_acc": 89.7713002105, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第29题", "difficulty": 3, "formulas": 0}, {"id": 5074483, "material": "", "question": "当前电信网络诈骗犯罪依然高发,人民群众反映强烈,严重影响人民群众安全感,打击治理电信网络诈骗违法犯罪必须____________、久久为功,同时需要____________、多策并举,齐抓共管、形成合力,才能________电信网络诈骗犯罪滋生的土壤,构建严密防范体系,为群众________防护网。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 持之以恒 多管齐下 铲除 织牢\nB. 坚持不懈 齐头并进 祛除 筑牢\nC. 坚韧不拔 齐心协力 根除 建牢\nD. 孜孜以求 有的放矢 破除 织密", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 5110, "human_acc": 94.0900195695, "source": "2022下半年省考第一季行测模考大赛(上海卷)第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 11971, "material": "", "question": "作物生产系统,是一个作物—环境—社会相互交织的复杂系统,作物生产的高产、优质和高效通常又是矛盾的和难于协调统一的整体,而且,高产、优质和高效三者的主次关系也会随着社会经济的发展而变化,可见农学学科的研究对象不仅涉及自然因素,而且涉及了社会因素。\n\n这段文字意图说明:", "type": "单选题", "options": "A. 农学学科的研究对象既涉及自然因素又涉及了社会因素\nB. 作物生产系统是一个作物—环境—社会相互交织的复杂系统\nC. 农学是服务于作物生产的一门综合学科\nD. 必须以系统学的观点来认识农学和作物生产", "choice": "A", "keypoints": "主题词;关联词-因果", "most_wrong": "D", "human_count": 64175, "human_acc": 64.7339306584, "source": "2010年江西省公务员录用考试《行测》题第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 5509851, "material": "", "question": "小时候,在湘江边放牛,常常看到蓝天白云之间,一行行大雁从头顶上匆匆飞过。有人告诉我,相传,大雁飞到衡阳,便不再南飞,“北雁南飞,至此歇翅停回”。后来,我渐渐知道,优越的地理位置、湿润的气候,是衡阳吸引大雁“歇翅停回”的天然优势。因此,衡阳又雅称“雁城”。\n\n这段文字描写的“主角”是:", "type": "单选题", "options": "A. 作者\nB. 大雁\nC. 衡阳\nD. 湘江", "choice": "C", "keypoints": "主题词;关联词-因果", "most_wrong": "B", "human_count": 888125, "human_acc": 88.2161857847, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第57题", "difficulty": 3, "formulas": 0}, {"id": 7595, "material": "", "question": "市场优化资源配置的机制,要求每个人应该拥有同等的竞争和选择权利,反映到公共领域,就是确立以投票表决为中心的民主程序。因为公共事务的决策会影响到每个人的利益消长,所以民主的作用就是保障每个人拥有平等的经济权益和交易地位。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 市场经济与民主的关系\nB. 公共事务应该怎样决策\nC. 民主与个人经济权益的关系\nD. 民主如何保障平等权利", "choice": "C", "keypoints": "主题词;关联词-因果", "most_wrong": "A", "human_count": 37116, "human_acc": 34.1443043431, "source": "2009年江苏省公务员录用考试《行测》题(A类)第69题", "difficulty": 6, "formulas": 0}, {"id": 19163, "material": "", "question": "从《论语》看,孔子对音乐的重视,可以说远远超出了后世那些尊敬他的人的想象,这一方面来自他对于乐的精神艺术的新发现,艺术,只在人们精神的发现中才存在,可以说,就现在见到的材料看,孔子可能是中国历史上最伟大的艺术精神的发现者。\n\n这段文字重点强调:", "type": "单选题", "options": "A. 孔子在音乐方面的成就与贡献\nB. 后人评价孔子时所存在的偏颇\nC. 艺术精神在乐教传承中的作用\nD. 《论语》作为文献的重要意义", "choice": "A", "keypoints": "主题词;关联词-因果", "most_wrong": "C", "human_count": 93359, "human_acc": 63.8106663525, "source": "2011年内蒙古自治区公务员录用考试《行测》题第43题", "difficulty": 5, "formulas": 0}, {"id": 161455, "material": "", "question": "通过遥感探测发现,每年10月到次年的3月期间,每2—3天在2公里以上的高空就有一股从西风带吹来的浮尘,当它抵达华北平原上空后,由于地势降低,风速下降以后浮尘便会往下与污染物相混合,遭遇水汽后细粒子个体便迅速增大,造成大范围高强度的污染现象。如果遇上南边气流比较强,会形成华北地区持续多天的重污染天气。\n\n这段文字意在说明华北地区空气污染现象的:", "type": "单选题", "options": "A. 形成原因\nB. 形成过程\nC. 覆盖范围\nD. 发生时间", "choice": "A", "keypoints": "主题词;关联词-因果", "most_wrong": "B", "human_count": 1837125, "human_acc": 57.7050010206, "source": "2014年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 47751, "material": "", "question": "中国中古政治制度有秦汉与隋唐两大典型,其组织与运用截然不同,然秦汉型又何以变为隋唐型,则由魏晋南北朝三百数十年间政治社会情势之积渐演变有以致之,非出某一人物之特意革创者。故魏晋南北朝时代之制度,其本身虽不成一典型,然欲观秦汉制度如何没落,隋唐制度如何新生,则必当于此一纷乱时代求之。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 研究魏晋南北朝历史的意义重大\nB. 中国中古政治制度发展脉络较为模糊\nC. 魏晋南北朝是秦汉与隋唐的过渡时期\nD. 政治制度的沿革不以人的意志为转移", "choice": "A", "keypoints": "主题词;关联词-因果", "most_wrong": "C", "human_count": 396199, "human_acc": 54.7111426329, "source": "2013年浙江省公务员录用考试《行测》题(B类)第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 4874530, "material": "", "question": "120名员工参加部门年会,每人抽取一张卡片,卡片分为编号1-100的100张数字卡片和20张空白卡片。若抽取卡片数字编号是3的倍数可领取A礼包,4的倍数可领取B礼包,5的倍数可领取C礼包,若同时满足则可累计领取礼包,其他卡片可领取购物券一张。则本次年会只领取一个礼包的员工为:", "type": "单选题", "options": "A. 41人\nB. 43人\nC. 45人\nD. 47人", "choice": "B", "keypoints": "公倍数与公约数问题;三集合", "most_wrong": "C", "human_count": 262573, "human_acc": 40.1495964932, "source": "2022上半年省考第十四季行测模考大赛(陕西卷)第100题", "difficulty": 7, "formulas": 0, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 5115455, "material": "", "question": "某班级有学生30人,自愿参加田径运动会,报名长跑的有3人,报名短跑的有8人,报名跳高的有5人,且有18人没有报名任何项目,则只报名两个项目的最多有多少人?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 86911, "human_acc": 34.7033171865, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 4801487, "material": "", "question": "一个数有6个约数,其最小的3个约数之和为11,满足条件的所有数之和是多少?", "type": "单选题", "options": "A. 210\nB. 343\nC. 798\nD. 840", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 1577, "human_acc": 9.8287888396, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 4454578, "material": "", "question": "建立工作群,________是利用信息技术,让沟通交流更便捷,让工作开展更高效。由此而言,对工作群数量不应该有________要求,而是要看实际所需,什么工作需要建群就建什么群,工作群就应该以求真务实、干好工作为依据和前提。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 企图 严苛\nB. 意图 弹性\nC. 目的 详尽\nD. 初衷 刚性", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 176313, "human_acc": 91.0091711899, "source": "2021下半年省考第二十五季行测模考大赛(四川卷)第21题", "difficulty": 3, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5643023, "material": "", "question": "罐中原有63颗白棋子和45颗黑棋子。第一次从罐中取出3颗白棋子并放入3颗黑棋子,第二次从罐中取出6颗黑棋子并放入6颗白棋子,第三次从罐中取出9颗白棋子并放入9颗黑棋子,第四次从罐中取出12颗黑棋子并放入12颗白棋子······以此类推。问经过多少次操作后,罐中白棋子的颗数是黑棋子的3倍?", "type": "单选题", "options": "A. 6\nB. 12\nC. 15\nD. 18", "choice": "B", "keypoints": "周期余数问题;和差倍比问题", "most_wrong": "C", "human_count": 12687, "human_acc": 44.9199968472, "source": "2023下半年省考第十一季行测模考大赛(山西卷)第75题", "difficulty": 6, "formulas": 0, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 49171, "material": "", "question": "2013年是中国农历蛇年。在本世纪余下年份里,农历是蛇年的年份还有:", "type": "单选题", "options": "A. 5个\nB. 6个\nC. 7个\nD. 8个", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "B", "human_count": 397220, "human_acc": 75.9863551684, "source": "2013年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 4753491, "material": "", "question": "在当今全球一体化的时代,不少学者发现,将西方现代人文社科理论应用于我国的当代文学研究,对于打开思路、拓宽视野、构建新的学术体系____________,但在实施过程中往往由于对文学作品缺乏真切生动的审美体验与________,文章写得____________,了无生气,让人难以卒读。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大有裨益 感悟 枯燥无味\nB. 受益匪浅 认知 佶屈聱牙\nC. 至关重要 思考 长篇累牍\nD. 无可厚非 领悟 高深莫测", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 319875, "human_acc": 89.9148104728, "source": "2022上半年省考第九季行测模考大赛(陕西卷)第27题", "difficulty": 3, "formulas": 0, "history": [{"id": 4737365, "material": "", "question": "人类文明没有高低优劣之分,因此应当反对任何形式的“文明优越论”。新发展理念倡导的开放包容、____________的文明发展新路径,既摒弃了________,又破除了教条式的理解,为人类文明发展注入了新内涵。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 百家争鸣 执念\nB. 从善如流 歧视\nC. 海纳百川 误解\nD. 兼收并蓄 偏见", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 408925, "human_acc": 86.8472213731, "source": "2022上半年省考第八季行测模考大赛(四川卷)第20题", "difficulty": 4, "formulas": 0}, {"id": 5162103, "material": "", "question": "茶为国饮,中国人拥有________的茶文化。自唐至清,中国古代现存的茶学专著多达一百多部,历代关于茶的记载更是简牍盈积、____________。许多文人既是茶文化的创造者,也是茶科技的推动者。值得一提的是,古代茶科技的论述,既出现在专著中,也大量出现在诗词歌赋散文里,茶科技与茶文化可谓是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 丰富 俯拾皆是 相得益彰\nB. 绚烂 鳞次栉比 密不可分\nC. 深厚 浩如烟海 息息相关\nD. 多元 汗牛充栋 一脉相承", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 123175, "human_acc": 58.5946823625, "source": "2022下半年省考第五季行测模考大赛(四川卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 5480570, "material": "", "question": "简单粗暴的黑白招牌,显得________而缺乏个性,不仅谈不上什么美感,反而让人产生视觉疲劳。充满活力的商业空间,绝不是靠千店一面的统一招牌,而是多元、________的表达空间。基于自身定位与营销需求,不同店家完全有权利确立自己的店面招牌与风格。恰恰是这些并不“统一”、____________的招牌,构成了一座城市的活力与烟火气。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 乏味 丰富 竹柏异心\nB. 肤浅 独特 参差不齐\nC. 呆板 包容 五光十色\nD. 单调 复杂 花样繁多", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 32933, "human_acc": 32.0043725139, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第70题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2187682, "material": "", "question": "中国传统菜肴对于烹调方法极为讲究,而且长期以来,由于物产和风俗的差异,各地的饮食习惯和品味爱好_______________,______________的烹调技术经过历代人民的创造,形成了丰富多彩的地方菜系。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迥然不同 源远流长\nB. 天差地别 积厚流光\nC. 殊途同归 连绵不断\nD. 如出一辙 博大精深", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 2109038, "human_acc": 80.6108282544, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 5144203, "material": "", "question": "正风反腐是一张“金色名片”,必须继续磨砺,才能进一步提升其品质,构建良好的政治生态势不可挡,因此政治生态的____________已经成为可以看见的现实愿景。可以预见:利剑高悬,“敢腐”的人必将越来越少,“不想腐”的氛围必将越来越浓厚。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 熠熠生辉\nB. 渊渟岳峙\nC. 海晏河清\nD. 钟灵毓秀", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 104288, "human_acc": 80.198105247, "source": "2022下半年省考第四季行测模考大赛(新疆卷)第26题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2819, "material": "", "question": "有A、B两个电脑显示器,已知旧显示器A的宽高比例是$4\\colon3$,新显示器B的宽高比例是$16\\colon9$,若两个显示器面积相同,问B的宽度与A的宽度比是:", "type": "单选题", "options": "A. $\\sqrt{3}\\colon1$\nB. $\\sqrt{3}\\colon6$\nC. $2\\colon\\sqrt{3}$\nD. $4\\colon\\sqrt{3}$", "choice": "C", "keypoints": "平面几何;和差倍比问题", "most_wrong": "B", "human_count": 37084, "human_acc": 63.3669507065, "source": "2008年浙江省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 336, "history": [{"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 7325, "material": "", "question": "一个四边形去掉一个角,还剩几个角?下列不可能的是:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "D", "keypoints": "平面几何", "most_wrong": "B", "human_count": 18944, "human_acc": 65.5563766892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第9题", "difficulty": 5, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2256406, "material": "", "question": "一个矩形的周长为100,它的面积可能是多少?", "type": "单选题", "options": "A. 600\nB. 650\nC. 700\nD. 750", "choice": "A", "keypoints": "平面几何", "most_wrong": "B", "human_count": 24813, "human_acc": 71.4544795067, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "和差倍比问题"]]}, {"id": 2031276, "material": "", "question": "我觉得倘若苦闷而不致陷入悲观厌世,有矛盾而能解决,那么苦闷与矛盾并不可怕。所要避免的乃是因苦闷而致身心失常或者玩世不恭,变作游戏人生的态度。由此得出一个结论,我们不怕经常苦闷,经常矛盾,但必须不让这苦闷与矛盾妨碍我们愉快的心情。\n\n作者认为我们对苦闷和矛盾应该抱有的态度是________。", "type": "单选题", "options": "A. 逃避退缩\nB. 迎难而上\nC. 视而不见\nD. 坦然面对", "choice": "D", "keypoints": "关联词-转折;行文脉络-分总", "most_wrong": "B", "human_count": 226347, "human_acc": 85.3994088722, "source": "2015年上海市公务员录用考试《行测》题(A类)第11题", "difficulty": 4, "formulas": 0, "history": [{"id": 2033464, "material": "", "question": "为什么火焰常常会是黄颜色的?这是因为火焰在燃烧时会附带空气中的很多烟尘颗粒,它们会导致火焰不能充分燃烧。人类很早就可以控制火,但是效果一直不理想,也就是说在如何让火焰能够充分燃烧这个问题上,许多科学家一直在探索。\n\n这段文字主要介绍了:", "type": "单选题", "options": "A. 人类用火的历史\nB. 火焰燃烧的原理\nC. 火焰为什么是黄的\nD. 人们在利用火焰方面的难题", "choice": "D", "keypoints": "关联词-转折;行文脉络-分总", "most_wrong": "C", "human_count": 1149443, "human_acc": 78.8066045902, "source": "2016年河南省公务员录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 2376667, "material": "", "question": "中国人1000多年前就发明了世界上最早的机械时钟装置水运浑天仪,每刻击鼓,每辰撞钟,比国外的自鸣钟早出现600多年。然而,这套复杂的计时系统没过多久便被束之高阁。无视创新,让曾经辉煌的中国科学技术发展近乎停滞。\n\n这段文字意在强调", "type": "单选题", "options": "A. 中国科学技术的历史是很悠久的\nB. 中国的自鸣钟居于世界领先水平\nC. 不重视创新使中国科技趋于落后\nD. 推陈出新才是科技发展的原动力", "choice": "C", "keypoints": "关联词-转折;行文脉络-分总", "most_wrong": "D", "human_count": 1128095, "human_acc": 70.5692339741, "source": "2019年420联考《行测》题(吉林甲级)(网友回忆版)第38题", "difficulty": 4, "formulas": 0}, {"id": 2172343, "material": "", "question": "AI应用于医疗服务,已经有很长一段时间。机器医生的表现看起来神奇,但在AI专家眼里,这些医疗应用都属于计算机视觉中的图像识别范畴,而大数据支持的图像识别技术,机器的表现已经在很多方面超过了人类,在医学影像领域展现实力属于正常发挥。\n\n这段文字意在说明", "type": "单选题", "options": "A. AI在医学图像识别领域的进展\nB. AI用于医学图像识别已趋成熟\nC. AI在医学上的表现已超越人类\nD. AI必将全面进入医疗服务领域", "choice": "B", "keypoints": "关联词-转折;行文脉络-分总", "most_wrong": "A", "human_count": 1418160, "human_acc": 60.5627714785, "source": "2018年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第17题", "difficulty": 5, "formulas": 0}, {"id": 2188267, "material": "", "question": "作为领导者,光靠聪明是远远不够的。人是有感情的社会动物,对领导者的评价,往往带有较强的主观色彩。高智商的领导者倾向于抽象的表达方式,难以与下属们建立共识。而那些有个人魅力,会讲故事的领导者,却可以得到超出他们实际表现的评价。\n\n这段文字意在表明:", "type": "单选题", "options": "A. 领导者的智商与情商同样重要\nB. 高智商的领导者难以与下属们建立共识\nC. 领导者的情商更重要\nD. 情商高的领导能得到超出他们实际表现的评价", "choice": "C", "keypoints": "关联词-转折;行文脉络-分总", "most_wrong": "D", "human_count": 1081223, "human_acc": 25.6184894328, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第4题", "difficulty": 5, "formulas": 0}, {"id": 2256402, "material": "", "question": "必须承认,某一领域的重大发明和发现,绝大多数是由本领域的行家完成的。但是,精通自己专业的内行,有时好比攀上一棵大树,左右纵横的枝枝叶叶,常常挡住了自己前进的视线。而外行的好处在于,他站在“树”下或远处,反而能看清主干和树枝的成长趋势,从而可能有惊喜之见。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 大多数领域的发展是由“外行”推动的\nB. 隔行如隔山\nC. 坚持一切从实际出发,敢于创新\nD. 重视“外行”的智慧", "choice": "D", "keypoints": "关联词-转折;行文脉络-分总", "most_wrong": "A", "human_count": 30790, "human_acc": 95.3393959078, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 2578772, "material": "", "question": "拍摄行业剧难就难在既要在专业上不被________,又要在戏剧情感上引发共鸣,巧妙地将艺术性与专业性结合起来。我国电视剧行业发展到现在,对于家庭伦理剧、都市情感剧的驾驭已经____________,但是在行业剧的创作上还是要注意立足于真实情况和现实模型,决不能对行业____________、胡编乱造。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 挑剔 得心应手 以偏概全\nB. 苛责 驾轻就熟 浮光掠影\nC. 责备 绰绰有余 望文生义\nD. 指摘 游刃有余 一知半解", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 1218696, "human_acc": 50.1367855478, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第25题", "difficulty": 5, "formulas": 0, "history": [{"id": 2051240, "material": "", "question": "一个人从小就生活在平等、尊重的环境中,长大了就会更平等地对待人和事。反之,从小就生活在______________的训导或者宠物般的溺爱中,就很难养成健康的人格,容易变得_______,甚至容易走极端。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 盛气凌人 平庸\nB. 吹毛求疵 固执\nC. 唠唠叨叨 偏激\nD. 居高临下 偏执", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 1180976, "human_acc": 77.629604666, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第26题", "difficulty": 5, "formulas": 0}, {"id": 2423267, "material": "", "question": "很多人都喜欢将自己眼中的世界分门别类,并用固有的认知打上标签。这种“刻板印象”的存在,确实在某种程度上提高了我们的认知______,但也将我们的思维框定到已有的版图中,周边世界千变万化,而我们却在熟悉的境地里______、停滞不前。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 层次 泥足深陷\nB. 水平 闭门造车\nC. 效率 固步自封\nD. 能力 一意孤行", "choice": "C", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 187558, "human_acc": 61.1464187078, "source": "2019年甘肃省公务员录用考试《行测》题(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 5389852, "material": "", "question": "表演创造的规律应该循序渐进,而不应该____________。正因如此,真正的艺术大家应该是兢兢业业、不懈探索、日积月累的实践家,比如梅兰芳大师。尽管他们最后的成就体现出的创造力和对戏曲艺术的推动力十分强大,但其走向辉煌的成功之路则是漫长、平凡,甚至是________的,都是终其一生的奋斗与实践。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 一挥而就 穷困\nB. 投机取巧 艰难\nC. 操之过急 悠久\nD. 急于求成 曲折", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 361646, "human_acc": 90.0668056608, "source": "2022下半年省考第二十季行测模考大赛(浙江C卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 3707432, "material": "", "question": "世界历史是由各国历史的点滴汇聚而成的长河,但又不是各国历史的简单相加,而是相互牵连、____________的。世界各国在历史上都创造了属于自己的,同时也属于全人类的文明成果,一个民族、一个国家如果善于学习借鉴这些成果,就将为自身的发展插上翅膀;反之,排斥甚至________他国文明,则必然导致自身止步不前甚至落后。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 和光同尘 唱衰\nB. 相得益彰 敌视\nC. 浑然一体 打压\nD. 水乳交融 抵触", "choice": "C", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 118494, "human_acc": 39.9353553766, "source": "2021下半年省考第十季行测模考大赛(广东县级卷)第4题", "difficulty": 7, "formulas": 0}, {"id": 5445727, "material": "", "question": "环境整治关键要不留死角、不存盲点,光靠人为监管恐怕会____________。目前,“互联网+”数字技术已成为环境监测的利器,为生态环境监测布下“天罗地网”。这张网使任何“____________”,都能充分暴露在数据“阳光”之下,让环境监测和污染防治变得更加________、更加具象。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 捉襟见肘 一举一动 有效\nB. 力不从心 风吹草动 精细\nC. 顾此失彼 小打小闹 动态\nD. 收效甚微 蛛丝马迹 直观", "choice": "B", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 1825814, "human_acc": 40.9015923856, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第37题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2051460, "material": "", "question": "众所周知,撒哈拉沙漠广袤无垠,极为干旱,终年高温干燥,降水极少,然而,几千年前的撒哈拉却是点缀着湖泊的青葱原野,人类社会蔓延到该地区,他们大量开垦土地,用于种植作物和畜牧,从而破坏了撒哈拉的生态系统。当地农民在撒哈拉大量砍伐森林,开垦草原,过度放牧,使其土质退化。植被逐渐减少,使得撒哈拉的温度逐渐上升。随着更多的农民进入撒哈拉地区,更多的土地被开垦,这进一步导致气温升高。逐渐地,降水量变少,高温缺水的环境使植被慢慢消失。最终,撒哈拉几乎就不降雨了,大量植物死亡,只留下少数耐热耐旱的沙漠植物。\n\n对这段文字的主要观点概括最准确的是:", "type": "单选题", "options": "A. 人类的活动导致了撒哈拉的沙漠化\nB. 温度高,降水量少是撒哈拉沙漠形成的主要原因\nC. 撒哈拉沙漠植被的减少是由于农民大量砍伐造成的\nD. 人类的过度砍伐,过度放牧等活动可能会将绿洲变成沙漠", "choice": "A", "keypoints": "关联词-转折;行文脉络-总分", "most_wrong": "D", "human_count": 816602, "human_acc": 75.2890637055, "source": "2017年422联考《行测》题(陕西卷)第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 5676278, "material": "", "question": "早年读过的书大多记不住,但请你相信潜在的影响。苏澈曾说:“早岁读书无甚解,晚年省事有奇功。”翻译成现代口语,大致意思是:早年读书似乎没有深刻理解的地方,在晚年审查事物时却发挥了奇特的功效。这便是记忆的沉潜。\n\n这段话的主要观点是________。", "type": "单选题", "options": "A. 读书最重要\nB. 读书要趁早\nC. 读书对人有潜移默化的作用\nD. 好读书不求甚解", "choice": "C", "keypoints": "关联词-转折;行文脉络-总分", "most_wrong": "B", "human_count": 151, "human_acc": 88.7417218543, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第14题", "difficulty": 3, "formulas": 0}, {"id": 9011, "material": "", "question": "决策理论强调管理就是决策是有一定的科学意义的,但它认为管理中除了决策别无它有,将决策的概念规定为管理的同一概念,从而把管理限制在一个较为狭窄的领域,就有些以偏概全了。管理的概念不仅包括决策,还包括核算、统计等基础性工作,而且低层人员中要做的更多的是“业务决策”。 \n\n这段文字主要说明了:", "type": "单选题", "options": "A. 决策理论的局限性\nB. 决策理论强调决策的科学意义\nC. 管理与决策的关系\nD. 管理包含决策", "choice": "A", "keypoints": "关联词-转折;行文脉络-总分", "most_wrong": "C", "human_count": 34175, "human_acc": 49.3401609364, "source": "2009年河南省公务员录用考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2701814, "material": "", "question": "在很多人眼中,航母、核潜艇、两栖攻击舰等舰艇是海上作战制胜的“明星”。至于那些隐身幕后、输送物资的辅助舰艇,却经常被忽视。事实上,如果没有辅助舰艇输送给养、弹药,再好的“明星”舰艇在远海作战时底气都不会太足。倘若碰上一场高消耗战,“明星”舰艇的结局可想而知。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 明星舰艇是海上作战制胜法宝\nB. 明星舰艇赢不了一场高消耗战\nC. 海上作战中辅助舰艇不可或缺\nD. 辅助舰艇的数量需要大量增加", "choice": "C", "keypoints": "关联词-转折;行文脉络-总分", "most_wrong": "B", "human_count": 20332, "human_acc": 98.7163092662, "source": "2020年下半年省考第十四季行测模考大赛(四川卷)第44题", "difficulty": 3, "formulas": 0}, {"id": 15401, "material": "", "question": "在中国,所有公民都在宪法的保护之下。但是,在穷人得不到充分保护的资源语境下奢谈“保护富人”是相当危险而诡异的──它很可能对“贫富关系”造成舆情上的断裂与伤害。某种意义上说,在中国市场经济舞台上,以企业家为代表的“富人”群体的逐利本性与穷人的挣扎生存相比,似乎更值得我们警惕。\n\n作者通过这段文字想表达的观点是:", "type": "单选题", "options": "A. 奢谈保护富人是不对的\nB. 保护穷人利益是根本\nC. 要遏制为富不仁的现象\nD. 要在公平的前提下讨论贫富问题", "choice": "A", "keypoints": "关联词-转折;行文脉络-总分", "most_wrong": "D", "human_count": 87194, "human_acc": 29.0501640021, "source": "2010年浙江省公务员录用考试《行测》题(A类)第31题", "difficulty": 5, "formulas": 0}, {"id": 4658467, "material": "", "question": "人们通常以为人口爆炸是当今时代特有的现象,其实不然。生产技术获得重大突破时,都会伴随着壮观的人口增长。原因很明显,技术的发展导致生产率的提高,从而使能供养的人口大大增加。从旧石器时代初期到后期,技术初期的人口为12.5万人,末期为532万人,增长了40倍以上,堪比后来随历次技术革命而出现的人口爆炸。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 古今人口变化规律的异同\nB. 人口增长与生产技术的关系\nC. 技术进步对人类的重要作用\nD. 旧石器时代人口规模变化趋势", "choice": "B", "keypoints": "关联词-转折;行文脉络-总分", "most_wrong": "C", "human_count": 1662201, "human_acc": 91.5339360282, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第31题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5330062, "material": "", "question": "中考试题如果能注重考查学生灵活运用所学知识解决实际问题的能力,则会表现出探究性、开放性和__________特质。在以往的义务教育阶段教学中,进入课程的知识是普适性的,与此相联系的知识任务情境却往往是__________的,是脱离现实生活、为“用知识”而“用知识”的“纯净”情境,这便与真实世界纷繁多样的问题解决形成了鲜明反差。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 研究性 独特性\nB. 实用性 大众化\nC. 综合性 特异性\nD. 实践性 同质化", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 118343, "human_acc": 54.3428846658, "source": "2022下半年省考第十五季行测模考大赛(四川卷)第17题", "difficulty": 6, "formulas": 0, "history": [{"id": 53023, "material": "", "question": "玩是孩子的天性,这一点很多做父母的都知道;但是怎么玩,玩什么,很多人未必有_____________的认识。孩子本来可以从玩中开发智慧和能力,却被白白地_____________。应该明白,孩子不能为玩而玩,而是要玩出名堂来。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 明确 消耗\nB. 清楚 浪费\nC. 科学 虚度\nD. 合理 耽误", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 508744, "human_acc": 58.6119934584, "source": "2013年921联考《行测》题(河南卷)第7题", "difficulty": 5, "formulas": 0}, {"id": 2717415, "material": "", "question": "评估长三角一体化的发展,虽然要看重________,但更要看重质量。未来,继续推进“一体化”,一个重要________就是要使城市和乡村、产业发展区和生态保护区之间的差异逐渐弥合进而实现区域均衡发展。要采取更精确的举措,充分考虑地方特色实施改进方案。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 规模 目的\nB. 布局 打算\nC. 成效 方针\nD. 数量 臆想", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 148783, "human_acc": 72.2878285826, "source": "2020年下半年省考第十五季行测模考大赛(浙江卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 49795, "material": "", "question": "一般地说,“智慧”不同于“知识”的最大特点在于“智慧”具有原创性。“知识”要求“广”,“智慧”要求“新”。但两者并非绝对_________:“智慧”必须有“知识”做基础,反之,只死读书,而无己见,无创意,那就容易成为________,也不算是“智慧”。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 对立 学究\nB. 矛盾 古董\nC. 等同 桎梏\nD. 排斥 束缚", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 776059, "human_acc": 70.5888340964, "source": "2013年山东省公务员录用考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5101820, "material": "", "question": "咖啡和茶饮的成本结构、利润空间很________,大多包括店铺成本、损耗成本、原料成本、人工成本、管理成本、营销成本、租金成本等,差异最大的就是原料。茶饮的原料非常复杂,成本自然也比较复杂。但咖啡的原料________,成本和原料联系紧密,原料市场有变,就会影响到定价。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 稳定 讲究\nB. 接近 单一\nC. 透明 关键\nD. 相似 重要", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 1926828, "human_acc": 84.6924063798, "source": "2022年甘肃公务员录用考试《行测》题(网友回忆版)第29题", "difficulty": 4, "formulas": 0}, {"id": 2444734, "material": "", "question": "接纳人工智能是今天社会发展、经济增长、人类演化的________,更是人们生活的需求。其实,很多人每天离不开的智能手机就是低端人工智能的应用。更应当看到的现实是,人工智能的发展极具____________,未来谁在人工智能的研发和应用中落后,谁就会被淘汰。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 趋势 替代性\nB. 必然 竞争性\nC. 方向 优越性\nD. 途径 倾向性", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 1051186, "human_acc": 76.4020829806, "source": "2019年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第20题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5301625, "material": "", "question": "甲、乙两个小组要从A地出发先向正东行驶12公里到达B地,再向正南行驶若干公里到达C地。两个小组同时从A地出发,由于只有一辆车接送,故乙组先坐车,甲组步行,车到达B地后,乙组下车步行,车立即掉头去接甲组。甲、乙两组的步行速度均为2公里/小时,载人时车速、空车时车速分别为20公里/小时、25公里/小时,问当甲组在途中追上乙组时,乙组距离A地的直线距离为多少公里(忽略车辆掉头时间)?", "type": "单选题", "options": "A. 2\nB. $2\\sqrt{37}$\nC. $2\\sqrt{47}$\nD. 13", "choice": "B", "keypoints": "平面几何;相遇追及", "most_wrong": "C", "human_count": 40050, "human_acc": 46.5942571785, "source": "2022下半年省考第十二季行测模考大赛(北京卷)第84题", "difficulty": 6, "formulas": 167, "history": [{"id": 4874541, "material": "", "question": "某日上午8时,小明沿山路从坡面与地面夹角为$30^{\\circ}$的山脚开始匀速爬山,同时小刚沿该条山路从山顶匀速下山。到上午8时30分,两人相距16.5千米;到上午10时,两人相遇,此时小刚比小明多走了10千米,那么二人相遇时的海拔高度为:(海拔高度即某地到地面的垂直高度)", "type": "单选题", "options": "A. 22千米\nB. 11千米\nC. 6千米\nD. 3千米", "choice": "D", "keypoints": "平面几何;相遇追及", "most_wrong": "B", "human_count": 118713, "human_acc": 11.8790696891, "source": "2022上半年省考第十四季行测模考大赛(河南卷)第64题", "difficulty": 7, "formulas": 1}, {"id": 12495, "material": "", "question": "3条直线最多能将平面分成几部分:", "type": "单选题", "options": "A. 4部分\nB. 6部分\nC. 7部分\nD. 8部分", "choice": "C", "keypoints": "平面几何", "most_wrong": "B", "human_count": 17143, "human_acc": 75.7977016858, "source": "2008年湖北省公务员录用考试《行测》题(B类)第36题", "difficulty": 4, "formulas": 0}, {"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 7325, "material": "", "question": "一个四边形去掉一个角,还剩几个角?下列不可能的是:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "D", "keypoints": "平面几何", "most_wrong": "B", "human_count": 18944, "human_acc": 65.5563766892, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第9题", "difficulty": 5, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "几何问题", "平面几何"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 748677, "material": "", "question": "今天,手机、个人电脑、网站成为我们日常生活的主导,但是我们仍然可以从每天的______生活中发现乐趣和美好。在法国插画师桑德琳眼里,垃圾袋、街边的栏杆、破旧的墙壁乃至地下通道的水龙头,都能创造出一个______的“魔力”世界。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 呆板 另类\nB. 无聊 神奇\nC. 简单 崭新\nD. 平凡 疯狂", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 357841, "human_acc": 34.0000167672, "source": "2014年青海省公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 3743823, "material": "", "question": "以坚定的文化自信培根铸魂、以艺养心,通过电影给观众以激越向上的精神正能量,涌动出强烈的爱国主义情感。像《中国女排》《我和我的祖国》的成功经验值得________,值得普遍推广,以推出更多________民族精神、表现家国情怀的“中国式大片”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 歌颂 弘扬\nB. 珍视 提振\nC. 推崇 传承\nD. 正视 表达", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 93730, "human_acc": 15.4795689747, "source": "2021下半年省考第十二季行测模考大赛(四川卷)第19题", "difficulty": 7, "formulas": 0, "history": [{"id": 4823649, "material": "", "question": "王国维与现代派词学家在审美标准的原则方面是高度一致的。他们强调审美的直观性、明晰性;________了从南宋以来直至常州词派乃至近代一直占据词学思想核心位置的含蓄蕴藉、要眇委婉的传统理念,并由此________了全新的词史观。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 瓦解 打造\nB. 颠覆 构筑\nC. 推翻 整合\nD. 动摇 建立", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 329879, "human_acc": 72.3804789029, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第29题", "difficulty": 4, "formulas": 0}, {"id": 5308529, "material": "", "question": "结合悬疑片的发展历史,加之近来剧本杀电影模式的成功案例,可以认为剧本杀电影本身并非剧本杀的附加产物,而是并不算太________的一个电影模式,只是依靠在年轻人中受欢迎的剧本杀这一概念而得到了大众化。因此,剧本杀电影在未来的发展道路上,完全可以脱离剧本杀这一定义的________而独立发展,衍生出更多更富创意的作品。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 新奇 桎梏\nB. 另类 阻挠\nC. 罕见 屏障\nD. 珍贵 羁绊", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 20224, "human_acc": 91.5644778481, "source": "2022下半年省考第十三季行测模考大赛(浙江C卷)第24题", "difficulty": 3, "formulas": 0}, {"id": 4843310, "material": "", "question": "近年来,特别是新冠疫情爆发以来,一个词汇在________地使用和流行,这就是“大数据”。在应对疫情方面,它不仅成为政府决策的重要依据,更切实地进入普通人的日常生活,成为大家经常谈论的话题。但诚如俗语所言,“百姓日用而不知”“熟知并非真知”,对于“大数据”,实际上很多人是不甚了解的,更缺少上升到理论层次的________分析。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 全面 精准\nB. 普遍 合理\nC. 广泛 透彻\nD. 频繁 主观", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 24065, "human_acc": 88.7886972782, "source": "2022上半年省考第十三季行测模考大赛(浙江卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2693531, "material": "", "question": "广东的老火靓汤全国出名,煲时讲究“煲三炖四”,认为煲的时间越久,汤越鲜美,营养越多,对健康越有利。在煲汤过程中,食材中有些营养物质会进入汤中,释放氨基酸,与其本身的部分氨基酸一起进入汤中,从而产生鲜味。因此,适度加长煲汤时间有利于食物释放营养,使汤更鲜美。但经过三四个小时以上的长时间熬制,很多营养物质就会遭到破坏,比如B族维生素等。此外,炖煮时间过长,汤中嘌呤、脂肪含量升高,很容易诱发痛风、伤害肾脏。有调查表明,广东人慢性肾病高发可能与常喝“老火靓汤”的生活习惯有关。那煲汤到底多久合适呢?这需要根据煲汤的食材而定。\n\n这段文字反驳了哪种观点?", "type": "单选题", "options": "A. 老火靓汤味道鲜美,有利于人体健康\nB. 煲汤的时间越久,对健康越有利\nC. 应根据煲汤时间来选择合适食材\nD. 延长烹制时间会有助于提升食物鲜味", "choice": "B", "keypoints": "关联词-转折;特殊问法", "most_wrong": "A", "human_count": 225270, "human_acc": 91.6415856528, "source": "2021年国考第二十三季行测模考大赛(副省级)第50题", "difficulty": 4, "formulas": 0, "history": [{"id": 769195, "material": "", "question": "人面呢?颜色比那纸制的小玩意儿好而且活动,带着生气。可是你褒奖他的时候,他虽是高兴,脸上却装出很不愿意的样子,你指责他的时候,他虽是懊恼,脸上却偏要显示出勇于纳言的颜色。\n\n这段话认为,纸面具与人面最大的不同是:", "type": "单选题", "options": "A. 它并不具有人面的欺骗性\nB. 它经不住人们的褒奖或指责\nC. 它显现出更鲜明的人性特征\nD. 它没有人面那种生动的色泽", "choice": "A", "keypoints": "关联词-转折;特殊问法", "most_wrong": "D", "human_count": 121693, "human_acc": 64.295399078, "source": "2011年广东省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 584357, "material": "", "question": "领导人整顿风气,很多人不以为然,以为这是小题大做。据说,形成优良社会秩序,最重要的是制度。这种观念流行一时,然而不乏偏颇。制度是刚性约束,风气是柔性导引,从逻辑上说,风气导引于先,制度约束于后。风气、制度交相为用,自然能够收到奇效。\n\n关于“风气”和“制度”的关系,描述正确的是:", "type": "单选题", "options": "A. 风气与制度并重\nB. 制度比风气重要\nC. 制度是风气的引导\nD. 制度不及风气重要", "choice": "A", "keypoints": "关联词-转折;特殊问法", "most_wrong": "C", "human_count": 483717, "human_acc": 94.6590671818, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第32题", "difficulty": 5, "formulas": 0}, {"id": 1603, "material": "", "question": "生活上的困难和心灵的孤独让我也曾为自己的选择动摇过。每每为吃饭发愁,或者想念妈妈只能打打电话时,我还真有点后悔当初自己冲动的选择。但想想这毕竟是自己的决定,也不过就半年时间,能挺就挺吧!但很快,看到这些农村孩子们的英语成绩有了起色,一个个辍学的孩子又返回了课堂,我想我找到了喜欢这里的感觉!\n作者最有可能的身份是:", "type": "单选题", "options": "A. 小学教师\nB. 青年志愿者\nC. 记者\nD. 年轻村干部", "choice": "B", "keypoints": "关联词-转折;特殊问法", "most_wrong": "A", "human_count": 80109, "human_acc": 69.2231834126, "source": "2008年黑龙江省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 220617, "material": "", "question": "从1969年美国“阿波罗”号登上月球开始,人类走向航天空间有40余年了,3600多颗人造星体为太空添丁,这是人类的骄傲,但“神龟虽寿,犹有竟时”,至今外层空间的残骸、失效的整体装置、飞行物碎片、宇航员丢弃的工具等,已多达10亿余个,这无异于开辟了太空垃圾场。\n\n本文采用“太空垃圾场”的比喻,旨在说明:", "type": "单选题", "options": "A. 航天技术的负效应大于正效应\nB. 高新技术的负效应造成了环境污染\nC. 航天技术必须尽快克服负效应\nD. 高新技术负效应在航天领域的表现", "choice": "D", "keypoints": "关联词-转折;特殊问法", "most_wrong": "B", "human_count": 100362, "human_acc": 27.6538929077, "source": "2011年深圳市公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 17031, "material": "", "question": "有评论家说,真正的文学永远出自与现实冲突的高贵而不屈、纯洁而温柔的心灵。当代文学研究和批评的一个特点,就是它面对的是一个正在生成的不稳定、不明晰的对象世界,而批评意味着道路和光明,意味着改变生活的巨大力量,真正的批评应该充满热情和责任感,应该充满担当的精神和行动的勇气。\n\n这段话隐含的一个说法是:", "type": "单选题", "options": "A. 当代文学研究和批评面对的是尚未定型的对象世界\nB. 过去的文学批评面对的是已经稳定和明晰的对象世界\nC. 当代有热情和责任感的文学研究者的目标是改变生活\nD. 真正的文学批评有赖于与现实冲突的高贵不屈的心灵", "choice": "C", "keypoints": "关联词-转折;特殊问法", "most_wrong": "D", "human_count": 129172, "human_acc": 19.114823646, "source": "2010年江苏省公务员录用考试《行测》题(B类)第67题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 4621733, "material": "", "question": "将下列选项中的词语依次填入各句横线处,最恰当的一项是:\n\n(1)党员干部在纸醉金迷中越陷越深,不法分子在权钱交易中________利益,这不仅破坏市场公平竞争、损害营商环境,而且败坏社会风气、污染政治生态。\n\n(2)近日,多地出现新冠肺炎疫情,牵动人心,尽快________住疫情,最大程度保障人民群众生命健康安全,需要集聚众智、汇聚众力。", "type": "单选题", "options": "A. 谋取 禁止\nB. 牟取 遏止\nC. 汲取 限制\nD. 攫取 遏制", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 13285, "human_acc": 44.4486262702, "source": "2021下半年省考第三十五季行测模考大赛(深圳卷)第56题", "difficulty": 6, "formulas": 0, "history": [{"id": 2563323, "material": "", "question": "西安电子科技大学通过大数据算法分析学生在校刷饭卡的记录,给达到设定标准的学生予以补助,这一暖心________获得人们的广泛好评,大赞。与之相反的是,拥有错误价值观的算法往往成为进一步________社会不良风气的温床。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 举措 助长\nB. 举动 孕育\nC. 手段 滋生\nD. 措施 纵容", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 34223, "human_acc": 67.2939251381, "source": "2020年上半年省考第三十一季行测模考大赛(湖南卷)第19题", "difficulty": 4, "formulas": 0}, {"id": 4753497, "material": "", "question": "长沙窑能够________海外市场,俘获阿拉伯人和粟特人的心,还因为它与外来文化的完美互动。敢于创新的工匠们利用多变的装饰技法适应海外市场的________,他们使用模印贴花技术模仿阿拉伯地区惯常使用的狮纹、对鸟纹、椰枣纹,使其呈现出纹样般的装饰效果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冲击 品味\nB. 风靡 需求\nC. 席卷 变革\nD. 覆盖 风险", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 408707, "human_acc": 92.9174200589, "source": "2022上半年省考第九季行测模考大赛(广东乡镇卷)第4题", "difficulty": 3, "formulas": 0}, {"id": 2133580, "material": "", "question": "情绪并不是独立存在的,它常常伴随着信息而传播。作为一种态度,情绪不仅能够________人们对所传播信息的认知,还会在一定程度上指导人们的行为。积极的情绪会促进人们积极地认识世界,消极的情绪则可能给他人甚至整个社会带来破坏性后果。人在情绪失控时,很容易不顾后果地做出________的举动。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 影响 危险\nB. 左右 出格\nC. 干扰 反常\nD. 支配 冲动", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 2342685, "human_acc": 30.9220403084, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第22题", "difficulty": 5, "formulas": 0}, {"id": 2729142, "material": "", "question": "大众传播时代,媒介技术带来更多可供文化寄身的载体,书籍阅读作为文化传播途径的作用被________,人们对书籍的基本需求——消遣、资讯、思想等能在其他大众媒体上得到满足,也由此衍生出阅读实践活动。在读书节目中,所有的媒介圈彼此互相________,没有谁消除了谁,只有浸入式地进行知识的传播和文化的传承。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 削减 纠缠\nB. 弱化 交织\nC. 限制 衬托\nD. 抹杀 融合", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 174831, "human_acc": 89.2330307554, "source": "2021上半年省考第一季行测模考大赛(四川卷)第24题", "difficulty": 3, "formulas": 0}, {"id": 5694392, "material": "", "question": "作为近年来迅速兴起的潮流文化,国潮文化以消费产品与文化作品为载体,融合了中华民族优秀传统文化因素,受到了以青年人为主的消费群体的________,形成“现象级”热潮。虽然国潮文化的发展有助于民族优秀传统文化的传承和青年消费生活的丰富,但也伴生着消费主义裹挟、文化娱乐倾向和价值导向偏离等突出问题,________青年价值观的培育及养成。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鼓吹 妨碍\nB. 拥趸 冲击\nC. 追捧 威胁\nD. 青睐 遏止", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 4681, "human_acc": 43.1745353557, "source": "2023下半年省考第十六季行测模考大赛(陕西卷)第26题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5660833, "material": "", "question": "现代科技虽然让生活更加便利,但也让人的内心更加________:当各种现代交通工具便捷地穿梭于大街小巷、世界各地,人们也就没了归心似箭的感受;当综艺、影视等各种娱乐产品大量涌现,人们就不再字斟句酌,将心________在文学中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 闲适 投入\nB. 焦虑 专注\nC. 浮躁 沉浸\nD. 倦怠 倾注", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 69745, "human_acc": 22.3141443831, "source": "2023下半年省考第十三季行测模考大赛(陕西卷)第33题", "difficulty": 7, "formulas": 0, "history": [{"id": 5581620, "material": "", "question": "如今大数据广泛应用于我们的各种手机应用、购物平台和社交媒体中,大数据导致的很多负面影响往往难以________,但却像温水煮青蛙那样________了我们的总体生存环境,比如大数据杀熟、过度获取和滥用个人信息、利用算法________青少年上瘾,等等。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 洞察 破坏 促使\nB. 显现 影响 引导\nC. 感知 改变 利诱\nD. 察觉 恶化 诱导", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 38798, "human_acc": 79.7360688695, "source": "2023下半年省考第四季行测模考大赛(四川卷)第18题", "difficulty": 4, "formulas": 0}, {"id": 3882363, "material": "", "question": "一个真有学问的人,其实就是一个善于辨别是非者。明辨是非,就是我们所谓的鉴别力。但一个人若想有鉴别力,他必须先有________的判断力,不为一切社会的、政治的或学院式的诱惑所动。缺乏鉴别力的人,他的学问可能是________的,但在论人和论事时,往往只知依人门户,并无卓识。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 敏锐 偏狭\nB. 独立 广博\nC. 辩证 深厚\nD. 自主 浅薄", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 200554, "human_acc": 72.0618885687, "source": "2021下半年省考第十六季行测模考大赛(广东县级卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2439992, "material": "", "question": "提起机场消费,许多人的第一反应就是“价格高”“垄断”。78元一碗面条,59元一碗馄饨······机场的“天价”餐饮,可以说令人____________。其实,从商业变革和消费升级的角度,未来机场餐饮的变化,或不仅仅体现在价格的更加亲民上。在加快新理念、新技术、新设计改造提升,向场景化、体验式、互动性、综合型消费场所转型等方面,机场、高铁站、高速公路服务区等都____________。\n\n依次填入划横线部分最恰当的词语是:", "type": "单选题", "options": "A. 望尘莫及 不可或缺\nB. 望洋兴叹 大有裨益\nC. 望而生畏 举足轻重\nD. 望而却步 大有可为", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 447088, "human_acc": 87.302276062, "source": "2019年青海省法院、检察院录用考试《行测》题第51题", "difficulty": 5, "formulas": 0, "history": [{"id": 3666601, "material": "", "question": "由于知识产权具有很强的技术和法律属性,且相关的纠纷法律关系复杂,企业一旦卷入知识产权纠纷,通常会遭遇举证难、诉讼费用高、诉讼周期长等难题。同时,企业即便胜诉,也还存在执行难的问题。所以,有关知识产权的维权,让不少企业____________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无所适从\nB. 蹑足其间\nC. 束手无策\nD. 望而却步", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 122077, "human_acc": 69.9116131622, "source": "2021下半年省考第八季行测模考大赛(甘肃卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 3579873, "material": "", "question": "论文是体现研究生学术能力和学术成果的重要途径。当科研指标在高校评价体系中____________,为获得好成绩,学校不得不调动一切“生力军”,在论文写作上____________,造成人才培养标准片面僵化。而另一方面,破除“唯论文”并不意味着放宽人才培养条件,更不是否定论文的重要性,倘若将论文与人才培养中简单化、一刀切的“懒政”思维一并破除,便又会____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 首屈一指 精益求精 适得其反\nB. 举足轻重 苦心孤诣 过犹不及\nC. 至关重要 一挥而就 画蛇添足\nD. 不可或缺 为而无效 矫枉过正", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 75646, "human_acc": 51.2426301457, "source": "2021下半年省考第五季行测模考大赛(陕西卷)第40题", "difficulty": 6, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2042538, "material": "", "question": "城市人口过度聚集,对土地、水、空气等资源的需求与消耗____________,加之使用不当,浪费严重,使得城市资源____________,越来越短缺,结果是水资源和食物供应不足,清洁空气也越发稀缺。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 与日俱增 供不应求\nB. 有增无减 山穷水尽\nC. 旷日持久 左支右绌\nD. 日甚一日 危在旦夕", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 1393507, "human_acc": 89.6606906173, "source": "2017年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 3, "formulas": 0, "history": [{"id": 5218471, "material": "", "question": "近些年,互联网、金融行业的发展如火如荼,使得国人的消费习惯和消费模式发生了____________的变化。各种网购平台在为消费者提供便捷的同时,也在放大着我们的消费欲望。在消费主义的裹挟之下,个人购物的自主性被削弱,很多时候消费者只是____________,跟随别人的喜好做出选择。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 空前绝后 随俗浮沉\nB. 不可思议 心血来潮\nC. 日新月异 东施效颦\nD. 翻天覆地 随波逐流", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 112458, "human_acc": 96.5035835601, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5515267, "material": "", "question": "A、B两地分别有9台和5台重型机械,现需要将这些重型机械调运到C地8台、D地6台。已知从A地调运1台重型机械到C地和D地的运费分别为500元和400元,从B地调运1台重型机械到C地和D地的运费分别为600元和300元。问将这些重型机械调运到C、D两地的总运费最高与最低相差多少元?", "type": "单选题", "options": "A. 600\nB. 800\nC. 1600\nD. 1000", "choice": "D", "keypoints": "统筹规划问题;非典型最值问题", "most_wrong": "B", "human_count": 32354, "human_acc": 20.4982382395, "source": "2023上半年省考第十季行测模考大赛(四川卷)第50题", "difficulty": 7, "formulas": 0, "history": [{"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 567163, "material": "", "question": "一架天平,只有5克和30克的砝码各一个,要将300克的食盐平均分成三份,最少需要用天平称几次:", "type": "单选题", "options": "A. 6次\nB. 5次\nC. 4次\nD. 3次", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 203660, "human_acc": 24.8885397231, "source": "2014年河北省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 21109, "material": "", "question": "有一架天平,只有5克和30克的砝码各一个。现在要用这架天平把300克味精分成3等份,那么至少需要称多少次:", "type": "单选题", "options": "A. 3次\nB. 4次\nC. 5次\nD. 6次", "choice": "A", "keypoints": "统筹规划问题", "most_wrong": "B", "human_count": 238120, "human_acc": 23.153452041, "source": "2012年浙江省公务员录用考试《行测》题第59题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "统筹规划问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 3523574, "material": "", "question": "积极的爱国应该有意识地诉诸理性。一个________爱国的人,如果不能冷静下来,以理性的方式表达爱国诉求,而是任由自己的爱国情感________,完全可能适得其反,不仅帮不到自己的国家,还会损害自己的国家,同时又戕害到无辜的他人。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自夸 蔓延\nB. 自诩 泛滥\nC. 自命 失控\nD. 自吹 放纵", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 1550343, "human_acc": 74.390892854, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第18题", "difficulty": 6, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5188243, "material": "", "question": "坚持大食物观肯定是对的,但口粮和其他农产品不能____________。其他食物可以少点,但口粮不行。粮价是百价之基,更是影响整个社会经济大局的__________。粮食安全作为国之大者怎么重视都不过分。中国碗里的每一粒中国粮都弥足珍贵,它不仅是我们饭碗里看得见的馒头面条,更是我们中国人生活于和平稳定社会环境中的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 相提并论 保护伞 信心\nB. 等量齐观 压舱石 底气\nC. 混为一谈 顶梁柱 保障\nD. 厚此薄彼 定盘星 基础", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 95337, "human_acc": 48.2467457545, "source": "2022下半年省考第六季行测模考大赛(江苏A卷)第39题", "difficulty": 6, "formulas": 0, "history": [{"id": 5380103, "material": "", "question": "真正的现实主义作品,应该是以现实生活为________,恰如其分地展现当代人的欲望与焦虑,欢喜与忧愁。而正是这样一部部具有现实质感的作品,不仅能够与观众对话,也能够为我国电视剧的高质量发展____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 基础 推波助澜\nB. 目标 锦上添花\nC. 依托 保驾护航\nD. 源泉 添砖加瓦", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 386612, "human_acc": 55.7132215244, "source": "2022下半年省考第十九季行测模考大赛(浙江C卷)第27题", "difficulty": 6, "formulas": 0}, {"id": 5649338, "material": "", "question": "拔尖创新人才培养是一项关涉教育的__________工程。创新在心理层面往往起源于好奇心,然后再逐渐发展成追求真理、探索未知的科学精神,在能力层面则是从点滴的知识积累,转化到产出创新成果,从科学家成长规律来看,这些都需要____________地升华。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 艰巨性 聚沙成塔\nB. 复杂性 由表及里\nC. 精细化 按部就班\nD. 系统性 循序渐进", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 42508, "human_acc": 73.4779335654, "source": "2023下半年省考第十二季行测模考大赛(西藏卷)第5题", "difficulty": 4, "formulas": 0}, {"id": 2377270, "material": "", "question": "金砖是中国传统窑砖烧制业中的珍品,古时专供宫殿等重要建筑使用,因质地坚细、敲之有金石之声而得名。帝制结束后,金砖不再被需要,制作手艺 _______民间。上世纪80年代,砖瓦匠人金梅泉通过摸索,初步恢复了金砖的古法制作,令金砖“_________ ”。 该技艺被列入中国首批国家级非物质文化遗产名录。", "type": "单选题", "options": "A. 散落 死而复生\nB. 流落 柳暗花明\nC. 流传 重见天日\nD. 散失 卷土重来", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 1739179, "human_acc": 41.8576236259, "source": "2019年四川省选调优秀大学毕业生到基层工作《行测》试题(网友回忆版)第30题", "difficulty": 6, "formulas": 0}, {"id": 4734856, "material": "", "question": "拍卖公司在书信作者仍然在世并且强烈反对的情况下,为了商业利益仍然____________的做法,令世人________。若拍卖如期进行,不仅让原作者心寒,更对整个社会的道德风尚、法制建设有着负面的影响。因此我们反对任何不尊重法律、不尊重他人权利的侵权行为,支持作者维权。希望相关个人和公司悬崖勒马,别让老人伤心,更别对不起自己的良心。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 一意孤行 不耻\nB. 一意孤行 不齿\nC. 独树一帜 不耻\nD. 独树一帜 不齿", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 4057, "human_acc": 77.2738476707, "source": "2017年福建省选调生考试《行政职业能力测验》第37题", "difficulty": 4, "formulas": 0}, {"id": 2621089, "material": "", "question": "近年来,网暴屡禁不止,且新变种不断,________法治建设跟上互联网发展的紧迫性。此外,舆情处置“按闹分配”倾向也在加剧网暴。这个“软肋”已被利益群体广泛利用,动辄调动网络水军和自媒体联动,制造虚假舆情,倒逼主管部门出手________。可见,“按闹分配”与构建法治社会的现代治理原则____________,是一种低效治理模式。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 凸显 压制 背道而驰\nB. 显著 控制 截然相反\nC. 突显 管制 渐行渐远\nD. 显现 抑制 分道扬镳", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 116486, "human_acc": 69.8401524647, "source": "2020年下半年省考第三季行测模考大赛(江苏卷)第40题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3531, "material": "", "question": "将选项中的词语依次填入下列横线中最恰当的一组是:\n①人人都有心中最值得______和喜欢的地方,或许是城市小巷,或许是山林大川,总会有个地方值得你去向往。\n②他不顾刺骨的寒冷跳进河中,救上三名落水儿童,全体师生都在______他英勇救人的事迹。", "type": "单选题", "options": "A. 留念 传诵\nB. 留念 传颂\nC. 留恋 传诵\nD. 留恋 传颂", "choice": "D", "keypoints": "词的辨析-固定搭配;关联词-并列;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 91662, "human_acc": 77.1999301783, "source": "2008年广东省公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2737610, "material": "", "question": "古人重名讳,君子之名或蕴含吉祥的寓意,或寄托特殊的纪念,也闪现着上古先民的智慧之光。商周金文中出现的人名不胜枚举,有的名字____________,颇具时代特色;有的名字则突破了种种规则,令人____________,颠覆了人们对上古时期名字的一些认知。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 精雕细琢 啧啧称奇\nB. 中规中矩 耳目一新\nC. 古香古色 始料未及\nD. 稀松平常 叹为观止", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 146700, "human_acc": 51.7396046353, "source": "2021上半年省考第二季行测模考大赛(广东卷)第2题", "difficulty": 6, "formulas": 0, "history": [{"id": 5521220, "material": "", "question": "将下列选项中的成语填入横线处。最恰当的一项是(    )。\n\n十年来,面对严峻复杂的国际形势和接踵而至的巨大风险和挑战,党中央运筹帷幄,____________,作出一系列重大科学判断,提出一系列重大战略策略,推动一系列重大工作,始终掌握新时代新征程党和国家事业发展的历史主动。", "type": "单选题", "options": "A. 处之泰然\nB. 指挥若定\nC. 稳操胜券\nD. 应付裕如", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 364578, "human_acc": 59.6541755125, "source": "2023年深圳市考公务员录用考试《行测》试题(网友回忆版)第61题", "difficulty": 5, "formulas": 0}, {"id": 4660345, "material": "", "question": "森林是陆地生态系统的重要组成部分,在保证陆地生态系统完好,维护生物多样性方面发挥着____________的作用。但森林资源并不是取之不尽,用之不竭的,要保护好森林资源,因为我们正处在人类命运共同体之中,环环相扣,____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 举足轻重 珠联璧合\nB. 不可替代 祸福相依\nC. 不可或缺 一脉相承\nD. 无与伦比 休戚与共", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 52548, "human_acc": 77.7536728325, "source": "2021下半年省考第三十九季行测模考大赛(西藏卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 5368052, "material": "", "question": "中共十八大以来,中国减贫事业最大的成就是历史性地消除了绝对贫困,消除绝对贫困不仅在中国历史上尚属首次,在人类历史上也____________。成绩的取得,得益于改革开放40多年来,中国没有搞“一刀切”式的同步富裕,而是采取了____________的发展方式,坚持探索先富带动后富的共同富裕模式,为消除贫困奠定了坚实基础。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 绝无仅有 循序渐进\nB. 空前绝后 张弛有度\nC. 举世无双 按图索骥\nD. 独树一帜 按部就班", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 270468, "human_acc": 93.1792300753, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第31题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2748374, "material": "", "question": "人类面临的共同风险挑战越来越突出,各国命运________________,彼此相互依存,没有国家能够置身其外,国际社会只有________________、患难与共,才能共克时艰、破浪前行。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 风雨同舟 齐心协力\nB. 息息相关 众志成城\nC. 一脉相承 万众一心\nD. 休戚与共 勠力同心", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 433608, "human_acc": 63.3122543865, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第51题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4737377, "material": "", "question": "相比线下宣传模式,互联网宣传的传播速度和广度可以引来巨大的流量和关注度,起到____________的效果。因此,许多景区纷纷热衷于借助互联网渠道进行宣传,希望成为“网红”景点,这本____________。但遗憾的是,一些景区在这条路上走偏了,太过____________,不寻思稳扎稳打地修炼“内功”,只妄想靠裹着厚厚滤镜的照片甚至“照骗”出圈。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 卓有成效 不置可否 舍本逐末\nB. 立竿见影 无可厚非 急公好义\nC. 事半功倍 无可非议 急功近利\nD. 一劳永逸 理所应当 剑走偏锋", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 260225, "human_acc": 83.9511960803, "source": "2022上半年省考第八季行测模考大赛(陕西卷)第33题", "difficulty": 3, "formulas": 0, "history": [{"id": 5507531, "material": "", "question": "对一代代中国人来说,“正家而天下定”的理念____________,“身修而后家齐,家齐而后国治,国治而后天下平”是中国人惯有的实践逻辑,以“家文化”补给中华民族共有精神家园建设,能够逐步将民族共有精神文化的实践渗入到每一个“家文化”的单元格。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 积重难返\nB. 颠扑不破\nC. 根深蒂固\nD. 固若金汤", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "B", "human_count": 31715, "human_acc": 83.660728362, "source": "2023上半年省考第十季行测模考大赛(通用卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2524622, "material": "", "question": "巴赫的音乐中确有抒情性很强的作品,如《小步舞曲》《G弦上的咏叹调》《前奏曲与赋格》等,委婉动听,然而多数作品还是十分________的。其赋格繁复、复调变幻,技巧如数学逻辑一般严密,给人以________而深邃的感觉,所以不易理解。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 晦涩 缥缈\nB. 理性 复杂\nC. 严谨 虚幻\nD. 小众 玄妙", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 195145, "human_acc": 35.0272874017, "source": "2021年国考第二季行测模考大赛(地市级)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4835467, "material": "", "question": "幼儿园组织小朋友每人制作1个花环,现需在花环的六个等分点处粘贴装饰品,有粉、橙、绿、蓝四种颜色的花各1朵以及紫、黄两种颜色的蝴蝶结各1个。若除要求两个蝴蝶结不能相邻外,小朋友可自由粘贴,则至少有多少个小朋友参与此次制作才能保证一定有2个小朋友制作的花环完全一样?(假设每个花环大小、形状均相同)", "type": "单选题", "options": "A. 12\nB. 13\nC. 72\nD. 73", "choice": "D", "keypoints": "环形排列问题;不相邻问题;最不利构造", "most_wrong": "C", "human_count": 323540, "human_acc": 19.0322680349, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第38题", "difficulty": 7, "formulas": 0, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"], ["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "最值问题", "最不利构造"]]}, {"id": 622191, "material": "", "question": "生活中常见的条形码是将宽度不等的多个黑条和白条,按一定的编码规则排列,用以表达一组信息的图形标示符。下列关于条形码的表述不正确的是:", "type": "单选题", "options": "A. 日本人最早使用了条形码\nB. 要将条形码转化成有意义的信息,需要扫描和译码\nC. 条形码有输入速度快、采集信息量大、可靠性高等优点\nD. 通用商品条形码一般由前缀部分、制造厂商代码、商品代码和校验码组成", "choice": "A", "keypoints": "科技理论与成就;生活常识", "most_wrong": "C", "human_count": 440011, "human_acc": 61.2780135042, "source": "2014年四川省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"], ["常识判断", "科技常识", "生活常识"]]}, {"id": 2737559, "material": "", "question": "网络媒介带来了视听的新体验,其风险在于虚拟空间给人们提供娱乐刺激的同时也是对现实的一种________,碎片化及随性化的网络表达似乎更难保证信息传播的完整性乃至信息源头的____________。尼尔·波兹曼在《娱乐至死》中写道,“媒介的独特之处在于,虽然它指导着我们看待和了解事物的方式,但它的这种介入却往往不为任何人所注意”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 混淆 持续性\nB. 遮蔽 真实性\nC. 复制 可靠性\nD. 消散 权威性", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 158801, "human_acc": 88.0384884226, "source": "2021上半年省考第二季行测模考大赛(陕西卷)第26题", "difficulty": 3, "formulas": 0, "history": [{"id": 2527262, "material": "", "question": "唐代财政史,素为唐史中的一个热点,不知多少学者数十年________其中,对赋税、仓廪、漕运、专卖、俸禄、机构设置等各个方面分门别类地进行了深入细致的研究,成果极为________,可谓“土狭人稠,田无不耕”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 浸淫 丰硕\nB. 沉迷 详尽\nC. 耽溺 完善\nD. 潜心 充沛", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 30783, "human_acc": 46.7888120066, "source": "2020年上半年省考第二十七季行测模考大赛(湖南卷)第19题", "difficulty": 6, "formulas": 0}, {"id": 2387748, "material": "", "question": "公众与科学的关系构成反思科学的直接动力,而公众对科学的________又是反思科学的最大阻力,比如一些公众往往认为科学等于正确、科学技术能够解决一切问题。而实际上,科学理论________的不完善以及科学的界限,都足以说明,科学技术是有能力边界的。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推崇 本质\nB. 盲从 客观\nC. 误解 内在\nD. 依赖 自身", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 1640701, "human_acc": 21.5493255627, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第24题", "difficulty": 5, "formulas": 0}, {"id": 4197964, "material": "", "question": "移动互联网时代,网络早已成为青少年生活学习的“标配”,但青少年往往自律不足,容易________于网络不能自拔。应该意识到的是,之前对于网络“一刀切”的做法已经行不通了,要让网络成为青少年生活的一部分,加强正向引导,进而________网络促进青少年健康成长。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 沉浸 依靠\nB. 沉溺 借助\nC. 沉迷 借鉴\nD. 陶醉 利用", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "C", "human_count": 194501, "human_acc": 94.7301042154, "source": "2021下半年省考第二十一季行测模考大赛(广东乡镇卷)第2题", "difficulty": 3, "formulas": 0}, {"id": 1503485, "material": "", "question": "尼采把母鸡下蛋的啼叫和诗人的歌唱相提并论,说都是“痛苦使然”。这个家常而________的比拟,也恰恰符合中国文艺传统里一个________的意见:苦痛比快乐更能产生诗歌,好诗主要是不愉快、烦恼或“穷愁”的表现和发泄。在中国古代,这个意见不但是诗文理论里的常谈,而且成为写作实践里的套路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 形象 主流\nB. 通俗 主观\nC. 尖刻 偏执\nD. 生动 流行", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 717646, "human_acc": 17.8059934843, "source": "2015年四川省公务员录用考试《行测》题(上半年)第19题", "difficulty": 5, "formulas": 0}, {"id": 5571830, "material": "", "question": "推广礼让斑马线最核心的________在于,降低事故风险、保护行人安全过街。除了安全考量外,驾驶人合理的顾虑也需要重点解决:人车流量大的地方,交通拥堵如何解决;面对“中国式过马路”,如何避免部分行人把安全保护措施当成“特权”。所以对行人和驾驶人的引导与教育也很有必要,唯有如此,礼让斑马线才能成为________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 目的 底线\nB. 行为 良俗\nC. 企图 公约\nD. 用意 共识", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 3082, "human_acc": 94.4192083063, "source": "2023下半年省考第三季行测模考大赛(陕西卷)第28题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 1797194, "material": "", "question": "吴王城虽然年代久远,但今天还有不少__________,在文化研究方面具有很高价值。因此,政府应科学制定吴王城长期保护整体规划,并进入法律保护程序,形成地方性文物保护法规,使文物保护工作有__________和生命力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遗存 延续性\nB. 记载 规范性\nC. 痕址 专业性\nD. 文物 操作性", "choice": "A", "keypoints": "对应关系-解释类对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 839498, "human_acc": 56.3831003767, "source": "2016年山东省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0, "history": [{"id": 4637390, "material": "", "question": "太阳能、风能是产生电力的主要可再生新能源,但都具有随机性、__________、波动性等特点。太阳能光板在晴天、白天时能发电,阴天、夜晚时就“罢工”了,风能发电也跟风力和天气息息相关。因此,目前迫切需要大规模储能装置,将富余的电能储存起来,在发电不足的时间用,以保证电力的________供给。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 地域性 持续\nB. 阶段性 弹性\nC. 间歇性 平稳\nD. 周期性 高效", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 2736603, "human_acc": 72.8855080551, "source": "2022年国家公务员录用考试《行测》题(地市级网友回忆版)第26题", "difficulty": 3, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5431041, "material": "", "question": "一边是线上体育空前火爆,一边是线下全民健身设施覆盖率不断提高、各类群众赛事活动____________。现实生活里的火热实践叠加网络空间的放大效应,让全民健身这座“大花园”更加____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 百花齐放 绚丽多彩\nB. 粉墨登场 五彩斑斓\nC. 如火如荼 美轮美奂\nD. 大放异彩 蓬荜生辉", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 262758, "human_acc": 71.2065855274, "source": "2023上半年省考第一季行测模考大赛(深圳卷)第67题", "difficulty": 4, "formulas": 0, "history": [{"id": 161431, "material": "", "question": "历史反复昭示我们,向海而兴,背海而衰,是一条________的铁律。中华民族要实现伟大复兴,必须________地走向海洋、经略海洋,坚定不移地走以海富国、以海强国的和平发展之路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 亘古不变 义无反顾\nB. 一成不变 勇往直前\nC. 原封不动 理直气壮\nD. 颠扑不破 昂首阔步", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 2017891, "human_acc": 74.9317480478, "source": "2014年国家公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 2654098, "material": "", "question": "路风教授推出的新著《新火》,为中国制造破解逆全球化困局提供了对策。对读者来说,阅读《新火》不啻为一场用逻辑对历史____________的探秘解谜之旅。根据路风的采访可知,中国核电工业自主创新,不是一个花团锦簇的新闻,而是几代中国工业人____________的创业史。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 条分缕析 壮士断腕\nB. 抽丝剥茧 披荆斩棘\nC. 鞭辟入里 白手起家\nD. 按图索骥 踏石留印", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 159275, "human_acc": 77.9438078795, "source": "2021年国考第十八季行测模考大赛(副省级)第35题", "difficulty": 4, "formulas": 0}, {"id": 43769, "material": "", "question": "可以毫不夸张地说,每一个老字号背后都是道不尽的__________,数不清的传奇风流。但是有的地方的老字号或者消失或者__________,唯独广州的中药老字号不仅数量多,而且各个越活越年轻。这其实与广州人对中医药文化的推崇和信任__________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 人生百态 朝不保夕 息息相通\nB. 辛酸无奈 岌岌可危 休戚相关\nC. 沧海桑田 危在旦夕 休戚与共\nD. 苦心孤诣 奄奄一息 息息相关", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 1865107, "human_acc": 44.0369909072, "source": "2013年国家公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 5028915, "material": "", "question": "汪曾祺的名字,在喜欢阅读者中几乎____________。他是中国当代文学史上著名的作家、散文家、戏剧家,京派作家的代表人物。他的散文没有结构上的____________,也不追求题旨的玄奥深奇,而是平淡质朴,娓娓道来,如话家常。因此,品读汪曾祺的散文好像聆听一位性情和蔼、见识广博的老者谈话,虽然话语平常,但饶有趣味。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 耳熟能详 佶屈聱牙\nB. 众所周知 处心积虑\nC. 路人皆知 独出心裁\nD. 无人不晓 苦心经营", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 371722, "human_acc": 49.3400982455, "source": "2022上半年省考第二十二季行测模考大赛(广东县级卷)第3题", "difficulty": 6, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 21575, "material": "", "question": "社区活动中心有40名会员,全部由老人和儿童组成。第一次社区活动组织全体老年会员参加,第二次活动组织全体女性成员参加。结果共有12人两次活动全部参加,6人两次活动全未参加。已知老人与儿童的男女比例相同,且老人数量多于儿童,问社区活动中心的会员中,老人,儿童各多少名:", "type": "单选题", "options": "A. 30 10\nB. 18 22\nC. 28 12\nD. 25 15", "choice": "A", "keypoints": "和差倍比问题;两集合", "most_wrong": "C", "human_count": 279092, "human_acc": 44.0446161122, "source": "2012年安徽省公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0, "history": [{"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 1130069, "material": "", "question": "某部门共有82人,其中男性62人,本省籍42人,不是本省籍的女性11人,则本省籍的男性人数有:", "type": "单选题", "options": "A. 33\nB. 21\nC. 22\nD. 23", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 55491, "human_acc": 84.125353661, "source": "2010年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 3, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 1002731, "material": "", "question": "天气预报看似很_______,只有寥寥几句话,但实际上,要做出_______的天气预报,工程量非常大。而且,气象是一个大环境,大气运动本身又_______,这是天气预报有时不准确的根本原因所在。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 轻松 准确 无迹可寻\nB. 平常 精密 变幻莫测\nC. 普通 精确 难以捉摸\nD. 简单 精准 错综复杂", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 2656908, "human_acc": 73.3555697073, "source": "2015年国家公务员录用考试《行测》题(省部级)第35题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5333552, "material": "", "question": "作为疏浚“神器”的天鲲号是亚洲最大的重型自航绞吸船。然而在建造初期,由于国内尚无此类船舶的设计建造经验,且不具备重型自航绞吸船建造模拟实验环境,所以从船舶初步设计到技术规格书制定,再到生产设计,整个过程________,只能在实际生产中步步推进。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 寸步难行\nB. 进退维谷\nC. 筚路蓝缕\nD. 步履维艰", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 252447, "human_acc": 79.8979587795, "source": "2022下半年省考第十五季行测模考大赛(浙江A卷)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 5344150, "material": "", "question": "晚清时期,就有民间慈善组织开展疫灾防治工作的事例。不过,这些慈善组织没有调配社会资源的权力,其经费与物资多由一些有社会责任感的绅商筹措。所以,在应对疫情的过程中,这些慈善组织会出现____________的窘状。如光绪二十年广州暴发疫情,“城厢内外,施医局因求治者纷至沓来,有____________之势”。因此,对慈善组织防治疫情的成效不宜做过高估计。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 于事无补 不堪重负\nB. 捉襟见肘 应接不暇\nC. 投鼠忌器 分身乏术\nD. 左支右绌 力有不逮", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 257658, "human_acc": 48.7918092976, "source": "2022下半年省考第十六季行测模考大赛(浙江C卷)第27题", "difficulty": 6, "formulas": 0}, {"id": 5187204, "material": "", "question": "西北的重要性是____________的,汉唐时代,国家对外交流的通道主要在西边,向西开拓是历代帝王最为关心的事业,故西域是国家繁盛与否的关键点,一旦失去西域,河陇就不得安宁,帝国就____________,故以西安为都城的王朝,皆十分重视西北。对西北的开发,是一个漫长的过程,由于西北作为门户、通道的重要性无与伦比,故历代王朝始终____________的进行着开发西北的伟业。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不言而喻 分崩离析 坚持不懈\nB. 显而易见 岌岌可危 有条不紊\nC. 毋庸置疑 危在旦夕 锲而不舍\nD. 无可厚非 名存实亡 持之以恒", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 8576, "human_acc": 70.0093283582, "source": "2022下半年省考第六季行测模考大赛(新疆兵团卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2443069, "material": "", "question": "我国艺术品拍卖市场异常火爆,大多数人看重的并非艺术品的文化价值,而是它的经济价值。所以,在这个过程中,并不能说明国民文化素质____________。这更多只是表明艺术品的________价值而非文化价值受到了一些有钱人的重视。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 与日俱增 投资\nB. 突飞猛进 市场\nC. 水涨船高 商业\nD. 相形见绌 收藏", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 599928, "human_acc": 40.5732021176, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 49801, "material": "", "question": "周敦颐通过自己的努力,丰富和发展了儒学思想理论体系,开拓了儒学发展的新境界,使之________,一扫魏晋南北朝及隋唐五代的_________,回归到原有的正统地位,赢得了与释、道竞争的全面胜利,取得了意识形态的主导权。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 独树一帜 弊端\nB. 柳暗花明 萧条\nC. 脱胎换骨 落寞\nD. 焕然一新 颓势", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 804587, "human_acc": 82.0228266179, "source": "2013年山东省公务员录用考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 3532734, "material": "", "question": "花钱买方便、买开心、买寄托、买未来——消费领域自有无限拓展空间。问题是,一旦僭越了诚信、品质等商业底线,于商家而言,就会使得多年的苦心经营____________。至于眼下风口浪尖上的盲盒,必须________:其“盲”只是所购物品的不确定性,而非成为灰色交易的暗箱,成为法律和道德的盲区,成为消费者权益的黑洞。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一事无成 分清\nB. 毁于一旦 厘正\nC. 付之东流 厘清\nD. 百无一用 辨清", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 85310, "human_acc": 58.1678583988, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第28题", "difficulty": 6, "formulas": 0}, {"id": 5368070, "material": "", "question": "跨学科研究奉行“走进去”与“看回来”两个基本原则,新的文学问题召唤一个敢于向自然学科“走进去”、________数字时代需求的新范式,数字人文____________。数字人文具备跨学科的特征,而中外学者也对其表示认同。因此,只要讨论数字人文就离不开对“跨学科”的认知,这一点____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 契合 恰逢其时 不言而喻\nB. 匹配 应运而生 毋庸讳言\nC. 弘扬 任重道远 不言自明\nD. 顺应 登堂入室 毋庸置疑", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 285177, "human_acc": 41.5422702392, "source": "2022下半年省考第十八季行测模考大赛(江苏C卷)第40题", "difficulty": 7, "formulas": 0}, {"id": 5162113, "material": "", "question": "若仅以“企业污染排放达标”来________投诉群众,则无法让老百姓满意。深入打好污染防治攻坚战,对达标扰民的环境问题,职能部门决不能____________,而必须有所作为。随着各种新技术新工艺新产品的推出,新的污染物也在不断产生,而现行的环境标准体系中有的已经落后于形势。因此,应____________,修订现行环境标准,制定新的环境标准,填补现行环境标准的空白。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 安抚 退避三舍 破旧立新\nB. 应对 爱莫能助 与时俱进\nC. 敷衍 袖手旁观 精益求精\nD. 处置 纸上谈兵 革故鼎新", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 111514, "human_acc": 20.802769159, "source": "2022下半年省考第五季行测模考大赛(江苏卷)第38题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2443097, "material": "", "question": "罗曼·罗兰:最可怕的敌人,就是没有坚强的信念!顾城:黑夜给了我黑色的眼睛,我却用它来寻找光明!这些____________的名句既有艺术感染力又具有强大的生命力,所以能____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 喜闻乐见 千古传颂\nB. 脍炙人口 传诵至今\nC. 交口称誉 源远流长\nD. 口碑载道 名流千古", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 588495, "human_acc": 89.7458771952, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 412301, "material": "", "question": "1972年,联合国教科文组织在巴黎通过了《保护世界文化和自然遗产公约》,成立联合国教科文组织世界遗产委员会,其宗旨在于促进各国和各国人民之间的合作,为合理保护和恢复全人类共同的遗产做出积极的贡献。\n\n下列亚洲的世界文化和自然遗产与所在国家对应错误的是:", "type": "不定项", "options": "A. 柬埔寨:吴哥窟\nB. 中国:三清山\nC. 泰国:泰姬陵\nD. 尼泊尔:佛祖诞生地兰毗尼", "choice": "C", "keypoints": "地理国情", "most_wrong": "D", "human_count": 18949, "human_acc": 29.9329779936, "source": "2014年上海市公务员录用考试《行测》题(A类)第114题", "difficulty": 7, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "地理国情"]]}, {"id": 5563399, "material": "", "question": "古埃及人的象形文字从一开始就包含了24个单音符号,即字母。但是他们至文明终结,也未________字母形式,而是钟情于表意符号、表音符号和限定符号揉在一起的混合机制。不仅如此,象形文字在发展过程中愈发复杂和繁琐,用文化达尔文主义很难________这个现象。正如阿斯曼所说的,用象形的文字(神的话语),把可能会________的物质或概念雕刻在石头上,以此营造神圣的永恒空间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 采用 解释 湮灭\nB. 选取 论证 消失\nC. 认可 阐述 毁灭\nD. 沿袭 说明 沉寂", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 6206, "human_acc": 82.2429906542, "source": "2023下半年省考第二季行测模考大赛(陕西卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 5480386, "material": "", "question": "面向2035的高校学科优化调整布局,不是简单的当前任务,而是具有历史__________的改革。从历史脉络看,我国高校学科优化调整布局是一个不断进行“裂变”“分化”和“更新”的过程,新时代高校学科优化调整布局既承接着历史的遗传基因,也孕育着未来的更新创造。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 颠覆性\nB. 延续性\nC. 前瞻性\nD. 创新性", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 31233, "human_acc": 52.0763295233, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第61题", "difficulty": 6, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2247252, "material": "", "question": "曾几何时,地上电杆林立,空中线缆交错成为城市进入工业化、信息化时代的______,但随着社会发展,城市上空纵横交错的各种线缆就像一张张“蜘蛛网”,不但影响市容,还存在各种安全隐患,因此,架空线入地乃______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 象征 众望所归\nB. 旗帜 板上钉钉\nC. 标志 大势所趋\nD. 号角 水到渠成", "choice": "C", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 64665, "human_acc": 89.2105466636, "source": "2018年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5493111, "material": "", "question": "中华文化历来主张“家国同构”“家国一体”,这种“大一统”思想____________。“大一统”不以消灭差异或消灭不同的文化与民族为目标,而是主张求同存异:坚持一致性与__________相统一。这些思想与传统,使中国无论经历多少磨难,在历史上都能够作为泱泱大国屹立在世界东方,成为世界上唯一保持文化传统不间断的文明古国。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 历久弥新 普遍性\nB. 积厚流光 单一性\nC. 经久不衰 完整性\nD. 源远流长 多样性", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 34916, "human_acc": 86.5906747623, "source": "2023上半年省考第九季行测模考大赛(西藏卷)第5题", "difficulty": 3, "formulas": 0, "history": [{"id": 5447466, "material": "", "question": "如今,越来越多煤矿用上5G,变得更加“________”:工人们不再像以前那样“下井”了,而是坐在办公室里,远程操控相关机器设备进行井下采煤作业,开采、运输等画面实时、清晰地呈现在办公区大屏幕上,____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 精准 一览无余\nB. 便捷 纤毫毕现\nC. 高效 一清二楚\nD. 智慧 一目了然", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 240639, "human_acc": 69.9408657782, "source": "2023上半年省考第四季行测模考大赛(四川卷)第21题", "difficulty": 4, "formulas": 0}, {"id": 4697504, "material": "", "question": "当一种物质需要转化为另一种物质时,需要达到一个很高的能量级别,有的化学反应速率不足,很难越过这个像高山一样的能级,遂“____________”或“踟蹰前行”。而大自然会使用酶来削低这座山的高度,加速转化过程,科学家们称它为“生物________”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 畏葸不前 基因\nB. 进退维谷 驱动\nC. 望而却步 催化\nD. 亦步亦趋 调节", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 379756, "human_acc": 80.29682217, "source": "2022上半年省考第五季行测模考大赛(陕西卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 4906806, "material": "", "question": "西方理论的确给中国文学研究带来了新气象,但是它也存在一些明显的________。比如,基本上忽视甚至无视中国传统文体学,套用西方文学范式来分割研究中国文学。以西方的纯文学文体学来衡量中国传统杂文学的文章文体学,遮蔽了中国传统文章中大量的实用文体,这与传统文章学的语境相去甚远,难免有____________之憾。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 弊病 一叶障目\nB. 漏洞 邯郸学步\nC. 缺陷 削足适履\nD. 局限 以偏概全", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 342746, "human_acc": 55.1481271846, "source": "2022上半年省考第十五季行测模考大赛(陕西卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 2719326, "material": "", "question": "内太阳系的岩石行星与外太阳系的气态行星最初的物质构成____________。科学家此前认为,由于木星质量大、引力强,可以在一些物质到达内太阳系之前将其________,阻止了内外太阳系物质的混合。但研究表明,木星的成长速度不足以阻止外太阳系物质源源不断流入内太阳系,这意味着内外太阳系行星将拥有________的成分。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大同小异 阻拦 共同\nB. 相去甚远 消灭 全新\nC. 千姿百态 捕获 独特\nD. 大相径庭 吞噬 类似", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 2746801, "human_acc": 59.0048933286, "source": "2021年国家公务员录用考试《行测》题(副省级网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 4546397, "material": "", "question": "高校辅导员指导就业优势在于其掌握学生信息,熟悉学生个体差异,____________。大学生顺利实习常需借助各种其他关系,辅导员所拥有的同学资源、社会关系正好能起到________作用。目前,我国高等教育已经由“精英教育”转变为“大众教育”,部分家长和大学生仍然按“精英教育”标准对待就业选择,这无疑是____________,影响到大学生的就业质量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 事半功倍 主导 刚愎自用\nB. 有的放矢 补充 方枘圆凿\nC. 对症下药 辅助 南辕北辙\nD. 胸有成竹 引领 格格不入", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 307096, "human_acc": 57.1716987522, "source": "2022年国考第三十七季行测模考大赛(行政执法类)第37题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5670708, "material": "", "question": "在月球和火星探测上,我国起步晚,需要向先行者、先进者学习,________这不意味着可以亦步亦趋去效仿。________突破了自主避障和月夜生存技术,嫦娥三号着陆月球不再盲降,________可以在月球上工作更长时间。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不过 即使 也\nB. 所以 因为 而且\nC. 而且 虽然 同时\nD. 但 由于 甚至", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-因果关系", "most_wrong": "A", "human_count": 7291, "human_acc": 94.8703881498, "source": "2023下半年省考第十四季行测模考大赛(上海卷)第4题", "difficulty": 3, "formulas": 0, "history": [{"id": 5738145, "material": "", "question": "一般酸奶储存在$4^{\\circ}C$的环境下,平均保质期是21天。________在生活中,很多超市在促销时,直接把酸奶放在常温下,________运输和储存中没有冷链环境,都会缩短保质期,________应谨慎购买临期商品。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 况且 甚至 也要\nB. 但是 或者 因此\nC. 然而 并且 而且\nD. 可是 不管 故而", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-因果关系", "most_wrong": "D", "human_count": 9670, "human_acc": 90.2895553257, "source": "2023下半年省考第二十季行测模考大赛(上海卷)第4题", "difficulty": 3, "formulas": 1}, {"id": 5580810, "material": "", "question": "当下,成年人最常见的精神障碍——焦虑症和抑郁症已受到越来越多人的关注,________儿童青少年常见的精神障碍如抑郁症,还需要社会各界的更多了解。与成人不同,很多儿童青少年患者的抑郁症状并不典型,________很容易被家长误解或忽视,________给孩子带来更大伤害。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 然而 不仅 而且\nB. 可见 之所以 是因为\nC. 因此 尽管 却\nD. 但 因此 从而", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-因果关系", "most_wrong": "A", "human_count": 4555, "human_acc": 81.2952799122, "source": "2023下半年省考第四季行测模考大赛(广东县级卷)第20题", "difficulty": 4, "formulas": 0}, {"id": 5417506, "material": "", "question": "有的人觉得自己成绩斐然金光闪闪,________在别人眼里完全没有掀起波澜。有的人虽然抠门,________仍然有很多朋友,________他有其他的优点。________许多时候只要就事论事就好,并且允许别人跟自己想得不一样,不是所有的东西大家认知都要高度一致。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 但是 但 即便 但\nB. 但是 但 因为 所以\nC. 且 因此 即便 但\nD. 且 因此 因为 所以", "choice": "B", "keypoints": "关联关系-转折关系;关联关系-因果关系", "most_wrong": "A", "human_count": 785, "human_acc": 95.6687898089, "source": "2022下半年省考第二十三季行测模考大赛(深圳卷)第64题", "difficulty": 3, "formulas": 0}, {"id": 5717286, "material": "", "question": "二三十年来的散文的一个特点,是过分重视抒情。似乎散文可以分为两大类:抒情散文和非抒情散文。________是非抒情散文中,________多少要有点抒情成分,似乎非如此即不足以称散文。散文的天地本来很广阔,________强调抒情,________把散文的范围弄得狭窄了。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 除非 不然 只要 便\nB. 就算 仍 不但 而且\nC. 即使 也 因为 反而\nD. 尽管 但 不是 而是", "choice": "C", "keypoints": "关联关系-转折关系;关联关系-因果关系", "most_wrong": "B", "human_count": 119, "human_acc": 94.1176470588, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第67题", "difficulty": 3, "formulas": 0}, {"id": 5607419, "material": "", "question": "创新盈利模式,借由会员制等方式赚钱,本身无可厚非。________,营收无道、盈利无度不可行。________打开电视后鲜见电视节目,而是层出不穷的收费单、充值卡,只会消磨掉用户的信任和耐心。________电视厂商应认清服务属性,在营收发展与服务用户中找到共识点,才能实现经营方式可持续、平台用户能共赢的长远目标。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 但是 假设 只有\nB. 诚然 如果 所以\nC. 因为 假如 只要\nD. 然而 倘若 因此", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-因果关系", "most_wrong": "A", "human_count": 5168, "human_acc": 54.8761609907, "source": "2023下半年省考第八季行测模考大赛(广东县级卷)第20题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 3593633, "material": "", "question": "职业教育所指的技能是技与能的结合,而技术则专指操作性技术,显然技能________了技术。中职教育重在培养技术型人才,而高职教育重在培养技能型人才。在现实中,一些中职学校一味求“高”,越位________对学生研发能力的培养,而一些高职院校却因________了对“能”的培养,沦为中职教育的替代,降低了应有的高度和质量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 包含 重心 忽略\nB. 囊括 偏重 搁置\nC. 涵盖 强化 懈怠\nD. 蕴藏 突出 轻视", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 89900, "human_acc": 43.0189098999, "source": "2021下半年省考第六季行测模考大赛(四川卷)第24题", "difficulty": 6, "formulas": 0, "history": [{"id": 1746660, "material": "", "question": "在某种程度上,各地博物馆收藏化石,是对我国化石资源最大程度的保护,但______的是,这种方式的收藏也不能被______,因为这就像吃鱼翅的人越多,遭到杀戮的鲨鱼就越多一样。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遗憾 复制\nB. 矛盾 鼓励\nC. 不幸 推广\nD. 尴尬 宣传", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "C", "human_count": 2898358, "human_acc": 65.6812581469, "source": "2016年国家公务员录用考试《行测》题(副省级)第23题", "difficulty": 5, "formulas": 0}, {"id": 4516273, "material": "", "question": "群体极化现象最常出现在群体讨论中。团体成员一开始即有某种偏向,在商议之后,人们朝着偏向的方向继续移动,最后往往形成________的观点。而在信息无限裂变、扩散的网络中,兴趣相投的个体相比于现实生活更容易聚合、集群,群体__________更加强烈,群体极化现象因此更为突出。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 极端 认同感\nB. 片面 归属感\nC. 偏颇 获得感\nD. 荒谬 满足感", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 216211, "human_acc": 73.6942153729, "source": "2021下半年省考第二十九季行测模考大赛(四川卷)第22题", "difficulty": 4, "formulas": 0}, {"id": 5428298, "material": "", "question": "截至2022年6月底,我国新能源汽车保有量超千万,其中,新注册登记的新能源汽车同比增长100.26%。按照这个趋势,新能源汽车市场的__________增长恐怕还将持续一段时间。然而,和新能源汽车销量猛增形成________的是,全国新能源汽车充电桩保有量只有261.7万个,车桩比3:1,仍然存在较大________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 井喷式 抗衡 弊病\nB. 翻倍式 脱节 瑕疵\nC. 跨越式 分歧 短板\nD. 爆发式 错位 缺口", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 119092, "human_acc": 85.4776139455, "source": "2023上半年省考第一季行测模考大赛(陕西卷)第39题", "difficulty": 3, "formulas": 0}, {"id": 5745415, "material": "", "question": "在文学艺术的诸种门类中,没有比诗歌与音乐更为密切的了。在很长的历史时期里,诗歌与音乐是结合在一起的,后来诗歌与音乐虽然分了家,但二者一直是互相________的。诗歌与音乐尽管有相通之处,但作为两种不同的艺术门类,还是有所不同的。诉诸听觉的音乐可以传达欢乐、悲哀、悠闲等情绪,不受民族、地域的________,因此音乐是世界通用的语言,是没有国界的。而诗歌则由于各民族、各地域语言的差别,理解起来就没有那么________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 贯穿 限制 流畅\nB. 渗透 隔阂 便捷\nC. 影响 管制 通俗\nD. 融合 隔断 深奥", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 8348, "human_acc": 25.8744609487, "source": "2023下半年省考第二十一季行测模考大赛(陕西卷)第39题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4516291, "material": "", "question": "当下我们赖以生存的绘画环境与以往任何时候都不同,以至于曾经____________的画术技法,在一波接一波的艺术革新中,不再是放之四海而皆准的真理。因此当代人物画既不能是古人模式的________,也不能是脱离实际的想当然,而是以一种比较诙谐的方式表现主题,让这类小范围内受追捧的人物画,竟得以被理论家认为可与大篇幅主题创作____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 奉为圭臬 翻版 平分秋色\nB. 颠扑不破 延伸 等量齐观\nC. 耳熟能详 沿袭 分庭抗礼\nD. 深入人心 复刻 殊途同归", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 260273, "human_acc": 80.5857695573, "source": "2021下半年省考第二十九季行测模考大赛(四川卷)第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 2262786, "material": "", "question": "在当今时代,关于解释鸟类结群飞行,呈“V”字飞行,迁徙的理论____________,但最终答案几乎没有。作为大量趋同进化例子中的一个,昆虫和哺乳动物也进化出了飞行能力,但鸟类的飞行能力却尤为让人感到________。\n\n依次依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 比比皆是 困惑\nB. 层出不穷 神秘\nC. 屡见不鲜 怀疑\nD. 汗牛充栋 疑虑", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 27294, "human_acc": 47.5196013776, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第29题", "difficulty": 6, "formulas": 0}, {"id": 2050026, "material": "", "question": "所谓类文本,指的是出版物中所有作者文字之外的部分。尽管类文本也是阅读对象,但它们____________地成为阅读的主体,甚至造成了对于文本的阅读____________,实在有____________之嫌。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 反客为主 困难 以一持万\nB. 主客颠倒 妨碍 舍本逐末\nC. 太阿倒持 艰难 轻重倒置\nD. 喧宾夺主 障碍 本末倒置", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 1735978, "human_acc": 83.2836015203, "source": "2017年422联考《行测》题(湖南卷)第19题", "difficulty": 4, "formulas": 0}, {"id": 2701689, "material": "", "question": "多样广阔的平台、越来越低的门槛,使网文创作规模____________,但一些平台的版权管理、内容维护机制,资本推动并迎合市场的生产模式,使网络文学质量参差不齐。网络的便捷降低了抄袭难度,也________了“批判的武器”,开放的网络更容易溯及以往其他作品,来自不同人、不同作品间的甄别评判,使抄袭行为难以遁形。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一日千里 铸就\nB. 蔚为大观 锻造\nC. 浩如烟海 淬炼\nD. 突飞猛进 带来", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 181896, "human_acc": 42.5677310111, "source": "2021年国考终极行测模考大赛(地市级)第32题", "difficulty": 7, "formulas": 0}, {"id": 2742309, "material": "", "question": "弦理论有一项很古怪的推测,认为宇宙中________着成百上千种几乎隐形的粒子,并且在很久之前,这些粒子曾经组成过一张横跨整个宇宙的弦网络。尽管还未做到____________,但它是目前最接近真相的“万物理论”。这些假想粒子也被称为“轴子”,假如能________它们的存在,就意味着我们生活在一个广阔的“轴子宇宙”中。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 充斥 尽善尽美 证实\nB. 弥漫 无懈可击 辨明\nC. 汇聚 天衣无缝 判断\nD. 映现 自圆其说 验证", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 478524, "human_acc": 81.3190143023, "source": "2021年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第45题", "difficulty": 5, "formulas": 0}, {"id": 5344629, "material": "", "question": "长期以来,学术界围绕李自成起义军中谋主李岩“是否为乌有先生”的________始终不休。李岩是否确有其人?这看似是一个具体问题,却包括了两个不同层面——“作为自然人的李岩是否存在”及“影响李自成起义兴衰变化的谋主李岩是否存在”。前者是存在唯一答案的____________问题,其结果不以任何人的意志为转移;后者则与学者的____________密切相关,要合理论述李岩的历史意义,就要________小说叙事与客观历史的界限,这才是首要问题。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 争论 主观定性 客观猜想 理清\nB. 论辩 客观现实 主观判断 厘清\nC. 争论 主观推断 主观意识 厘清\nD. 论辩 客观实际 客观评价 理清", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 3884, "human_acc": 72.9402677652, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第2题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2719310, "material": "", "question": "近年来,3D打印技术开始应用于食品、建筑、医疗卫生、航空航天等多个领域。随着3D打印技术在金属零部件制造上取得较大进展,各国开始探讨其在武器装备制造与维修中的应用。研究表明,3D打印对军用武器及设施维修效果显著,能直接在战场上把需要的零部件“打印”出来,及时、精准完成受损装备的维修,快速恢复其作战能力。然而,这种方式制造的军用设备有着不可避免的缺陷,对装备材料要求极高的军用设备来说,除了尺寸受限,其强度和质量也令人担忧。受技术、成本的限制,3D打印技术难以取代大规模流水线生产。\n\n这段文字主要介绍了3D打印技术:", "type": "单选题", "options": "A. 广阔的应用前景\nB. 取得的最新进展\nC. 在军事领域的应用情况\nD. 与大规模流水线生产的区别", "choice": "C", "keypoints": "关联词-转折;主题词", "most_wrong": "D", "human_count": 2166484, "human_acc": 85.7812012459, "source": "2021年国家公务员录用考试《行测》题(地市级网友回忆版)第58题", "difficulty": 4, "formulas": 0, "history": [{"id": 769229, "material": "", "question": "《大秦帝国》、《汉武大帝》、《雍正王朝》……一部部歌颂盛世之治的文艺作品引来无数目光,然而,那些极尽繁华的书写却难掩历史叙事的思想缺失。从政治文化视野看,“盛世情结”叙事往往过分认同人治文化与功利立场。\n这段文字意在说明:", "type": "单选题", "options": "A. 历史叙事作品缺乏思想\nB. “盛世情结”作品的价值局限\nC. 文艺作品应该抛开功利立场\nD. 歌颂盛世的作品需重新审视", "choice": "B", "keypoints": "关联词-转折;主题词", "most_wrong": "D", "human_count": 104281, "human_acc": 51.8454943854, "source": "2011年广东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 20187, "material": "", "question": "三千多年前,当“中国”这个名词刚被使用时,它的范围只指今天的河南一带,以后才逐步扩大到黄河中下游地区。尽管这一地区并非今天中国的地理中心,却一直被认为是“天下中心”,并且长期雄踞中国政治、经济、文化中心的地位。\n\n这段文字主要谈的是:", "type": "单选题", "options": "A. “中国”一词在古代的真正含义\nB. 三千年以前中国大致的疆土范围\nC. 古代中国的政治、经济、文化中心\nD. 黄河中下游地区在历史上的重要地位", "choice": "D", "keypoints": "关联词-转折;主题词", "most_wrong": "A", "human_count": 434637, "human_acc": 55.426942483, "source": "2012年江西省公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 2376662, "material": "", "question": "金庸的小说有很强的代入感,深受读者喜爱。现在人们说高手在民间,就会想到“扫地僧”。金庸细致观察社会,深入理解大众心理。其实“扫地僧”这样的人物未必存在,但金庸带给普罗大众安慰,“你看顶尖人物或许跟我们一样生活”,这就给大众带来自我认同的心理暗示。\n\n这段文字意在强调", "type": "单选题", "options": "A. 文学创作需要长期的积累\nB. 虚构对文学创作意义重大\nC. 产生共鸣的作品才受欢迎\nD. 真实才是文学的终极追求", "choice": "C", "keypoints": "关联词-转折;主题词", "most_wrong": "B", "human_count": 1122692, "human_acc": 93.5548663391, "source": "2019年420联考《行测》题(吉林乙级)(网友回忆版)第31题", "difficulty": 3, "formulas": 0}, {"id": 48251, "material": "", "question": "看待社会公正问题,应防止落入平均主义这种无论在历史上还是在现实中都颇具诱惑力的窠臼中。虽然平均主义在某些领域是适用的,但若将其推广到所有领域尤其是分配领域,否认人的差别而要求平均分享一切,最终只会扼制人的积极性,扼杀社会发展的活力,不利于社会公正的实现。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 社会公正是相对的\nB. 平均主义是国人习惯的“窠臼”\nC. 平均主义适合非分配领域\nD. 追求社会公正并非要搞平均主义", "choice": "D", "keypoints": "关联词-转折;主题词", "most_wrong": "A", "human_count": 269758, "human_acc": 87.0910223237, "source": "2013年天津市公务员录用考试《行测》题第28题", "difficulty": 4, "formulas": 0}, {"id": 11881, "material": "", "question": "总会有些人是白手起家,总会有些人崛起于社会的底层,总会有些传奇人物从生命的低谷爬上了事业的高峰。所以有一句长盛不衰的励志口号叫:苦难成就人生。可是,我们不要忘了,泯灭于苦难之中的人何其多,升起的永远是佼佼者。苦难常常只是性格的催化剂,它使强者更强,弱者更弱,智者更智,愚者更愚。\n\n作者对苦难的看法是:", "type": "单选题", "options": "A. 苦难能够改变命运\nB. 苦难能够保持生命的热忱\nC. 苦难决定人的性格\nD. 苦难并不能成就人生", "choice": "D", "keypoints": "关联词-转折;主题词", "most_wrong": "C", "human_count": 41308, "human_acc": 66.1639391885, "source": "2009年山西省公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"]]}, {"id": 638485, "material": "", "question": "在危机出现之前,不少美国大银行由于在住房抵押贷款方面提供不实信息,____了投资者,因此投资者提出了上千亿美元的巨额现金赔偿要求,相关的法律诉讼和监管调查给这些经营刚刚有所好转的银行带来了新的_____ 。\n\n\n依次填入下列横线处的词语,最恰当的一组是:", "type": "单选题", "options": "A. 误导 压力\nB. 诱导 阻力\nC. 误导 阻力\nD. 诱导 压力", "choice": "A", "keypoints": "词的辨析-感情色彩;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 536262, "human_acc": 59.1697714923, "source": "2014年广州市公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2879663, "material": "", "question": "①来自法院系统的数据表明,全国法院每年颁发人身安全保护令的数据逐步增加\n\n②不久前,最高人民法院联合全国妇联、中国女法官协会召开发布会,发布人身安全保护令十大典型案例\n\n③而来自全国妇联信访统计数据显示,2018年妇联系统收到家暴投诉39371件,同比降低$11\\%$;2019年家暴投诉为36002件,同比降低$8.4\\%$\n\n④法院颁发人身安全保护令的数量不断增加,妇联系统接到的家庭暴力投诉数量逐年下降\n\n⑤近年来,随着反家庭暴力法的深入实施,相关法律和制度的不断完善,依法保护家庭成员合法权益的法治意识正在不断提升\n\n⑥这“一升一降”的变化,体现的正是国家依法保护家庭暴力受害者的力度不断加大,以及全社会反家庭暴力取得的阶段性成效\n\n将以上6个句子重新排序,语序正确的一项是:", "type": "单选题", "options": "A. ④①③⑥⑤②\nB. ②⑤④⑥③①\nC. ⑤②①③④⑥\nD. ⑥⑤②①③④", "choice": "C", "keypoints": "非首句特征;确定顺序;确定捆绑", "most_wrong": "B", "human_count": 46561, "human_acc": 88.6578896501, "source": "2021上半年省考第十一季行测模考大赛(河南卷)第35题", "difficulty": 3, "formulas": 2, "history": [{"id": 4668888, "material": "", "question": "①这些进入环境中的油是致癌的苯类、酚类和萘类等石油残毒\n\n②从而对海洋生态系统产生长远的影响\n\n③海洋石油污染不是简单地将油捞回去就能解决的\n\n④它们不仅对海洋生物危害巨大,而且会通过食物链传递积累\n\n⑤漏入海洋的石油有的是不能被回收的\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③⑤①④②\nB. ①③④⑤②\nC. ⑤③①②④\nD. ③①⑤④②", "choice": "A", "keypoints": "非首句特征;确定顺序;确定捆绑", "most_wrong": "D", "human_count": 1196600, "human_acc": 81.6899548721, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第41题", "difficulty": 4, "formulas": 0}, {"id": 1787018, "material": "", "question": "将下列句子组成一段逻辑严谨、语言流畅的文字,排列顺序最合理的是(  )。\n\n①五千年来中国人做的最为一致的梦就是强国梦\n\n②有一首歌里就唱到:五千年的风和雨,藏了多少梦\n\n③中华民族是一个有梦想且为梦想而不断开拓的民族\n\n④在这个强国梦的激励下,中国历史上先后兴替的朝代都创造过时距不一的盛世,让中国人长期沉浸在泱泱大国的自豪梦境之中", "type": "单选题", "options": "A. ①②④③\nB. ③②①④\nC. ②③①④\nD. ④①②③", "choice": "B", "keypoints": "非首句特征;确定顺序;确定捆绑", "most_wrong": "C", "human_count": 514890, "human_acc": 81.0755695391, "source": "2015年广州市公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 4772126, "material": "", "question": "①没有数字经济与数字社会的蓬勃发展,数据安全也成了无源之水、无本之木\n\n②这一切都有赖于规范有序的法治护航\n\n③没有数据安全,数字经济的发展、数字社会的运行将失去防火墙\n\n④当我们坚持把法治作为基础性手段,市场主体就会吃下“定心丸”,数字红利就能得到充分释放\n\n⑤厚植数字经济创新创造的土壤,营造数字社会健康发展的环境,离不开数据安全高效流动\n\n⑥安全是发展的前提,发展是安全的基础\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②④⑥①⑤③\nB. ③⑥②⑤④①\nC. ⑤③⑥①④②\nD. ⑥③①⑤②④", "choice": "D", "keypoints": "非首句特征;确定顺序;确定捆绑", "most_wrong": "C", "human_count": 307517, "human_acc": 77.0269611111, "source": "2022上半年省考第十季行测模考大赛(四川卷)第41题", "difficulty": 4, "formulas": 0}, {"id": 5416458, "material": "", "question": "①虽然全日制研究生与非全日制研究生仅是学习方式的不同\n\n②为此,教育部等五部委制定文件,明确用人单位要为两类研究生提供平等就业机会\n\n③但是,在求职市场,非全日制研究生屡屡遭遇不平等待遇\n\n④近年来,顺应研究生招考改革趋势,各高校扩大了非全日制研究生招生数量\n\n⑤一些用人单位在资格条件环节就直接将非全日制研究生排除在外\n\n⑥随着文件的出台,各地陆续清理了在招聘、落户等方面对非全日制研究生的限制\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ①⑤③②④⑥\nB. ②⑥④①③⑤\nC. ④①③⑤②⑥\nD. ⑥⑤①③④②", "choice": "C", "keypoints": "非首句特征;确定顺序;确定捆绑", "most_wrong": "D", "human_count": 1740, "human_acc": 95.7471264368, "source": "2022下半年省考第二十三季行测模考大赛(新疆区考卷)第49题", "difficulty": 4, "formulas": 0}, {"id": 5058822, "material": "", "question": "①人可以无知,但不可以无趣\n\n②当我们纵观历史,说到有趣之人,一定会想到苏东坡\n\n③可是苏东坡就很好,他可以做很好的朋友,因为他真的是一个很有趣的人\n\n④台湾诗人余光中曾说:我常常跟朋友讲,我如果要去旅行,我不要跟李白一起,他这个人不负责任,没有现实感\n\n⑤这位被林语堂称为“无可救药乐天派”的全才,虽然一生在政治上不怎么得志,却丝毫不妨碍他穿越古今,成为了豁达、有趣的代表\n\n⑥作家贾平凹一句话便道出了“有趣”这一品质的重要\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤③①⑥④\nB. ①⑥②⑤④③\nC. ④③⑤①②⑥\nD. ⑤④③②①⑥", "choice": "B", "keypoints": "非首句特征;确定顺序;确定捆绑", "most_wrong": "C", "human_count": 421378, "human_acc": 90.8253397187, "source": "2022上半年省考第二十四季行测模考大赛(北京卷)第39题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 161435, "material": "", "question": "“假说”在没有事实验证的情况下还不是科学理论。现有的科学知识和理论远不是事实的全部,而我们的许多科学家在从事研究工作时,总是________于现有的一些学说,只是试图用实验结果来证明这些假说的合理性,而不是设法去________它。实际上,许多流行的假说与科学理论必须符合客观实际、逻辑严谨、没有矛盾的要求________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 拘泥 否定 相去甚远\nB. 受制 反驳 背道而驰\nC. 纠结 求证 大相径庭\nD. 局限 排斥 针锋相对", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 2029600, "human_acc": 61.0919392984, "source": "2014年国家公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 5637585, "material": "", "question": "观众喜闻乐见的现实题材剧,不是唉声叹气、____________,而是追随剧中人,勇于直面现实的困顿,通过自身不懈的努力寻找解决之法。适时打破滤镜,直面________乃至切肤之痛,方能珍惜当下美好,才有动力奔向更好的未来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自怨自艾 艰辛\nB. 一蹶不振 动荡\nC. 妄自菲薄 琐碎\nD. 愤世嫉俗 困境", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 58842, "human_acc": 53.2408823629, "source": "2023下半年省考第十一季行测模考大赛(四川卷)第14题", "difficulty": 6, "formulas": 0}, {"id": 5629582, "material": "", "question": "坚持问题导向,注重批评__________。坚持问题导向,前提是正视问题,关键是找准问题。问题找得准,批评的有底气,被批的才服气。对问题决不能____________、轻描淡写,更不能____________、遮遮掩掩。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 指向性 讳疾忌医 讳莫如深\nB. 目的性 蜻蜓点水 不露锋芒\nC. 有效性 拈轻怕重 畏首畏尾\nD. 针对性 避重就轻 文过饰非", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 53549, "human_acc": 65.2337111804, "source": "2023下半年省考第十季行测模考大赛(新疆兵团卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 5188114, "material": "", "question": "在诸多对动物的书写中不乏有关生命个体的抒情性话语,落笔为对自然的声音的精微细描,同时默默体悟这生命之音里内含的喜惧悲欢。对大自然语言的________打破了以人类为中心的思维惯性,使对自然生命____________、充耳不闻的人们能够从原生的自然之声中体会生命存在的要义。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 关注 不以为然\nB. 痴迷 不屑一顾\nC. 聆听 视如草芥\nD. 聚焦 视若无睹", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 160027, "human_acc": 57.6358989421, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第26题", "difficulty": 6, "formulas": 0}, {"id": 4637519, "material": "", "question": "长期以来,由于政府同社会智库之间的智库成果报送渠道不畅,从而导致智库成果“体内循环多、成果转化少”等问题。为此,要给社会智库与官方智库________的待遇,建立畅通的智库成果快速报送渠道,____________、广谋良策,充分发挥各级各类智库的“________”作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 公平 从善如流 军师\nB. 一致 群策群力 向导\nC. 相同 集思广益 顾问\nD. 平等 广开言路 参谋", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 2038923, "human_acc": 65.0733254762, "source": "2022年国家公务员录用考试《行测》题(副省级网友回忆版)第34题", "difficulty": 5, "formulas": 0}, {"id": 3826983, "material": "", "question": "中国的传统文化,不该____________,而应以更炫的方式走进生活。传统文化如果仅仅停留在过去式,和现代生活距离很远,固步自封、裹足不前,就会________。文艺创新要以中华优秀传统文化为不竭源泉和深厚土壤,同时坚持____________,服务当代,面向未来,激活中华文化的生命力,才能书写出当代文艺的辉煌篇章。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 束之高阁 僵化 古为今用\nB. 孤芳自赏 落后 兼收并蓄\nC. 昙花一现 守旧 与时俱进\nD. 闭目塞听 倒退 守正创新", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 121355, "human_acc": 67.5728235343, "source": "2021下半年省考第十五季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2042552, "material": "", "question": "先生遣词造句,十分注重节奏和________,句式参差错落,________中有统一,总是波涛起伏,曲折幽隐,因此读起来____________,既顺口又悦耳,使人不能不想起那些从小背诵的古代散文名篇。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 声律 复杂 朗朗上口\nB. 韵味 繁复 如坐春风\nC. 节律 变幻 铿锵有力\nD. 韵律 纷繁 抑扬顿挫", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1208384, "human_acc": 69.4895000265, "source": "2017年江苏省公务员录用考试《行测》题(A类)第54题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5222072, "material": "", "question": "俗话说“雁过留痕,风过留声”,网民在互联网空间活动后会留下________,比如表格注册、网页浏览、观影记录、打车轨迹、搜索记录、购物清单等。它们每时每刻都在________我们的各种隐私,引起人们的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 印记 贩卖 顾虑\nB. 标记 窥探 恐慌\nC. 痕迹 暴露 担忧\nD. 踪迹 泄露 怀疑", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 25820, "human_acc": 92.7652982184, "source": "2022下半年省考第八季行测模考大赛(浙江A卷)第34题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4678232, "material": "", "question": "注重人与自然和谐相处,是中华民族传统美德的重要特点。《逸周书·大聚》记载:“春三月,山林不登斧,以成草木之长;夏三月,川泽不入网罟,以成鱼鳖之长。”对此民法典有类似规定:“民事主体从事民事活动,应当有利于节约资源、保护生态环境。”绿色环保原则在民法典分则中也有充分体现,如在物权编中规定,不动产权利人不得违反国家规定弃置固体废物等有害物质;在合同编中规定,当事人在履行合同过程中,应当避免浪费资源、污染环境和破坏生态,这些规定充分回应了人民群众对良好生态环境的向往。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中华民族传统美德是民法典的精神实质与核心要义\nB. 民法典传承了人与自然和谐相处的中华民族传统美德\nC. 绿色环保原则是民法典制定中所遵循的重要准则\nD. 法律关于生态保护的规定符合人民群众内在需求", "choice": "B", "keypoints": "主题词;行文脉络-总分", "most_wrong": "D", "human_count": 20859, "human_acc": 70.9717627882, "source": "2023年国考第五季行测模考大赛(行政执法类)第57题", "difficulty": 4, "formulas": 0, "history": [{"id": 4004678, "material": "", "question": "现代思维方式随着时代和实践的发展不断变化,形成了与传统思维方式区别很大的新角度、新方法。从静态性思维向动态性思维转变表现出系统综合性、动态开放性和自主创新性的特点。\n\n这段文字主要支持的观点是:", "type": "单选题", "options": "A. 现代思维方式与传统思维方式的研究方法不同\nB. 现代思维方式注重新角度和新方法\nC. 现代思维方式从静态向动态转变\nD. 思维方式随着实践的发展而发展", "choice": "C", "keypoints": "主题词;行文脉络-总分", "most_wrong": "B", "human_count": 357410, "human_acc": 40.0100724658, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第42题", "difficulty": 5, "formulas": 0}, {"id": 3949, "material": "", "question": "佛教虽提倡超尘脱俗,四大皆空,但到底不能离开人间,所以它也并不能完全免俗。佛教中也有不少财神爷,看来,爱财之心,根除也难。据佛经上讲,佛祖释迦牟尼曾接受过龙女的布施 —— 一颗价值三千大千世界的珠宝!释迦牟尼就马上让她立地成佛。\n\n对这段话最准确的复述是:", "type": "单选题", "options": "A. 佛教也不能免俗\nB. 爱财之心,人之常情\nC. 提倡四大皆空的佛教也有爱财之心\nD. 面对财宝,提倡四大皆空的佛教也不能完全免俗", "choice": "D", "keypoints": "主题词;行文脉络-总分", "most_wrong": "A", "human_count": 21829, "human_acc": 59.2926840442, "source": "2008年内蒙古自治区公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 2391965, "material": "", "question": "清明祭祀,向已逝的祖先亲人送上思念与敬意,更多的是传承中华民族的孝道传统,把对逝者的怀念转化为对生者的关怀,祭奠死去的人是为了让活着的人更有尊严地活着:通过祭祀更加认识自己的人生职责和使命;通过祭礼认识每个人的位置和角色;通过祭悼来反省人生的终极归宿,来不断校正我们的人生态度和价值。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 清明节的启示\nB. 应该重视清明节\nC. 清明祭祀的意义\nD. 清明节对于传承文化的作用", "choice": "C", "keypoints": "主题词;行文脉络-总分", "most_wrong": "D", "human_count": 14908, "human_acc": 93.3056077274, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第46题", "difficulty": 5, "formulas": 0}, {"id": 754249, "material": "", "question": "瑞士心理学家荣格说:“一切文化都沉淀为人格。不是歌德创造了浮士德,而是浮士德创造了歌德”。他在这里所说的“浮士德”,已经不是一个具体的人名,而是指他所属的民族的集体人格,也就是一种文化的象征。这种集体人格早就存在,歌德只是把它表现出来罢了。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 文学作品承载着表现文化特质的使命\nB. 作家与作品之间具有复杂的文化联系\nC. 文化的积累形成了特定的集体人格\nD. 浮士德的文化象征意义远高于其文化价值", "choice": "C", "keypoints": "主题词;行文脉络-总分", "most_wrong": "A", "human_count": 1018637, "human_acc": 60.4774811832, "source": "2014年山东省公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 827489, "material": "", "question": "当前天气特热,持续大热,人人喊热。这种天气状况是否正常?其成因有多复杂?这些恐怕并非我等非专业人士所能说清道明的。作为非专业人士,人们最爱拿生活中熟悉的事情来打比方。在马路上煎蛋、烤鱼的景象,近几日已不是奇闻。热中作乐的人们甚至说:人和烤肉之间,只差一撮孜然;和扇贝之间,只差一头大蒜。\n\n以上说法虽然都很夸张,但比较形象地说明了:", "type": "单选题", "options": "A. 今年夏天太阳的火辣程度\nB. 人们的某种饮食习惯\nC. 人们面对酷暑的乐观心态\nD. 人们丰富的想象能力", "choice": "A", "keypoints": "主题词;行文脉络-总分", "most_wrong": "C", "human_count": 118860, "human_acc": 80.4240282686, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第44题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 2949020, "material": "2020年1-6月份,T市实际利用外资金额17.0亿美元,完成序时进度$67.9\\%$;协议外资金额26.8亿美元;签订外商直接投资合同项目86个,其中3000万美元以上的大项目32个,其协议投资额占总量的$88.1\\%$。\n\n        第一季度全市实际利用外资8.6亿美元,同比增长$5.0\\%$。第二季度全市实际利用外资8.4亿美元,同比下降$20.6\\%$,导致上半年累计增速由第一季度的$5.0\\%$下探至上半年的$-9.4\\%$,低于全省18.7个百分点。第一季度全市协议利用外资8.9亿美元,第二季度全市协议利用外资17.8亿美元,5月当月新增协议金额12.1亿美元。\n\n        1-6月份,全市实现外贸进出口1185.5亿元,同比下降$1.6\\%$。其中出口789.2亿元,同比下降$3.8\\%$,进口396.2亿元,同比增长$3.1\\%$。与第一季度相比,进出口和出口降幅分别收窄5.4和7.5个百分点,回暖迹象明显。\n\n        一般贸易好于加工贸易。从贸易方式看,上半年全市一般贸易实现进出口873.8亿元,同比增长$0.7\\%$;实现出口576.9亿元,同比下降$2.1\\%$。加工贸易实现进出口242.4亿元,同比下降$8.2\\%$;实现出口170.7亿元,同比下降$13.1\\%$。一般贸易进出口占比$73.7\\%$,比第一季度提高1.9个百分点;加工贸易进出口占比$20.5\\%$,比第一季度下降2.4个百分点。", "question": "2019年1-6月,T市加工贸易实现出口额约为:", "type": "单选题", "options": "A. 150.9亿元\nB. 196.4亿元\nC. 224.0亿元\nD. 264.1亿元", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 147396, "human_acc": 69.2630736248, "source": "2022年国考第五季行测模考大赛(副省级)第132题", "difficulty": 6, "formulas": 15, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 4718283, "material": "", "question": "____________的例证,是《从零到九的人生哲理》行文表达的一个亮点。如用温度的0摄氏度来说明“0”既是无又是有;用从一个地方人们使用的钞票的整洁程度判断当地经济发展状况和富裕程度来说明以小见大、____________。当然,这本书不只是好读,而且耐读。如果说与好读相联系的是阅读冲动,那么,耐读的联系项则是____________的延伸思考,甚至联系着新思想、新发现。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深入浅出 睹始知终 由表及里\nB. 微言大义 一叶知秋 引人入胜\nC. 恰如其分 见微知著 举一反三\nD. 通俗易懂 以管窥豹 触类旁通", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 242907, "human_acc": 42.2754387482, "source": "2022上半年省考第七季行测模考大赛(陕西卷)第33题", "difficulty": 6, "formulas": 0, "history": [{"id": 5423745, "material": "", "question": "京剧与中医、武术、国画并称中国的“四大国粹”,半个世纪前,那些名角、“头牌”演出时,往往____________,一票难求。而在当今,年轻一代往往对本土传统文化弃之如敝屣,对带洋字的文化则____________。\n\n填入横线处的成语最恰当的一组是:", "type": "单选题", "options": "A. 万人空巷 趋之若鹜\nB. 洛阳纸贵 炙手可热\nC. 门庭若市 众星拱月\nD. 万头攒动 敬而远之", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1072515, "human_acc": 75.0279483271, "source": "2023年上海市公务员录用考试《行测》题(A类)(网友回忆版)第5题", "difficulty": 4, "formulas": 0}, {"id": 3762273, "material": "", "question": "五四前后的文化认同危机,产生了一些偏执观念和理念,坚守中国文化主体性的学者____________。这段文化史牵涉许多重要问题,如中国传统文化优秀在何处?孔子究竟伟大在哪里?文化自信的前提,是对这段历史下去粗取精、____________、明辨是非的功夫,真正沉淀成型,发自内心地认可,然后____________地诉诸民众。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 孤鸾寡鹤 革故鼎新 顺理成章\nB. 寥若晨星 正本清源 理直气壮\nC. 屈指可数 披沙拣金 气定神闲\nD. 乏善可陈 洞若观火 安之若素", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 98626, "human_acc": 38.1795875327, "source": "2021下半年省考第十三季行测模考大赛(陕西卷)第40题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3523559, "material": "", "question": "中国的建筑风格从来都是____________的,并不一味拒绝“洋建筑”,关键在于如何在借鉴的过程中,呈现出建筑的文化主体意识。而人们之所以________当下的一些西式建筑热,就在于其舍本逐末、生搬硬套,缺少了对历史的敬畏和对文化的理解。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 海纳百川 否定\nB. 千姿百态 反感\nC. 兼容并蓄 质疑\nD. 独树一帜 排斥", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1573190, "human_acc": 58.7920721591, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 3010034, "material": "", "question": "谈及历史研究的现实意义,人们总希望以史为鉴,但这种借鉴很大程度上并非具体对策。因为历史研究的对象几乎无所不包,指望相对________的相关研究能给现实中建立在专业之学基础上的工作提供直接指导,有时难免____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 过时 捉襟见肘\nB. 空洞 左支右绌\nC. 抽象 好高骛远\nD. 笼统 不切实际", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 417384, "human_acc": 81.816265118, "source": "2022年国考第六季行测模考大赛(副省级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2636999, "material": "", "question": "科学认知具有渐进性,公众往往脱离实际对科学的进步速度期待过高。因此,当研究成果不符合公众预期时,科学家往往会受到低估甚至________ 。而批评与谩骂会使很多科学家在开展研究时越来越关注公众的价值判断而非事实本身,以致在探索真理,尤其是在质疑权威的过程中____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 质疑 力不从心\nB. 诋毁 瞻前顾后\nC. 曲解 畏首畏尾\nD. 谴责 举步维艰", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 112550, "human_acc": 59.333629498, "source": "2021年国考第十五季行测模考大赛(副省级)第26题", "difficulty": 5, "formulas": 0}, {"id": 4344786, "material": "", "question": "有政协委员建议,延长幼儿园、小学放学时间至晚6点。如果仅是建议也____________——你可以听,也可以不听,它不会产生后果。但风闻部分地区正在酝酿出台关于幼儿园、小学统一延长放学时间的政策,这就不能____________了,因为政策是会产生后果的。并且,教育政策的各种后果也会相互影响,________甚至逆转政策制定者的预期效果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无可讳言 漠然置之 破坏\nB. 无伤大雅 等闲视之 抵消\nC. 无关大体 姑息养奸 削弱\nD. 无足轻重 掉以轻心 颠覆", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 201181, "human_acc": 40.5868347409, "source": "2021下半年省考第二十三季行测模考大赛(四川卷)第24题", "difficulty": 7, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5187171, "material": "", "question": "博物馆不仅是城市历史的容器,也是城市精神和文化的________,彰显着城市的文化品位。改革开放以来,伴随着财富的积累和科技的进步,人们对博物馆边界的认知有了很大________,具体表现在:从关注历史上的“物”的稀缺和价值,转到重视当下生活中人的感受与需求;从一个固定的博物馆建筑空间扩展到博物。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 载体 拓展\nB. 通道 延伸\nC. 桥梁 创新\nD. 象征 重塑", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 20833, "human_acc": 85.4989679835, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 3556967, "material": "", "question": "法治是国家治理体系和治理能力的重要________,是治国理政不可或缺的重要手段。历史反复证明,法治兴则国家兴,法治衰则国家乱。什么时候重视法治、法治昌明,什么时候就国泰民安;什么时候忽视法治、法治________,什么时候就国乱民怨。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 目标 滞后\nB. 基石 缺失\nC. 依托 松弛\nD. 前提 阴暗", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 102766, "human_acc": 17.8687503649, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第4题", "difficulty": 7, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5671383, "material": "", "question": "祖鲁语是南非11种官方语言之一,大部分南非人都会讲祖鲁语,因此,南非有着____________的祖鲁语言资源。南非的顶尖大学里有不少从事祖鲁语研究的学者,这里________了深厚的祖鲁语学术研究资源,是学习这门语言的不二之选。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不可多得 厚植\nB. 得天独厚 积淀\nC. 无可比拟 储备\nD. 天时地利 根植", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 87482, "human_acc": 69.9423881484, "source": "2023下半年省考第十四季行测模考大赛(四川卷)第17题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4661685, "material": "", "question": "变革要求学校领导团队对学校承担更多责任,这需要一种全面、确定、具体的方法和路径,也就是说这种改革需要____________地进行。同时,这种变革想法的提出并不是____________,而是有研究发现的证据支撑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不折不扣 空谷足音\nB. 规行矩步 虚无缥缈\nC. 按部就班 无稽之谈\nD. 步步为营 无中生有", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 111718, "human_acc": 44.9703718291, "source": "2021下半年省考第三十九季行测模考大赛(陕西卷)第30题", "difficulty": 6, "formulas": 0, "history": [{"id": 4484777, "material": "", "question": "党史学习教育是一场全党都应接受的精神洗礼,但囿于主客观因素影响,一些地方开展活动时无非就是“领导读读稿子、群众填填场子”,组织者和参与者疲于应付;还有些活动看似____________、轰轰烈烈,实则内容苍白空洞、干瘪无物。如此情景无疑是____________,错把过程当作目的,不仅削弱党史本身的严肃性,也导致学习和工作“两张皮”,背离学习初衷。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 别出心裁 本末倒置\nB. 如火如荼 吹毛求疵\nC. 与众不同 指鹿为马\nD. 绘声绘色 缘木求鱼", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 11406, "human_acc": 71.1029282834, "source": "2021下半年省考第二十六季行测模考大赛(西藏卷)第3题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5368046, "material": "", "question": "臭氧污染究竟对人体有哪些影响?可以说,从中枢神经系统到呼吸系统,从血液循环到骨骼健康,均会被它________。由于臭氧具有强氧化性,当浓度过高时,万物都在劫难逃。更可怕的是,透明的臭氧只能被仪器监测,人们难以察觉臭氧是否超标,更谈不上及时保护自己。因而,“臭氧污染”是____________的“隐形杀手”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 损害 名副其实\nB. 破坏 当之无愧\nC. 侵犯 彻头彻尾\nD. 攻克 不折不扣", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 361149, "human_acc": 74.5595308308, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第27题", "difficulty": 4, "formulas": 0, "history": [{"id": 4651736, "material": "", "question": "关于江南的意象,古代诗词中____________。这些意象的产生,半是源于江南人对故乡的回望,半是来自异乡人的反观。在这中间,运河作为出入江南的重要通道,成了古典诗词的审美对象,因而有着“唐诗之河”“宋词之河”等________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 不计其数 代称\nB. 车载斗量 雅号\nC. 琳琅满目 别称\nD. 俯拾皆是 美誉", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1167937, "human_acc": 74.0752283728, "source": "2022年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第32题", "difficulty": 4, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4688890, "material": "", "question": "白天,当我们戴着厚重的耳机欣赏曼妙的音乐,开足音量以为把噪音挡在了身外,岂料,我们的听力在随之消蚀,同时________的是我们敏锐的艺术感觉。音色、音质在不知不觉中与音量____________,人为噪音无远弗届的恶果已经显现。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 异化 合二为一\nB. 钝化 混为一谈\nC. 弱化 分道扬镳\nD. 退化 泾渭分明", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 214769, "human_acc": 76.0458911668, "source": "2022上半年省考第四季行测模考大赛(陕西卷)第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5026473, "material": "", "question": "曾经一段时期,一些领导干部法治意识淡薄,有法不依、违法不究、知法犯法等较普遍,特别是少数领导干部不尊崇宪法、不敬畏法律、不信仰法治,崇拜权力、金钱、关系,大搞权权勾结、权钱交易、权色交易,政治生态受到严重破坏。对此,所有领导干部不应习惯于人治思维、迷恋于以权代法,而应运用法治思维和法治手段,坚决纠正和解决法治不彰问题。近年来,中国以雷霆之势破除“关系网”、斩断“利益链”,让“猫腻”“暗门”无处遁形,遏制“递条子”“打招呼”等违法违规行为;持续开展扫黑除恶专项斗争,坚决打掉黑恶势力及其“保护伞”。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 领导干部要增强法治意识,依法办事\nB. 纠正领导干部的不法行为需斩断“利益链”\nC. 领导干部不应迷恋人治思维、以权代法\nD. 政治生态治理需雷霆手段、菩萨心肠", "choice": "A", "keypoints": "关联词-对策;行文脉络-分总分", "most_wrong": "B", "human_count": 26196, "human_acc": 85.5130554283, "source": "2023年国考第二十四季行测模考大赛(行政执法类)第56题", "difficulty": 4, "formulas": 0, "history": [{"id": 2187548, "material": "", "question": "虽然翻拍要比重新创作或“另起炉灶”显得容易些,但也不能因为翻拍就忽略了剧本的质量,胡编乱造更是行不通。创作是第一要务,是翻拍成败的基础,翻拍要是失败了,失掉的不仅是观众,还会带来对原来成功形象的瓦解和品牌贬值。\n\n上述文字,意在强调翻拍:", "type": "单选题", "options": "A. 并不一定比“新拍”容易\nB. 不能胡编乱造,颠覆经典\nC. 也需要进一步挖掘和创新\nD. 如果失败会反噬原有口碑", "choice": "C", "keypoints": "关联词-对策;行文脉络-分总分", "most_wrong": "B", "human_count": 1445499, "human_acc": 68.1284456094, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第48题", "difficulty": 5, "formulas": 0}, {"id": 2051260, "material": "", "question": "两千多年前,孔子在竹简上写下“君子和而不同”,这不仅成为中华文化的内在品格,也代表着中国对世界秩序的想象。不同国家、民族的思想文化各有千秋。文化的共存不是让一种文明普适化,而是要寻求大多数文明的共同点和公约数。毕竟,只有每一颗星星都发光,人类文明的星空才会更加璀璨。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 中华文化对世界的贡献\nB. 孔子对中华文化的影响\nC. 古人对世界秩序的想象\nD. 文化共存的实现途径", "choice": "D", "keypoints": "关联词-对策;行文脉络-分总分", "most_wrong": "C", "human_count": 1051369, "human_acc": 77.8862606754, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第39题", "difficulty": 5, "formulas": 0}, {"id": 4791049, "material": "", "question": "蓝田玉是近期人们比较追捧的玉种,但资源非常有限。我们理应百倍地珍惜节约使用,不能贪图眼前的蝇头小利而滥采滥挖,粗率加工。和田玉经过数千年的采用已近绝迹,而中国人世世代代重玉爱玉的文化情结,还要一代接一代地传承下去,蓝田玉身负的使命,不言而喻。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 我们应合理开发利用蓝田玉资源\nB. 和田玉的地位将被蓝田玉所取代\nC. 现在蓝田玉存在过度开发的问题\nD. 蓝田玉承载着传承中国玉文化的重任", "choice": "A", "keypoints": "关联词-对策;行文脉络-分总分", "most_wrong": "D", "human_count": 1158, "human_acc": 74.4386873921, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第21题", "difficulty": 4, "formulas": 0}, {"id": 1129497, "material": "", "question": "干部人事制度改革正渐入佳境。靠自然人来选拔和管理干部,总会潜伏着各种隐患。明智如诸葛亮,也难免会一时走眼而误用马谡之流。近年来出台的一系列规章和条例,醒目的一点就是提拔和任用领导干部,减少人为因素,逐步靠规章以及完善的法制和制度系统来选拔和考察领导干部,扩大和夯实有权决定干部任免的民意基础。\n\n这段文字意在强调干部人事制度改革的要点是:", "type": "单选题", "options": "A. 完善的规章制度\nB. 减少人为因素\nC. 规范的组织程度\nD. 扩大民意基础", "choice": "B", "keypoints": "关联词-对策;行文脉络-分总分", "most_wrong": "A", "human_count": 55696, "human_acc": 37.9632289572, "source": "2010年江苏省公务员录用考试《行测》题(C类)第9题", "difficulty": 5, "formulas": 0}, {"id": 2376520, "material": "", "question": "工匠精神,匠心为本。有没有工匠精神,关键是看有没有一颗安于默默无闻、执着于追求卓越的匠心。树匠心,就要坚守初心、执着专注,秉持赤子之心,摒弃浮躁喧嚣,在本职岗位上坐得住、做得好。怎样才能坐得住、做得好?关键是要做到专心专注、追求至精至善,将产品的每个细节都尽可能做到极致。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 育匠人是传承工匠精神的基础\nB. 树匠心是弘扬工匠精神的根本\nC. 树匠心要坚守初心、执着专注\nD. 树匠心需要良好的社会文化环境", "choice": "C", "keypoints": "关联词-对策;行文脉络-分总分", "most_wrong": "B", "human_count": 1951837, "human_acc": 73.0398081397, "source": "2019年420联考《行测》题(黑龙江省直卷)(网友回忆版)第52题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 1129393, "material": "", "question": "(1)他其实跟大家一样,也会有自己的局限的,你_______把他说得太好了。\n\n(2)她刚刚正式接手公司主办会计,有时_______忙乱一些。\n\n(3)由于经验不足,我们在工作中走一些弯路是_______的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不免 难免 未免\nB. 不免 未免 允许\nC. 未免 不免 难免\nD. 难免 不免 可能", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应", "most_wrong": "A", "human_count": 93862, "human_acc": 94.2191728282, "source": "2010年江苏省公务员录用考试《行测》题(C类)第5题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 14515, "material": "", "question": "夏天的大草原美极了,蔚蓝的天空(    )着一片片白云。", "type": "单选题", "options": "A. 铺展\nB. 铺陈\nC. 铺设\nD. 铺排", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 40926, "human_acc": 55.2851488052, "source": "2009年四川省公务员录用考试《行测》题(上半年)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"]]}, {"id": 4664125, "material": "", "question": "中国芭蕾仅有60余年历史,但已逐渐形成芭蕾的“中国学派”,经过几代人耕耘,中国芭蕾已进入世界一流方阵,形成了____________、自成一派的中国芭蕾。第一部奠定中国风格芭蕾的舞剧作品,是在新中国成立15周年之际面世的《红色娘子军》。半个多世纪以来,芭蕾舞剧《红色娘子军》的排演____________,迄今为止6代“琼花”及演员们的精彩表现,让这部中国芭蕾经典深入人心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 别具一格 薪火相传\nB. 匠心独运 源远流长\nC. 标新立异 经久不衰\nD. 无以伦比 相沿不辍", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 52490, "human_acc": 82.5852543342, "source": "2022上半年省考第一季行测模考大赛(西藏卷)第3题", "difficulty": 4, "formulas": 0, "history": [{"id": 4004574, "material": "", "question": "科研需要踏踏实实,需要兢兢业业,更不要说需要夜以继日、____________了。那么,一个科研工作者——即使是诺贝尔奖得主,怎么可能在走马观花中,只蜻蜓点水般地在某处站站脚、说些话,就能____________了?\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 专心致志 扭转乾坤\nB. 废寝忘食 脱胎换骨\nC. 殚精竭虑 点石成金\nD. 披星戴月 画龙点睛", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 899852, "human_acc": 60.5221747576, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第29题", "difficulty": 4, "formulas": 0}, {"id": 2660702, "material": "", "question": "一个人在读书方面想有成就,明眼人的指导固____________,自己的暗中摸索也有成效,因为失败的教训往往大于成功的。读书人最低限度须通一个外国文,从翻译中窥外人文物思想,总难免____________,尤其是在译品太少、可靠性较低的时候。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 受益匪浅 雾里看花\nB. 大有裨益 隔靴搔痒\nC. 举足轻重 望文生义\nD. 卓有成效 扬汤止沸", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 145988, "human_acc": 42.7014549141, "source": "2021年国考第十九季行测模考大赛(地市级)第28题", "difficulty": 6, "formulas": 0}, {"id": 5672301, "material": "", "question": "将下列选项中的成语依次填入各句横线处,最恰当的一项是(    )。\n\n(1)养猫养狗____________,一些小众宠物也悄然流行,越来越多人当上了操心的“铲屎官”。\n\n(2)人类是____________的命运共同体,面对共同挑战,只有和衷共济、和合共生这一条出路,任何艰难曲折都不能阻挡历史前进的车轮。", "type": "单选题", "options": "A. 屡见不鲜 休戚与共\nB. 蔚然成风 此消彼长\nC. 少见多怪 唇齿相依\nD. 司空见惯 息息相关", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 129, "human_acc": 82.1705426357, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第66题", "difficulty": 3, "formulas": 0}, {"id": 5682048, "material": "", "question": "警惕浮于表面、____________的“模版化”调研。有些人搞“调研”往往“浅入浅出”,按着流程走,跟着套路来,“模版化”的调研难以看到问题的实质,多数只能产出模版化的成果,对实际工作不仅没有裨益,甚至还会产生反作用,让工作“____________”。应大力杜绝一些地方为了彰显重视程度而扎堆调研、重复调研,大搞运动式、走过场式调研,刮一阵风后将调研工作半途而废,搁置一旁,乃至____________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 浮光掠影 适得其反 前功尽弃\nB. 浅尝辄止 云泥之别 束之高阁\nC. 轻描淡写 本末倒置 鲜为人知\nD. 走马观花 南辕北辙 无人问津", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 75401, "human_acc": 54.9236747523, "source": "2023下半年省考第十五季行测模考大赛(陕西卷)第36题", "difficulty": 6, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2443107, "material": "", "question": "置身在____________的雪花中,在白色的____________间,仰望着天空飘落的雪花,手伸出来,接住落下的雪花,我仔细观察了雪花的样子,整朵雪花呈六边形,它的花纹伸展得非常整齐,像树杈分开的样子。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 漫天飞扬 亭台楼阁\nB. 翩翩起舞 富丽堂皇\nC. 漫天飞舞 琼楼玉宇\nD. 轻盈飘渺 雕梁画栋", "choice": "C", "keypoints": "词的辨析-固定搭配;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 637979, "human_acc": 67.1594206079, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 51895, "material": "", "question": "在许多大城市中,无家可归者和失业者流落街头似已_________,没几个驾驶者会停下来给予施舍或提供援助,一般都会__________,毫无疑问,大多数人都听过这样的告诫:一味地给这些人钱,只会养成他们懒惰、依赖的生活方式。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 习以为常 熟视无睹\nB. 蔚然成风 视而不见\nC. 司空见惯 呼啸而过\nD. 见怪不怪 一笑而过", "choice": "C", "keypoints": "词的辨析-固定搭配;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 632913, "human_acc": 68.0839230668, "source": "2013年陕西省公务员录用考试《行测》题第31题", "difficulty": 5, "formulas": 0}, {"id": 2307791, "material": "", "question": "任正非引领华为走向成功,主要不是归功于华为的技术和实业,而是在于它的制度,在于他能把______的高技术人才聚集于一个组织平台上的分配制度。中国改革开放以来,高科技企业的利润分享已经成为一种新的制度安排,但是唯有任正非把这个利润分享制度做到了极致,让几乎每个职工在企业中真实地感受到是为自己打工。任正非这个制度创新无论怎样评价都不会过分,它的创新程度和先进程度令我国的国有企业______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 成千上万 望尘莫及\nB. 数以千万 不可逾越\nC. 千千万万 望洋兴叹\nD. 不计其数 顾此失彼", "choice": "A", "keypoints": "词的辨析-固定搭配;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 769931, "human_acc": 88.5806650206, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第37题", "difficulty": 4, "formulas": 0}, {"id": 50221, "material": "", "question": "①报道中有关奥姆真理教制造的东京地铁沙林毒气案的细节,真是____________,令人震惊。\n\n②这个骇客群体专门制造____________的虚假新闻,许多年轻人因此上当受骗。\n\n③本文所引古事古语几乎都是名人之事、名人之言,甚至圣贤之事、圣贤之言,其正确性是____________的。\n\n④钓鱼岛自古以来就是中国领土。钓鱼岛的所有权问题____________,用不着第三国来指手画脚。\n\n从下列选项中选择最恰当的一组填入横线中:", "type": "单选题", "options": "A. 耸人听闻 骇人听闻 不容置喙 不容置疑\nB. 骇人听闻 耸人听闻 不容置疑 不容置喙\nC. 骇人听闻 耸人听闻 不容置喙 不容置疑\nD. 耸人听闻 骇人听闻 不容置疑 不容置喙", "choice": "B", "keypoints": "词的辨析-固定搭配;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 786352, "human_acc": 61.5661942743, "source": "2013年河北省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5475111, "material": "", "question": "有人担心,中医是“慢郎中”,儿科急症多,看中医会不会延误病情?其实,这是对中医的一种________。中医讲究辨证施治,急则治标,缓则治本,无论急症慢病都有办法。只要辨证准确、把握病机、用药得当,便效如桴鼓、____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 误解 立竿见影\nB. 偏见 迎刃而解\nC. 曲解 一劳永逸\nD. 谬论 标本兼治", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 378466, "human_acc": 78.44561995, "source": "2023上半年省考第七季行测模考大赛(四川卷)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5761537, "material": "", "question": "形式主义是个人功利主义思想的重要表现,是政绩观________。形式主义的发生,根源在于相关人员没有践行正确的政绩观。不愿意打大算盘、算大账,而是打小算盘、算小账;不想着尽心履职、踏踏实实做事,而是应付交差、____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 错位 急功近利\nB. 缺失 投机取巧\nC. 扭曲 刚愎自用\nD. 偏差 坐享其成", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 139235, "human_acc": 44.0112040794, "source": "2023下半年省考第二十二季行测模考大赛(云南卷)第25题", "difficulty": 6, "formulas": 0, "history": [{"id": 4653984, "material": "", "question": "当下有一种现象格外值得________:现在网红产品你方唱罢我登场,变换的速度之快,让人____________。当一款产品被发现存在虚假宣传、以次充好、欺诈营销等问题,有关方面打算对其展开调查时,该产品早已不再“抛头露面”,反而____________,让监管扑了个空。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 警惕 眼花缭乱 日暮途穷\nB. 重视 目不暇接 销声匿迹\nC. 深思 顾此失彼 不攻自破\nD. 诟病 不堪重负 偃旗息鼓", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 128261, "human_acc": 94.1190229298, "source": "2021下半年省考第三十八季行测模考大赛(四川卷)第25题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 49569, "material": "", "question": "国际市场疲软给中国经济带来了不确定性,面对外汇资产缩水风险、出口贸易受到影响和输入性通胀压力上升等__________,中国需要___________考量应对,谋定而后动,制定短期和中长期的、货币和财政的、战略的和战术的、经济和政治的“中国政策” _________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 困境 郑重 迫在眉睫\nB. 考验 审慎 刻不容缓\nC. 局面 仔细 急如星火\nD. 局势 认真 十万火急", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 2486805, "human_acc": 76.8815809844, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第46题", "difficulty": 4, "formulas": 0, "history": [{"id": 5307543, "material": "", "question": "沙漠里________着塔里木河水系的片片绿洲,分布着各具特色的边城小镇。新建成的和若铁路正是连点成线,穿越沙海,延伸至甘肃、青海和西藏交界的若羌县,把绿洲拉起手来,目之所及的沙漠、雪峰、古城等特色景观都让人____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 散落 沉溺其中\nB. 点缀 流连忘返\nC. 流淌 牵肠挂肚\nD. 环绕 魂牵梦萦", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 215717, "human_acc": 69.9040872996, "source": "2022下半年省考第十三季行测模考大赛(浙江C卷)第26题", "difficulty": 4, "formulas": 0}, {"id": 22707, "material": "", "question": "今年年初,国际互联网名称和编号分配公司宣布第三次顶级域名开放申请,在未开放个人注册之前,交易一个“.cn”域名不仅手续__________,而且需要个人__________寻找一个“单位”用于注册填写,或挂靠某个组织(比如域名注册商)完成注册。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 繁琐 煞费苦心\nB. 烦琐 费尽心机\nC. 琐碎 挖空心思\nD. 繁杂 绞尽脑汁", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 627720, "human_acc": 65.8428917352, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第22题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2264431, "material": "", "question": "中国的传统文化中,“老”是一个褒义的字眼。一个年轻人处事得当,会被说老练、老成。但是进入互联网特别是移动互联网时代,这沿袭了数千年的观念,短短数十年 ________________。年龄大、资历老逐渐不再是一种优势,有时反而成了学习新事物的一种________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 土崩瓦解 羁绊\nB. 灰飞烟灭 累赘\nC. 化为乌有 阻力\nD. 分崩离析 弊端", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "C", "human_count": 4051447, "human_acc": 47.9974932413, "source": "2019年国家公务员录用考试《行测》题(副省级网友回忆版)第25题", "difficulty": 6, "formulas": 0, "history": [{"id": 4702324, "material": "", "question": "对于互联网生态来说,流量造假势必会导致“劣币驱逐良币”,从而________市场秩序,________商业诚信体系;对于刷单者个人而言,看似____________的收益,实际上是用贱卖个人信息安全为代价换来的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 扰乱 伤害 日进斗金\nB. 搅扰 摧毁 手到擒来\nC. 破坏 损害 唾手可得\nD. 阻挠 冲击 朝种暮获", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 275371, "human_acc": 70.0908955555, "source": "2022上半年省考第六季行测模考大赛(四川卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 5475139, "material": "", "question": "时下,唱衰摄影的言论____________,因为进入互联网时代后,摄影变得简单和随意了,专业摄影人面临极大的挑战。其实,站在发展的角度看,影像依然是网络时代不可或缺的内容,摄影的作用不仅没有被________,反而摄影会更深入地参与到社会生活的全过程。应该说,如今是专业摄影人____________的时期,机遇大于挑战。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不绝于耳 消弭 急流勇进\nB. 沸反盈天 减弱 崭露头角\nC. 此起彼伏 削弱 大显身手\nD. 甚嚣尘上 淡化 无往不利", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 309075, "human_acc": 76.0630914826, "source": "2023上半年省考第七季行测模考大赛(深圳卷)第70题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2377273, "material": "", "question": "面对异质文化间的交流,特别是走出国门的艺术展示,我们常会想当然地选择______受众,在艺术观念与表现样式上有意融合甚至直接“迎合”,而这样做的结果往往得不到理想的效果。艺术风格的坚持、纯化与适度包容,更有利于我们向世界更好地展现中国艺术的精华,同时接收当地受众的文化______。", "type": "单选题", "options": "A. 尊重 评论\nB. 迁就 反馈\nC. 考虑 主张\nD. 顾及 观念", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 1755447, "human_acc": 76.9789119239, "source": "2019年四川省选调优秀大学毕业生到基层工作《行测》试题(网友回忆版)第20题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4669317, "material": "", "question": "诗意如点豆腐用的卤水,将季羡林的学者散文点醒和化开,变得通达舒畅和自然明快起来,也有了思想智慧和艺术灵光,获得对于散文真实的超越性理解。季羡林散文有生活、有知识、有视野、有深情、有个性、有思想、有灵感、有智慧,再加上有天地情怀、有深厚的中华文化底蕴和自信,还有现代意识与世界眼光,这就决定了他不仅成为大家,还是一个有良知的知识分子和智者。于是,季羡林的散文有着持久的生命力,成为读者心中美好的花朵与果实。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 诗意成就了读者心中美好的花朵\nB. 季羡林散文有持久生命力的原因\nC. 读者心中拥有崇高地位的季羡林\nD. 诗意是散文大树四季常青的沃土", "choice": "B", "keypoints": "主题词;行文脉络-分总", "most_wrong": "D", "human_count": 225672, "human_acc": 89.0309830196, "source": "2022上半年省考第一季行测模考大赛(四川卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 5510137, "material": "", "question": "推动戴口罩“入法”需防范执行难的问题。倘若戴口罩仅属于文明倡导,是否执行全凭自觉,就会显得刚性不足;倘若戴口罩“入法”的处罚过于严厉,又容易导致过犹不及。若能引导在先、首违免罚、罚则较轻、屡违重罚,刚性的法规就具备了更强的柔性约束力,从而做到刚柔并济。\n\n关于戴口罩“入法”,作者的态度是:", "type": "单选题", "options": "A. 无条件地支持\nB. 有条件地支持\nC. 未置可否\nD. 坚决反对", "choice": "B", "keypoints": "主题词;行文脉络-分总", "most_wrong": "C", "human_count": 17617, "human_acc": 91.4173809389, "source": "2023年内蒙古公务员录用考试《行测》题(网友回忆版)第48题", "difficulty": 3, "formulas": 0}, {"id": 2139558, "material": "", "question": "除夕是春节的前夜,又叫年三十。有一种传说:古时候有个凶恶的怪兽叫夕,每到岁末便出来害人。后来,人们知道夕最怕红色和声响,于是在年三十晚上,家家户户贴红春联,燃放爆竹,来驱除夕兽,以求新的一年安宁。这种习俗从此流传下来,年三十晚上便称为除夕了。这段话的主要内容是:", "type": "单选题", "options": "A. 介绍除夕的来历\nB. 介绍在年三十晚上如何驱除夕兽\nC. 除夕又叫年三十的原因\nD. 夕最怕红色和声响", "choice": "A", "keypoints": "主题词;行文脉络-分总", "most_wrong": "C", "human_count": 37651, "human_acc": 87.6683222225, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第37题", "difficulty": 5, "formulas": 0}, {"id": 16423, "material": "", "question": "平板电视大行其道的今天,一种比其薄十厘米,仿其外型的超薄显像管电视出现在家电卖场中,但由于价格比平板电视贵近千元,这种超薄显像管电视一上市就遭遇了销售尴尬。\n\n这段话想说明的是:", "type": "单选题", "options": "A. 跟超薄显像管电视相比,平板电视更符合消费者的现实要求\nB. 目前超薄显像管电视的市场定位不够清晰\nC. 跟平板电视相比,超薄显像管电视不具有竞争优势\nD. 平板电视将继续占据电视市场的主流", "choice": "B", "keypoints": "主题词;行文脉络-分总", "most_wrong": "C", "human_count": 21942, "human_acc": 22.7645611157, "source": "2009年山西省党群机关录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 5483944, "material": "", "question": "古时候手工制造皮纸,经过泡、蒸、煮、沤这几个环节后,仍然有些老树皮难以去除,总会在造纸的纸浆里留有一些残痕。在抄纸的时候,这些残留物还是浮在纸面上。没有一部书是完全找不出这种痕迹的。假如在看书时可以清楚地看到没有捣碎的桑树皮,甚至可以清楚看到它的颜色,就可以判断这是皮纸。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 古代造纸的流程\nB. 皮纸的独特原料\nC. 鉴定皮纸的方法\nD. 手工造纸的优势", "choice": "C", "keypoints": "主题词;行文脉络-分总", "most_wrong": "B", "human_count": 42187, "human_acc": 89.2881693413, "source": "2023年北京市公务员录用考试《行测》题(网友回忆版)第32题", "difficulty": 4, "formulas": 0}, {"id": 2011472, "material": "", "question": "古代人看到龋齿的形态和被虫蚁啃噬后的木材很相似,他们推断,在口腔里有一种叫做“牙虫”的虫子,像白蚁啃噬木头那样侵蚀我们的牙齿。很可能是因为白蚁的危害曾经遍及全球,这一理论出现在所有的古代文明里,包括两河流域、古印度、古埃及以及古代中国。\n\n这段文字重在说明:", "type": "单选题", "options": "A. 古代人很早就发现了龋齿\nB. 龋齿在古代分布的区域很广\nC. 古代白蚁的危害已遍及全球\nD. 古人对龋齿的认识非常相似", "choice": "D", "keypoints": "主题词;行文脉络-分总", "most_wrong": "C", "human_count": 5496, "human_acc": 61.499272198, "source": "2010年江苏省公务员录用考试《行测》题(B类)第62题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 5408607, "material": "", "question": "汉服不是静态的出土文物,而是活态的社会习俗。如果说传统汉服是汉民族的服饰,新时代汉服则是以传统汉服为基本规范,吸收其他民族服饰元素,适合当代人着装需要,承载中华民族共同体的文化基因、象征整个中华民族共同符号的服饰。当前,汉服穿戴还属于在特定文化空间展示艺术美的范畴。要加强汉服研究阐释工作,着力构建有中国底蕴、中国特色的汉服理论体系和话语体系,将汉服作为礼服向国家、社会、人生仪式,以及文化、教育、科技等方面推广,最后推向人民群众的日常生活起居。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 当前应加强汉服理论研究和推广\nB. 新时代汉服设计应体现时代精神\nC. 汉服是体现中国传统文化的典型符号\nD. 汉服理论研究要形成自己的话语体系", "choice": "A", "keypoints": "关联词-对策;行文脉络-分总", "most_wrong": "D", "human_count": 1407219, "human_acc": 68.7052974697, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 19215, "material": "", "question": "对于爱因斯坦,除了他的相对论之外,他对于科学相关的哲学思考,对诸多社会、政治、文化问题的关注和精辟的言论,有时却在传统只注意传播具体科学知识的科普中缺席了。这不能说不是一件令人遗憾的事。\n\n对这段文字概括最为恰当的是:", "type": "单选题", "options": "A. 人们对科学家的了解不足\nB. 爱因斯坦的哲学理论更值得关注\nC. 科普所宣传的科学知识应更为广泛\nD. 真正的科学家研究兴趣是极为广博的", "choice": "C", "keypoints": "关联词-对策;行文脉络-分总", "most_wrong": "B", "human_count": 82319, "human_acc": 51.2882809558, "source": "2011年内蒙古自治区公务员录用考试《行测》题第48题", "difficulty": 7, "formulas": 0}, {"id": 2376641, "material": "", "question": "微信一开始就嵌入了传媒属性,无论是社交用户还是媒体内容用户,都很青睐微信。不过,微博与微信之间还是存在着显著差异,比如前者强调公开,后者侧重私密;前者突出内容制造,后者倾向内容传播;前者重心在社交,后者重心在媒体。于是,避免与微信正面交锋并谋求错位发展,构成了微博的战略主动脉。\n\n这段文字意在说明微博的", "type": "单选题", "options": "A. 销售渠道\nB. 发展策略\nC. 市场效应\nD. 应用前景", "choice": "B", "keypoints": "关联词-对策;行文脉络-分总", "most_wrong": "C", "human_count": 1235301, "human_acc": 97.0017024191, "source": "2019年420联考《行测》题(吉林甲级)(网友回忆版)第43题", "difficulty": 3, "formulas": 0}, {"id": 11959, "material": "", "question": "对于假的东西,只是堵,不讲明必须堵的道理,也会有副作用,例如对于假钞,如果只是没收,不指明他的危害,人们反而会产生疑惑甚至不满。对于假道理,除了触犯法律的可以采取法律手段,依法取缔禁止外,其他的必须揭露批判它假在哪里,危害在哪里。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 讲道理要以理服人\nB. 假道理的危害\nC. 道理也要打假\nD. 对于假的东西,只是堵,不讲明必须堵的道理,也会有副作用。", "choice": "A", "keypoints": "关联词-对策;行文脉络-分总", "most_wrong": "D", "human_count": 64041, "human_acc": 28.7222248247, "source": "2010年江西省公务员录用考试《行测》题第32题", "difficulty": 7, "formulas": 0}, {"id": 24293, "material": "", "question": "城市是人类文明精华的汇聚之地,数千年来政治、经济、文化和科技的光芒在此交相辉映,然而演进至今,城市却遭遇各种挑战,诸如人口膨胀、饮水卫生、安全隐患、环境污染和交通拥挤等问题日益凸显。如果不加以有效解决,这些问题终将严重制约城市的发展。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 城市发展面临危机\nB. 城市是人类文明的中心所在\nC. 城市的演进伴随着各种问题\nD. 城市要健康发展必须积极有效地应对各种挑战", "choice": "D", "keypoints": "关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 71072, "human_acc": 72.9598153985, "source": "2010年福建省公务员录用考试《行测》题(春季)第44题", "difficulty": 4, "formulas": 0}, {"id": 2021730, "material": "", "question": "我们除了做事,还需多读书,但人生苦短,经典都读不完,何必读其他?何谓经典?经过时间淘洗的著作才是经典。放宽点来说,知识界公认的大家著作也称为经典。但并非大家的所有著作都是经典。一个人,一生能写出一部经典已属不易,能写两三部者可称奇才。故一般而论,读一个人的代表作即已足够,只有少数里程碑式人物的著作需要全读。\n\n这段文字的主要议题是:", "type": "单选题", "options": "A. 如何理解经典\nB. 如何阅读经典\nC. 应读什么书\nD. 怎样坚持读书", "choice": "C", "keypoints": "关联词-对策;行文脉络-分总", "most_wrong": "B", "human_count": 500890, "human_acc": 38.3461438639, "source": "2016年吉林省公务员录用考试《行测》题(乙级)第39题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 3532792, "material": "", "question": "慢综艺出现之后的综艺市场,不再仅仅是卫视综艺的天下,网综对观众的巨量分流使得中国综艺节目市场面临着重新洗牌的局面。在激烈的市场角逐中,卫视综艺想要突破自身的节目框架,而慢综艺、文化类等综艺类型成为节目制作商寻找新突破、新节奏的土壤,人们将这类综艺节目看作是一股综艺界的“清流”。除了受到综艺市场激烈竞争下所产生的创新动力的推动外,人们对当前综艺市场中同质化、严重泛滥的“快综艺”节目的审美疲劳也同样促进了“慢综艺”的兴起与发展。慢综艺在此背景下的诞生,深刻体现出什么叫做生逢其时。\n\n根据文段,可以得出的结论是:", "type": "单选题", "options": "A. 慢综艺给国产综艺带来了新气象\nB. 国产综艺节目市场向多元化发展\nC. 同质化问题是国产综艺的顽疴痼疾\nD. 慢综艺在国内的兴起可谓“应运而生”", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "A", "human_count": 50684, "human_acc": 89.2155315287, "source": "2021下半年省考第二季行测模考大赛(山东卷)第35题", "difficulty": 3, "formulas": 0, "history": [{"id": 2136736, "material": "", "question": "公元前5世纪左右,管仲提出以法治国。此后,法律就被公认为是治理国家的工具。到唐朝,魏征做了一个形象的比喻。他说国家好像是一匹奔马,骑在马上的骑手就是皇帝,皇帝手中拿的鞭子就是法律。既然古代的法律是君主手中的鞭子,这个法律必然受到君主的影响。\n\n这段文字主要讲的是:", "type": "单选题", "options": "A. 古代法治的本质\nB. 法律对治国的作用\nC. 以法治国思想的变迁\nD. 古代法律对君权的影响", "choice": "A", "keypoints": "关联词-并列;行文脉络-分总", "most_wrong": "D", "human_count": 1141856, "human_acc": 65.8667993162, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第18题", "difficulty": 5, "formulas": 0}, {"id": 584435, "material": "", "question": "进入马年,“马上就有”这一句式迅速流行:“马上有钱”“马上有房”“马上有份好工作”。“马上就有”的祝福语,是马年才有;“马上就有”的社会心态,却早已在不经意间造访我们的时代。一毕业马上要有高薪工作,一工作马上让全家人凑钱买房,别人有了自己也马上要有,希望不能“马上兑现”就立刻抱怨。“马上就有”,倾诉着人们对美好生活的急切期盼,也在一定程度上映照出当今社会中的焦虑、浮躁与喧嚣心态。\n\n这段话对“马上就有”,所持的态度是:", "type": "单选题", "options": "A. 肯定\nB. 否定\nC. 有肯定也有否定\nD. 不置可否", "choice": "C", "keypoints": "关联词-并列;行文脉络-分总", "most_wrong": "B", "human_count": 515215, "human_acc": 58.1159321837, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第34题", "difficulty": 5, "formulas": 0}, {"id": 2042522, "material": "", "question": "按西方学者的界说,语言与艺术,既有共性,也有各自的特性。语言和艺术之共性在于:它们都不能够被看作是现成、给定、外在的简单再生或模仿。语言和艺术都是符号或表现,基于这一点,语言学的方法可以用来描述电影艺术,可以用来系统地研究电影艺术内部的“语法”和“句法”,可以把电影艺术的表现手段(最基本的是影像)称为“电影语言”。\n\n这段文字着重说明的是:", "type": "单选题", "options": "A. 所谓电影语言就是指电影艺术的表现方法\nB. 语言和艺术都是通过某些符号来表达意思\nC. 语言学与艺术之间存在着很多的共通之处\nD. 电影艺术内部也存在着“语法”和“句法”", "choice": "C", "keypoints": "关联词-并列;行文脉络-分总", "most_wrong": "A", "human_count": 1044765, "human_acc": 56.2673902744, "source": "2017年江苏省公务员录用考试《行测》题(A类)第35题", "difficulty": 5, "formulas": 0}, {"id": 2015498, "material": "", "question": "从某种意义上来说,试点导游自由执业,借助互联网技术搭建导游统一预约平台,让导游和消费者在透明机制下进行双向选择,有利于双方信息对称,从而促使市场定价趋于更加科学合理。而导游不再受旅行社盈利目标制约,可以靠自己的真正本领吃饭。这样不仅能够有效遏制旅游市场相关乱象,也有助于让导游价值回归到其所提供的服务本身上来。如此,国内旅游生态的真正改善还会远吗?\n\n这段文字意在强调:", "type": "单选题", "options": "A. 导游自由执业有利于实现导游服务价值\nB. 导游自由执业有利于市场定价趋于合理\nC. 导游自由执业有利于改善国内旅游生态\nD. 导游自由执业有利于遏制旅游市场乱象", "choice": "C", "keypoints": "关联词-并列;行文脉络-分总", "most_wrong": "D", "human_count": 515890, "human_acc": 85.1776541511, "source": "2016年重庆市公务员录用考试《行测》题(下半年)第42题", "difficulty": 4, "formulas": 0}, {"id": 4658509, "material": "", "question": "当下,众创空间正朝着差异化、专业化、品牌化的趋势迭代发展。全国有超过400家由投资机构建立的“投资+孵化”类众创空间;以创业咖啡、创业茶馆等为代表的各类主题式开放众创空间,有效降低了大众创业的门槛;采用共享经济理念发展的联合办公形式众创空间,帮助大众创业者共享信息、知识、技能、想法和拓宽社交圈子;由大企业或高校、科研院所建立的专业化众创空间,促进了大中小企业融通发展;另外还有将创业培训、创业投资等专业服务与互联网平台相结合的平台型众创空间等。这些众创空间各具特色,发展势头十分迅猛。\n\n这段文字主要介绍众创空间:", "type": "单选题", "options": "A. 未来的发展趋势\nB. 不同类型及特色\nC. 对经济发展的影响\nD. 最主要的资金来源", "choice": "B", "keypoints": "关联词-并列;行文脉络-分总", "most_wrong": "A", "human_count": 1659848, "human_acc": 69.5058222199, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"]]}, {"id": 22815, "material": "", "question": "在评价改革开放30年历史的时候,如果抽象地论证改革开放的历史必然性,或者具体地罗列改革开放的成就,都难以统一思想。因为有人同样可以罗列许多存在的问题。并同改革开放前做简单对比,_________甚至否定客观结论。因此,要从大处着眼,用历史的眼光来_________,把这“30年”放到“两个100年”的历史大背景中去_________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 怀疑 衡量 探讨\nB. 质疑 评判 考察\nC. 反思 评价 考量\nD. 猜疑 分析 研究", "choice": "B", "keypoints": "词的辨析-程度轻重;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 254987, "human_acc": 58.8582947366, "source": "2011年917联考《行测》题(河南/福建/甘肃/重庆/新疆兵团)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 748675, "material": "", "question": "研究历史要“有一分证据说一分话”,如同警察破案,必须掌握足够的证据,使各种证据之间形成______的逻辑关系。因为是凭证据说话,因此,研究历史依靠的是搜集证据、分析证据和论证证据关系的能力,而不是看你能提出怎样______的观点。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 真实 尖锐\nB. 合理 新鲜\nC. 准确 独特\nD. 严密 超前", "choice": "B", "keypoints": "词的辨析-程度轻重;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 363254, "human_acc": 27.3929536908, "source": "2014年青海省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2172106, "material": "", "question": "格陵兰岛的冰架以疯狂的速度退却,阿拉斯加和挪威的冰川融化明显,安第斯山脉冰川陆续消失,巴塔哥尼亚的冰川处于危险之中,阿尔卑斯山脉最高的山峰惨不忍睹,就连珠穆朗玛峰和南极洲的冰川都出现了衰退的迹象······以上现象说明:全球冰川在气候变暖的影响下纷纷凋零。但是近年来冰川学家研究发现一个不同寻常的现象,喀喇昆仑山脉的冰川并未融化,数据显示,这些冰川甚至在增厚,每年增加11厘米。\n\n上述断定最能支持以下哪项结论?", "type": "单选题", "options": "A. 全球气候事实上并未变暖\nB. 气候变暖不是影响冰川融化的唯一原因\nC. 气候变暖不会影响冰川的增加或减少\nD. 气候变暖对冰川的影响小于对其他生态的影响", "choice": "B", "keypoints": "加强-其他", "most_wrong": "C", "human_count": 675941, "human_acc": 71.9203303247, "source": "2018年广州市公务员录用考试 《行测》题(3月24日网友回忆版)第67题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 22365, "material": "", "question": "目前,不少企业在市场营销活动中因缺乏对顾客消费心理的研究,常常因方法不当或举止不妥失去成交机会,致使长时间的业务洽谈________。因此,掌握顾客的消费心理,促成顾客的购买行为已经成为企业提高营销水平的________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 毁于一旦 必由之路\nB. 功败垂成 万全之策\nC. 前功尽弃 长久之计\nD. 功亏一篑 当务之急", "choice": "D", "keypoints": "词的辨析-程度轻重;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 1053380, "human_acc": 69.7817501756, "source": "2012年421联考《行测》题(山西/辽宁/黑龙江/福建/湖北/ 湖南/广西/海南/四川/重庆/ 云南/ 西藏/陕西/青海/宁夏/ 新疆兵团)第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2724058, "material": "", "question": "早期的历史叙事是宏大的,缺少细节的;是外在叙述的,缺少内在心灵表现的;是神情________的,缺少轻松诙谐幽默的。在《尚书》叙事里,主角是尧、舜、禹、周文王、周武王等具有历史决定意义的英雄人物,他们的形象通常是半人半神,庄重严肃,____________。他们的语言常常是自上而下的训话,____________,不容置疑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 庄严 一本正经 高瞻远瞩\nB. 肃穆 敛声屏气 居高临下\nC. 拘谨 一身正气 高谈阔论\nD. 紧张 不苟言笑 高屋建瓴", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 166807, "human_acc": 18.3853195609, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第36题", "difficulty": 7, "formulas": 0, "history": [{"id": 2717455, "material": "", "question": "“靠脸吃饭”“刷脸时代”的________体验之一就是,出门,什么都不用带,自己的一张“脸”就是绝对的通行证。然而,这些新技术应用也引发了一些信息采集与安全性方面的________。用户信息如果得不到妥善保管而被泄露,用户个人隐私就有可能处于“裸奔”状态。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 便捷 担忧\nB. 舒适 思虑\nC. 高效 异议\nD. 前卫 焦虑", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 112488, "human_acc": 96.6227508712, "source": "2020年下半年省考第十五季行测模考大赛(浙江卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 2448562, "material": "", "question": "在历史研究中,实证主义强调________,认为史学家是反映历史的镜子,其职责仅限于对史料进行严格考证、挑选和排列,让史料自身去制造历史,而自己则要____________,这种观点忽视了史学家的主观能动性,过于绝对和冷漠,在后续的发展中受到很大质疑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 公正性 秉笔直书\nB. 独立性 冷眼旁观\nC. 真实性 不动声色\nD. 客观性 置身事外", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 3223218, "human_acc": 75.4186033957, "source": "2020年国家公务员录用考试《行测》题(副省级网友回忆版)第24题", "difficulty": 5, "formulas": 0}, {"id": 5408645, "material": "", "question": "智能技术可以________沉浸式学习情境,将传统学习空间中学生受想象力局限而无法直接感受到的内容以三维立体形式呈现出来。学生能够设身处地思考问题,而不是处于____________的状态,其潜在的求知欲被激发出来,学生可以________感知知识的生产过程,理解知识的附加价值。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 创设 置身事外 真实\nB. 改善 雾里看花 完整\nC. 重建 无所适从 深入\nD. 模拟 无动于衷 逐步", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 1269525, "human_acc": 74.4080660089, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第19题", "difficulty": 4, "formulas": 0}, {"id": 2536362, "material": "", "question": "你一定遇到过下列情况:和家人谈“开源节流”,他却只当是耳边风;要邻居遵守公德,对方却依然我行我素。当你遇到这些情况时,你是沉默以对,还是________批评,抑或____________?别觉得灰心丧气,因为大部分人都和你一样,不是____________,不知如何应对,就是以强硬的方式解决,却在对方心里留下不愉快的阴影。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 善意 血口喷人 理屈词穷\nB. 严厉 怒不可遏 手忙脚乱\nC. 委婉 口诛笔伐 噤若寒蝉\nD. 严肃 拍案而起 张口结舌", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 349263, "human_acc": 34.4356545068, "source": "2021年国考第四季行测模考大赛(副省级)第29题", "difficulty": 7, "formulas": 0}, {"id": 4633640, "material": "", "question": "在城市治理实践中不能就事论事、片面思考,而需要从整体角度通盘考虑、____________,实现系统性、深层次的变革;需要聚焦具体问题,从细微处发现问题、补齐短板,并能“____________”,提升城市治理的整体水准;需要紧密结合实际,推动形成____________的体制机制,为城市治理提供持久稳定的基础保障。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 统筹兼顾 以点带面 长效化\nB. 高屋建瓴 见微知著 常态化\nC. 高瞻远瞩 举一反三 精准化\nD. 审时度势 以管窥豹 科学化", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 161566, "human_acc": 77.8257801765, "source": "2021下半年省考第三十五季行测模考大赛(四川卷)第25题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4925416, "material": "", "question": "从实质上来说,星座的不同就是出生时间的不同。不同星座的人在精神气质或生理上是否存在差异,心理学研究的结果____________。但医学上确有得到广泛承认的________。多种疾病是与时间有关的,比如季节性情绪障碍(SAD)是其中之一。\n\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 模糊不定 发现\nB. 各执一词 结论\nC. 语焉不详 证据\nD. 模棱两可 理论", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 1042927, "human_acc": 17.9278127808, "source": "2022年重庆市选调优秀大学生到基层工作考试《行测》题第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5291710, "material": "", "question": "近年来,童书市场鲜有现象级原创新作,聚焦时代、畅想未来的作品更是____________,这也暴露出童书创新乏力的问题。童书出版不只是一块诱人的蛋糕,更是一项神圣的使命。为孩子讲好故事,提升童书品质____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一鳞半爪 刻不容缓\nB. 凤毛麟角 任重道远\nC. 寥寥无几 首当其冲\nD. 吉光片羽 势在必行", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 175329, "human_acc": 71.3224851565, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第31题", "difficulty": 4, "formulas": 0, "history": [{"id": 4484769, "material": "", "question": "让基层干部尤其是乡镇干部留得下来、干得下去,靠的不是“一厢情愿”,更不是“画饼”“口头支票”,而是实实在在的政策、真真切切的保障。该享受的待遇兑现了吗?该支持的工作落实了吗?该建设的配套跟上了吗?该解决的困难有进展了吗?没有____________,才能甩开膀子、豁得出去;只有____________,才能沉下心思、务实干事。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 落井下石 全神贯注\nB. 后顾之忧 心无旁骛\nC. 燃眉之急 专心致志\nD. 后顾之虞 脚踏实地", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 9928, "human_acc": 95.0946817083, "source": "2021下半年省考第二十六季行测模考大赛(西藏卷)第1题", "difficulty": 3, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 49555, "material": "", "question": "如果全球变暖导致海平面大幅上升,和其他国家一样,中国将要________被海水淹没地区的人口,特别是长江下游河段,或者建造大坝保护地处低洼地区的沿海城市,这些都需要巨大的花费。中国和其他国家面临的挑战是限制二氧化碳的排放,从而_________全球变暖所导致的最坏结果的发生,这在未来20年里更加重要。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 转移 阻止\nB. 控制 避免\nC. 延缓 减少\nD. 安置 改变", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 2425855, "human_acc": 79.5414812509, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 1797862, "material": "", "question": "黄河下游原来是绕山东丘陵之南注入黄海的。后来,由于中游的黄土高原不断________,下游的广大平原又不断沉降,黄土不断受到侵蚀,________泥沙滚滚流入黄河。到了下游,水中的泥沙逐渐淤积,河床不断抬高,遇到汛期,便会漫溢泛滥,出现改道的现象。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 升高 掺杂\nB. 降低 含有\nC. 下降 大量\nD. 抬升 挟带", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 965054, "human_acc": 66.6250800473, "source": "2016年423联考《行测》题(贵州卷)第32题", "difficulty": 5, "formulas": 0}, {"id": 49571, "material": "", "question": "想法或假说的产生,来源于研究者_________的思想,用来解释事物的成因,寻找或构造相关的________,以便揭示所观察到的事实的真相,因而,假说完全有可能是__________的,知道这一点,养成产生想法时保留判断的习惯就非常重要。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自由 证据 错误\nB. 主观 定律 歪曲\nC. 特别 学说 荒谬\nD. 独立 理论 虚假", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 2369948, "human_acc": 45.5268216855, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第47题", "difficulty": 6, "formulas": 0}, {"id": 49541, "material": "", "question": "欧盟《传统植物药注册程序指令》大限将至,中药出口欧洲遭遇严冬,人们不禁对中药________产生了不小的怀疑。这其中确有中药自身种植、生产加工不统一的原因,致使药效和安全性能受到国际市场________,但究其深层原因,则与国际中药市场暗藏的利益争夺不无关系。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 标准化 排斥\nB. 现代化 指责\nC. 产业化 发难\nD. 国际化 质疑", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 2473991, "human_acc": 82.5307367731, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第32题", "difficulty": 4, "formulas": 0}, {"id": 2264130, "material": "", "question": "想法或假说的产生,来源于研究者________的思想,用来解释事物的成因,寻找或构造相关的________,以便揭示所观察到的事实的真相。因而,假说完全有可能是________的。知道这一点,养成产生想法时保留判断的习惯就非常重要。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自由 证据 错误\nB. 主观 定律 歪曲\nC. 特别 学说 荒谬\nD. 独立 理论 虚假", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 6298, "human_acc": 54.3664655446, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第25题", "difficulty": 5, "formulas": 0}, {"id": 4918848, "material": "", "question": "身体素质的练习有时会陷入________的局面,因此不断变化的方法以及情境创设与环境创设更有利于激发孩子练习的兴趣。但__________的重复,孩子会失去兴趣,设置为闯关游戏,分别跳过抱枕路障,滚翻过封锁区,摸高打靶的情景故事,在客厅与卧室设置一个循环,会大大提高孩子的练习兴趣。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 乏味 专业化\nB. 单调 模式化\nC. 聒噪 机械化\nD. 枯燥 单一化", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 152649, "human_acc": 73.0178383088, "source": "2022上半年省考第十六季行测模考大赛(陕西卷)第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2717443, "material": "", "question": "文学批评以文学创作为对象,而二者均根基于创作主体的主观意识,如文学作品丰盈的想象与情感,文学批评________的理解与见识,无不带有写作者的心理偏好与价值取向。特别是文学批评,稍有不慎,便会卷入各种主观“偏见”的________。好的批评者的确对作品有自己的特异理解和特别判断,但这种理解和判断不应流于无科学根据的主观________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 准确 浪潮 臆测\nB. 充溢 漩涡 臆断\nC. 充盈 泥潭 猜测\nD. 透彻 窠臼 猜想", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 111362, "human_acc": 61.4491478242, "source": "2020年下半年省考第十五季行测模考大赛(云南卷)第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 4661687, "material": "", "question": "中国社会史研究中的所谓“碎片化”问题由来已久,可它并非证据确凿,仍旧需要________。从严格的学术考究来看,所谓“碎片化”虽然在某些研究者和个案研究中有所体现,但是“碎片化”并不是社会史________的特征,也没有理由担忧它会影响社会史的进一步发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 考证 外露\nB. 推敲 固有\nC. 商榷 稳健\nD. 揣度 显著", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 79691, "human_acc": 67.5157796991, "source": "2021下半年省考第三十九季行测模考大赛(四川卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 1688992, "material": "", "question": "民间童话比作家童话生命更加旺盛、个性更为突出。但是如果民间的个性能转化出国民个体的个性,所谓个性也就有________的危险。格林兄弟使西方浪漫主义智识资源对民间进行了创造性的建构和转化,一方面运用母体和谚语营造民间氛围,另一方面加强形象的个人特色和人物的________,产生了现代性意味的民间童话。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 泯灭 性格\nB. 难产 特殊\nC. 弱化 本质\nD. 架空 个性", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 16741, "human_acc": 49.5430380503, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第15题", "difficulty": 5, "formulas": 0}, {"id": 5671387, "material": "", "question": "中国古代文学存在一套发达的抒情体系。当然,在承认古代小说抒情性的同时,不可否认抒情因素并非与生俱来。虽然抒情性在唐代就已________痕迹,但只有到了明清,在文人化和个人化倾向的刺激下才大放异彩。同时,中国古代小说中也存在着一大批________抒情的说理、记事文类,但是,这些现象并没有________中国古代小说的抒情特性,反而从各个方面将中国古代小说的抒情面相凸显了出来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 初现 凸显 模糊\nB. 暴露 偏离 蒙蔽\nC. 遗留 超越 减弱\nD. 显露 淡化 消减", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 77370, "human_acc": 76.5516350006, "source": "2023下半年省考第十四季行测模考大赛(上海卷)第5题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4733741, "material": "", "question": "所谓“全脑开发”从未消失过。尽管培训机构提供的课程真假难辨、疑点重重,但架不住家长们抱有“神童情结”,个个都不想输在起跑线上,所以培训机构能____________地存在,甚至不停开办分校。在这里,家长们的愚钝____________——越是不读书的家长,对这类“速成法”恐怕越是盲从。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 肆无忌惮 首当其冲\nB. 堂而皇之 难辞其咎\nC. 明目张胆 责无旁贷\nD. 理直气壮 当仁不让", "choice": "B", "keypoints": "词的辨析-感情色彩;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 59389, "human_acc": 85.1033019583, "source": "2022上半年省考第八季行测模考大赛(西藏卷)第1题", "difficulty": 4, "formulas": 0, "history": [{"id": 4961599, "material": "", "question": "久治难愈的骚扰电话,本就是困扰全社会的行业顽疾,如今搭上人工智能高科技“快车”,更是让人____________。据媒体报道,每一个人工智能骚扰电话机器人的购置成本仅需1000多元,但其却可以每日拨号超过3000次。有的骚扰电话公司甚至可以保证一年拨打40亿个骚扰电话。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深恶痛绝\nB. 应接不暇\nC. 防不胜防\nD. 措手不及", "choice": "C", "keypoints": "词的辨析-感情色彩;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 17810, "human_acc": 40.1965188097, "source": "2023年国考第二十季行测模考大赛(地市级)第21题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2050772, "material": "", "question": "面对基层治理难题,当然不能因为利益的________而将其束之高阁,也不能因为情感的________而长期“一事一法”。否则,一些问题可能会____________,失去改革的最佳“窗口期”,最终损害的还是群众的利益。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冲突 纠纷 积习难改\nB. 牵扯 阻扰 根深蒂固\nC. 羁绊 纠葛 积重难返\nD. 束缚 阻隔 积习深重", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 906059, "human_acc": 61.7030458281, "source": "2017年422联考《行测》题(江西卷)第5题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5440771, "material": "", "question": "清晨老王到车站后发现有重要文件没带,于是联系妻子帮忙送文件。从家到车站共3600米,妻子从家出发预计7:45将文件送到车站。为了节约时间,老王与妻子同时出发,并在两人相遇后均立即原路原速返回,老王拿到文件到达车站预计时间为7:36。已知老王的速度是妻子的1.5倍,那么老王的速度为多少?", "type": "单选题", "options": "A. 120米/分钟\nB. 90米/分钟\nC. 80米/分钟\nD. 60米/分钟", "choice": "A", "keypoints": "普通行程;相遇追及", "most_wrong": "B", "human_count": 215351, "human_acc": 18.5065311979, "source": "2023上半年省考第三季行测模考大赛(天津卷)第4题", "difficulty": 7, "formulas": 0, "history": [{"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 1129961, "material": "", "question": "大学生进行9天野营拉练,晴天每天走32千米,雨天每天走25千米,一共走了274千米,则拉练期间雨天的天数是:", "type": "单选题", "options": "A. 1\nB. 4\nC. 5\nD. 2", "choice": "D", "keypoints": "普通行程", "most_wrong": "C", "human_count": 30941, "human_acc": 87.001066546, "source": "2010年江苏省公务员录用考试《行测》题(C类)第26题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 4663063, "material": "", "question": "某项工作可雇佣甲、乙两人完成。若以“甲工作3天、乙工作2天”的顺序轮流加工,则需25天完成,共支付工费3300元;若以“乙工作3天、甲工作4天”的顺序轮流加工,则需24天完成,共支付工费3240元。现不采用轮流加工的方式,要想在18天内完成这项工作,则最少需要支付多少工费?(不足一天按一天计算)", "type": "单选题", "options": "A. 3600元\nB. 3210元\nC. 3060元\nD. 3000元", "choice": "C", "keypoints": "周期余数问题;给效率比例型;统筹规划问题", "most_wrong": "B", "human_count": 136351, "human_acc": 49.973964254, "source": "2021下半年省考第三十九季行测模考大赛(广东乡镇卷)第41题", "difficulty": 6, "formulas": 0, "history": [{"id": 593013, "material": "", "question": "数$2^{2016}-1$可被(    )整除。", "type": "单选题", "options": "A. 2\nB. 4\nC. 5\nD. 6", "choice": "C", "keypoints": "周期余数问题", "most_wrong": "D", "human_count": 292685, "human_acc": 74.7370039462, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 4, "formulas": 1}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 8005, "material": "", "question": "$2^{2007}+3^{2008}+4^{2009}$的个位数是:", "type": "单选题", "options": "A. 1\nB. 3\nC. 7\nD. 9", "choice": "B", "keypoints": "周期余数问题", "most_wrong": "C", "human_count": 19749, "human_acc": 60.5093928807, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第11题", "difficulty": 4, "formulas": 1}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期余数问题"], ["数量关系", "数学运算", "工程问题", "给效率比例型"], ["数量关系", "数学运算", "统筹规划问题"]]}, {"id": 2136516, "material": "", "question": "作为一个单纯的图书设计者,设计师需要尊重书籍本身而适度地“________”自己,即不能“过度设计”而使形式僭越了书籍内容。但是,作为一个创意表达者,设计师一旦参与了图书的创作,就使书籍成为表达自己独特创意的________,此时设计师已不仅仅干预了图书的形式,而是直接参与了内容的创作。", "type": "单选题", "options": "A. 压抑 工具\nB. 贬低 渠道\nC. 遗忘 符号\nD. 隐藏 媒介", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 997801, "human_acc": 56.7278445301, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5187196, "material": "", "question": "那些将“个性”误解为种种不靠谱行为的所谓作家,说他们是作家中的假冒伪劣者也许有些言重了,但将他们定义为不好的作家,应是____________的。其间道理颇类似于魏晋时期的真假名士之别,阮籍、嵇康等真名士鄙薄当时虚伪的礼教,为人自由不羁,其实他们心里未尝没有是非善恶的天平,只不过他们内化了那些准则,而____________的假名士心里没有那架天平,却在言行举止上做足桀骜不驯、放浪形骸的场面文章。仅学得皮相,还自以为修得大道,其实是____________的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 恰如其分 东施效颦 南辕北辙\nB. 入木三分 亦步亦趋 缘木求鱼\nC. 恰逢其时 邯郸学步 因噎废食\nD. 正当其时 拾人牙慧 背道而驰", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 8497, "human_acc": 84.3591855949, "source": "2022下半年省考第六季行测模考大赛(通用卷)第37题", "difficulty": 3, "formulas": 0, "history": [{"id": 2144771, "material": "", "question": "近年来,随着金融改革开放步伐加快,多层次资本市场建设稳步推进,金融市场创新日趋活跃,与金融密切相关的金融信息服务出现_____________的发展,但金融信息质量______________,市场秩序有待健全规范。依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 突飞猛进 参差不齐\nB. 日新月异 良莠不齐\nC. 江河日下 泥沙俱下\nD. 与日俱增 鱼目混珠", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 15053, "human_acc": 52.2952235435, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第33题", "difficulty": 5, "formulas": 0}, {"id": 5416750, "material": "", "question": "对很多人来说,盲盒并不陌生。看起来____________的外观,却往往内藏乾坤。消费者____________,试图以小博大收获新鲜感。商家____________,价格不低、销量不菲,更是获得感满满。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 并无二致 兴致勃勃 乐见其成\nB. 相差无几 走马观花 交口赞誉\nC. 大相径庭 挖空心思 首肯心折\nD. 泾渭分明 浅尝辄止 喜闻乐见", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 8810, "human_acc": 95.0510783201, "source": "2022下半年省考第二十三季行测模考大赛(新疆兵团卷)第35题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2052032, "material": "", "question": "一天顺手拿起手机翻看通讯录,发现里面存储的600多个姓名和号码,_______有近一半不知是谁,更记不起是什么时间、什么地点存留下来的。仔细想一想,大概是在不同的时机和场合,与这些_______的人有过简单的一面之缘,当时就存留下来了。\n\n依次填入画横线部分最恰当的一组是:", "type": "单选题", "options": "A. 显然 机缘巧合\nB. 俨然 南来北往\nC. 竟然 萍水相逢\nD. 居然 素昧平生", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 606340, "human_acc": 25.9606821255, "source": "2017年422联考《行测》题(吉林卷甲级)第37题", "difficulty": 5, "formulas": 0, "history": [{"id": 2452716, "material": "", "question": "蝉是三伏天的“超级男声”,才艺超拔;蝉是____________的歌唱天才,它的腹腔唱法,别具一格;它的音色纯净清亮,高亢悠长。蟋蟀、蚱蜢和纺织娘,这些天资不错的鸣虫,都没有那么强的唱功,难以望“蝉”项背。蝉唱实在嘹亮,但不是________。“蝉噪林逾静”,诗人王籍说得真好。\n\n依次填入画横线处最恰当的一项是", "type": "单选题", "options": "A. 无可非议 张扬\nB. 无处不在 热烈\nC. 无师自通 喧嚣\nD. 无懈可击 刺耳", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 1437097, "human_acc": 76.5982393673, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第32题", "difficulty": 5, "formulas": 0}, {"id": 3973285, "material": "", "question": "热带雨林看似茂密而壮观,但由于其生态系统的复杂和多样,它也是极为________的,一旦遭到破坏,比其他生态系统更难恢复,且需要更长的时间。多年前,西双版纳因为橡胶种植的狂热,导致了一场生态灾难,如今,尚在喘息期的西双版纳,又遭到“毁林种茶”的二次重击,这无疑使得西双版纳生态____________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 稳固 如履薄冰\nB. 强韧 岌岌可危\nC. 松散 一蹶不振\nD. 脆弱 雪上加霜", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 163289, "human_acc": 98.4205917116, "source": "2021下半年省考第十八季行测模考大赛(广东县级卷)第4题", "difficulty": 3, "formulas": 0}, {"id": 2693432, "material": "", "question": "目前,阿尔寨石窟壁画修复取得阶段进展,共修复壁画面积250.63平方米。不过相对于2000平方米亟待修复保护的壁画来说,壁画修复工作仍然是____________。阿尔寨石窟的壁画技法非常________。采用绿、黑等诸色矿物质颜料绘制,大量应用了体现蒙古民族本土风格的蓝和绿。线条简洁明快,画幅布局生动多变,形式多样,塑造的人物个性鲜明,栩栩如生。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 杯水车薪 复杂\nB. 任重道远 精湛\nC. 差强人意 娴熟\nD. 难以企及 多元", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 245537, "human_acc": 88.1142149656, "source": "2021年国考第二十三季行测模考大赛(副省级)第25题", "difficulty": 3, "formulas": 0}, {"id": 2453281, "material": "", "question": "辞书的“互联网基因”,似乎是____________的。对于网络阅读,人们常常有“碎片化”的________,而辞书恰是由众多“碎片化”的条目组成的,并且也是供人们“碎片化”检索使用的。因为有了数字化、互联网,辞书检索变得空前________:只要把那个字、那个词放入搜索框,轻点一下鼠标,古音、今音,古义、今义,例句乃至翻译,都可以同时呈现在眼前。\n\n依次填入画横线部分最恰当的一项是", "type": "单选题", "options": "A. 得天独厚 质疑 顺利\nB. 不言而喻 批评 轻松\nC. 与生俱来 忧虑 简便\nD. 毋庸置疑 烦恼 容易", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 1033884, "human_acc": 84.0721976547, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第43题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4972893, "material": "", "question": "小黑杂货铺低价购入两包尾货毛巾,每包100条。第一包随机抽取2条毛巾恰好都是次品的概率为$\\frac{1}{90}$,第二包随机抽取1条毛巾恰好是次品的概率为$\\frac{1}{25}$。这两包毛巾的进价均为7元/条,杂货铺以正品19元/条,次品4元/条的价格进行售卖,则售完这两包毛巾后能够盈利:", "type": "单选题", "options": "A. 2175元\nB. 2219元\nC. 2728元\nD. 3185元", "choice": "A", "keypoints": "经济利润问题;概率问题-其他", "most_wrong": "C", "human_count": 263131, "human_acc": 19.0779497665, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第38题", "difficulty": 7, "formulas": 2, "history": [{"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 5510095, "material": "", "question": "某商品的利润率是20%。如果进货价降低20%,售价保持不变,此时利润率是多少?", "type": "单选题", "options": "A. 40%\nB. 30%\nC. 60%\nD. 50%", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "A", "human_count": 160341, "human_acc": 60.6943950705, "source": "2023年河北省公务员录用考试《行测》题(网友回忆版)第71题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 1746650, "material": "", "question": "下列说法不符合我国法律规定的是:", "type": "单选题", "options": "A. 甲带侄子外出游玩,遇地震,甲无需为侄子在地震中所受损害承担责任\nB. 甲用拳头殴打乙,乙将甲推倒后持刀将其扎死,乙无需为甲的死亡承担责任\nC. 甲、乙发生口角,对骂过程中甲欲讹诈乙而故意倒地,乙无需为甲因倒地所受伤害承担责任\nD. 甲、乙因言语不和而厮打一起,丙撞见后趁机殴打与其素来不和的甲,乙无需为丙殴打甲所造成的损害承担责任", "choice": "B", "keypoints": "民法;刑法", "most_wrong": "A", "human_count": 2192611, "human_acc": 81.1851714691, "source": "2016年国家公务员录用考试《行测》题(地市级)第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"], ["常识判断", "法律常识", "刑法"]]}, {"id": 1002999, "material": "", "question": "西方现代文论认为,一部作品产生后就是独立的文本,和作者无关。然而这个原则却不适用于中国传统文学。中国古代的文学家,很多是朝廷的官员或预备官员,至少是读书人,是文明的传承者,他们的言行是社会风尚的风向标,文学承载着移风易俗的责任,因此社会价值体系对文学家的人格有较高的要求。如汉代的扬雄写过赞美王莽的文章,因而被宋人看不起;严嵩的诗写得好,但是后世读的人少,诗集也少有刊刻——怎能让祸国殃民的罪人立言不朽呢!古人虽也说过“孔雀虽有毒,不能掩文章”的话,但仍坚持“德艺双馨”的文艺评论原则。\n\n根据这段文字,下列哪项符合传统上中国古代对文学作品的看法:", "type": "单选题", "options": "A. 文如其人\nB. 文以载道\nC. 知人论世\nD. 诗以言志", "choice": "A", "keypoints": "关联词-转折;关联词-因果", "most_wrong": "B", "human_count": 2434960, "human_acc": 70.0586046588, "source": "2015年国家公务员录用考试《行测》题(省部级)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 2261929, "material": "", "question": "在某种意义上说,中国传统文化的复兴正当其时:现代化建设已见成效,但也面临着一些难题。然而,一些传统文化的“复兴者”认为:传统文化与现代化是矛盾的,至少与现代性和启蒙是矛盾的,于是以反现代性和反启蒙为其定位。\n\n下列说法中,符合作者观点的是(  )。", "type": "单选题", "options": "A. 中国已实现了现代化\nB. 中国亟需复兴传统文化\nC. 传统文化与现代化无法融合\nD. 一些人对传统文化复兴的定位有误", "choice": "D", "keypoints": "关联词-转折;关联词-因果", "most_wrong": "B", "human_count": 114728, "human_acc": 89.1125095879, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第49题", "difficulty": 4, "formulas": 0}, {"id": 4695930, "material": "", "question": "人的失败、失意、失恋、失分有许多原因,但有一个很常见的原因则是说话不注意自己的身份与对方的身份,常常造成隔阂,造成误会,造成不良效果,令人十分后悔与不安。于是,有的人干脆下定决心,准备戒口、守嘴,免得祸从口出。但也因此有的人被搞得神经紧张,一紧张便不知如何表达,往往词不达意,张冠李戴。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 说话不当很不好但不能因此不敢说话\nB. 说话不注意分寸危害很大\nC. 祸从口出告诉我们要少说话多做事\nD. 不成功有很多种原因", "choice": "A", "keypoints": "关联词-转折;关联词-因果", "most_wrong": "B", "human_count": 7288, "human_acc": 85.7574094402, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 2657337, "material": "", "question": "父母经常告诉孩子,天冷时不戴帽子和手套就会感冒,然而事实上,感冒和穿戴之间却没有直接的联系。有时我们在某个餐馆用餐后生了病,就会自然而然地觉得这是餐馆食物的问题。事实上,我们肚子痛也许是因为其他的传染途径,比如和患者握手之类的。然而,我们的快速思维模式使我们直接将其归于任何我们能在第一时间想起来的因果关系,因此,这经常导致我们做出错误的决定。\n\n这段文字意在说明(    )。", "type": "单选题", "options": "A. 感冒和穿戴没有直接关系\nB. 肚子痛的原因会有多种\nC. 快速思维模式往往导致错误决定\nD. 凭直觉而来的因果关系并不正确", "choice": "C", "keypoints": "关联词-转折;关联词-因果", "most_wrong": "D", "human_count": 3922, "human_acc": 92.2233554309, "source": "2018年山东省选调生优选计划笔试综合测试(节选)第37题", "difficulty": 3, "formulas": 0}, {"id": 14203, "material": "", "question": "如果发现一个好产品或者一个大市场,就应该立即跟进;在跟进中发现现有产品的缺陷,然后通过创新弥补缺陷,超越对手,实现后来者居上。当然,创新的目标是创造,而不是简单模仿。因此,创造性模仿者需要通过对他人创意的了解,重新组合、改良而产生具有不同功能与价值的新东西。事实上,所有的产品,除了第一代是原创的,以后的进步都是通过创造性模仿来实现的。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 创造性模仿是改良产品的主要途径\nB. 通过不断的改善就能得到新的产品\nC. 创新来源于对现有产品缺陷的弥补\nD. 大部分产品都是通过模仿来完成的", "choice": "A", "keypoints": "关联词-转折;关联词-因果", "most_wrong": "C", "human_count": 198788, "human_acc": 77.5202728535, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第77题", "difficulty": 4, "formulas": 0}, {"id": 46225, "material": "", "question": "来自不同的语言群体和文化群体的人需要彼此交流,就必须寻找交流工具。在一个层面上,他们可以依赖受过特殊训练的专业人员,这些人可以熟练使用两种以上的语言来作口译和笔译。但这是不方便的,花费的时间和代价是昂贵的。因此,在整个历史上,不断出现通用语言,在古代世界和中世纪世界是拉丁语,在西方几个世纪中是法语,在非洲的许多地区是斯瓦希里语,20世纪后半叶,在全世界的大部分地区是英语。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 翻译作为交流工具的局限性显而易见\nB. 通用语言是处理语言差异的有效手段\nC. 交流工具会因时代和层次需求而变化\nD. 人类为寻找通用语言进行过长期探索", "choice": "B", "keypoints": "关联词-转折;关联词-因果", "most_wrong": "C", "human_count": 371580, "human_acc": 73.8419721191, "source": "2013年北京市公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 5276703, "material": "", "question": "大熊猫作为我国特有的古老物种,已在地球上至少生存了800万年。在《山海经》等古籍中,古人将大熊猫称为“貘白豹”“食铁兽”“貘”等。大熊猫生活在深山老林,形迹诡秘,因而人们对其____________。有趣的是,中国古籍中的“大熊猫”是线描的图画,画家没有见过大熊猫,仅根据自己的________描画它的形象。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一知半解 理解\nB. 一无所知 推测\nC. 知之甚少 想象\nD. 习焉不察 猜想", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 181495, "human_acc": 96.8572136973, "source": "2022下半年省考第十季行测模考大赛(深圳卷)第63题", "difficulty": 3, "formulas": 0, "history": [{"id": 2133722, "material": "", "question": "一项世界规模的宏基因组研究显示,含耐药基因的微生物在自然界中________________。这意味着人类有可能回到没有抗生素的时代,医疗体系中的很大一部分可能会退回到抗生素发明之前的境地,轻微的细菌感染都可能引起________的后果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 比比皆是 意外\nB. 不可胜数 可怕\nC. 千差万别 严重\nD. 无处不在 致命", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 3207731, "human_acc": 76.7183407836, "source": "2018年国家公务员录用考试《行测》题(地市级网友回忆版)第25题", "difficulty": 4, "formulas": 0}, {"id": 4682898, "material": "", "question": "“双减”问题的提出,很大程度上源于教育生态的失衡。在学校教育体系之外,资本意图打造另一个体系,学生、家长、教师、学校受之________,爱恨交织,剪不断、理还乱。开展“双减”工作,就是要以快刀斩乱麻之势,____________,使学校、家庭、社会各安其位,学生、家长、教师各负其责,促进教育生态全面、协调、可持续发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 干扰 正本清源\nB. 裹挟 拨乱反正\nC. 蒙蔽 弃旧图新\nD. 胁制 激浊扬清", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 243327, "human_acc": 56.8847682337, "source": "2022上半年省考第三季行测模考大赛(陕西卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 2423302, "material": "", "question": "当前对于中国债务风险的很多分析,往往聚焦于中国的债务存量,较少关注到与债务相对应的资产,这在国际机构的评估中尤为______。事实上,正是由于中国政府拥有大量的存量资产且高于存量债务,才使得在应对债务风险问题上______,任何脱离资产仅论负债的做法,对于中国债务风险的评估都是______的。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 重要 独当一面 狭隘\nB. 突出 随心所欲 错误\nC. 常见 游刃有余 片面\nD. 关注 驾轻就熟 偏颇", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 159697, "human_acc": 91.6379143002, "source": "2019年甘肃省公务员录用考试《行测》题(网友回忆版)第32题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2645644, "material": "", "question": "在一个环形操场上,面对主席台中心点的位置站着一位女旗手,按照顺时针方向隔$x$位男旗手有两位连续女旗手,再隔$x-1$位男旗手有三位连续女旗手,再隔$x-2$位男旗手有四位连续女旗手。以此类推,最后发现隔1位男旗手为面对主席台中心点的女旗手。若旗手总人数不超过100人,操场的周长为450米,则平均每两人之间的距离最小为多少米?", "type": "单选题", "options": "A. 4\nB. 4.5\nC. 5\nD. 6", "choice": "C", "keypoints": "数列问题;周期问题-其他;非典型最值问题", "most_wrong": "B", "human_count": 95369, "human_acc": 46.0925457958, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第58题", "difficulty": 6, "formulas": 3, "history": [{"id": 827265, "material": "", "question": "10个连续偶数之和为2030,则第一个偶数为:", "type": "单选题", "options": "A. 190\nB. 192\nC. 194\nD. 196", "choice": "C", "keypoints": "数列问题", "most_wrong": "B", "human_count": 117790, "human_acc": 63.9782664063, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第55题", "difficulty": 5, "formulas": 0}, {"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 8059, "material": "", "question": "2+4+6+8+10+······+50的值是:", "type": "单选题", "options": "A. 640\nB. 650\nC. 660\nD. 670", "choice": "B", "keypoints": "数列问题", "most_wrong": "C", "human_count": 19155, "human_acc": 81.0545549465, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第6题", "difficulty": 4, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "数列问题"], ["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 2144777, "material": "", "question": "回望一些官员的成长史,他们可以从农村子弟里脱颖而出,_____ 不能保持赤子之心,归根结底是在权力欲前飘飘然了,忘了自己的出身和初心。要真正为人民服务,就需要把人民放在心中,______口头上用“农民的儿子”标榜自己,______如法炮制来博取同情,毫无疑问,都只是把他们自己放在心中。\n\n依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 却 凡是 或是\nB. 但 如果 就\nC. 却 因为 所以\nD. 但 即使 但是", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "B", "human_count": 13312, "human_acc": 85.9224759615, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 4651849, "material": "", "question": "将下列选项中的词语依次填入句子横线处,最恰当的一组是:\n\n身居“唐宋八大家”之列的欧阳修,________文章冠绝一时,其为政措施________颇具创新意识。________欧阳修一生仕途坎坷,为官几十年竟遭三次贬谪,但他始终宠辱不惊,晚年________是旷达潇洒。", "type": "单选题", "options": "A. 不但 还 不过 更\nB. 不仅 也 尽管 也\nC. 不仅 也 不过 更\nD. 不但 还 尽管 也", "choice": "B", "keypoints": "对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "C", "human_count": 48943, "human_acc": 40.4082299818, "source": "2022年深圳市考公务员录用考试《行测》试题(网友回忆版)第64题", "difficulty": 4, "formulas": 0}, {"id": 4660334, "material": "", "question": "科技深度介入竞技体育,有力提升了运动员们的竞赛成绩,延长了运动员的运动生命周期,提高了各项赛事的精彩程度,让人类不断向着更快、更高、更强的目标挺进。当然,也要看到,科技从来都是一柄双刃剑,体育科技的运用不可避免地会带来不公平的现象,有条件的国家和运动员可以使用更先进、更科学的体育设备和训练方法,可能将经济领域的不平等延伸到体育领域,________也可能加剧竞技运动员的科技异化程度。________,为提高成绩服用违禁药品,这就完全背离了现代奥林匹克运动的基本精神。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 而且 因此\nB. 并且 一旦\nC. 甚至 另外\nD. 同时 甚至", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "C", "human_count": 28662, "human_acc": 55.118275068, "source": "2021下半年省考第三十九季行测模考大赛(广东乡镇卷)第5题", "difficulty": 6, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 5649345, "material": "", "question": "文化资源在________为旅游产品与服务的过程中,不可避免地会出现适度改编和再创作。过去,不少学者对非遗表演融入旅游表达过诸多________,认为这种旅游表演很难在非遗内容的真实性与游客的体验感之间取得平衡。实际上,当地社区在掌握传统表演艺术知识的同时,也能适应不断变化的社会经济环境,以分型发展的方式________非遗的社区传承与旅游表演。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 转换 恐慌 参与\nB. 演化 质疑 统筹\nC. 转化 担忧 兼顾\nD. 演变 顾虑 完善", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 51177, "human_acc": 77.5758641577, "source": "2023下半年省考第十二季行测模考大赛(四川卷)第18题", "difficulty": 4, "formulas": 0, "history": [{"id": 2724060, "material": "", "question": "互联网不是法外之地,在网络空间实施的各类活动自然受到法律的________。虽然基于网络的无限性、交互性以及价值观的冲突,事实真相有时会被大量信息________,但司法天然有一双“慧眼”,能够透过重重迷雾发现事实,去________真相。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 管控 遮掩 寻找\nB. 约束 掩埋 揭示\nC. 规制 掩盖 昭示\nD. 挑战 遮蔽 发掘", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "B", "human_count": 160448, "human_acc": 14.254462505, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第37题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2144530, "material": "", "question": "陶行知先生曾经告诫,“你的教鞭下有瓦特,你的冷眼里有牛顿,你的讥笑里有爱迪生”。一个冷漠的眼神、一句刻薄的话语、一次不公平的对待,可能会影响孩子的一生。如果没有立德树人的仁心、没有诲人不倦的耐心、没有有教无类的公心,那么这样的教育是没有温度的。正如一些教育界人士的疾呼,许多教师不缺知识,不缺方法,缺的是爱心,缺的是责任心。今天的教育,比以往任何时候都需要回到人本身、关注人的成长。\n\n作者认为当前教育中存在的主要问题是:", "type": "单选题", "options": "A. 没有以人为本\nB. 没有因材施教\nC. 方法简单粗暴\nD. 在公平方面有欠缺", "choice": "A", "keypoints": "主题词;关联词-对策", "most_wrong": "B", "human_count": 1025620, "human_acc": 96.534096449, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第42题", "difficulty": 3, "formulas": 0, "history": [{"id": 4673225, "material": "", "question": "实践证明,打赢脱贫攻坚战,关键在于对扶贫对象进行精细化管理、对扶贫资源进行精确化配置、对扶贫对象进行精准化扶持。贫有百种,困有千样。只有坚持因村因户因人施策,因贫困原因施策,因贫困类型施策,对症下药,精准滴灌,靶向治疗,才能做到真扶贫、扶真贫、真脱贫。\n\n以下最能概括上述文段所表达的“脱贫攻坚精神”内涵的是:", "type": "单选题", "options": "A. 尽锐出战\nB. 开拓创新\nC. 攻坚克难\nD. 精准务实", "choice": "D", "keypoints": "主题词;关联词-对策", "most_wrong": "C", "human_count": 2043702, "human_acc": 95.9657034147, "source": "2022年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第7题", "difficulty": 3, "formulas": 0}, {"id": 50683, "material": "", "question": "国家实施“农村义务教育学生营养改善计划”的目标,是有效改善农村少儿的营养状况和健康素质。由于各地的地理环境、食物资源、饮食习惯、传统民俗不同,要实现这一目标,就需要在对各地农村少儿健康和营养状况的实证研究基础上,因地制宜地提出合理的食物结构和改善计划。\n\n这段文字主要说明了:", "type": "单选题", "options": "A. 农村少儿的营养需科学改善\nB. 各地的营养改善方式存在差异\nC. 营养改善目标是通过研究来确定的\nD. 地域不同,营养改善的目标就不同", "choice": "A", "keypoints": "主题词;关联词-对策", "most_wrong": "B", "human_count": 682497, "human_acc": 42.851763451, "source": "2013年广东省公务员录用考试《行测》题(一)第29题", "difficulty": 5, "formulas": 0}, {"id": 4673111, "material": "", "question": "对互联网金融加强监管,不是为了制约互联网企业,而是鼓励和保护真正有价值的金融创新,促进互联网金融规范有序健康发展。广大互联网企业只有正确认识行业监管与自身发展的关系,将监管要求内化到企业经营管理中,才能更好地走上规范健康发展的轨道。\n\n上述文段主要讲了(    )。", "type": "单选题", "options": "A. 推进互联网金融监管创新的价值\nB. 当前互联网企业面临的机遇和挑战\nC. 制约互联网企业健康发展的客观因素\nD. 互联网金融监管对企业发展的重要性", "choice": "D", "keypoints": "主题词;关联词-对策", "most_wrong": "A", "human_count": 2197506, "human_acc": 84.1646393684, "source": "2022年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第8题", "difficulty": 3, "formulas": 0}, {"id": 754267, "material": "", "question": "生活中几乎人人都懂得绝不能削足适履这一道理,然而,为了职业而改变性格的人却比比皆是。职业这双鞋,难道就真的需要用改变性格的巨大代价来适应吗?这是典型的本末倒置。这一日常生活中再简单不过的道理,为什么我们却要花上几年、甚至几十年的时间才能真正领悟到呢?\n\n这段文字意在强调:", "type": "单选题", "options": "A. 找工作时应考虑自己的性格特点\nB. 在生活和工作中应注意扬长避短\nC. 事业成就取决于对职业的热爱\nD. 真正领悟浅显的道理也需要时间的磨砺", "choice": "A", "keypoints": "主题词;关联词-对策", "most_wrong": "D", "human_count": 1025435, "human_acc": 79.5963664201, "source": "2014年山东省公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4673227, "material": "", "question": "迄今为止,国内外农业灾害史研究还未能建立一个全面记录历史时期世界各地自然灾害发生完整过程和灾情信息的综合性灾害史料数据库。在气候变化、灾害影响与适应防灾减灾应用等方面研究的资料需求无法得到满足,以致于不能全面地揭示灾害成因和环境后果。\n\n上述文段主要讲了:", "type": "单选题", "options": "A. 建立综合性灾害史料数据库的紧迫性\nB. 综合性灾害史料对于农业灾害研究的重要性\nC. 农业灾害史研究当前面临的问题\nD. 推动农业灾害成因和环境后果研究需加强国际合作", "choice": "C", "keypoints": "主题词;关联词-对策", "most_wrong": "A", "human_count": 2063445, "human_acc": 22.0192929785, "source": "2022年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第10题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 2671022, "material": "", "question": "借助大数据,企业可以________感知市场需求,使生产行为更有针对性;同时,“无障碍”的数字化交流平台还________了生产要素的流动,大大提高了生产效率;此外对消费数据的监控和把握,有助于挖掘消费者的潜在需求,使生产行为更具有________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 直观 加剧 持续性\nB. 精准 加速 前瞻性\nC. 切实 加深 长远性\nD. 敏锐 加快 开放性", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 173211, "human_acc": 93.0131458164, "source": "2021年国考第二十季行测模考大赛(地市级)第35题", "difficulty": 3, "formulas": 0, "history": [{"id": 2823066, "material": "", "question": "北宋前期,《花间》、南唐词风盛行,学之者多追求风格细腻柔婉,至柳永则趋于平俗浮靡。于是有苏轼对传统词风的改革,主要表现为对题材内容的________,对格调意蕴的重视等。这在主要以倚红偎翠为基本内容的传统中,显得非常________,所以当时经常得到讽刺性的评价。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 扩充 新颖\nB. 拓宽 罕见\nC. 拓展 另类\nD. 扩展 新奇", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 217372, "human_acc": 88.2450361592, "source": "2021上半年省考第十季行测模考大赛(重庆卷)第36题", "difficulty": 3, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5317325, "material": "", "question": "企业在运用数字化监管技术管理职场时,应妥善找准数字化监管技术运用与员工隐私权保护的平衡点。遗憾的是,现实中不少企业对此往往是____________,为了掌控员工,任性地在卫生间、更衣室等私密性强的场所安装摄像头,并将监控所收集的相关数据作为绩效考核、解除劳动合同的主要依据。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 避重就轻\nB. 进退两难\nC. 公而忘私\nD. 顾此失彼", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 233395, "human_acc": 43.0596199576, "source": "2022下半年省考第十四季行测模考大赛(浙江A卷)第22题", "difficulty": 7, "formulas": 0, "history": [{"id": 2521937, "material": "", "question": "大浪淘沙,互联网飞速发展的30年间,无数企业已____________,而金山办公从最初的____________,到历经产业挑战、环境挑战、跨国巨头挑战······时至今日仍历久弥新,成功完成互联网化转型,用30年的实践真正诠释了什么叫“从头优秀到尾”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 昔不如今 崭露头角\nB. 难以为继 默默无闻\nC. 生死攸关 脱颖而出\nD. 杳然不见 一鸣惊人", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 339074, "human_acc": 44.1944826203, "source": "2020年上半年省考第二十五季行测模考大赛(山东卷)第1题", "difficulty": 6, "formulas": 0}, {"id": 5114106, "material": "", "question": "当前一个普遍的事实是,由于孩子是家长最关心的人,很多家长会用____________的方式去管理孩子,逼迫孩子“学好”,但结果很可能适得其反。另外,家长要求孩子做的事情一定是孩子有能力做的。比如家长觉得要求孩子完成所有作业是____________的,但事实并非如此,由于每一个孩子的能力不同,当作业难度超出了孩子的能力,孩子在作业面前就只会“偷懒耍滑”“磨洋工”,无法完成作业也就无可非议了。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 耳提面命 轻而易举\nB. 不教而诛 理所当然\nC. 揠苗助长 天经地义\nD. 急功近利 手到擒来", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 67486, "human_acc": 33.4899090182, "source": "2022下半年省考第三季行测模考大赛(青海卷)第33题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 1324165, "material": "", "question": "对于消费者来讲,传统零售业最大的弊端在于信息的不对称。而互联网可以将一件商品的真正定价变得透明,让每个人都知道商品的真正价格区间。传统制造业属于封闭式生产,由生产商决定商品品种、型号,生产者与消费者之间是割裂的。而互联网会让消费者全程参与到生产环节,由用户决定他们想要的商品。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 互联网将打破信息不对称的格局\nB. 个性化定制是传统零售业的发展方向\nC. 互联网会对传统行业进行渗透与改造\nD. 互联网会对传统零售业和制造业产生影响", "choice": "D", "keypoints": "关联词-并列;关联词-对策", "most_wrong": "A", "human_count": 825956, "human_acc": 47.8652615878, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第20题", "difficulty": 6, "formulas": 0, "history": [{"id": 464081, "material": "", "question": "凡是符合立案条件,并已办理立案手续的所有案件,除涉及国家机密或个人隐私等不宜公开的理由外,均应当在人民法院决定立案的7日内在网上公示,同时告知合议庭组成人员和案件审理期限,便于当事人和社会监督,防止拖延案件审理期限,提高司法效率。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 怎样提高司法工作效率\nB. 加强立案公开制度的措施\nC. 案件审理期限告知方式\nD. 司法工作怎样接受社会监督", "choice": "B", "keypoints": "关联词-并列;关联词-对策", "most_wrong": "A", "human_count": 572895, "human_acc": 41.852171864, "source": "2014年江苏省公务员录用考试《行测》题(C类)第2题", "difficulty": 5, "formulas": 0}, {"id": 2144781, "material": "", "question": "在身份社会逐渐向专业社会过渡的当下,社会分工的精细化蕴含着“专业人做专业事”的价值追求。代驾作为一个新兴职业,不仅需要扎实的驾驶技能、丰富的驾驶经验,也需要从业者遵循相应的职业规范和职业伦理。只有这样,才能实现代驾与消费者的互信互惠。\n\n这段文字意在强调(  )。", "type": "单选题", "options": "A. 社会分工精细化对当代社会的影响\nB. 代驾职业产生的原因\nC. 代驾职业需要专业化与规范化\nD. 代驾从业者在职业规范和职业伦理上有所缺失", "choice": "C", "keypoints": "关联词-并列;关联词-对策", "most_wrong": "A", "human_count": 646126, "human_acc": 86.422772029, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 49623, "material": "", "question": "水资源短缺一直是我国在人口增长、城市化和工业化过程中所面临的一个长期的、趋势性的问题,成为制约我国经济发展的一大瓶颈。专家认为,海水淡化是沿海及临海地区最经济、最实用、最灵活的水危机解决方案。随着技术的进步,海水淡化的成本将逐步降低,最终将达到与成本正逐步上升的城市自来水竞争的程度,从而得以大规模推广。\n\n这段文字主要强调的是:", "type": "单选题", "options": "A. 海水淡化的必要性和可行性\nB. 海水淡化的经济性和实用性\nC. 制约中国经济发展的水危机\nD. 解决沿海地区水危机的有效措施", "choice": "A", "keypoints": "关联词-并列;关联词-对策", "most_wrong": "B", "human_count": 2314687, "human_acc": 60.6312214135, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第73题", "difficulty": 5, "formulas": 0}, {"id": 2031634, "material": "", "question": "犯其至难方能图其至远。一棵树苗,必须经历风吹、雨淋、日晒、虫害等挑战,才能长成参天大树;一名干部,也要经受意志、耐力、定力、孤独等考验,方能成为合格干部。没有在恶劣条件下的摸爬滚打,不经受心理上的辗转反侧乃至痛苦煎熬,就很难获得应对困难的“免疫力”,让内心真正强大起来,做到“逢辱而不惊,遇屈而不乱”。\n\n下列与这段文字表达的意思最为贴近的一项是(    )。", "type": "单选题", "options": "A. 只要功夫深,铁杵磨成针\nB. 工欲善其事,必先利其器\nC. 任凭风浪起,稳坐钓鱼台\nD. 成人不自在,自在不成人", "choice": "D", "keypoints": "关联词-并列;关联词-对策", "most_wrong": "B", "human_count": 1505375, "human_acc": 41.7891887403, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第30题", "difficulty": 5, "formulas": 0}, {"id": 2445069, "material": "", "question": "新时代中国文化哲学研究要用哲学思维和视野,以人为主体,研究文化的产生、功能及其发展的基本规律。要在实践创造中进行文化创造,在历史进步中推动文化进步,植根中华文化、不忘本来,吸收外来文化、加强文化交流、突出文化创新,面向未来,在创造中华文化新辉煌中推动社会主义文化繁荣兴盛。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 新时代中国文化哲学研究的使命担当\nB. 新时代中国文化哲学研究的指导思想和研究方向\nC. 要将文化哲学研究融入中国特色社会主义建设\nD. 应通过文化交流推动社会主义文化繁荣兴盛", "choice": "A", "keypoints": "关联词-并列;关联词-对策", "most_wrong": "B", "human_count": 442036, "human_acc": 33.4076862518, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第42题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 4906910, "material": "", "question": "感恩节、万圣节、圣诞节等“洋节”一度广受年轻人________。近年来,年轻人对“洋节”不再趋之若鹜,相反,当下青年群体对国潮与国风的追逐已然____________。国潮国风中富有古典意蕴的文化符号,充分唤起了群体对文化记忆、文化身份的共鸣,逐渐演变成一种________,成为极具广泛影响力和感召力的文化景观。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 青睐 应运而生 特色\nB. 垂怜 蔚然成风 潮流\nC. 喜爱 愈演愈烈 风气\nD. 追捧 悄然兴起 时尚", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 271601, "human_acc": 64.799466865, "source": "2022上半年省考第十五季行测模考大赛(陕西卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 3636495, "material": "", "question": "近年来,少儿编程培训备受________,家长纷纷给孩子报上编程培训班。但是,少儿编程教育行业存在门槛低、师资不足、教材稀缺等诸多问题。少儿编程培训市场首先要透明化,把能教给孩子什么真正说清楚,而不是____________地强调提高逻辑和思维能力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 追捧 大而化之\nB. 推崇 以点带面\nC. 青睐 避重就轻\nD. 拥趸 敷衍了事", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 73599, "human_acc": 40.5494639873, "source": "2021下半年省考第七季行测模考大赛(陕西卷)第31题", "difficulty": 6, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2010892, "material": "", "question": "能源技术是第一次技术革命和第二次技术革命时期的带头技术。虽然能源技术在当代已失去先导技术的地位,但作为现代工业技术基石的能源技术仍然举足轻重,尤其在当今石化能源逐渐短缺的条件下,其发展对整个人类社会的发展是至关重要的。\n\n这段话主要支持了这样一种论点,即能源技术:", "type": "单选题", "options": "A. 是科技革命的带头技术\nB. 己经失去以前的先导作用\nC. 对人类社会的发展至关重要\nD. 有广阔的发展前景", "choice": "C", "keypoints": "关联词-转折;程度词;特殊问法", "most_wrong": "D", "human_count": 117054, "human_acc": 94.5315837135, "source": "2017年福建省选调生考试《行政职业能力测验》第47题", "difficulty": 3, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 28483, "material": "", "question": "中华民族的强国梦一直是百年来国人的追求,实力之强与道德之强是通往强国之路的必经之途。道德是软实力,失去道德之强,绝无实力之强。\n\n本段阐述的主要观点是:", "type": "单选题", "options": "A. 道德是软实力\nB. 实力之强与道德之强同样重要\nC. 实力之强比道德之强重要\nD. 道德之强是实力之强的必要保障", "choice": "D", "keypoints": "程度词", "most_wrong": "B", "human_count": 23716, "human_acc": 85.2673300725, "source": "2008年江苏省公务员录用考试《行测》题(B类)第127题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 2521936, "material": "", "question": "科学理论是共产党人的锐利思想武器和思想力量之源。广大党员、干部要防止学而不思、____________,要防止学而不信、学用脱节,要在学深悟透、融会贯通上有新收获,在转化运用、____________上有新成效。不断提高思想觉悟、升华思想境界、增强思想能力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一曝十寒 细照笃行\nB. 浅尝辄止 知行合一\nC. 走马观花 践规踏矩\nD. 纸上谈兵 经世致用", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 282424, "human_acc": 72.010523185, "source": "2021年国考第一季行测模考大赛(副省级)第27题", "difficulty": 4, "formulas": 0, "history": [{"id": 4344685, "material": "", "question": "当前,由于受到国际社会的强烈抵制,____________地推行单边主义难度加大,有些国家开始转向借多边主义之名行单边主义之实,搞意识形态对抗。真正的多边主义,就是要坚持开放包容,不封闭排他;要坚持与时俱进,不____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 堂而皇之 食古不化\nB. 光明正大 墨守成规\nC. 明目张胆 故步自封\nD. 大张旗鼓 畏首畏尾", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 215202, "human_acc": 76.4286577262, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 5076964, "material": "", "question": "在平时下棋的过程中,我们经常会遇到这种情况:当一方陷入困局时,似乎____________、处处受制,但当他下出一步妙棋后,攻守顿时易位、局面顷刻大开,立马变被动为主动,在全盘局势中反而占据了优势。发展如棋局,只有看清每一处落子的深意,方能____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 左支右绌 一呼百应\nB. 进退维谷 运筹帷幄\nC. 裹足不前 纵横捭阖\nD. 步履维艰 坐而论道", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 86805, "human_acc": 90.6963884569, "source": "2022下半年省考第一季行测模考大赛(深圳卷)第63题", "difficulty": 3, "formulas": 0}, {"id": 3580454, "material": "", "question": "在“写什么”和“怎么写”的主体选择上,网络文学以丰富多样的描写对象和____________的叙事方式,让文学溢出了传统的想象边界;在文学功能作用上,传统文学注重____________、有为而作,网络文学也应当如此,坚持贴合现实、响应社会需求,表征时代、干预生活、感奋人心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 别出心裁 安身立命\nB. 天马行空 知行合一\nC. 离经叛道 学以致用\nD. 不拘一格 经世致用", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 19241, "human_acc": 71.4463905202, "source": "2021下半年省考第五季行测模考大赛(西藏卷)第2题", "difficulty": 4, "formulas": 0}, {"id": 5480432, "material": "", "question": "赞誉具有两面性,正确对待可激发工作热情,反之则成为阻碍前进的负累。况且,“名过其实者损”,赞美接受过多,还易使人____________。成绩越大越需要检视反省自我,谨记“生于忧患,死于安乐”,把心思用在做事上,创造出实实在在的业绩。继续保持谦虚谨慎、____________的作风。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 傲睨自若 功成不居\nB. 忘乎所以 不骄不躁\nC. 目中无人 从善如流\nD. 志得意满 虚怀若谷", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 33965, "human_acc": 71.9475931106, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第66题", "difficulty": 4, "formulas": 0}, {"id": 2671013, "material": "", "question": "古人云:“一语不能践,万卷徒空虚。”精用是读书的试金石,也是读书成果的“实战场”。只会死读书而不能有效运用的人,学问再多也是____________。在用的过程中,要有“板凳甘坐十年冷,文章不写半句空”的毅力与决心,远____________之心,戒急功近利之意,去冒进浮躁之气。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 空话连篇 好大喜功\nB. 镜花水月 随波逐流\nC. 纸上谈兵 沽名钓誉\nD. 坐而论道 人云亦云", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 197256, "human_acc": 79.6660177637, "source": "2021年国考第二十季行测模考大赛(副省级)第25题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2758202, "material": "", "question": "“爱之不以道,适所以害之也”。爱是关心关照,更是一种让子孙后辈成长成材不走歪路的责任。家庭是人生的第一所学校,父母是人生的第一位老师。如果家风端正、家教良好,就等于为孩子铺设了一条人生正道。宋代名臣包拯是家喻户晓的清官,他生前立下家训:“后世子孙仕宦,有犯赃滥者,不得放归本家;亡殁之后,不得葬于大茔之中”。并命人刻在堂屋东壁,以昭后人。《宋史》记载,包拯“虽贵,衣服、器用、饮食如布衣时”。这种以身作则,养成了包家清廉公正的家风,并被包氏后人继承弘扬。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 弘扬家庭美德,树立良好家风\nB. 良好的家风有利于孩子成长成才\nC. 树立良好家风需要父母以身作则\nD. 父母要担负起爱护孩子的首要责任", "choice": "B", "keypoints": "主题词;行文脉络-总分;程度词", "most_wrong": "C", "human_count": 171836, "human_acc": 38.4162806397, "source": "2021上半年省考第四季行测模考大赛(四川卷)第35题", "difficulty": 7, "formulas": 0, "history": [{"id": 4668913, "material": "", "question": "自从原始海洋诞生后,荒凉死寂的地球就别开生面,特别是原始生命在海中出现之后,地球就成了宇宙中的一颗明珠。可以毫不夸张的说,没有水就没有生命。水参与生命物质的构成,而表现生命特征的各种新陈代谢过程,如吸收、排泄及一切生物化学反应,都需要在水溶液中才能进行。\n\n这段文字主要论述的是:", "type": "单选题", "options": "A. 海水对地球的重要性\nB. 生命是由水构成的\nC. 海水是生命的摇篮\nD. 水对生物的重要性", "choice": "C", "keypoints": "主题词;行文脉络-总分;程度词", "most_wrong": "D", "human_count": 1310832, "human_acc": 16.2320571973, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 5144337, "material": "", "question": "乡村振兴不能就乡村论乡村,而要着眼于重塑城乡关系,县域正是城乡融合发展的重要切入点。从农民的角度看,县域对农民吸引力和亲近度较高。当前我国农村还有5亿多常住人口,他们享受的公共服务还有待进一步完善,加快县域内城乡融合发展是农民的迫切需求。从产业的角度看,发展县域经济对于丰富乡村经济业态,提供城乡就业蓄水池等方面具有重要意义。不少地方立足县域布局农产品加工业、农村电商等二、三产业,强化产业链、供应链和价值链,有力支撑了农业农村现代化,有助于缩小城乡差距,实现协调发展。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 布局县域产业有利于实现城乡协调发展\nB. 县域经济是新型城市发展的重要立足点\nC. 乡村振兴应该重塑城乡关系找准切入点\nD. 县域对于推动城乡融合发展有重要价值", "choice": "D", "keypoints": "主题词;行文脉络-总分;程度词", "most_wrong": "C", "human_count": 119313, "human_acc": 70.9528718581, "source": "2022下半年省考第四季行测模考大赛(上海卷)第12题", "difficulty": 4, "formulas": 0}, {"id": 5507586, "material": "", "question": "从《如果国宝会说话》《国家宝藏》等节目的热播,到故宫文创产品的走红,再到云端博物馆的蓬勃发展,一个个文化现象启示我们,积极推动文物活化利用,让更多文物活起来,不仅是群众的期待,更能让我们感受到弦歌不辍的传承,激起思接千载的心绪,触摸到博大精深的文明。无论是记载古代历史的竹简木牍,还是历经千年沧桑的秦砖汉瓦,乃至精美绝伦的敦煌壁画,工艺精湛的陶瓷器皿······这一件件珍贵的文物,以生动直观的形式走进大家视野时,既是见证历史的文化遗存,也是保护和传承人类文明的宝贵财富。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 文物是承载中华历史灿烂文明的宝贵遗产\nB. 新科技赋能文化传播让更多文物“活起来”\nC. 文物活化利用是传承中华文明的题中之义\nD. 中华文化的传承旨在丰富群众的精神生活", "choice": "C", "keypoints": "主题词;行文脉络-总分;程度词", "most_wrong": "B", "human_count": 40146, "human_acc": 73.5540277985, "source": "2023上半年省考第十季行测模考大赛(四川卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 540969, "material": "", "question": "中外合拍片对中方和好莱坞电影工厂均有好处,但是由于存在文化环境和审美趣味的差异,中国元素很难真正与好莱坞电影_______。为了照顾全球影迷的欣赏口味,好莱坞电影只能减少中国元素的分量。因此,仅针对中国内地市场的“中国特供版”便_______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 契合 粉墨登场\nB. 协调 东山再起\nC. 融合 应运而生\nD. 匹配 大行其道", "choice": "C", "keypoints": "词的辨析-感情色彩;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1359770, "human_acc": 92.1225648455, "source": "2014年412联考《行测》题(宁夏卷)第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 1746678, "material": "", "question": "筹算应用了大约两千年,对中国古代数学的发展功不可没。但筹算有个严重缺点,就是运算过程不保留。元朝数学家朱世杰能用筹算解四元高次方程,其数学水平居世界领先地位,但是他的方法难懂,运算过程又不能保留,因而______。中国古代数学不能发展为现代数学,筹算方法的______是个重要原因。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 形同虚设 束缚\nB. 销声匿迹 片面\nC. 后继无人 限制\nD. 难以为继 约束", "choice": "C", "keypoints": "词的辨析-感情色彩;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 2912495, "human_acc": 62.0313854616, "source": "2016年国家公务员录用考试《行测》题(副省级)第27题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4817753, "material": "", "question": "青年大学生思想比较活跃,充满激情和活力,接受新生事物快,参与意识强,但他们在认识和理解现实时也容易产生____________的问题,对事物的__________、困难的艰巨性认识不够。因此,我们应带领学生走出校门,走进丰富、生动的社会大课堂。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 管中窥豹 多样性\nB. 先入为主 曲折性\nC. 一叶障目 复杂性\nD. 自以为是 两面性", "choice": "C", "keypoints": "关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1739967, "human_acc": 55.611629416, "source": "2022年四川省公务员录用考试《行测》题(网友回忆版)第23题", "difficulty": 4, "formulas": 0, "history": [{"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 2261974, "material": "", "question": "浩瀚而宝贵的历史知识,既是人类总结昨天的(    ),也是人类把握今天,创造明天的向导。", "type": "单选题", "options": "A. 记录\nB. 经历\nC. 方式\nD. 回忆", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 108761, "human_acc": 54.5416095843, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第25题", "difficulty": 6, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5581609, "material": "", "question": "环境公益诉讼是旨在救济环境公益的诉讼。私益与公益,一字之差,法律“待遇”却是____________。传统诉讼以私益为核心设计规则,对“最基本的公共产品和最普惠的民生福祉”的保护乏力。由此,冲破传统诉讼的________,允许特定主体在特定情形下起诉维权,就成为推动绿色发展的必然之举。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 大相径庭 胁制\nB. 毫无二致 牢笼\nC. 天壤之别 束缚\nD. 大同小异 藩篱", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 34986, "human_acc": 92.0310981535, "source": "2023下半年省考第四季行测模考大赛(云南卷)第25题", "difficulty": 3, "formulas": 0, "history": [{"id": 4674451, "material": "", "question": "从黄帝亲自制作轩辕镜开始,到现在玻璃镜广泛使用为止,镜子________了中国几千年的历史。但只有汉镜和唐镜犹如花中牡丹,雍容华贵,无论造型、题材、纹饰和铸造工艺,都达到我国古代铜镜的巅峰。之后的朝代,尽管也不乏精品,总体上却是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 贯穿 穷途末路\nB. 见证 每况愈下\nC. 展示 萎靡不振\nD. 风靡 江河日下", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 268292, "human_acc": 72.3376023139, "source": "2022上半年省考第二季行测模考大赛(四川卷)第18题", "difficulty": 4, "formulas": 0}, {"id": 4100421, "material": "", "question": "釉瓷烧制所用的釉料常常由十几种矿石配成,釉料化学元素组成极其复杂,特别是其中的微量元素____________,这些不确定因素导致颜色釉瓷生产难度极大,成品率极低。釉色就像有生命一般,时刻都在发生变化。现代科技的介入,可以帮我们了解它、适应它,却没有办法完全________它,这让陶瓷技艺充满了挑战。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 光怪陆离 征服\nB. 变化莫测 掌控\nC. 难以预料 掌握\nD. 千变万化 控制", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 131208, "human_acc": 66.04399122, "source": "2021下半年省考第二十季行测模考大赛(陕西卷)第31题", "difficulty": 4, "formulas": 0}, {"id": 5431054, "material": "", "question": "电影里仿生无人机的“千里眼,顺风耳”发挥了巨大作用,让反派吃尽苦头,如果该无人机在现实战争中得以运用,将会释放更大潜能、产生更多新战法,甚至________未来战争。事实上,仿生技术早已不止一次在人类军事科技竞争中____________,只是人们逐渐淡忘了那些大自然馈赠给我们的灵感。如今前沿军事科技进入瓶颈期,人类科技革命创新的“家底”逐渐________,或许又到了人类“问道”大自然的时候。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 重构 势不可挡 贫瘠\nB. 颠覆 大放异彩 匮乏\nC. 变革 崭露头角 没落\nD. 突破 无孔不入 清空", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 249843, "human_acc": 85.7598571903, "source": "2023上半年省考第一季行测模考大赛(陕西卷)第38题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 764219, "material": "", "question": "强硬的紧缩政策和严重的失业问题,导致意大利社会不满情绪日益________。就在莱塔内阁在总统府宣誓就职时,总理府外上演了一起因对政府不满而引发的枪击案。作为欧元区第三大经济体,意大利若因政治局势不稳而________债务危机再度恶化,将给欧元区乃至整个欧盟带来沉重打击。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 累积 导致\nB. 增加 造成\nC. 集聚 致使\nD. 高涨 促进", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 461036, "human_acc": 58.1603171987, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第16题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5307568, "material": "", "question": "大众化与专业化并不是____________的。恰恰相反,专业化的写作常常需要大众化的养育,大众化的潮流拓宽专业化的河床。这种关系对于优秀诗人来说是顺理成章的事,就好比杜甫可以从流行的公孙大娘剑器舞中获得灵感,余光中也非常乐意接受大众口语的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 非此即彼 荡涤\nB. 截然对立 洗礼\nC. 毫无二致 观照\nD. 水火不容 熏陶", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 224745, "human_acc": 50.0046719616, "source": "2022下半年省考第十三季行测模考大赛(浙江C卷)第28题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4906818, "material": "", "question": "伴随着社会经济的发展与市民阶层的形成,喜剧或带有喜剧元素的作品、产品始终是文化消费市场上的宠儿,主流文化对喜剧、喜剧文化历来表现出相当程度的包容甚至________。家国天下与柴米油盐____________,高台教化与插科打诨相互包容,这是中国文化的智慧。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 欣赏 并行不悖\nB. 迎合 如出一辙\nC. 赞美 并驾齐驱\nD. 挑剔 殊途同归", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 278941, "human_acc": 70.1772059324, "source": "2022上半年省考第十五季行测模考大赛(陕西卷)第26题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2637042, "material": "", "question": "流行词汇的确创造了一种更直接、更________的表达方式,但也失去了文化中细腻、幽微的一面。我有时会担心,时髦话和流行语的泛滥,会造成“劣币驱逐良币”的现象,进而对传统文化造成________。长此以往,我们的表达会变得越来越________。而当我们的语言日渐枯燥贫瘠时,我们的感情和思想也会变得枯燥贫瘠。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 简洁 挤压 艰涩\nB. 通俗 挑战 贫乏\nC. 高效 冲击 单一\nD. 精准 压制 雷同", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 114651, "human_acc": 53.6192444898, "source": "2020年下半年省考第五季行测模考大赛(新疆卷)第27题", "difficulty": 6, "formulas": 0, "history": [{"id": 754227, "material": "", "question": "金融市场是一个信息的市场,金融市场的信息不对称是___________金融机构道德风险行为的主要原因,而金融自由化和金融创新___________了市场的信息不对称,也激发了金融机构更多也更为___________  的道德风险行为。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 引发 加剧 隐蔽\nB. 诱发 凸显 严重\nC. 构成 加快 频繁\nD. 导致 强化 直接", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 1110434, "human_acc": 56.183618297, "source": "2014年山东省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5451263, "material": "", "question": "国内酒店数量目前已超40万家,而挂牌的星级酒店不到1万家。因此,一些平台出现更________的评价标准去弥补星级评定的不足,也很正常。但一个底线是,不能故意将自有评价体系和星级评定________,而是应该进行必要的区分,若将“钻级”等评级等同于星级标识,显然有违规嫌疑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 丰富 颠倒\nB. 新颖 模糊\nC. 灵活 整合\nD. 多元 混淆", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 292787, "human_acc": 87.3030564882, "source": "2023上半年省考第五季行测模考大赛(深圳卷)第67题", "difficulty": 3, "formulas": 0, "history": [{"id": 2608544, "material": "", "question": "自然纪录片通常以交叉剪辑叙事逻辑,展现动物或植物王国里的奇妙世界,让全球观众打破文化隔阂,共同________于大自然之美。这类纪录片打破文化________,成为国际传播的有效载体,不仅让中国观众能感受到世界生物____________之美,也能让世界观众体悟到中国独特的动物种类与自然奇观。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 徜徉 隔阂 开放性\nB. 流连 鸿沟 差异化\nC. 沉迷 桎梏 独特性\nD. 陶醉 壁垒 多样态", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 111266, "human_acc": 86.6311361961, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第29题", "difficulty": 3, "formulas": 0}, {"id": 5008385, "material": "", "question": "译本既可以使原著顾盼生辉光彩照人,又可能使其灰头土脸黯然失色。任意一部作品,文本再有影响力,若翻译得不到位,也很难________到人的内心。说严重些,翻译既可以________一部原作,也可以毁掉一部原作。此外,独特的语言风格,也会给读者带来一种异质性审美体验,进而拓展文学语言表达的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 折射 升华 潜能\nB. 触及 优化 深度\nC. 渗透 成全 边界\nD. 深入 演绎 领域", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 265441, "human_acc": 35.769153974, "source": "2022上半年省考第二十一季行测模考大赛(陕西卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2295275, "material": "", "question": "打动我们的,除了信中流淌的那些________而充满情怀的表达,还有写信这种方式。说它________,是因它在社交媒介如此发达、信息传播如此迅捷的时代显得格外传统。说它________,是因它需要坐下来细细体味、静静琢磨,一个字一个字地推敲,走进人的心灵深处去对话交流。", "type": "单选题", "options": "A. 真实 老旧 死板\nB. 真诚 老旧 死板\nC. 真实 古老 笨拙\nD. 真诚 古老 笨拙", "choice": "D", "keypoints": "关联关系-并列关系;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 47557, "human_acc": 57.2597094013, "source": "2019年上海市公务员录用考试《行测》题(A类)(网友回忆版)第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 2261974, "material": "", "question": "浩瀚而宝贵的历史知识,既是人类总结昨天的(    ),也是人类把握今天,创造明天的向导。", "type": "单选题", "options": "A. 记录\nB. 经历\nC. 方式\nD. 回忆", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 108761, "human_acc": 54.5416095843, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第25题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5038325, "material": "", "question": "历史是________的,文化传统已经渗透到我们的衣食住行。现代性并不是________地否定传统,而是对传统进行重写、重构。反思现代性的标志是去传统化,但这不意味着传统信仰和实践要从社会中________。换句话说,传统与现代,二者并不是截然对立的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 延续 盲目 退却\nB. 连续 简单 消失\nC. 前进 机械 让步\nD. 现实 彻底 消退", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 309215, "human_acc": 47.5044871691, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第23题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3541941, "material": "", "question": "儿童文学写作,是作者根据本人的童年记忆,从儿童视角记录自己真实的人生经验,________对生命的独特理解和感悟,从内心深处喷薄而出的有独特美学价值的故事。读者的兴趣和口味是随时可能发生变化的,因此,作者不应也不必为了迎合读者的兴趣和口味而____________。\n\n依次填入画线处最恰当的一项是:", "type": "单选题", "options": "A. 诠释 哗众取宠\nB. 发掘 太阿倒持\nC. 总结 买椟还珠\nD. 凝练 随波逐流", "choice": "D", "keypoints": "关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 104618, "human_acc": 51.3009233593, "source": "2021下半年省考第三季行测模考大赛(广东乡镇卷)第3题", "difficulty": 6, "formulas": 0, "history": [{"id": 2719342, "material": "", "question": "每个民族都有自己独特的民俗文化,然而,一些人分不清具体的民族文化和民俗文化,加之有人为了在短时间内推出本民族民俗文化,盲目迎合当下的流行需要,反而使自己的民俗文化变得____________,出现“雷同化”传播现象,使大众对不同区域的特色民俗文化认知较为________,影响大众对民俗文化的了解和兴趣,进而在一定程度上影响少数民族地区的经济发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 支离破碎 肤浅\nB. 不伦不类 模糊\nC. 名存实亡 混乱\nD. 面目全非 狭隘", "choice": "B", "keypoints": "关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 2925110, "human_acc": 74.956428989, "source": "2021年国家公务员录用考试《行测》题(副省级网友回忆版)第27题", "difficulty": 4, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}, {"id": 5665223, "material": "", "question": "药品过期就意味着失效,人一旦服用后,轻则________病情,重则________中毒。", "type": "单选题", "options": "A. 延误 导致\nB. 贻误 至于\nC. 耽搁 甚至\nD. 延宕 致使", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 275, "human_acc": 80.7272727273, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第3题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2387709, "material": "", "question": "近年来,各类互联网平台纷纷推出会员产品。客户会员越办越多,各种“套路”也____________。比如,不办会员就限速,办了会员依然广告不断······这样的“赢利”模式,短期内似乎能尝到甜头,但长远看来,实则是____________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 接踵而至 饮鸩止渴\nB. 屡见不鲜 揠苗助长\nC. 应运而生 寅吃卯粮\nD. 不胜枚举 掩耳盗铃", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1637577, "human_acc": 51.9391149241, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第32题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2049696, "material": "", "question": "在很长的一个时期内,南极洲对人们来说是一个_____________的地方,古代和中世纪的地理学家,往往把南极周围画成一片无边无际的海洋,或者画成一个环形的海岛。从16世纪起,在几乎所有的地图上都画着南极的土地,但地理学家都是凭着自己的_________画出来的,因为谁也没有见过这块土地。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 广阔无垠 经验\nB. 神秘莫测 理解\nC. 人迹罕至 推理\nD. 一无所知 想象", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 1208953, "human_acc": 85.50638445, "source": "2017年422联考《行测》题(山东卷)第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 2448461, "material": "", "question": "军事伪装可追溯到上古时代。比如,《荷马史诗》中提及的“特洛伊木马”就是军事伪装的早期实例,即将人员和装备伪装成无害的事物,使得军事行动________________。巧妙地运用军事伪装技术,________自身真实的作战意图,往往能取得令人称奇的胜利。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 扑朔迷离 转移\nB. 悄无声息 掩饰\nC. 防不胜防 严守\nD. 出其不意 隐藏", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 3452851, "human_acc": 75.8439619897, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 5581622, "material": "", "question": "当前,有的企业只注重成果,不宽容失败,导致科研人员____________,创新很难有实质性的突破,究其原因,还是企业管理者急功近利的思想在作祟。为此,作为企业管理者必须________急功近利的心态,鼓励员工大胆提出设想,对__________创新给予宽容和鼓励。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 进退维谷 摒弃 创造性\nB. 踟蹰不前 克服 颠覆性\nC. 草木皆兵 抵制 引领性\nD. 动辄得咎 防范 突破性", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 35084, "human_acc": 42.3326872649, "source": "2023下半年省考第四季行测模考大赛(新疆兵团卷)第32题", "difficulty": 6, "formulas": 0}, {"id": 2051578, "material": "", "question": "夜攀华山,自古以来便为一桩美说,据说这传统是因为古时华山的_____,常令不少登山者丧命,许多人也因此丧失了攀登的勇气。古人选择夜里爬山,是因为夜中看不见华山的凶险,自然也没了_____。时至今日,华山之险虽在安全设施的布置下不复以往,但夜爬的趣味性仍令无数攀登者______。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 凌空高耸 恐慌 心旷神怡\nB. 雄伟奇险 惊恐 心领神会\nC. 层峦叠嶂 担心 心荡神迷\nD. 雄奇险峻 畏惧 心驰神往", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 922101, "human_acc": 96.2942237347, "source": "2017年422联考《行测》题(陕西卷)第46题", "difficulty": 3, "formulas": 0}, {"id": 2547916, "material": "", "question": "近些年网络主播行业爆发,尤其是疫情期间的主播带货,更是让人对这一行业刮目相看。然而,近几年一些网红主播受利益________,为获取更多粉丝和人气从而商业变现,做出了很多低俗举动,使得很多网络直播平台____________。这也使得整个直播行业逐渐庸俗化,主播职业也被____________,同时还造成了很多不良的社会影响。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 引诱 苦不堪言 低俗化\nB. 推进 怨声载道 商业化\nC. 激励 深受其害 世俗化\nD. 驱使 乌烟瘴气 污名化", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 19621, "human_acc": 95.7800315988, "source": "2020年上半年省考第二十九季行测模考大赛(海南卷)第44题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4170330, "material": "", "question": "短视频可能在不知不觉中造成人们的注意力日渐分散,变得难以沉下心来、集中精力进行深入的思考。由于制作门槛低,短视频内容____________,快餐式的信息传播,在降低了信息获取门槛的同时,用户也容易被____________甚至虚假的信息所误导。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鱼目混珠 以偏概全\nB. 泥沙俱下 胡编乱造\nC. 鱼龙混杂 以点带面\nD. 良莠不齐 断章取义", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 11691, "human_acc": 73.9372166624, "source": "2021下半年省考第二十一季行测模考大赛(西藏卷)第1题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5235936, "material": "", "question": "网络投票与网络拉票是“一个巴掌拍不响”,主办方和入围者都对这个游戏规则心知肚明,因此也都____________地将游戏进行下去。而如何让网络投票等公众参与的活动本身有__________的精彩,而不是为了指尖上的喝彩,可能还需要主办方多动脑筋、多下功夫。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 心照不宣 实质性\nB. 不谋而合 多元化\nC. 不约而同 个性化\nD. 约定俗成 真实性", "choice": "A", "keypoints": "关联关系-并列关系;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 177609, "human_acc": 87.2039142161, "source": "2022下半年省考第八季行测模考大赛(浙江C卷)第27题", "difficulty": 3, "formulas": 0, "history": [{"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 2261974, "material": "", "question": "浩瀚而宝贵的历史知识,既是人类总结昨天的(    ),也是人类把握今天,创造明天的向导。", "type": "单选题", "options": "A. 记录\nB. 经历\nC. 方式\nD. 回忆", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 108761, "human_acc": 54.5416095843, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第25题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4198293, "material": "", "question": "针对学生的校外培训不能盲目扩张,而是要有__________地发展。价格欺诈等违法违规行为不仅损害了家长和学生的合法权益,还严重扰乱了行业竞争秩序。市场监管部门要构建________机制,持续加大对校外培训市场的监管力度,________违法违规行为,让校外培训健康有序地发展。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 指向性 常态 监控\nB. 目的性 有效 整治\nC. 实用性 精准 惩处\nD. 针对性 长效 查处", "choice": "D", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 182410, "human_acc": 74.4345156516, "source": "2021下半年省考第二十一季行测模考大赛(四川卷)第24题", "difficulty": 4, "formulas": 0, "history": [{"id": 5187158, "material": "", "question": "青少年普法工作落地落实,需要建好开好用好“社会大课堂”。教育系统工作人员要持续提升法治素养,以学习普及宣传宪法、民法典等作为重点内容,推动学习制度化、__________。在升国旗仪式、成人仪式等活动中,设置“礼敬宪法”环节,增强青少年的法治__________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 广泛化 仪式感\nB. 具体化 参与感\nC. 常态化 认同感\nD. 规范化 荣誉感", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 65882, "human_acc": 48.9891017273, "source": "2022下半年省考第六季行测模考大赛(四川卷)第17题", "difficulty": 6, "formulas": 0}, {"id": 5738509, "material": "", "question": "雷锋是永垂不朽的英雄模范,也是生动鲜活的青年个体。不少人或许不知道,雷锋也是爱写小说、诗歌的文艺青年,也是学骑摩托、开汽车的时髦小哥,他同样拥有青年人一样的爱恨情仇。还原可亲可爱、立体丰满的雷锋形象,避免过分拔高、不食烟火的________建构,有助于帮助当代青年________英雄模范高不可攀的观感。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 神化 改变\nB. 扁平 扭转\nC. 单一 摆脱\nD. 过度 转变", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 5105, "human_acc": 17.9823702253, "source": "2023下半年省考第二十季行测模考大赛(陕西卷)第25题", "difficulty": 7, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5510071, "material": "", "question": "塞尚对后来的画家产生过巨大影响,他的艺术展示了某种可能性,即从事物现象的复杂性转换到构图的几何简洁性。________,让马蒂斯模仿塞尚的“构筑性的笔触”是不可能的,他们属于两个不同的体系,________是色彩表现的方式迥异。塞尚是在忠实地表现自然,马蒂斯更像是在随心所欲地诠释自然。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 因此 但\nB. 然而 尤其\nC. 但是 只\nD. 可是 特别", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重", "most_wrong": "D", "human_count": 503257, "human_acc": 79.2960654298, "source": "2023年湖北省公务员录用考试《行测》题(网友回忆版)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 5480009, "material": "", "question": "做人首先就是要老实本分,不虚言浮夸,不巧言乱德,________终将害人害己。________才疏学浅的人,才会借助嘴上之巧言来掩盖自己的无知和愚昧。真正有本事的人,不会自吹自擂,________会慎言慎行,________不会虚张声势,把自己的能力和成绩“拉长、吹大、垫高”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不然 只有 因为 同时\nB. 否则 只有 反而 更\nC. 或者 只要 所以 也\nD. 反之 只要 而 甚至", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重", "most_wrong": "C", "human_count": 2871, "human_acc": 95.1236502961, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第64题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"]]}, {"id": 2758035, "material": "", "question": "人的一生都在不停地走,不停地看,但是我们从来都不只是________地去看待一个事物,我们看到的始终是事物和自己的关系。王国维曾说过:“古雅之能力,能由修养而得之,故可为美育普及之津梁。”博物馆就是美育普及的重要津梁,所以,现在越来越多的人来到博物馆________自己。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 静止 丰盈\nB. 客观 提升\nC. 片面 熏染\nD. 单独 充实", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 170323, "human_acc": 55.4863406586, "source": "2021上半年省考第四季行测模考大赛(陕西卷)第31题", "difficulty": 6, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5368063, "material": "", "question": "所谓全局的视角就是把现实的和历史的、局部的和整体的、国内的和国际的联系起来,就是既____________又统筹兼顾,不能只见树木、不见森林,也不能____________、固步自封。面对纷繁复杂的形势,要想洞察世事、科学决策,还必须有“不畏浮云遮望眼”的清醒、“功成不必在我”的境界和“乱云飞渡仍从容”的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 窥豹一斑 因循守旧 冷静\nB. 见微知著 墨守成规 定力\nC. 以小见大 食古不化 勇气\nD. 以点带面 画地为牢 气魄", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 350043, "human_acc": 55.8862768288, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第70题", "difficulty": 6, "formulas": 0, "history": [{"id": 2671009, "material": "", "question": "过去,书面表达是很________的事。比如给远方家人寄信,还要专门请教书先生帮忙,要考虑收信人的身份、感受,要____________、文从字顺,要表述准确、讲究格式。如今,互联网使人与人之间的沟通以即时表达为主,这种表达的频率和过去明显不同,也就显得十分随意了。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 专业 字正腔圆\nB. 慎重 字斟句酌\nC. 浪漫 文无点易\nD. 严肃 舞文弄法", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 212840, "human_acc": 93.6882165007, "source": "2021年国考第二十季行测模考大赛(副省级)第23题", "difficulty": 3, "formulas": 0}, {"id": 5509758, "material": "", "question": "包括儒家在内的中国传统思想对文艺的功利性____________,“文以载道”可谓天经地义,时时处处以人心与教化的标准来审视和介入文艺的生产与传播,未必都具有积极的社会意义。这需要具体问题具体分析,关键在于人心与教化的标准不能走偏或错谬,否则这种审视和介入就会________或戕害文艺的发展。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 情有独钟 妨碍\nB. 不屑一顾 阻止\nC. 背道而驰 助长\nD. 一厢情愿 推动", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 991198, "human_acc": 65.7362101215, "source": "2023年贵州省公务员录用考试《行测》题(网友回忆版)第20题", "difficulty": 4, "formulas": 0}, {"id": 3593607, "material": "", "question": "垄断对市场资源配置所起到的________作用,对相关行业乃至范围更广的创新活动所产生的抑制作用等都已有公论。近些年中国在短时间内诞生了一些世界量级的互联网平台公司,占领甚至独霸市场,形成事实上的垄断局面。它们在市场上____________的杀手锏,是基于________的、具有专利性的算法模型所产生的技术优势。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 破坏 大行其道 先进\nB. 扭曲 呼风唤雨 独特\nC. 扰乱 一呼百应 高端\nD. 偏颇 倚马千言 新颖", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 77186, "human_acc": 33.3350607623, "source": "2021下半年省考第六季行测模考大赛(陕西卷)第37题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5101829, "material": "", "question": "硼酸盐生物玻璃是以硼元素为玻璃网络基体,能够实现特定生理功能的玻璃,具有良好的可掺杂性和可降解性,在皮肤组织修复领域展现出巨大潜力。该玻璃发挥生理功能的机制是组分中的硼、钙等元素,经过新陈代谢会被释放到体液中,刺激血管生成进而促进伤口愈合。然而,硼酸盐生物玻璃会释放大量碱性离子,改变玻璃材料周围组织的酸碱环境,从而抑制细胞增殖。另外,微米级硼酸盐生物玻璃在伤口处与组织接触的有效比表面积较小,且玻璃表面离子不利于胶原蛋白的沉积,从而使愈合后的伤口容易形成疤痕。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 新型微米级硼酸盐生物性玻璃可有效加速伤口愈合\nB. 微米级硼酸盐生物玻璃能够改变周围组织酸碱环境\nC. 玻璃表面的碱性离子可促进伤口处胶原蛋白的沉积\nD. 微米级硼酸盐生物玻璃修复损伤皮肤效果并不理想", "choice": "D", "keypoints": "关联词-转折;关联词-并列", "most_wrong": "A", "human_count": 1701607, "human_acc": 80.3533953492, "source": "2022年河南省公务员录用考试《行测》题(网友回忆版)第22题", "difficulty": 3, "formulas": 0, "history": [{"id": 11207, "material": "", "question": "投资仍然是拉动中国经济增长的主要动力,但与以前主要靠地方政府利益驱动不同,现在的投资越来越受到企业利润和盈利能力的驱动,投资质量有明显提高。同时,盈利能力越强的工业行业,投资增长也越高。\n\n这段话想表达的主要观点是:", "type": "单选题", "options": "A. 投资仍然是拉动中国经济增长的主要动力\nB. 现在的投资越来越步入以市场为主导的良性循环轨道\nC. 以前的投资主要是靠地方政府利益驱动的\nD. 盈利能力的行业投资增长越高", "choice": "B", "keypoints": "关联词-转折;关联词-并列", "most_wrong": "D", "human_count": 26134, "human_acc": 79.9877554144, "source": "2008年湖北省公务员录用考试《行测》题(B类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4633646, "material": "", "question": "不管怎么说,从安全角度考虑,禁止租房隔断有其政策合理性。但规范租房市场,需要做的还有很多,总之要避免租客只能在“降低租房质量”和“承担更高房租”之间做选择。另外,很多问题如中介和房东“暗度陈仓”的行为,也不是下发文件就能解决,需要有完善的监督机制。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 规范租房市场任重而道远\nB. 需多管齐下治理租房隔断\nC. 应避免租客做二选一难题\nD. 禁止租房隔断有其合理性", "choice": "A", "keypoints": "关联词-转折;关联词-并列", "most_wrong": "B", "human_count": 218851, "human_acc": 72.5178317668, "source": "2021下半年省考第三十五季行测模考大赛(深圳卷)第75题", "difficulty": 4, "formulas": 0}, {"id": 464593, "material": "", "question": "汽车产业是一个长期性产业,作为产业革命带来的核心产品,它形成了相当长的产业链,不仅产业自身的发展会对经济增长具有一定的扩展或成倍的乘数效应,而且会带动金属、电器设备、橡胶等一系列相关产业的发展,极大地解决了就业问题,提升了社会福利,这反过来又会促进汽车工业的进一步发展。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 汽车产业与其他相关产业的关系\nB. 汽车产业与社会就业问题的关系\nC. 汽车产业与产业革命进程的关系\nD. 汽车产业与经济社会发展的关系", "choice": "D", "keypoints": "关联词-转折;关联词-并列", "most_wrong": "A", "human_count": 573732, "human_acc": 52.3071747785, "source": "2014年江苏省公务员录用考试《行测》题(B类)第6题", "difficulty": 5, "formulas": 0}, {"id": 13883, "material": "", "question": "古希腊和古代中国相似的经验知识曾产生了相似的理论洞察力,比如亚里士多德和《墨经》对杠杆原理的认识。但是,古希腊的初始力学理论很快发展成理论知识的综合体,而中国墨家的力学传统在战国之后就中断了。不擅长观察、认识物体运动并形成系统的理论,这是中国古代科学传统中一个明显的“软肋”。相比之下,中国人在解决实际问题方面的建树更加突出。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中国古代科学发展的特点\nB. 中国古代科学传统中断的原因\nC. 古代中国对于力学最初的研究不逊于古希腊\nD. 力学理论的不完备是中国古代科学研究的弱点", "choice": "A", "keypoints": "关联词-转折;关联词-并列", "most_wrong": "B", "human_count": 222751, "human_acc": 59.8789679957, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第61题", "difficulty": 5, "formulas": 0}, {"id": 2050848, "material": "", "question": "环保数据造假已成利益链条化,尽管企业是造假的第一责任主体,但板子显然不该只打在涉事企业身上。企业环保数据造假的“锅”,不应仅由涉事企业直接操作人员来背,潜居幕后的指挥者也应纳入执法视野。此外,地方环保部门是否出于数据“漂白”的考量而“睁一只眼闭一只眼”,设备生产商以及运行维护单位在多大程度上“配合”了企业的“造假定制”,这也都应予以关注。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 环保数据造假已经体系化\nB. 打击环保数据造假,不应该只惩罚涉事企业\nC. 杜绝环保数据造假须全链条打击\nD. 地方环保部门为了政绩,从而“漂白”环保数据", "choice": "C", "keypoints": "关联词-转折;关联词-并列", "most_wrong": "B", "human_count": 856179, "human_acc": 75.7244688319, "source": "2017年422联考《行测》题(江西卷)第20题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"]]}, {"id": 11689, "material": "", "question": "五子棋在日本叫“连珠棋”。据日本史料记载,五子棋先由中国传到朝鲜,再由朝鲜传到日本。最初主要在皇宫和贵族大家庭中流行。经过不断的改变,主要是规则的变化,连珠五子棋逐渐复杂化、规范化,最终成为今天的职业连珠五子棋,同时也成为一种国际比赛项目。\n\n根据这段文字,五子棋的发展变化主要经过了:", "type": "单选题", "options": "A. 由简单到复杂化规范化\nB. 地区和游戏规则的变化\nC. 流行范围的变化\nD. 规则和地位不断的改变", "choice": "B", "keypoints": "关联词-并列;特殊问法", "most_wrong": "D", "human_count": 27793, "human_acc": 54.9670780412, "source": "2009年山西省公务员录用考试《行测》题第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 581, "material": "", "question": "《三国演义》是明朝初期罗贯中作的历史演义小说,它取材于东汉末年的魏、蜀、吴三国鼎立的一段历史,为那个群雄逐鹿的动荡时代提供了全景式的历史画卷,创造了数以百计的栩栩如生的人物画廊。\n\n最能准确复述这段文字主要意思的一项是:", "type": "单选题", "options": "A. 《三国演义》是一部历史演义小说\nB. 历史演义小说《三国演义》的背景及主要内容\nC. 《三国演义》的作者是明朝初期的罗贯中\nD. 《三国演义》塑造了众多性格鲜明的人物", "choice": "B", "keypoints": "关联词-并列;特殊问法", "most_wrong": "D", "human_count": 54307, "human_acc": 77.01033016, "source": "2008年陕西省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 9133, "material": "", "question": "据报载,英国有调查机构曾以《世界上谁最快乐》为题做过一次调查,统计数字显示排在前几位的分别是以下四种人:刚发表长篇小说的作家、刚生下小孩的女人、刚顺利做完一个大手术的医生、玩沙子堆砌成功的小孩。\n\n以上几种人之所以最快乐的原因在于:", "type": "单选题", "options": "A. 从事创造性劳动并经过努力获得了成功\nB. 快乐与否在于自我感受,不是取决于物质条件\nC. 兴趣是最好的老师,快乐在兴趣之中\nD. 有志者事竟成,有志者能获得快乐", "choice": "A", "keypoints": "关联词-并列;特殊问法", "most_wrong": "B", "human_count": 32555, "human_acc": 67.8544002457, "source": "2009年安徽省公务员录用考试《行测》题第41题", "difficulty": 5, "formulas": 0}, {"id": 7881, "material": "", "question": "纠风工作要按照“为民、务实、清廉”的要求抓好抓实,要坚持“谁主管谁负责”、“管行业必须管行风”的原则,着力构建长效机制,建立和完善齐抓共管的责任机制、纠建并举的预防机制、群众广泛参与的监督机制、着眼治本的创新机制,不断铲除源头上滋生不正之风的土壤和条件。\n\n最能准确复述这段话的是:", "type": "单选题", "options": "A. 纠风工作要多管齐下、标本兼治\nB. 纠风工作要建立和完善齐抓共管的责任机制\nC. 纠风工作要依靠广大群众参与监督\nD. 纠风工作要从源头治理,做到长治久安", "choice": "A", "keypoints": "关联词-并列;特殊问法", "most_wrong": "B", "human_count": 26607, "human_acc": 70.6919231781, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第23题", "difficulty": 4, "formulas": 0}, {"id": 25041, "material": "", "question": "诗人从生活和大自然中捕捉灵感,将语言剪裁成诗;知音的理解和回响,可以使诗的意象和隐藏其中的思想感情浮现出来。“天地一沙鸥”,“海上生明月”,“悠然见南山”,经由后人的吟诵品味,其意象更为深化;“巴山夜雨”,“易水悲歌”,“汉关秦月”,“江山风光”和人物诗文相互烘托,转化为跨时空的文化符号,丰富了文学的内容,影响着一代代人的精神面貌。\n\n这段文字的关键词是:", "type": "单选题", "options": "A. 诗 知音 意象\nB. 自然 灵感 文化\nC. 生活 感情 品味\nD. 文学 符号 精神", "choice": "A", "keypoints": "关联词-并列;特殊问法", "most_wrong": "D", "human_count": 314204, "human_acc": 58.44483202, "source": "2011年国家公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 11461, "material": "", "question": "中国资源价格主要存在两大方面的问题,一是资源价格基本上是政府定价或政府指导价,只反映了资源开发成本,没有全面覆盖环境破坏成本和安全生产成本,资源税也很低,更重要的是没能真实反映市场供求关系资源稀缺程度,致使资源价格偏低;二是资源性产品之间比价关系不合理。\n\n最能准确复述这段话的主要意思的是:", "type": "单选题", "options": "A. 中国资源价格没有真实反映市场供求关系和资源稀缺程度\nB. 中国资源性产品之间比价关系不合理\nC. 中国资源价格基本上是政府定价或政府指导价\nD. 中国资源价格存在着盲目定价和比价关系不合理的问题", "choice": "D", "keypoints": "关联词-并列;特殊问法", "most_wrong": "A", "human_count": 31162, "human_acc": 82.7610551312, "source": "2008年安徽省公务员录用考试《行测》题第44题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 1003279, "material": "", "question": "我国高校每年有数万项科研成果通过验收,其中有$30\\%$以上的成果被鉴定为“国际首创”“国际领先”或者“填补了国内空白”。_______的是,这些成果中只有极少一部分转化为实际生产力,大部分成果只能“沉睡”在实验室和书斋中,高校科技研究成果推广____________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可悲 难以为继\nB. 遗憾 步履维艰\nC. 可惜 寸步难行\nD. 无奈 一筹莫展", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 2452584, "human_acc": 86.6335668829, "source": "2015年国家公务员录用考试《行测》题(省部级)第30题", "difficulty": 5, "formulas": 1, "history": [{"id": 2737551, "material": "", "question": "网络文艺作为互联网催生的文艺新形态,其本质属于文艺范畴,同时又是文艺范畴的全新创造。所以,既不应把网络文艺和与之相关的商业运行、娱乐消费等____________,也不能把其看成传统文艺形态与传播技术的简单________。新的文艺形态必然具有新的内在属性和独特规律。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 等量齐观 完善\nB. 混为一谈 叠加\nC. 同日而语 堆砌\nD. 一概而论 契合", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 160848, "human_acc": 91.0256888491, "source": "2021上半年省考第二季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0}, {"id": 2030010, "material": "", "question": "自从邮票作为投资产品后,人们对于邮票收藏也________起来,原来大多数人还是采用把邮票从信封上剪裁下来,通过水浸等收集的方法来收藏,但是随着大家的要求越来越高,凡是有水浸、复新痕迹的邮票价值都________了,这就要求投资者要购买真正的“新票”,加入到邮市中来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 喜爱 大打折扣\nB. 青睐 一文不值\nC. 重视 不复存在\nD. 关注 一落千丈", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 694427, "human_acc": 48.2158671826, "source": "2016年四川省公务员录用考试《行测》题(下半年)第16题", "difficulty": 5, "formulas": 0}, {"id": 2757988, "material": "", "question": "《澳大利亚人报》报道称,支撑中国这个夏天的,是一个规模让世界上任何国家都____________的防疫系统。《纽约时报》注意到,中国政府在鼓励人们返回工作岗位并重新开始购物和旅游的同时,依然采取了________的做法,比如要求电影院和景点接待量不超过最大承载量的$50\\%$。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 略逊一筹 警惕\nB. 相形见绌 谨慎\nC. 自愧弗如 稳妥\nD. 望尘莫及 郑重", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 167561, "human_acc": 60.5654060312, "source": "2021上半年省考第四季行测模考大赛(四川卷)第18题", "difficulty": 5, "formulas": 1}, {"id": 3532727, "material": "", "question": "传统戏比较注重人物的语言和外部动作,现代戏在此基础上更注重对人物内心的开掘、重视人物情感和心理的外化,这是现代审美的体现,也是对戏曲表现空间的________。此外,既善于表现现代生活、讲述观众身边的人与事,又绝不照搬生活的自然面目,而是____________地把握住艺术真实与现实真实的平衡,这是现代戏的另一大魅力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 颠覆 入木三分\nB. 拓展 恰如其分\nC. 重塑 不偏不倚\nD. 延伸 适可而止", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 77064, "human_acc": 86.8031765805, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第24题", "difficulty": 3, "formulas": 0}, {"id": 4408945, "material": "", "question": "病毒借助现代化的交通体系________,成为全球性疫情。虽然现代化问题丛生,但不可否认的是二战以后的人类在物质文明上取得了____________的成就,人类整体的医疗水平都达到了历史新高。只是,这也造成了一种“文恬武嬉”的松弛氛围,导致人们面对突如其来的公共卫生灾难时____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 肆虐 无出其右 束手无策\nB. 滥觞 震古烁今 张皇失措\nC. 爆发 蔚为大观 焦头烂额\nD. 蔓延 前所未有 措手不及", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 211691, "human_acc": 90.1143648053, "source": "2021下半年省考第二十四季行测模考大赛(陕西卷)第35题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5380133, "material": "", "question": "“傲气”与“傲骨”虽一字之差,却____________。傲骨是精神气节,而傲气则是一种盲目的自高自大。当一个人________上了傲气,就会以自我为中心,飘飘然。久而久之,就会____________,唯我独尊,膨胀甚至毁灭。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 相去甚远 熏染 志得意满\nB. 迥然不同 沾染 刚愎自用\nC. 大相径庭 浸染 恃才放旷\nD. 毫无二致 习染 目中无人", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 369618, "human_acc": 83.8820079109, "source": "2022下半年省考第十九季行测模考大赛(深圳卷)第70题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2188633, "material": "", "question": "随着近年来痛风人群的增多,忌食豆腐等豆制品,成了约定俗成的主流保健意识。豆腐对人体健康的好处,被豆制品嘌呤含量高的概念一并抹杀。其实,豆腐特别是含水量较多的南豆腐,由于其加工过程中嘌呤物质流失转化,其嘌呤含量每百克仅有13毫克左右,远远低于我们日常生活中的很多食品。就慢性痛风者而言,嘌呤含量在150毫克以下的食物是不用严格禁忌的,比如鲤鱼、鸡鸭鹅肉等,但是要求进食量不宜过多;嘌呤含量超过150毫克的动物内脏,是痛风者应该禁忌的食品。在痛风急性发作期,嘌呤含量在75毫克以上的食品都属于禁忌。此时,由于可供患者食用的食品非常有限,豆腐、豆浆等食品对患者的营养支持,就更显重要。\n\n这段文字意在:", "type": "单选题", "options": "A. 为痛风患者推荐适宜的食品\nB. 比较不同类型痛风患者的饮食禁忌\nC. 纠正痛风患者不能吃豆腐的错误认识\nD. 说明加工过程对豆腐嘌呤含量的影响", "choice": "C", "keypoints": "关联词-转折;行文脉络-分总分", "most_wrong": "A", "human_count": 1353305, "human_acc": 92.1622250712, "source": "2018年421联考《行测》题(四川卷)(网友回忆版)第39题", "difficulty": 3, "formulas": 0, "history": [{"id": 22657, "material": "", "question": "旅行是什么?德波顿并不想急于提供答案;旅行是为了什么?德波顿似乎也不热心去考求。但释卷之后,相信每个读者都会得到一种答案——这答案,既是思辨的,也是感性的;既酣畅淋漓,又难以言说,因为它更像是一种情绪,令人沉醉而不自知。\n\n这段文字表达的主要意思是:", "type": "单选题", "options": "A. 读者读后会得到模糊不清的答案\nB. 读者领略到了德波顿的淡然无为\nC. 德波顿没有解答读者提出的问题\nD. 德波顿给了读者宝贵的精神享受", "choice": "D", "keypoints": "关联词-转折;行文脉络-分总分", "most_wrong": "B", "human_count": 146402, "human_acc": 92.3539295911, "source": "2009年国家公务员录用考试《行测》题第46题", "difficulty": 3, "formulas": 0}, {"id": 24413, "material": "", "question": "每年冬天,当向南迁徙的鸟儿飞过英国的大地时,许多爱鸟人都会在庭院里抛种子和燕麦,希望可以帮助鸟群获得足够的能量。但这种做法使10%的黑顶林莺改变了传统的迁徙路线,它们由德国南部和奥地利飞往西南方向的西班牙转而飞向西北方的英国,在那里依赖爱鸟人的供养生存。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 人的行为会影响动物的习性\nB. 爱护野生动物要注意方法\nC. 黑顶林莺的天性使得它们改变了迁徙路线\nD. 人类可以通过自身的行为帮助鸟类", "choice": "A", "keypoints": "关联词-转折;行文脉络-分总分", "most_wrong": "B", "human_count": 69369, "human_acc": 82.0726837636, "source": "2010年福建省公务员录用考试《行测》题(春季)第56题", "difficulty": 4, "formulas": 0}, {"id": 50827, "material": "", "question": "抗生素是指用于治疗各种细菌感染或抑制致病微生物感染的药物。但是,滥用抗生素会造成致病菌的耐药性,因此要严格控制抗生素的使用。公众对抗生素的治疗作用有一定了解,但对其毒副作用了解比较少。大部分公众相信自己使用抗生素不会发生危险,并对抗生素产生依赖性。\n\n上述文字主要说明了:", "type": "单选题", "options": "A. 大部分公众感冒后会选择使用抗生素\nB. 公众对抗生素仍知之甚少,依赖性强\nC. 抗生素能有效治疗各种细菌感染\nD. 滥用抗生素会降低抗生素的疗效", "choice": "B", "keypoints": "关联词-转折;行文脉络-分总分", "most_wrong": "D", "human_count": 641287, "human_acc": 75.5522878212, "source": "2013年广东省公务员录用考试《行测》题(一)第28题", "difficulty": 5, "formulas": 0}, {"id": 2042424, "material": "", "question": "大多数桥梁是向公众开放的。尽管一些桥梁要收取通行费,但是对于绝大多数车辆来说并不禁止通行。然而,多数网络系统对公众却是不开放的。原因显而易见——这些网络系统是用来储存和处理个人通信、财务数据、医疗记录和商业秘密等敏感信息的,这些信息都跟个人和机构密切相关。\n\n这段文字重在说明:", "type": "单选题", "options": "A. 大多数桥梁向公众开放的事实依据\nB. 桥梁和网络在开放程度方面的差别\nC. 网络系统的存储功能及其基本特点\nD. 多数网络系统对公众关闭的合理性", "choice": "D", "keypoints": "关联词-转折;行文脉络-分总分", "most_wrong": "B", "human_count": 1220137, "human_acc": 87.1230853584, "source": "2017年江苏省公务员录用考试《行测》题(A类)第26题", "difficulty": 4, "formulas": 0}, {"id": 769315, "material": "", "question": "面对具有威胁性的突发事件,恐慌心理是人们进行自我保护的本能反应。但是,过度的恐慌反应,常常会导致比事件危害本身更为严重的消极后果。经验显示,在突发性公共事件中,许多损失可能不是事件本身造成的,而是由于人们的过度恐慌导致的。\n这段文字意在强调:", "type": "单选题", "options": "A. 产生恐慌心理是人们在突发事件中的正常反应\nB. 在突发性公共事件中,人们的损失往往是自己造成的\nC. 突发事件发生时,人们其实不必慌张\nD. 面对突发事件,人们应尽量保持稳定的心态", "choice": "D", "keypoints": "关联词-转折;行文脉络-分总分", "most_wrong": "B", "human_count": 102086, "human_acc": 85.049859922, "source": "2011年广东省公务员录用考试《行测》题第44题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 1541923, "material": "", "question": "生命,是一树花开,或热烈或寂寞。生命中,总有一些令人唏嘘的空白,有些人让你牵绊,却不是相守;有些东西让你________,却不能拥有;有些错过让你留恋,却终生遗憾。总想寻一处山林,安静生活浅写岁月;总想借一些日子,_______向日葵的温暖,栽种阳光的花瓣。春花秋月,夏萤冬雪,怀一心宁淡,安然度日。经年流转,透过指尖的温度,_______岁月静好,这一路走来,你会发现,生活于我们,温暖,一直是一种_______;于生活的海洋中冲浪,云帆尽头,轻回眸,处处是别有洞天。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 羡慕 播种 期许 牵引\nB. 向往 播撒 期许 指引\nC. 心动 播种 期待 指引\nD. 爱慕 播撒 期待 牵引", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 870077, "human_acc": 14.3547065375, "source": "2015年山东省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 5368051, "material": "", "question": "传统书房是一个__________与仪式感并重的文人自娱空间,它既是书写、阅读、对弈、焚香、抚琴和品鉴文玩的安静场所,也是陶冶性情,修养身心的“幽谷”。一些经典的文化用品如文房四宝,迄今为止仍然是书房中的重要物品,与其相关陈设的造型虽然________,但其选材备料却极其挑剔。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 功能性 刻板\nB. 审美性 随意\nC. 实用性 简洁\nD. 趣味性 单调", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 347928, "human_acc": 68.0448253662, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第69题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 540845, "material": "", "question": "最近,一项关于体重与死亡率的研究让人___________。该研究认为,按照国际____________的体重评价标准,超重人群比体重正常人群在同一时期内的死亡率可能要低6%。这一结果一经公布,立即掀起了轩然大波,因为大众媒体数十年来一直_________的观念是,超重甚至是适度的体重增加都不利于健康。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 啼笑皆非 公认 同意\nB. 出乎意料 通行 宣传\nC. 匪夷所思 现行 强调\nD. 无话可说 认可 灌输", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 1413647, "human_acc": 60.4894998539, "source": "2014年河南省选调生选拔考试 《行政职业能力测验》试卷(精选)第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 4807705, "material": "", "question": "近年来,国产精品剧____________,主旋律作品“爆款”频出,一部《山海情》实现了电视遥控器在家庭的代际统一,我们今天的幸福生活就是《觉醒年代》的续集,观众的真心点赞和真切感慨,体现了优秀国产剧的深厚观众缘,也证明了好作品的强大__________。\n\n依次填入划横线处的词语,最恰当的一项是:", "type": "单选题", "options": "A. 异军突起 感召力\nB. 拨云见日 凝聚力\nC. 数不胜数 创造力\nD. 层出不穷 生命力", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 891360, "human_acc": 33.4458580147, "source": "2022年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第51题", "difficulty": 4, "formulas": 0}, {"id": 2031624, "material": "", "question": "新中国成立以来,普通话的推广对于普及教育、提高全民文化素质起到了重要作用,这一点________________。但随着普通话的地位越来越重要,各地方言受到很大的冲击。一些汉语方言悄然发生变化,其发音、词汇不断向普通话靠拢;一些汉语方言甚至出现快速________的状况。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 无可厚非 式微\nB. 毋庸置疑 衰微\nC. 显而易见 衰减\nD. 不言而喻 衰败", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 1273385, "human_acc": 61.5527118664, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第23题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2595675, "material": "", "question": "从“蛟龙号”深海载人潜水器创造深潜纪录,到“海斗一号”无人潜水器完成万米海试······人类走向海洋的每一步,都与科技创新____________。因此,中国海洋产业转型升级迫切需要发挥科技创新驱动的引领效应,充分融合政府、科研机构和市场的力量,____________地推动产学研一体化合作。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如影随形 雷厉风行\nB. 齐头并进 循序渐进\nC. 密不可分 不遗余力\nD. 殊途同归 多管齐下", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 277359, "human_acc": 88.7139050833, "source": "2021年国考第九季行测模考大赛(副省级)第30题", "difficulty": 3, "formulas": 0, "history": [{"id": 2782194, "material": "", "question": "西藏特色文化产业之窗将第一站设在上海,这是藏文化发展的一个新机遇,能进一步推动西藏文化走出去。西藏有丰厚的人文资源、独特的自然环境,文化吸引力极强,但本地文化企业、农牧民个人对产业化发展“重视程度不够,创新意识不足,对藏族传统文化挖掘不深入”,使西藏文化发展处于“____________”的阶段。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 首鼠两端\nB. 蹒跚学步\nC. 难以为继\nD. 进退维谷", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "C", "human_count": 275933, "human_acc": 51.861865018, "source": "2021上半年省考第七季行测模考大赛(广东卷)第1题", "difficulty": 6, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5509749, "material": "", "question": "人类是起源于热带的物种,在进化史的大部分时间里,人类都生活在温暖的气候中。而向北扩散到更高纬度的古人类最初不得不应对寒冷,人类究竟是如何适应寒冷的?有学者认为,古人类身体的进化使人类能够适应寒冷,如粗壮的体型,从而最大限度地产生和保持热量,但是,反对者则认为,即便存在上述进化,但是古人类在当时已发展出较为复杂的文化。有考古证据表明,他们曾用动物的兽皮制作衣服和搭建庇护所以抵御寒冷。因此,文化才是古人类能够适应寒冷的真正原因。\n\n以下哪项最为恰当的概括了反对者在反驳时所使用的方法?", "type": "单选题", "options": "A. 通过质疑上述学者的论据以反驳他的观点\nB. 对上述学者援引的论据提出一种新的解释\nC. 在承认上述学者的观点的基础上展开论证\nD. 提出一个新的论据以反驳上述学者的观点", "choice": "D", "keypoints": "削弱-其他", "most_wrong": "C", "human_count": 452471, "human_acc": 52.2557246763, "source": "2023年吉林省公务员录用考试《行测》题(网友回忆版)第83题", "difficulty": 5, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱-其他"]]}, {"id": 3788454, "material": "", "question": "个性化的信息服务让用户对信息的________集中于个体所偏爱的主题,智能推送加剧了“信息茧房”的形成,易造成社会群体的极化。“信息茧房”让已知的边界越来越窄化,________了用户与“无兴趣”信息的偶遇。从传播角度而言,海量信息环境容易让人产生信息依赖进而变成媒介依赖,最终造成了信息主动挑选与被动接收间的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 筛选 阻隔 失衡\nB. 过滤 妨碍 矛盾\nC. 甄选 消解 游离\nD. 挑选 干扰 冲突", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 119566, "human_acc": 86.4844521018, "source": "2021下半年省考第十四季行测模考大赛(四川卷)第25题", "difficulty": 3, "formulas": 0, "history": [{"id": 4772037, "material": "", "question": "由于没有电荷,中微子不受磁场的干扰,能以直线在宇宙中飞行。因此,定位了中微子的起源地,也就意味着________了宇宙射线的来源。但中微子却是一种极难探测的粒子。它非常________,跟其他粒子既没有电磁力作用,也没有强核力作用,仅有弱核力作用,因此它跟普通物质相互作用的概率非常低。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 预判 隐秘\nB. 发现 分散\nC. 控制 微弱\nD. 锁定 孤僻", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 251282, "human_acc": 69.6241672702, "source": "2022上半年省考第十季行测模考大赛(四川卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5218900, "material": "", "question": "下列选项符合法律规定的是(    )。", "type": "单选题", "options": "A. 甲小区物业未经过业主同意,在业主群筹集修理故障电梯的维修资金\nB. 乙在公交车上捡到一部手机,发布招领公告半年没有人认领,手机归国家所有\nC. 丙是一起劳动纠纷案被告方的证人,车祸导致其大腿骨折无法出席,丙可以选择视频方式在线作证\nD. 丁和某公司签订购销合同,每周一将货物送到该公司仓库,丁因该公司拖欠货款提起诉讼,那么该案件由丁住所地人民法院管辖", "choice": "C", "keypoints": "民法;民事诉讼法", "most_wrong": "B", "human_count": 74237, "human_acc": 65.1157778466, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第12题", "difficulty": 4, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"], ["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 5249510, "material": "", "question": "某公司一共有60名员工,行政记录了本月同事们需要的办公用品:需要1个笔记本的有8人,需要1卷透明胶的有11人,需要1本便利贴的有35人,有14人至少需要其中两种用品,有2人这三种用品都需要。采购的单价为笔记本10元/个,透明胶3元/卷,便利贴0.8元/本,采购时每种用品会多买一些备用,每种用品的备用数量不少于未提出任何用品需求人数的20%,则本月采购这三种办公用品至少需要花费多少钱?", "type": "单选题", "options": "A. 141元\nB. 169.2元\nC. 196.2元\nD. 210元", "choice": "D", "keypoints": "经济利润问题;三集合", "most_wrong": "B", "human_count": 154687, "human_acc": 10.7171255503, "source": "2022下半年省考第八季行测模考大赛(深圳卷)第53题", "difficulty": 7, "formulas": 0, "history": [{"id": 5063273, "material": "", "question": "某水果商统计团购名单,其中6元/份的苹果有12人订购,4元/份的香蕉有34人订购,10元/份的橙子有23人订购;同时订购苹果和香蕉的有6人,同时订购香蕉和橙子的有8人,同时订购苹果和橙子的占参与订购的总人数的10%。已知橙子搭配任何水果购买都能享受总价7折的优惠,每人限购两种水果,且每种水果只能购买一份,求该水果商销售橙子的总收入为多少元?", "type": "单选题", "options": "A. 230\nB. 216\nC. 203\nD. 191", "choice": "D", "keypoints": "经济利润问题;三集合", "most_wrong": "B", "human_count": 375915, "human_acc": 10.1956559329, "source": "2022上半年省考第二十四季行测模考大赛(北京卷)第79题", "difficulty": 7, "formulas": 0}, {"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 5115455, "material": "", "question": "某班级有学生30人,自愿参加田径运动会,报名长跑的有3人,报名短跑的有8人,报名跳高的有5人,且有18人没有报名任何项目,则只报名两个项目的最多有多少人?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 86911, "human_acc": 34.7033171865, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 2066908, "material": "", "question": "可别小瞧了那些在路边沉默而低调的野生果树,它们是大自然赋予我们的珍贵自然遗产。自人类出现以来,野果就是人类赖以生存的主要食物来源之一。随着农业技术的发展,它们中的一部分被驯化为优质水果,比如现在风靡市场的猕猴桃,起初也是其貌不扬的野果。然而大部分野果还默默地隐居于林间亦或是已经被破坏掉,需要我们在开发利用它们的同时,共同保护这些野生的果树资源。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 野生果树是大自然赋予我们的珍贵遗产\nB. 野生果树成为优质水果需要驯化\nC. 我们应该重视野生果树的培育开发同时加强保护\nD. 野果其貌不扬但却是人类的主要食物来源之一", "choice": "C", "keypoints": "关联词-转折;关联词-对策", "most_wrong": "A", "human_count": 52791, "human_acc": 97.0619992044, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第30题", "difficulty": 3, "formulas": 0, "history": [{"id": 2144702, "material": "", "question": "互联网给报纸带来了挑战,但这并不意味着报纸要和互联网势不两立。对于一种更为有效、更吸引受众的传播技术,报纸没有理由厌弃,完全可以为自己所用。在此轮改版中,很多报纸都强调了与基于互联网技术的新媒体融合,这是一个值得关注的转变,说明报人已经意识到了在目前的传播格局中应该做出改变。这段文字意在强调报纸的改版应注重(  )。", "type": "单选题", "options": "A. 提高发行速度\nB. 借力新兴媒介\nC. 寻求独特价值\nD. 深耕特色新闻", "choice": "B", "keypoints": "关联词-转折;关联词-对策", "most_wrong": "C", "human_count": 12714, "human_acc": 96.7673430864, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第47题", "difficulty": 3, "formulas": 0}, {"id": 2031642, "material": "", "question": "分享经济作为一种新的经济形态,面临的挑战和问题不少,行业、社会、监管等也在逐渐调整和适应。但是不能因此采取一种压制态度,而应创造更好的环境,使其规范健康地发展。\n\n这段文字主要表达的意思是(    )。", "type": "单选题", "options": "A. 要以包容的态度,营造分享经济发展的良好环境\nB. 相关法规的调整和监管手段都跟不上分享经济的步伐\nC. 分享经济是新生事物,本身仍有许多需要完善的地方\nD. 不能压制新生事物的发展,否则就无法跟上新时代的发展", "choice": "A", "keypoints": "关联词-转折;关联词-对策", "most_wrong": "C", "human_count": 1553005, "human_acc": 88.5699015779, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第34题", "difficulty": 4, "formulas": 0}, {"id": 2376665, "material": "", "question": "近年来,“家委会”这个新名词多次出现在舆论热议中。如今,家委会成了许多学校的标配,发挥着促进家长与学校沟通的作用。但问题也不少,如家长拼背景、比资源,家委会成员的孩子更容易得到“照顾”,甚至出现一些违规收费的问题。出现的这些问题,既背离了家委会设置的初衷,也在某种程度上加剧了教育的不公。\n\n这段文字意在强调", "type": "单选题", "options": "A. 给家委会正名正当其时\nB. 家委会不是学校的标配\nC. 家委会应回归角色本位\nD. 须警惕家委会工作套路化", "choice": "C", "keypoints": "关联词-转折;关联词-对策", "most_wrong": "D", "human_count": 1184956, "human_acc": 92.9344211937, "source": "2019年420联考《行测》题(吉林乙级)(网友回忆版)第34题", "difficulty": 5, "formulas": 0}, {"id": 2033858, "material": "", "question": "随着全球进入到“后抗生素时代”,微生物的耐药问题日渐严重。虽然无药可用的日子还未到来,但如果各国能认识到这一问题的紧迫性和严重性,规范抗菌药物使用,加紧筛选和研发新型抗菌药物,制定新型抗菌策略,将有助于控制微生物的耐药问题,提高人类的健康水平。\n\n这段文字主要强调的是:", "type": "单选题", "options": "A. 微生物的耐药性问题将会日渐严重\nB. “后抗生素时代”面临无药可用的困境\nC. “后抗生素时代”给各国带来健康威胁\nD. 解决微生物耐药性问题已迫在眉睫", "choice": "D", "keypoints": "关联词-转折;关联词-对策", "most_wrong": "A", "human_count": 644996, "human_acc": 91.3517293131, "source": "2016年江苏省公务员录用考试《行测》题(B类)第33题", "difficulty": 3, "formulas": 0}, {"id": 13981, "material": "", "question": "对一项科学工作的评价不能简单地归结为一个数字的大小,任何数字都不能取代同行评议及对该工作科学意义的具体分析和历史检验。然而,不好的评价指标有可能误导评审人员,导致错误的结果;而好的评价指标可以提供更准确的信息,使相应的评审更加客观和公正。\n\n这段文字意在强调,对科学工作的评价:", "type": "单选题", "options": "A. 应该是主观评价和客观评价的统一\nB. 关键在于建立科学的评价指标体系\nC. 不应以数字结论作为主要参考依据\nD. 需要综合考虑多种因素才能实现公正", "choice": "B", "keypoints": "关联词-转折;关联词-对策", "most_wrong": "C", "human_count": 206459, "human_acc": 64.2393889344, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第67题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 2028424, "material": "", "question": "家庭是社会的基本单元,家庭功能受损,已经并将继续产生深远后果。规模庞大的留守儿童,是中国独有的城乡二元体制的产物。解决这一问题_______,且无法毕其功于一役,多项改革不可能_______,但严峻的现实提醒我们,多层次的行动、全方位的改革必须启动或加速。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 迫在眉睫 万无一失\nB. 千头万绪 立竿见影\nC. 千难万险 齐头并进\nD. 错综复杂 避重就轻", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 3218467, "human_acc": 51.8146682877, "source": "2017年国家公务员录用考试《行测》题(地市级)第26题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5296955, "material": "", "question": "火车A与火车B分别在一条铁路的上、下行轨道匀速相向而行,需连续通过一座桥梁和一个隧道,其中火车A车身长240米,火车B车身长300米、速度为30米/秒,桥梁长1200米。火车A完全通过桥梁的时间为36秒,完全在隧道中的时间为18秒。当上行轨道的火车A的车尾完全进入隧道时,下行轨道的火车B的车头恰巧刚进入隧道,则从此时到两车刚好完全错开共用时多少秒?", "type": "单选题", "options": "A. 19\nB. 18\nC. 17\nD. 16", "choice": "B", "keypoints": "火车过桥;相遇追及", "most_wrong": "C", "human_count": 5848, "human_acc": 51.0772913817, "source": "2022下半年省考第十二季行测模考大赛(浙江C卷)第68题", "difficulty": 6, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 2060414, "material": "", "question": "(1)我在听先生这篇讲演后二十余年,______获得机缘在茅津渡候船渡河。\n\n(2)市长在两会特别节目《又是一年春来到》上,谈到______他乡的农民工也可成为这座城市的主人。\n\n(3)今天要______的新机器非常先进,因为它们采用了很多先进技术。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 偶尔 做客 试验\nB. 偶然 作客 试验\nC. 偶然 做客 实验\nD. 偶尔 作客 实验", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 654240, "human_acc": 90.4648141355, "source": "2017年深圳市公务员录用考试《行测》题第63题", "difficulty": 3, "formulas": 0, "history": [{"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2671046, "material": "", "question": "①专业化运营还意味着更稳定的赛事运行机制和更完善的赛事晋升通道,是提高赛事水平的重要基础\n\n②体育赛事IP发展会带动整个体育产业的发展,能吸引更多人加入全民健身行列,进而也会拉动经济增长\n\n③从国外成熟体育IP的发展路径来看,打造我国自主体育赛事IP必须要加强专业化运营\n\n④体育赛事是体育产业的支柱,也是全民健身事业的重要依托,其中作为核心的则是体育赛事的产权及其相关衍生品,即体育赛事IP\n\n⑤相比其他国家,我国体育赛事IP行业发展空间十分巨大\n\n⑥即用专业的体育思维和良好运转的运营机制,开展体育赛事IP的推广\n\n对上述语句排序正确的一项是:", "type": "单选题", "options": "A. ②①⑤④⑥③\nB. ②①⑤③⑥④\nC. ④②⑤③⑥①\nD. ④⑤③①②⑥", "choice": "C", "keypoints": "首句特征;确定顺序", "most_wrong": "D", "human_count": 176432, "human_acc": 87.0919107645, "source": "2021年国考第二十季行测模考大赛(副省级)第39题", "difficulty": 3, "formulas": 0, "history": [{"id": 2188375, "material": "", "question": "①内圣外王:中国古代伦理思想中的一种理想人格\n\n②其具体内容随学派而异\n\n③语出《庄子·天下》篇\n\n④意为内修圣王之德,外施王者之政或外务社会事功\n\n⑤成为中国历代士人与知识分子人生追求的理想目标\n\n⑥以儒家内圣外王为主的理想人格,对中国社会的政治、伦理、哲学、文化产生深远影响\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①④③②⑥⑤\nB. ①②④③⑥⑤\nC. ①②③④⑤⑥\nD. ①④②③⑤⑥", "choice": "A", "keypoints": "首句特征;确定顺序", "most_wrong": "D", "human_count": 1134818, "human_acc": 76.6375753645, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第29题", "difficulty": 5, "formulas": 0}, {"id": 2388280, "material": "", "question": "把下列句子组成一段语意连贯的话,排序最恰当的是:\n\n①缺少书籍的滋养,我们的精神世界会是一片荒芜和狼藉\n\n②读书是门槛最低的高贵举动\n\n③我们的文化也会缺乏不断向前发展的动力\n\n④读书不仅仅是为了生存,更是为了充实我们的精神世界,提升我们的生命质量\n\n⑤我想,这是对读书意义的深刻体悟和精辟总结\n\n⑥我们的社会难以传承深邃的智慧、伟大的精神", "type": "单选题", "options": "A. ①⑥③④②⑤\nB. ②④⑤①③⑥\nC. ②⑤④①⑥③\nD. ④⑤②①③⑥", "choice": "C", "keypoints": "首句特征;确定顺序", "most_wrong": "B", "human_count": 696160, "human_acc": 39.8622443117, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第54题", "difficulty": 6, "formulas": 0}, {"id": 2672462, "material": "", "question": "①可见开普勒在壮大系外行星系统家族的过程中扮演了重要角色\n\n②据NASA官网的数据显示,开普勒发现了4496位“候选者”\n\n③它已对超过15万个恒星系统展开了持续监控,产生了海量数据\n\n④其中2341颗得到确认,而目前总共确认的系外行星约为3704颗\n\n⑤通过数据分析,科学家们遴选出了众多系外行星“候选者”\n\n⑥开普勒太空望远镜是世界首个用于探测太阳系外类地行星的飞行器", "type": "单选题", "options": "A. ②③⑤①⑥④\nB. ⑥②④③⑤①\nC. ②③⑤④①⑥\nD. ⑥③⑤②④①", "choice": "D", "keypoints": "首句特征;确定顺序", "most_wrong": "B", "human_count": 6882, "human_acc": 88.0993897123, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第85题", "difficulty": 5, "formulas": 0}, {"id": 5417510, "material": "", "question": "①技艺愈是高超,就显得愈加神秘\n\n②然而,神秘也意味着封闭,它或许对创作故事有利,却无益于技术的积累、转移、传递\n\n③技艺是在长期实践中积累起来的,包含着无数细小的日常行动,与掌握它的匠人不可分离\n\n④比如庖丁解牛、扁鹊治病、干将莫邪铸剑、鲁班造木鸢,皆有传奇色彩\n\n⑤它的延续靠的是师徒相授、父子秘传,很难用语言、文字、图表、符号来表述\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①④②③⑤\nB. ①⑤②④③\nC. ③⑤①②④\nD. ③⑤①④②", "choice": "D", "keypoints": "首句特征;确定顺序", "most_wrong": "C", "human_count": 2280, "human_acc": 45.5263157895, "source": "2022下半年省考第二十三季行测模考大赛(深圳卷)第75题", "difficulty": 6, "formulas": 0}, {"id": 2187735, "material": "", "question": "①没有细菌和感染的知识,就不会有无菌操作的概念\n\n②知识,是人类认识自然的总结\n\n③比如说,没有人体解剖和血型的知识,就无法成功输血\n\n④这种总结的过程是连续的,由浅入深,由简单到复杂\n\n⑤如果没有人体解剖、输血和无菌操作技术,就无法进行手术\n\n⑥杰出的人物,只是把这种认识的过程大大向前推进,但他们也并不能跳过连续的认识发展过程而前进\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑤①④③②⑥\nB. ⑥④③①②⑤\nC. ①⑤②④③⑥\nD. ②④⑥③①⑤", "choice": "D", "keypoints": "首句特征;确定顺序", "most_wrong": "C", "human_count": 1410320, "human_acc": 90.0058142833, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第17题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"]]}, {"id": 2172396, "material": "", "question": "明知要早睡,却忍不住熬夜追剧;明知吸烟、酗酒有害健康,却挡不住烟酒的诱惑;明知运动有益,却一步都懒得走……生活中,很多人并不缺少健康常识,他们更多的是缺乏一种自律精神。自律的人都会早睡,都会忌口,都坚持运动。如果一个人坚守自律精神,就不会放纵自己,就能够维护自己的生理节律,过上健康幸福的生活。\n\n根据以上陈述,可以得出以下哪项?", "type": "单选题", "options": "A. 所有坚持运动的人都很自律\nB. 有的缺乏自律精神的人不缺少健康常识\nC. 一个人如果不坚守自律精神,就会放纵自己\nD. 维护自己生理节律的人都能过上健康幸福的生活", "choice": "B", "keypoints": "常规翻译;集合推理", "most_wrong": "D", "human_count": 1010610, "human_acc": 63.4634527662, "source": "2018年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第95题", "difficulty": 5, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"], ["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 4485698, "material": "", "question": "中小企业要想发展壮大,光埋头苦干还不够,“抬头看路”也很重要,认清自身定位和产业发展趋势,________发展之路。此外,还要多借鉴学习先进经验,回望许多大企业的成长之路,__________始终是成功秘诀之一。如海尔能够长年立于产业潮头,很大程度是依靠在工业互联网领域的提早布局。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 确立 创新性\nB. 明晰 开放性\nC. 夯实 战略性\nD. 找准 前瞻性", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 165773, "human_acc": 95.5016800082, "source": "2021下半年省考第二十六季行测模考大赛(四川卷)第22题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5236026, "material": "", "question": "严格说来,病毒不算生命,因为它没有独立生存的能力,离开了宿主,什么都不是。但它是地球上最________的有机体。从海洋、森林到你身边的牲畜、人群,再到你自己的体表、体内,它____________。这个由病毒组成的世界被称为“病毒圈”。鉴于我们对病毒的了解比任何其他生命形式都少,“病毒圈”对于我们长期以来是一个________的世界。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 庞大 千变万化 可怕\nB. 普遍 比比皆是 未知\nC. 弱小 不可胜数 新奇\nD. 丰富 无处不在 神秘", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 155647, "human_acc": 68.5493456347, "source": "2022下半年省考第八季行测模考大赛(浙江A卷)第31题", "difficulty": 4, "formulas": 0, "history": [{"id": 5532341, "material": "", "question": "从古至今,青梅生津、开味、止咳的作用已经得到充分论证,但________的是,目前青梅更多以“酸甜可口”的休闲零食的形象被大众熟知,其营养价值却“酒香巷深”,消费者大多____________。青梅的“对症功效”更应该被广而告之,因此,长久的、持续的价值科普就十分有必要性。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 可悲 鲜为人知\nB. 遗憾 一知半解\nC. 尴尬 语焉不详\nD. 无奈 不求甚解", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 40957, "human_acc": 78.0647996679, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第13题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5475090, "material": "", "question": "不管是身处象牙塔的年轻大学生,还是扎根基层的青年村官,抑或是穿行于大街小巷的快递小哥,只要尽心做好本职工作,又何尝不是在为国家的发展____________?把个人梦想________时代洪流,让蓬勃青春与家国情怀共振,我们一定能“肩兹砥柱中流之责任”,让人生的色彩更加绚烂。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推波助澜 注入\nB. 锦上添花 植入\nC. 保驾护航 融入\nD. 添砖加瓦 汇入", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 344571, "human_acc": 84.892808739, "source": "2023上半年省考终极行测模考大赛(陕西卷)第29题", "difficulty": 3, "formulas": 0, "history": [{"id": 4454571, "material": "", "question": "随着“一带一路”倡议从愿景进入行动阶段,中国企业走出国门融入世界经济已____________。在国际协定新格局下,如《区域全面经济伙伴关系协定》(RCEP)将加速________全球经济格局和国际经贸规则,大幅提升东亚经济一体化水平,带动进出口和对外投资、增加成员国福利。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 有目共睹 冲击\nB. 一触即发 改写\nC. 顺理成章 搭建\nD. 势不可挡 重构", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 217138, "human_acc": 87.1712919894, "source": "2021下半年省考第二十五季行测模考大赛(深圳卷)第58题", "difficulty": 3, "formulas": 0}, {"id": 5475086, "material": "", "question": "名匾纷立是街区市肆的缩影,商铺____________,匾额书法争芳斗艳,蔚为大观。时至今日,当我们漫步城市商区,相较于标准化的印刷字体牌匾,老字号匾额作为城市风貌的重要组成部分,已不仅仅是单纯的书家书作,更是________的社会形态和文化内涵的现实载体,承载着深厚的人文底蕴和审美诉求。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鳞次栉比 独特\nB. 星罗棋布 标准\nC. 擢发难数 多元\nD. 雕梁画栋 悠久", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 345028, "human_acc": 64.5278064389, "source": "2023上半年省考终极行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4771997, "material": "", "question": "一个高墙耸立、____________的网络生态,不仅容易孕育垄断的不良土壤,还很容易产生对用户利益的侵害与________。平台互通,提升的是互联网企业的格局,拓展的是互联网产业向上发展的高度。互联互通的网络生态,无论对于产业、平台,还是用户,都是共赢之道,也是必由之路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 支离破碎 剥夺\nB. 名存实亡 限制\nC. 断章取义 蚕食\nD. 画地为牢 消磨", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 465900, "human_acc": 31.4921657008, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第2题", "difficulty": 7, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2719470, "material": "", "question": "某企业参与兴办了甲、乙、丙、丁4个扶贫车间,共投资450万元,甲车间的投资额是其他三个车间投资额之和的一半,乙车间的投资额比丙车间高$25\\%$,丁车间的投资额比乙、丙车间投资额之和低60万元。企业后期向4个车间追加了200万元投资,每个车间的追加投资额都不超过其余任一车间追加投资额的2倍,问总投资额最高和最低的车间,总投资额最多可能相差多少万元?", "type": "单选题", "options": "A. 70\nB. 90\nC. 110\nD. 130", "choice": "C", "keypoints": "和差倍比问题;构造数列", "most_wrong": "B", "human_count": 843701, "human_acc": 51.6467326695, "source": "2021年国家公务员录用考试《行测》题(副省级网友回忆版)第65题", "difficulty": 5, "formulas": 1, "history": [{"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 2264379, "material": "", "question": "中世纪时,人们的消息来源于口口相传,任何目击重要事件发生的人所提供的一手消息都被____________;书面的解释记录并不足以服人,因为无法对写下这些内容的人反复询问。这就解释了,为什么尽管15世纪时活字印刷在古登堡被发明,但报纸行业的发展还是如此________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 奉为圭臬 艰难\nB. 照单全收 落后\nC. 视若珍宝 缓慢\nD. 大肆渲染 迟滞", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 3095526, "human_acc": 39.6346533675, "source": "2019年国家公务员录用考试《行测》题(地市级网友回忆版)第32题", "difficulty": 5, "formulas": 0, "history": [{"id": 2028444, "material": "", "question": "在长期积累中,传统媒体在新闻信息采集、加工和传播方面形成了一套比较_____________的方法、流程、标准和机制,虽然有单一乃至僵化的缺陷,但_____________,对保证传统媒体的权威性发挥了重要作用。具有高度专业水平的内容对任何媒体都是_____________的,这是媒体安身立命之本。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 系统 无独有偶 求之不得\nB. 成熟 不可否认 不可或缺\nC. 普遍 显而易见 独一无二\nD. 先进 不言自明 至关重要", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 3183630, "human_acc": 90.8934141216, "source": "2017年国家公务员录用考试《行测》题(地市级)第38题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5076958, "material": "", "question": "许多重要的具体学术问题,存在见解不同乃至观点________,但人们似乎不太关注其中的正确与讹误,缺乏充分的学术讨论,或根本就没有经过讨论,以致歧说并行,莫衷一是。这会使初学者____________,更令史学界其他专业的学者误以为史学史研究陷于困境,游移不定,凡事难于论证。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冲突 无所适从\nB. 对立 各行其是\nC. 排斥 首鼠两端\nD. 矛盾 手足无措", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 102152, "human_acc": 67.9281854491, "source": "2022下半年省考第一季行测模考大赛(新疆卷)第26题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5276710, "material": "", "question": "随着互联网视听平台的崛起,综艺节目的竞争日趋激烈。从2017年开始,电视综艺节目开始逐渐走向衰落,虽然老牌电视综艺喜剧节目一直试图____________,却始终________难现。以类型综艺为代表的网络喜剧综艺开始同电视喜剧综艺____________,前者的发展势头甚至开始超过后者。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 改弦更张 盛景 针锋相对\nB. 另辟蹊径 浮华 并驾齐驱\nC. 推陈出新 盛况 分庭抗礼\nD. 洗心革面 繁华 平分秋色", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 170941, "human_acc": 85.2779614019, "source": "2022下半年省考第十季行测模考大赛(四川卷)第25题", "difficulty": 3, "formulas": 0, "history": [{"id": 4811415, "material": "", "question": "自互联网诞生以来,网络沉迷一直是困扰家长和青少年的一个难题。由于家长与子女的生活阅历和成长环境不尽相同,双方对网络沉迷的判断____________。古人常言,知子莫若父,可是网络时代父母与子女之间的________反而愈加深刻,正因如此,网络和游戏成为引发代际冲突的导火索。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 针锋相对 矛盾\nB. 相去甚远 摩擦\nC. 大相径庭 隔阂\nD. 云泥之别 代沟", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 350893, "human_acc": 75.1562442112, "source": "2022上半年省考第十一季行测模考大赛(陕西卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 3522431, "material": "", "question": "野草属于乡间大地。在城市里被水泥丛林挤得难有____________的野草,即便得到了点滴瘠薄的土地,也生长得____________,茎叶上积满了灰尘,一副失魂落魄的样子。那些生长在乡间大地上的野草,则________地在风中低语,在雨中吟唱。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一席之地 没精打采 肆意\nB. 弹丸之地 垂头丧气 适意\nC. 一隅之地 奄奄一息 恣意\nD. 栖身之地 萎靡不振 惬意", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 2542886, "human_acc": 54.1637336475, "source": "2021年云南公务员录用考试《行测》题(网友回忆版)第30题", "difficulty": 5, "formulas": 0}, {"id": 5714644, "material": "", "question": "家是最小国,国是千万家,国家安全离我们并不遥远。或许有人认为,国家安全宏大________,其实不然,我们随手发的朋友圈图片、储存的行业数据和技术资料,都有可能被“有心人”________。有时候我们____________的,在间谍眼中可能就是“至宝”。安全隐患和潜在威胁,可能就在身边。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 模糊 搜刮 不以为意\nB. 空洞 利用 嗤之以鼻\nC. 笼统 捕捉 习以为常\nD. 抽象 审查 充耳不闻", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 108920, "human_acc": 51.8114212266, "source": "2023下半年省考第十八季行测模考大赛(四川卷)第20题", "difficulty": 6, "formulas": 0}, {"id": 5660835, "material": "", "question": "近期,各大互联网公司纷纷推出自己的生成式人工智能产品。这些产品的表现虽令人惊艳,但带来的风险和法律挑战却也令人________。生成式人工智能可能存在数据安全风险,并且其发展超出各国监管预期,尚未与各国法律有效衔接。在当前各类生成式人工智能服务____________之际,“装好刹车再上路”的监管法案,可起到凝聚共识和规范指引作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不安 粉墨登场\nB. 绝望 崭露头角\nC. 担忧 千帆竞发\nD. 恐慌 如火如荼", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 78707, "human_acc": 85.1804794999, "source": "2023下半年省考第十三季行测模考大赛(四川卷)第17题", "difficulty": 3, "formulas": 0}, {"id": 2144775, "material": "", "question": "一直以来,家庭养老是中国式养老的重要方式,极大________了社会养老风险。不过,随着计划生育和人口流动因素的影响,“四个老人、一对夫妻和一个孩子”的家庭模式,使家庭养老功能________。目前,中国式养老大致有三种方式:家庭养老、社区养老和机构养老。而机构养老除国家投资的养老院外,需求最大的是一般工薪阶层消费水平可以负担的养老院,但这类养老院____________。而无论是哪种养老,背后都藏着两本账:经济账和感情账。\n\n依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 承担 减弱 供过于求\nB. 减轻 强化 于事无补\nC. 舒缓 失去 事倍功半\nD. 缓解 弱化 供不应求", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;混搭填空", "most_wrong": "A", "human_count": 692412, "human_acc": 90.7737012068, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第36题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5218454, "material": "", "question": "老虎繁衍生息所需要的领地面积非常大,一般为几十、数百甚至上千平方公里,而且其个体行踪________,我们此前极度缺乏对老虎的基础生态学研究,当研究者对老虎在野外的行为完全不清楚时,进入丛林后无异于____________,这也是为什么中国野生虎照片直到本世纪初才第一次被拍到。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 隐秘 大浪淘沙\nB. 分散 水中捞月\nC. 狡猾 雾里看花\nD. 诡秘 大海捞针", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 120941, "human_acc": 57.6520782861, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第29题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3012091, "material": "", "question": "很多人都曾尝试养成健康的生活习惯,但常常____________,这与缺少健康知识不无关系。比如说吃,最重要的是维持营养均衡,____________、过热过冷都可能出现问题,“口味重”会摄入过多的盐导致高血压,“饭量大”则可能摄入过多热量导致肥胖。只有以健康知识来________养成健康的习惯,才能激发久久为功的自觉。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 积重难返 矫枉过正 指引\nB. 半途而废 畸轻畸重 支撑\nC. 扑朔迷离 朝三暮四 保障\nD. 事与愿违 顾此失彼 促进", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 41968, "human_acc": 54.9490087686, "source": "2022年国考第六季行测模考大赛(副省级)第35题", "difficulty": 6, "formulas": 0, "history": [{"id": 4823783, "material": "", "question": "乡土诗歌写作的群体很大,但写得好的、有特色的却____________。很多诗人的观念还________在前现代社会,一味把乡土、乡村写成桃花源、乌托邦。个别这样的写作并无不可,但是如果风靡一时、____________,无疑是有问题的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 寥寥无几 游弋 肆虐横行\nB. 一鳞半爪 徘徊 愈演愈烈\nC. 凤毛麟角 停留 大行其道\nD. 屈指可数 局限 甚嚣尘上", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 299291, "human_acc": 72.1384872916, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第40题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5414988, "material": "", "question": "当前,运用转型金融支持低碳转型和可持续发展日益重要。传统高碳行业作为碳减排任务较重、减排潜力较大的领域,在节能减排技术改造升级、能源使用结构调整等方面的资金需求规模极大。然而,现有的绿色金融分类标准以各类绿色目录为准,不少可以在一定程度上减污降碳的项目难以被纳入其中。更有部分金融机构谈“煤”色变,或是对于经济活动中的转型活动以及高碳或“棕色”活动无法明确识别,导致金融机构“不敢”或“不愿”为转型活动提供金融服务。这显然不利于加快引导对传统落后产能的“减量替代”,逐步实现能源结构转型。因此,需要一个更具灵活性、针对性、适应性的金融支持工具,来全面推动各行业平稳有序、可持续转型。\n\n这段文字回答了下列哪一问题?", "type": "单选题", "options": "A. 如何将减污降碳等项目纳入绿色金融\nB. 怎样才能推动各个行业平稳持续转型\nC. 金融机构因何不为转型提供金融支持\nD. 为何要利用转型金融来支持低碳转型", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总;特殊问法", "most_wrong": "C", "human_count": 3810, "human_acc": 53.3858267717, "source": "2022下半年省考第二十二季行测模考大赛(四川卷)第43题", "difficulty": 6, "formulas": 0, "history": [{"id": 2136748, "material": "", "question": "当史前人类到达世界的新区域时,发生了一些奇怪的事情:大型动物突然灭绝了,较小的物种却幸存下来了。大型的、生长缓慢的动物很容易成为猎物,所以被迅速猎杀直至灭绝。现在类似的情况可能正在海洋中发生。\n\n这段文字提到史前大型动物的灭绝是为了说明:", "type": "单选题", "options": "A. 大型动物更加容易受到环境变化的影响\nB. 当大型动物消失时,小物种幸存了下来\nC. 如今大型海洋动物可能面临类似的威胁\nD. 生长缓慢的鱼类比生长快的鱼类寿命长", "choice": "C", "keypoints": "关联词-因果;行文脉络-分总;特殊问法", "most_wrong": "A", "human_count": 978518, "human_acc": 90.4251122616, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第23题", "difficulty": 3, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5600415, "material": "", "question": "董仲舒所推崇的“春秋决狱”“引经决狱”在一定程度上________了司法官吏援法断罪的要求,但并不意味着司法官吏可以任意背离制定法审理案件。无论怎样解说经典大义,案件的裁决最后通常仍是落实到制定法的条文上,除非皇帝行使最高权力作出特别处理,一般在表达上很少有完全公然________制定法的现象。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 突破 背弃\nB. 驳斥 脱离\nC. 僭越 违背\nD. 超越 扬弃", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 44037, "human_acc": 22.5424075209, "source": "2023下半年省考第七季行测模考大赛(陕西卷)第34题", "difficulty": 7, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5447450, "material": "", "question": "现实题材创作不同程度上存在着理论上的模糊认识和生活窄化倾向。有人认为现实题材创作就是问题式写作,从而____________,创作上先入为主,撇开真实的现实状况,而始终以有色眼镜看待生活。有人只见光明不见曲折,一味拔高,悖逆真正的现实主义精神,使现实题材创作流于________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一叶障目 浅显\nB. 以偏概全 浅薄\nC. 以一持万 微薄\nD. 适得其反 肤浅", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 274744, "human_acc": 64.110226247, "source": "2023上半年省考第四季行测模考大赛(四川卷)第18题", "difficulty": 4, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5076970, "material": "", "question": "富于动感和诗意的句子,在平淡如水的行文里____________,在庸常世俗里光芒四射,是所有好小说的共通特质。作家就是活在句子里的语言创造者,一个精彩的句子之所以让读者终身受益,正是因为它们的____________,唤起了读者的亲近感,揭示了哲理,接近了真相。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 卓尔不群 微言大义\nB. 鞭辟入里 举重若轻\nC. 振聋发聩 大道至简\nD. 高屋建瓴 通俗易懂", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 81735, "human_acc": 26.9407230685, "source": "2022下半年省考第一季行测模考大赛(深圳卷)第67题", "difficulty": 7, "formulas": 0, "history": [{"id": 5222045, "material": "", "question": "文艺评奖泛滥及评奖乱象带来的问题是多方面的,一是对真正优秀的作品和人才不公平,很多____________的作品和人才淹没在相对平庸的同伴之中;二是那些本不该获奖却获了奖的人也极有可能因此而____________,从而忽视了对自身问题的正视、反思;三是不够格的作品获了奖,却不能得到群众的真正认可,以后群众对获奖作品也只会____________,久而久之则降低奖项在广大人民群众心目中的地位。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 家喻户晓 趾高气昂 嗤之以鼻\nB. 口碑载道 洋洋得意 等闲视之\nC. 出类拔萃 沾沾自喜 敬而远之\nD. 脍炙人口 跃跃欲试 漠然置之", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 8145, "human_acc": 38.1338244322, "source": "2022下半年省考第八季行测模考大赛(新疆兵团卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5028923, "material": "", "question": "开展主题教育学习是关键,是基础,但学习不是口头上念念文件,抄抄会议记录,要读原著、学原文,要入脑入心。要不断引导党员干部深入________,悟透原理。而主题教育效果好不好,________上不能打折扣,不能只停留在纸面上、放在档案柜里,还要在实字上下功夫,如此才能切实解决人民群众身边的实际问题。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 解读 宣传\nB. 剖析 执行\nC. 思考 细节\nD. 实践 落实", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 326640, "human_acc": 77.7672667157, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第26题", "difficulty": 4, "formulas": 0, "history": [{"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 1789546, "material": "", "question": "相较于传统外贸,跨境电子商务的优势非常明显。跨境电商不仅具有压缩中间环节,降低中小企业发展成本,增加就业等传统优势,还有重塑国际产业链,促进外贸方式转型,增强国际竞争力等作用,对于中国制造发展将带来极大利好。围绕跨境电商,我国正在形成一条从营销到支付、物流和金融服务的非常清晰完整的链条和支撑体系,为中小企业走出去提供了可能。\n\n这段文字重在说明:", "type": "单选题", "options": "A. 跨境电商较传统对外贸易有明显优势\nB. 跨境电商将为中国制造发展带来机遇\nC. 跨境电商为我国企业走出去提供支持\nD. 跨境电商能有效促进外贸方式的转型", "choice": "B", "keypoints": "行文脉络-分总分;程度词", "most_wrong": "A", "human_count": 783440, "human_acc": 37.3976309609, "source": "2016年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 15013, "material": "", "question": "近年来,随着IT厂商数量的不断增加,IT市场的竞争日益激烈。对于IT产品,用户不但要选择产品本身,更要选择服务。良好的服务已经成为左右用户购买决策的重要因素。调查数据显示:对于高科技产品如电脑等,用户愿意多花10%的价钱来购买服务好的同质产品。\n\n这段文字表明的观点是:", "type": "单选题", "options": "A. IT产品的售后服务很重要。\nB. IT产品服务性很强。\nC. IT产品专用型强,技术要求高。\nD. 用户愿意多花钱来购买IT产品。", "choice": "A", "keypoints": "行文脉络-分总分;程度词", "most_wrong": "B", "human_count": 28586, "human_acc": 83.2120618485, "source": "2009年四川省公务员录用考试《行测》题(上半年)第33题", "difficulty": 5, "formulas": 0}, {"id": 48277, "material": "", "question": "你身边有没有这样一群人?早上上班见面问好,他在低头玩手机;中午同事吃饭闲聊,他在低头玩手机;晚上朋友聚会叙旧,他还在低头玩手机。其实他没有那么忙,他可能是在“切水果”,可能是在“打小鸟”,更有可能的是在刷微博、摇微信。移动互联网的应用、智能手机和平板电脑的普及,培养出了这样一群“指头族”,一群习惯通过手指看世界的人。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 描述“指头族”的生活方式\nB. 描述“指头族”看世界的方式\nC. 说明“指头族”产生的原因\nD. 描述“指头族”的手机情结", "choice": "A", "keypoints": "行文脉络-分总分;程度词", "most_wrong": "C", "human_count": 286462, "human_acc": 37.4981672962, "source": "2013年天津市公务员录用考试《行测》题第41题", "difficulty": 5, "formulas": 0}, {"id": 826739, "material": "", "question": "“江流曲似九回肠”,长江历来被奉为中华民族的母亲河,自唐古拉雪山而下的水哺育了一代代中国人;而它最为人们熟知、常为诗人歌咏的,也正是“九回肠”一般的曲折。事物都有曲折,而长江正是因其曲折,才灌溉了更多的土地,哺育了更多的人。试想长江若不再是曲折的“九回肠”,而是一条直直的入海的河流,将会失去多少魅力?历史上歌咏长江的诗词,恐怕也不会那么多。\n\n最能准确概括上述文字内容的是:", "type": "单选题", "options": "A. 长江是实用性和观赏性的完美统一\nB. 长江的魅力,正在于它的“曲折”\nC. 长江被奉为中华民族的母亲河就在于其“江流曲似九回肠”\nD. 事物都有曲折,长江也不例外", "choice": "B", "keypoints": "行文脉络-分总分;程度词", "most_wrong": "C", "human_count": 148902, "human_acc": 80.2245772387, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第7题", "difficulty": 5, "formulas": 0}, {"id": 5519280, "material": "", "question": "从信源维度上看,微纪录片体现的是主题的单一性。与传统纪录片相比,微纪录片时长较短,内容很难做到饱满鲜活和整个故事情节的丰富多彩,其时间压缩使得主题的单一性成为微纪录片的表达诉求。由于其简单便捷的制作风格,微纪录片在信源的挑选上更具备当下性的特点,跳脱以往纪录片时间成本的藩篱,将新发生的社会热点及时反映,随时随地上传,是社会题材的最佳记录者。京剧大师李世济去世时,微纪录片《粉墨人生》同时播出,追忆大师传奇的一生,引起很大反响。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 时长短使得微纪录片的主题呈现单一性\nB. 微纪录片摆脱了以往纪录片的时间藩篱\nC. 微纪录片在信源的选择上契合当下热点\nD. 单一性以及当下性是纪录片的两大特征", "choice": "C", "keypoints": "行文脉络-分总分;程度词", "most_wrong": "D", "human_count": 41740, "human_acc": 50.9559175851, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第26题", "difficulty": 6, "formulas": 0}, {"id": 2042400, "material": "", "question": "如今一个不争的事实是,家庭医生的数量并不充足,社区人口与家庭医生的配置比例存在失衡。即便家庭医生能够为居民提供医疗服务,但囿于客观原因的羁绊和影响,也难以满足居民的心理预期。更为重要的是,从社区居民角度来说,其首要目的是获得高质量的医疗服务,那么家庭医生的质量和水平如何,则显得尤为重要。假如家庭医生不是“全科医生”,对居民各种各样的疾病缺乏全面高水平的诊疗,必然不能调动居民签约家庭医生的积极性。\n\n根据文意,影响居民签约家庭医生最重要的因素是:", "type": "单选题", "options": "A. 家庭医生的数量是否与居民需求相匹配\nB. 家庭医生是否能够满足居民的心理预期\nC. 家庭医生是否能够提供高质量的医疗服务\nD. 家庭医生是否能够诊治居民所患所有疾病", "choice": "C", "keypoints": "行文脉络-分总分;程度词", "most_wrong": "D", "human_count": 1031321, "human_acc": 84.8614543871, "source": "2017年江苏省公务员录用考试《行测》题(A类)第34题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 2576867, "material": "", "question": "不少人遇事不是不想办、不敢办,而是不会办、办不了,能力不足的短板导致其在面对困难时只能____________。特别是当今社会日新月异,新知识新事物____________,这对个人的知识储备、能力经验是一种更大的考验。如果知识能力与时代脱节,就是心有余也会力不足。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 敬而远之 方兴未艾\nB. 束手无策 遍地开花\nC. 裹足不前 层出不穷\nD. 望洋兴叹 应接不暇", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 382031, "human_acc": 46.3054045352, "source": "2021年国考第八季行测模考大赛(副省级)第23题", "difficulty": 6, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5708167, "material": "", "question": "学术界一直认为元代是经学的________期。事实上,元代学者对《诗经》学的贡献,元代在《诗经》学史上的地位,被严重低估,甚至可以说是被________了。元代《诗经》学的成就与地位,应该重新评估,其所蕴含的思想,以及作为现实关怀的《诗经》学观念,也应该予以________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 鼎盛 遮蔽 重视\nB. 下行 轻视 尊重\nC. 过渡 抹杀 重构\nD. 衰落 掩盖 挖掘", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;实词填空", "most_wrong": "B", "human_count": 104947, "human_acc": 43.9822005393, "source": "2023下半年省考第十七季行测模考大赛(四川卷)第18题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2262852, "material": "", "question": "财政审计是一个整体,必须把各种、各类审计项目和审计资源有效地组合起来。大型审计项目中的被审计单位具有跨地区、跨行业特点,组织结构复杂,业务量、资金量庞大,审计机构内部也涉及传统的财政审计、农业审计、资源保护审计等多个业务部分,同类项目往往聚集在同一个省份,操作平台广阔。对此,应对审计机构内部进行充分整合,避免交叉重复,实现审计工作有序推进。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 财政审计的整体性\nB. 大型审计项目的复杂性\nC. 审计工作有序推进的实现\nD. 审计项目资源整合的思路", "choice": "D", "keypoints": "关联词-对策;行文脉络-总分", "most_wrong": "C", "human_count": 24786, "human_acc": 52.2996853062, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第39题", "difficulty": 5, "formulas": 0, "history": [{"id": 2256432, "material": "", "question": "在全球娱乐产业爆发增长的背景下,国产网剧想要得以进益,其工业制作水平还必须在“一虚一实”两个方面予以重视:“实”的方面就是需要有好剧本,好的剧本自然会有好的语言和情节;“虚”的方面就是在影视剧传达的价值观上,尽量融入世界主流体系。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 随着全球化发展,影视剧成为民族文化的展示窗\nB. 国产网剧将接受多元文化视角的检验\nC. 全球娱乐产业发展态势良好\nD. 国产网剧需要重视“虚实”两面", "choice": "D", "keypoints": "关联词-对策;行文脉络-总分", "most_wrong": "B", "human_count": 29390, "human_acc": 97.9040489963, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第38题", "difficulty": 2, "formulas": 0}, {"id": 53063, "material": "", "question": "学术的意义是求真,探求真理本来应该是每个学者的崇高职责,诚实也应该是治学的最基本的态度。人类的活动很难找出还有哪一种像学术这样强调真实,学者也因之受到公众的敬仰,甚至被视为社会的良心。如果由于学术不端行为的频发,而使科学界的声誉受到严重损害,败坏了科学研究在公众心目中的形象,那么它必然会阻碍科学的进步。 \n\n这段文字意在:", "type": "单选题", "options": "A. 倡导诚实严肃的治学风气\nB. 反思科研领域的不端行为\nC. 提示阻碍科学发展的因素\nD. 审视科研领域的诚信问题", "choice": "A", "keypoints": "关联词-对策;行文脉络-总分", "most_wrong": "D", "human_count": 501355, "human_acc": 67.5339829063, "source": "2013年921联考《行测》题(河南卷)第27题", "difficulty": 5, "formulas": 0}, {"id": 1789536, "material": "", "question": "立法者希望通过法律文本语言向社会传递其价值立场,而要准确理解和严格地遵守法律语言背后的价值立场,就需要对法律文本语言进行解释,以一般的、抽象的形式表达出来的法条,最终需要适用于特殊的具体个案。法官需要解决的一个前提性问题就在于,该具体情形是否属于一般性规定所涵摄的范围,而回答这一问题的过程本身就是一个解释的过程。\n\n这段文字着重强调的是:", "type": "单选题", "options": "A. 法律解释的必要性\nB. 法律文本应通俗易懂\nC. 法官应准确理解法条\nD. 法条适用个案需具体化", "choice": "A", "keypoints": "关联词-对策;行文脉络-总分", "most_wrong": "D", "human_count": 825517, "human_acc": 72.6528950948, "source": "2016年江苏省公务员录用考试《行测》题(A类)第28题", "difficulty": 4, "formulas": 0}, {"id": 2387756, "material": "", "question": "在21世纪,新能源必将取得快速发展正逐渐成为人们的共识。然而,从长远来看,解决人类能源需求的清洁技术路线不一定是现在占主导地位的这几种模式,新能源的研发与新型技术的进步仍然需要充分的资金支持。近年来,一些新能源技术路线受成本因素影响而被压制发展。因此,需要政府补贴来支持其初始阶段的发展。\n\n这段文字最可能讨论的是:", "type": "单选题", "options": "A. 是否应探索新能源技术路线\nB. 新能源技术路线是否需要调整\nC. 现阶段是否应取消新能源补贴\nD. 是否应加强对新能源市场的管理", "choice": "C", "keypoints": "关联词-对策;行文脉络-总分", "most_wrong": "B", "human_count": 1601118, "human_acc": 68.6192398062, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 2261518, "material": "", "question": "改革开放以来,我国史学发生了整体性变化,其中一个特征就是从以政治史为中心转向以社会史为中心。社会史尤其是社会文化史的研究需要特别关注人,不能只看到社会的变化而看不到人的变化。而在研究人的过程中,势必要运用心理学的理论和方法,探究人的心理特征和整个社会心理,唯有如此才能深化对社会史的研究。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 我国史学研究出现整体性范式转型\nB. 史学研究不能局限于阐述社会变化\nC. 心理学是深化史学研究的重要方法\nD. 人的心理状况属于史学研究的范畴", "choice": "C", "keypoints": "关联词-对策;行文脉络-总分", "most_wrong": "B", "human_count": 17097, "human_acc": 77.1772825642, "source": "2017年重庆市选调优秀大学生到基层工作考试《行测》题第37题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5460038, "material": "", "question": "让幼儿的童年生活更为友好,就要让幼儿过充实、有意义的生活。比如,在环境资源上更为友好,就会撤掉________的区角名称、规则公约,变成正向的吸引、邀请、包容、期待;让师幼关系更为友好,就会________与接纳儿童对世界的看法,读懂并支持儿童对世界的________与表达。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 固化 尊重 探索\nB. 稳定 迎合 理解\nC. 空洞 推崇 认知\nD. 板滞 认可 创造", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 247816, "human_acc": 83.6475449527, "source": "2023上半年省考第六季行测模考大赛(陕西卷)第40题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 748681, "material": "", "question": "唐宋元750年的历史时期,是中国古典绘画成长、成熟并走向繁盛的辉煌时期,各种典范性的风格和样式不断地被创造和衍生出来,其间开宗立派的名家风格,被后世画家奉为传承和发展的______和基点,后人遵从这些规范,并根据时代的需求和个人的才情,不断生发、变革和______,推出新的范本,从而使中国绘画掀起一波又一波师古开新的浪潮。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 圭臬 创新\nB. 范本 继承\nC. 精华 创造\nD. 楷模 延续", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 327428, "human_acc": 88.2627631113, "source": "2014年青海省公务员录用考试《行测》题第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 4576430, "material": "", "question": "所谓谦抑,就是有能力做而不做,就是做了必有效力但不做。国家公权力对公民个人间的轻微冲突都保持谦抑之态。这不是示弱的表现,更非无力的外露,而恰是保持________的必要之举。这种谦抑也是________之选,因为再强大的权力,也无力覆盖所有社会关系的调整,不得不在绝大多数社会关系的调整上让位于道德。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 戒备 明智\nB. 警示 实际\nC. 傲骨 被动\nD. 威慑 无奈", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 290851, "human_acc": 67.6456329873, "source": "2021下半年省考第三十三季行测模考大赛(四川卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 5745986, "material": "", "question": "文化不是________的雕塑,而是流动的活水,可水往哪个方向流,却是与现实的实践需要和社会制度密不可分的。因此,我们应当以当代中国的实践为思维________,用马克思主义这一指导思想来分析中国传统文化,进而对中华优秀传统文化进行创造性转化、创新性发展,不断推进马克思主义基本原理同中华优秀传统文化相结合。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 刻板 导向\nB. 不变 原点\nC. 静止 目标\nD. 凝固 坐标", "choice": "D", "keypoints": "词的辨析-固定搭配;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 5441, "human_acc": 16.5410770079, "source": "2023下半年省考第二十一季行测模考大赛(陕西卷)第27题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5708215, "material": "", "question": "基层工作千头万绪,如何将“千条线”拧成“一股绳”?我们习惯称旅团级单位机关为抓基层的“一线指挥部”,它处于承接上级、下贯营连的枢纽位置。故对于抓基层建设,离不开党委机关“输血”,更要尊重基层官兵的主体地位,增强基层自身“造血”功能。习主席在中央军委基层建设会议上强调:“要把指导帮建的着力点放在提高基层自建能力上,尊重基层工作安排权、人员使用权、财物支配权。”旅团级单位机关应坚持把工作重心放在基层,坚持党委负主责、主官负首责、机关合力抓,把指导帮建的着力点放在提高基层自建能力上,既要防止放任自流、不管不问,也要防止本位主义、用力过猛。\n\n这段文字意在说明,抓基层建设需要旅团级单位机关:", "type": "单选题", "options": "A. 做好“统”的工作\nB. 增强“放”的意识\nC. 加大“帮”的力度\nD. 保持“严”的势头", "choice": "B", "keypoints": "关联词-对策;程度词", "most_wrong": "A", "human_count": 96480, "human_acc": 34.8694029851, "source": "2023下半年省考第十七季行测模考大赛(四川卷)第32题", "difficulty": 7, "formulas": 0, "history": [{"id": 2139500, "material": "", "question": "现代企业要想在激烈的竞争环境中生存和发展,就必须要有营销意识。商业广告就是一种很重要的营销渠道,它为了说服顾客购买自己的产品,经常设法用一些响亮的名字和自身独特的功用,让消费者记住自己的品牌,久而久之使消费者产生一种购买的冲动。下列选项中,对这段话理解最为准确的一项是:", "type": "单选题", "options": "A. 现代企业必须要有营销意识\nB. 商业广告是一种很重要的营销渠道\nC. 商业广告就是要说服顾客买东西\nD. 企业之间竞争的核心是商业广告", "choice": "B", "keypoints": "关联词-对策;程度词", "most_wrong": "A", "human_count": 38506, "human_acc": 68.4256998909, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第45题", "difficulty": 3, "formulas": 0}, {"id": 4896420, "material": "", "question": "立足执法办案的第一要务是法院领导干部要将维护公平正义作为矢志不渝的追求,不仅要认真履行院庭长办案职责、用心用情地办理好每一起司法案件,更要针对教育整顿中发现的审判管理领域存在的痛点、堵点问题,加快完善司法监督制约体系,在更高层次实现权力与责任的平衡,公正与效率的统一。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 强化履职尽责推进教育整顿\nB. 司法监督应该更具有针对性\nC. 完善司法监督维护公平正义\nD. 执法办案要兼顾公平与效率", "choice": "C", "keypoints": "关联词-对策;程度词", "most_wrong": "D", "human_count": 22479, "human_acc": 57.4180346101, "source": "2023年国考第十七季行测模考大赛(行政执法类)第57题", "difficulty": 6, "formulas": 0}, {"id": 2144705, "material": "", "question": "街道老了必然面临改造的命运,但城市文化、城市味道未必不能保存和延续下来。仔细研究那些消失的地方特色美食、知名老店,会发现它们往往不是消失于“市场的选择”。对城市来说,不能只有看得见的光鲜、摸得着的利益、便于量化的经济增长指标,更需要市井的味道、城市的记忆、百姓的情感。这段文字意在强调(  )。", "type": "单选题", "options": "A. 老街是城市文化的重要载体\nB. 老街的消失是市场选择的结果\nC. 老街改造的理由不够充分\nD. 老街改造不能抹掉情感记忆", "choice": "D", "keypoints": "关联词-对策;程度词", "most_wrong": "A", "human_count": 430999, "human_acc": 81.5936927928, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第48题", "difficulty": 4, "formulas": 0}, {"id": 2035242, "material": "", "question": "人类对自然无节制地索求,在城市开发时忽略生态平衡保护,这是对候鸟一场无声无息的猎杀。这种“猎杀”比起猎杀、毒杀候鸟罪,负面效应其实毫不逊色。更大的问题是,那些猎杀、毒杀候鸟的犯罪,是被我们所警惕并谴责的,而另一种“猎杀”由于是看不见、静悄悄的,导致我们浑然不觉。而实际上,我们每个人,都可能是这场“猎杀”的旁观者,参与者。\n\n这段文字主要告诉我们:", "type": "单选题", "options": "A. 人类对自然的索取应该有所节制\nB. 每个人都在不知不觉中猎杀了候鸟\nC. 城市开发时要重视生态平衡的保护\nD. 警惕人类无声无息的“候鸟猎杀”", "choice": "D", "keypoints": "关联词-对策;程度词", "most_wrong": "C", "human_count": 440537, "human_acc": 45.4306902712, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第45题", "difficulty": 5, "formulas": 0}, {"id": 1679210, "material": "", "question": "人是生活在一定的社会场域之中的。从传播的角度看,一举手一投足,都是一种表达。观其行再晓其人,公众就是通过外在举止了解行为人的。举止代表什么意义,解释权往往不在自己,对于公众人物尤其如此。就拿前阵子某市领导打伞观看学生淋雨做操的事件来说,可能领导平时也是爱孩子的,到学校也不过是正常的工作,可对比画面凝固下来,传递出的形象就由不得他了。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 舆论对公众人物具有极其重要的作用\nB. 公众人物更容易暴露在舆论危墙之下\nC. 舆论主导的公众形象未必与公众人物自身相一致\nD. 公众人物更应注重自身形象", "choice": "D", "keypoints": "关联词-对策;程度词", "most_wrong": "C", "human_count": 477680, "human_acc": 35.8932758332, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第41题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 4490249, "material": "", "question": "人工智能已经________到各行各业,算法帮我们过滤掉垃圾邮件,给我们推荐可能喜欢的歌曲。2020年被认为是人工智能监管元年,美欧采取的监管路径____________。欧盟《人工智能白皮书》考虑为技术开发与应用设置严苛条件,美国《人工智能应用监管指南》提出的“轻监管”模式更多倚重标准、指南等弹性手段。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蚕食 相去甚远\nB. 贯穿 毫无二致\nC. 应用 差之千里\nD. 渗透 大相径庭", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 168646, "human_acc": 77.4326103198, "source": "2021下半年省考第二十七季行测模考大赛(北京乡镇卷)第42题", "difficulty": 4, "formulas": 0, "history": [{"id": 1002763, "material": "", "question": "相对于其他作品,史书有太多芜杂的琐碎记载,把主线_______得有些模糊不清。然而细节有细节的_______之处,因为虽然撰写史书的史官难免受到某些思维导向的影响,有意无意地隐此扬彼,但所谓“细节之中有魔鬼”,某个历史人物的性格总会在一些细节之中_______。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遮蔽 精妙 若隐若现\nB. 隐藏 奇巧 跃然纸上\nC. 衬托 精彩 昭然若揭\nD. 叙述 可爱 露出马脚", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 2591869, "human_acc": 53.745077394, "source": "2015年国家公务员录用考试《行测》题(省部级)第38题", "difficulty": 5, "formulas": 0}, {"id": 4100392, "material": "", "question": "国际关系研究主题日趋丰富。一方面,传统议题研究____________,如国家主权、国家安全、国家利益、时代主题、国际格局、国际体系等方面的研究角度不断扩展;另一方面,新议题不断涌现,如全球治理、新型国际关系等方面研究受到关注。由此,中国学者在研究方法方面呈现多元多样特点,既有对传统人文方法的________,也有对大数据等新方法的尝试。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 与时俱进 效仿\nB. 陈陈相因 赓续\nC. 一脉相承 借鉴\nD. 推陈出新 沿袭", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 176720, "human_acc": 52.7246491625, "source": "2021下半年省考第二十季行测模考大赛(陕西卷)第29题", "difficulty": 6, "formulas": 0}, {"id": 5077013, "material": "", "question": "“元宇宙”这一概念诞生于科幻小说《雪崩》,它在2021年爆红,引发了人们对未来虚拟世界的无限畅想,同时也在资本市场掀起一波高潮。值得________的是,想象中的元宇宙还没来,各种打着元宇宙旗号的投资泡沫____________,催生出一系列怪现象。金融专家提醒,金融投资若没有实体经济的支撑,很容易就成为____________,一旦泡沫被戳破,只怕会一地鸡毛。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 反思 悄然兴起 无源之水\nB. 警惕 不请自来 空中楼阁\nC. 提防 应运而生 过眼云烟\nD. 留心 大行其道 黄粱一梦", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 104048, "human_acc": 70.0936106412, "source": "2022下半年省考第一季行测模考大赛(安徽卷)第43题", "difficulty": 4, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4840071, "material": "", "question": "汉字之美不仅体现在汉字自身,更体现于汉字与其载体的构成关系上。比如,史前刻画符号多集中在器物外口沿、上腹、正中、圈足底部等,也有些居于器物的柄部、容器的流部,均以特定器体的中轴线为参照。即便是玉琮、玉璧等礼器,也从其形体出发,选取最利于人们观察的部位,使符号成为视觉焦点。春秋战国时期,越国剑器铭文造型与剑身、剑格、剑首浑然一体,铭文采用错金银与镶嵌工艺,更是锦上添花。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 汉字的价值不能仅仅依靠汉字自身来传递\nB. 利用不同的器物可展现出不同的汉字之美\nC. 汉字之美不在于字体本身而在于“精神”\nD. 器物与汉字的结合更能演绎出独特的美感", "choice": "D", "keypoints": "行文脉络-总分;程度词", "most_wrong": "B", "human_count": 368487, "human_acc": 69.7457440832, "source": "2022上半年省考第十三季行测模考大赛(广东乡镇卷)第6题", "difficulty": 4, "formulas": 0, "history": [{"id": 2030122, "material": "", "question": "对于淡水资源的管理,政通人和比天时地利更重要。发表于《环境研究通讯》上的最新研究分析了119个低收入国家与淡水供应管理相关的19种因素。结果显示,政府监管不力会显著增加水资源供应的脆弱性,而先天水资源不足的国家假如有好的制度保障,爆发水危机的风险可大幅降低。\n\n以下选项中,最能概括这段文意的是:", "type": "单选题", "options": "A. 水资源管理的重要因素\nB. 水资源稀缺的主要原因\nC. 低收入国家的水资源管理\nD. 水资源的管理与制度相关", "choice": "D", "keypoints": "行文脉络-总分;程度词", "most_wrong": "A", "human_count": 588654, "human_acc": 75.2122639105, "source": "2016年四川省公务员录用考试《行测》题(下半年)第43题", "difficulty": 5, "formulas": 0}, {"id": 1685818, "material": "", "question": "一条“河北有条中国式66号公路,美到灼伤双眼”的帖子,引起人们的强烈关注和热烈转发,更引发京城自驾游一族周末前往这条草原天路的激情。据了解,这条草原天路全长132.7公里,2011年建成,是连接崇礼滑雪温泉大区和张北草原风情大区的一条重要道路,沿线山高坡陡、沟壑纵深、景观奇峻,展开了一幅百里坝头风景画卷。\n\n这段文字主要描述的是:", "type": "单选题", "options": "A. 66号公路的美\nB. 网络帖子的力量\nC. 草原天路的基本情况\nD. 自驾游青睐草原天路", "choice": "D", "keypoints": "行文脉络-总分;程度词", "most_wrong": "C", "human_count": 346030, "human_acc": 18.2148946623, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第23题", "difficulty": 7, "formulas": 0}, {"id": 1796244, "material": "", "question": "大数据是指规模极其巨大,以致很难通过一般软件工具加以获取、管理、处理并整理成为有用资讯的海量数据。其具有大量、高速、多样和价值密度低四个特点,被认为是人类新世纪的“新财富”,价值“堪比石油”,发达国家纷纷将开发利用大数据作为夺取新一轮制高点的重要目标,就是个明证。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 大数据在处理上还存在技术难度\nB. 大数据背后隐藏着巨大的价值\nC. 发达国家在开发利用大数据上已经先行一步\nD. 开发利用大数据已成为国家竞争的一个热点", "choice": "B", "keypoints": "行文脉络-总分;程度词", "most_wrong": "D", "human_count": 1602289, "human_acc": 79.9041870724, "source": "2016年423联考《行测》题(贵州卷)第50题", "difficulty": 5, "formulas": 0}, {"id": 2139476, "material": "", "question": "成功不是衡量人生价值的最高标准,比成功更重要的是,一个人要有丰富的内在,有自己的真性情和真兴趣,有自己真正喜欢做的事。只要你有自己真正喜欢做的事,你就在任何情况下都会感到充实和踏实。那些仅仅追求外在成功的人实际上是没有真正喜欢做的事,他们真正喜欢的只是名利,一旦在名利场上受挫,内在的空虚就暴露无遗。这段文字的主旨是:", "type": "单选题", "options": "A. 成功就是做好自己喜欢做的事\nB. 人生价值的最高标准难以确定\nC. 追逐名利的人是得不到成功的\nD. 兴趣是人们得到幸福的源泉", "choice": "A", "keypoints": "行文脉络-总分;程度词", "most_wrong": "D", "human_count": 97227, "human_acc": 54.6946835756, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第26题", "difficulty": 5, "formulas": 0}, {"id": 2050704, "material": "", "question": "作为世界上第一部关于农业和手工业生产的综合性科技著作,《天工开物》十分重视理论阐述,而非单纯的技术描述,否则比之那些食谱、棋谱高明不了多少。有专家认为:“《天工开物》不只是中国,而且是整个东亚的一部代表性技术书,其包罗技术门类之广是欧洲技术书无法比拟的。”\n\n根据这段文字,可以看出《天工开物》与食谱、棋谱最本质的区别在于:", "type": "单选题", "options": "A. 前者为技术书,后者为工具书\nB. 前者重在逻辑,后者重在说明\nC. 前者重视理论,后者重视技术\nD. 前者是科技著作,后者是操作规程", "choice": "C", "keypoints": "行文脉络-总分;程度词", "most_wrong": "D", "human_count": 786173, "human_acc": 71.1381591584, "source": "2017年422联考《行测》题(宁夏卷)第86题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 826057, "material": "", "question": "石油峰值论认为,石油产量会达到最高点,之后不可避免地开始下降。石油峰值几乎是确定的事,但仍然存在两个问题:它究竟何时出现?世界是否能够及时研发出替代能源?_________的观察家并不相信石油峰值会在2020年前出现,但一些石油公司承认他们此前夸大了地下的石油储量。因此,这更引起人们的_________:我们可能已经过了这个峰值。", "type": "单选题", "options": "A. 激进 争议\nB. 理智 恐慌\nC. 乐观 担忧\nD. 冷静 怀疑", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 731450, "human_acc": 67.8451021943, "source": "2014年四川省公务员录用考试《行测》题(下半年)第20题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2604033, "material": "", "question": "即使在当代印度,考古学家们对一些城池位置、寺院遗址的确定,仍以《大唐西域记》为指南,因此,此书在印度____________。《大唐西域记》的叙事沿袭了中国史书作品中的地域志模式,但较之更加________,不仅有宗教文化、政治生活方面的叙述,而且还简述了山川水文、气候物产、风俗语言等。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 路人皆知 全面\nB. 闻名遐迩 详尽\nC. 声名远播 准确\nD. 享誉中外 丰富", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 340811, "human_acc": 45.1514182347, "source": "2021年国考第十季行测模考大赛(副省级)第30题", "difficulty": 6, "formulas": 0, "history": [{"id": 5389874, "material": "", "question": "由于修订后的《网络安全审查办法》进一步明确了法律责任,因此能________相关责任主体主动履行网络安全审查义务,以积极作为切实提高网络和数据的安全保障水平。相关职责部门要以抓铁有痕和踏石留印的决心与勇气,____________地让其应声而落。如此,才能“以最严格的制度,最严密的法治”,为我国网络安全和数据安全构筑起____________的保护墙,进而护佑国家安全。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 促进 不遗余力 铜墙铁壁\nB. 迫使 持之以恒 固若金汤\nC. 激励 彻头彻尾 坚不可摧\nD. 倒逼 不折不扣 牢不可破", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 347858, "human_acc": 68.6662373727, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第70题", "difficulty": 4, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5493095, "material": "", "question": "“领军型”工程师是科技领军人才中的主力军,是全球极为稀缺的优质人力资源。目前我国对“领军型”工程师的培养模式相对________,主要依托“双一流”大学,由国家“自上而下”推进,人才类型差异化不太明显。但是产业结构的__________,需要前瞻性布局各具特色、各种类型的“领军型”工程师的培养。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 简单 前瞻性\nB. 局限 专业性\nC. 笼统 多元化\nD. 单一 多样性", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 41373, "human_acc": 88.3353878133, "source": "2023上半年省考第九季行测模考大赛(西藏卷)第1题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5368951, "material": "", "question": "________逆向翻译的译者毕竟是在用外语进行写作,其思维习惯不可避免会受到母语的影响,致使译文不能准确传达原文意思,或者表达方式生硬、别扭、不自然,________让目标语读者感到不知所云。________,必须充分认识逆向翻译中的这些问题,有效避免劣质译本的产生,否则会阻碍中国声音的有效传播。________那种可读性不强的译本会让读者望而却步,其造成的社会影响会妨碍好译本的传播和推广。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因为 或者 所以 因为\nB. 因为 甚至 因此 并且\nC. 由于 并且 因此 并且\nD. 由于 甚至 所以 因为", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-因果关系", "most_wrong": "B", "human_count": 2464, "human_acc": 63.6363636364, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第64题", "difficulty": 4, "formulas": 0, "history": [{"id": 4597434, "material": "", "question": "生育补贴的另一个值得关注的问题在于,它有可能在地域上造成人口出生的“马太效应”——越是财政宽裕的地方,越有条件出台刺激措施,________越是可以吸引有生育意愿的人,________带来持续的人口红利;相反,财政吃紧的地方,无力出台相关刺激生育的措施,不可避免地,人口流失、出生率下降就将成为长期趋势。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 因而 同时\nB. 并且 或者\nC. 从而 进而\nD. 那么 及其", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-因果关系", "most_wrong": "A", "human_count": 28308, "human_acc": 88.187084923, "source": "2021下半年省考第三十四季行测模考大赛(深圳卷)第61题", "difficulty": 3, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 2595682, "material": "", "question": "当今社会各种问题的高度复杂化、专业化致使学科划分越来越________,但同时,各种跨学科的研究也____________,衍生出许多新的学术增长点。两种趋势看似矛盾,但众多实践证明,二者完全能够____________,共同促进当代学术研究发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 精细 风生水起 殊途同归\nB. 严格 势在必行 相辅相成\nC. 模糊 如日中天 并行不悖\nD. 具体 家喻户晓 旗鼓相当", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 278472, "human_acc": 54.5595248355, "source": "2021年国考第九季行测模考大赛(副省级)第34题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3826896, "material": "", "question": "只要真心实意地施善行善,再小的善意,都值得尊敬。相反,为善而“善”,连真实性都成了问题,更遑论让正能量____________?古人云,勿以善小而不为,勿以恶小而为之。真正的行善之道,要____________,要身体力行。做到了这两点,才是对正能量的传播,对主旋律的弘扬。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如沐春风 名副其实\nB. 深入人心 无所不为\nC. 蔚然成风 不遗余力\nD. 成风化人 问心无愧", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 107210, "human_acc": 44.6021826322, "source": "2021下半年省考第十五季行测模考大赛(陕西卷)第31题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2724056, "material": "", "question": "一些历史古城,有的虽然早就湮灭在黄沙之中,但是,其遗留的遗址却散发着________的文化艺术幽光。现在,章学锋采用“串糖葫芦”的方法,把这些历史遗迹运用自己细致而准确的笔触________出来,发掘出其丰富多彩的文化内涵,这对我们重新认识和________历史具有很大的积极意义。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 动人 描摹 理解\nB. 迷人 勾画 学习\nC. 永久 描绘 领悟\nD. 永恒 勾勒 了解", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 125981, "human_acc": 12.4852160246, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第35题", "difficulty": 7, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5235973, "material": "", "question": "现今表情包如此流行,使得教学制作表情包的课程也____________。尽管如此,这种修辞方式无法扩展到某些____________的文本。人们很难想象,哪些表情包可以插入经济状况蓝皮书或者鉴定一个人品行的档案材料,这种修辞方式仅仅徘徊于文化的边缘而无法涉猎正统的思想和学术。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如火如荼 高文典册\nB. 大放异彩 汗牛充栋\nC. 异军突起 浩如烟海\nD. 应运而生 举足轻重", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-因果关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 143111, "human_acc": 50.1659550978, "source": "2022下半年省考第八季行测模考大赛(深圳卷)第67题", "difficulty": 6, "formulas": 0, "history": [{"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4653981, "material": "", "question": "我们都知道喝茶好,茶的种类____________,且不同的茶有不同的功效和茶性,但是喝茶也会“____________”。茶叶中的咖啡碱有兴奋神经中枢的作用,摄入越多,人越兴奋,睡觉前或者失眠时喝茶甚至会“____________”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 琳琅满目 弄巧成拙 助纣为虐\nB. 不胜枚举 得不偿失 作茧自缚\nC. 不一而足 过为已甚 推波助澜\nD. 五花八门 过犹不及 雪上加霜", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 72272, "human_acc": 71.3941775515, "source": "2021下半年省考第三十八季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5732041, "material": "", "question": "①追溯食品安全问题形成和发展的脉络,不难发现食品安全不仅关乎技术,也关乎社会意识\n\n②在生活中,通过传播正确的食品安全理念,可以让身边人增强食品安全意识、远离不安全食品\n\n③客观来说,自从人类诞生之日起,食品安全问题就已经产生并发展\n\n④构建浓厚的食品安全社会共治氛围,有赖于食品安全知识的普及传播,也有赖于公众自觉尊法守法,提高维权能力和科学素养\n\n⑤正因如此,宣传食品安全有必要突出人人有责、共治共享的理念\n\n⑥一条错误的食品安全知识,可能通过影响更多人而造成更大范围的危害\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ①②⑥③⑤④\nB. ②③①④⑤⑥\nC. ③①⑤②⑥④\nD. ④⑤③②①⑥", "choice": "C", "keypoints": "尾句特征;确定顺序", "most_wrong": "A", "human_count": 117385, "human_acc": 59.5859777655, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 2452717, "material": "", "question": "①文化是每个民族每个国家的生命体现\n\n②文化的积淀是一个社会、一个民族最可宝贵的精神财富\n\n③“不同”“多元”是社会发展的必然,更是现代社会文明进步的标志\n\n④如若所有的民族、所有的国家都强求一律,很可能导致人类文明僵化衰落\n\n⑤中国道路的成功充分说明,各个国家必须根据自己的国情建设精神家园\n\n⑥中国有句古话说得好,“和实生物,同则不继”\n\n将以上6个句子重新排列,语序最恰当的是", "type": "单选题", "options": "A. ②⑤④⑥③①\nB. ⑥②③④⑤①\nC. ③⑥④①②⑤\nD. ④⑥①⑤②③", "choice": "C", "keypoints": "尾句特征;确定顺序", "most_wrong": "B", "human_count": 1057850, "human_acc": 46.9145909155, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 27403, "material": "", "question": "为下列句子排列顺序,使其意思连贯。正确的一项是:\n\n①面对身边诸多纠结,多一点智慧和勇气,保持一份平和心态,可助我们削弱“纠结”的纠缠\n\n②随着现代生活节奏的加快,生活压力的增大,“纠结”的事越来越多\n\n③如今,随着信息技术的快速发展,“纠结”一词率先在网络上爆红,不但使用率颇高,而且使用更加广泛灵活\n\n④纠结的本意就是“相互缠绕”,常作动词用。语出唐代诗人李白的《古意》一诗:“枝枝相纠结,叶叶竞飘扬。”", "type": "单选题", "options": "A. ③②④①\nB. ③④①②\nC. ②①④③\nD. ②④③①", "choice": "D", "keypoints": "尾句特征;确定顺序", "most_wrong": "A", "human_count": 417327, "human_acc": 39.5133791966, "source": "2012年河北省公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}, {"id": 5430268, "material": "", "question": "①建议从事童书出版的机构聘请心理学、教育学、出版学等相关领域专家共同把关,为儿童读物筑牢安全防线\n\n②童书出版有必要设立严格门槛\n\n③童书出版需要认定资质、配备专业编辑,目前在这方面尚有欠缺\n\n④我国现有专业少儿出版社30多家,随着市场需求增长,少儿出版的队伍不断壮大\n\n⑤童书正在从原来的专业出版变为大众出版\n\n⑥目前全国583家出版社,参与少儿出版的已经超过550家\n\n将以上6个句子重新排序,语序正确的一项是:", "type": "单选题", "options": "A. ③②①④⑥⑤\nB. ④⑥⑤②③①\nC. ⑤④③⑥①②\nD. ⑥②①④⑤③", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "A", "human_count": 687167, "human_acc": 76.9782309104, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第62题", "difficulty": 4, "formulas": 0}, {"id": 4997752, "material": "", "question": "①所有人都可以参与评论,人人皆是评论家\n\n②甚至将部分创作引入“注重流量、数量却忽略质量”的误区\n\n③融媒体环境下,人们观看电视剧的方式变了,电视剧艺术评论生产传播的样态也发生了深刻变化\n\n④在这种背景下,文艺评论更需要具有理论底蕴的引导,需要“边界”和“标准”\n\n⑤然而,每一位主体的视角不同,发出的声音是多样的,有时甚至是喧嚣的\n\n⑥这在一定程度上影响了电视剧的创作生产逻辑\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①⑤⑥②④\nB. ①④⑤⑥③②\nC. ③⑥⑤①②④\nD. ⑤⑥③①②④", "choice": "A", "keypoints": "尾句特征;确定顺序", "most_wrong": "C", "human_count": 271823, "human_acc": 89.3415936105, "source": "2022上半年省考第二十季行测模考大赛(陕西卷)第50题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"]]}, {"id": 3522681, "material": "", "question": "一车救灾物资从早上8点起开始运往1900公里外的某地,白天平均车速80公里/小时,夜间60公里/小时(假定8:00到18:00为白天,其他时段为夜间),司机每驾驶2小时必须休息20分钟,且每名司机每天驾驶时间不能超过8小时(00:00后即为新的一天)。问车上至少应配备几名司机且至少要用多长时间才能抵达该地?", "type": "单选题", "options": "A. 3名;27小时15分\nB. 3名;27小时25分\nC. 4名;33小时30分\nD. 4名;33小时40分", "choice": "A", "keypoints": "普通行程;非典型最值问题", "most_wrong": "B", "human_count": 838531, "human_acc": 23.8319155762, "source": "2021年甘肃公务员录用考试《行测》题(网友回忆版)第59题", "difficulty": 5, "formulas": 0, "history": [{"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 1129961, "material": "", "question": "大学生进行9天野营拉练,晴天每天走32千米,雨天每天走25千米,一共走了274千米,则拉练期间雨天的天数是:", "type": "单选题", "options": "A. 1\nB. 4\nC. 5\nD. 2", "choice": "D", "keypoints": "普通行程", "most_wrong": "C", "human_count": 30941, "human_acc": 87.001066546, "source": "2010年江苏省公务员录用考试《行测》题(C类)第26题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 4648902, "material": "", "question": "在丰裕社会的我们看来,采摘似乎就是收获——从人工种植的作物之上________具有价值的成果。然而采摘悠远的历史却揭示着它更为复杂的行为________:收获只是采摘过程一个理想化的结果,采摘事实上是人类主体在接触自然、改造自然时一个包含________、挑选、累积等诸阶段的行为过程。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 撷取 链条 搜寻\nB. 采撷 程序 过滤\nC. 占有 本质 辨识\nD. 攫取 动机 收集", "choice": "A", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 95196, "human_acc": 58.5717887306, "source": "2021下半年省考第三十七季行测模考大赛(四川卷)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 3532746, "material": "", "question": "新时代的“中国精神”是具象化的,而不是________的。它深深植根于中华民族几千年的文化之中。________系统思维,坚持从全局、整体上把握事物,坚持从运动的、________的角度把握事物的性质状态,就能真实地反映客观世界的复杂性,从而助力“中国精神”化为改造客观世界的坚实力量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 虚无 坚持 发展\nB. 抽象 尊崇 传承\nC. 形象 崇尚 蜕变\nD. 笼统 秉持 演化", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 49576, "human_acc": 22.6722607713, "source": "2021下半年省考第二季行测模考大赛(通用卷)第38题", "difficulty": 7, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 5105839, "material": "", "question": "某县多家无证幼儿园在与正规幼儿园争抢生源,正规幼儿园在竞争中屡屡败下阵来,无证办学机构“什么资质都没有”反而具有“成本优势”,进而________杀价,正规办学机构真是“吃不消”。说到底,这关系到当地众多义务教育阶段的学生及其家庭的切身权益,相关部门不能稀里糊涂,必须____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽情 对症下药\nB. 盲目 抽丝剥茧\nC. 恶性 追本溯源\nD. 肆意 正本清源", "choice": "D", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 99353, "human_acc": 80.1707044578, "source": "2022下半年省考第二季行测模考大赛(四川卷)第20题", "difficulty": 4, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5453868, "material": "", "question": "海洋,________是一个广阔深邃的生命家园,________是一个物竞天择的拥挤战场。生存竞争激烈而残酷,________高明的“骗子”常常能够胜过鲁莽的“斗士”。无数海洋动物________化身为天才演员,花样百出地模仿栖息环境乃至其他生物,以此隐匿自己或是威慑强大的天敌。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 既 又 然而 但是\nB. 由于 因此 又 只能\nC. 既 且 但 因此\nD. 不仅 也 即使 也", "choice": "C", "keypoints": "关联关系-转折关系;关联关系-并列关系;关联关系-因果关系", "most_wrong": "D", "human_count": 949, "human_acc": 79.4520547945, "source": "2023上半年省考第五季行测模考大赛(深圳卷)第64题", "difficulty": 4, "formulas": 0, "history": [{"id": 5446692, "material": "", "question": "西方人追求透视,追求立体,其实追求的是几何化、物理化的观念世界,想把完美的理想、纯形式搬到现实中来。________完整不变的宇宙模型,或者说这一观念在20世纪爱因斯坦提出相对论的时候就被打破了。宇宙大爆炸理论告诉我们,宇宙________一个完整的模型,________爆炸所产生的,它可以产生,也可以毁灭。在此背景下,人们发现,似乎可以借助中国传统文化,________世界是自然的,“人法地,地法天,天法道,道法自然”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 甚至 不是 而是 由于\nB. 甚至 既是 也是 由于\nC. 但 不是 而是 因为\nD. 但 既是 也是 因为", "choice": "C", "keypoints": "关联关系-转折关系;关联关系-并列关系;关联关系-因果关系", "most_wrong": "A", "human_count": 658, "human_acc": 85.8662613982, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第64题", "difficulty": 4, "formulas": 0}, {"id": 5676245, "material": "", "question": "依次填入下列划线处的关联词,与句意最贴切的一组是________。\n\n(1)有一些鸟,特别是喜鹊,喜欢把巢筑在通讯基站上和高压塔上,这给都市带来赏心悦目的风景,________同时又给通讯发射和供电安全带来了隐患。\n\n(2)我们应先普遍了解情况,________重点征求意见,这样我们提高服务质量才有充分的依据。\n\n(3)小林报考医学院的意向依然不变,尽管当前医患矛盾十分突出,________医生的待遇也并不是很好。\n\n(4)经过多年的摸索,终于找到了这种类型流感的病因,________为彻底战胜这种流感创造了条件。", "type": "单选题", "options": "A. 然而 进而 从而 而且\nB. 而且 进而 然而 从而\nC. 然而 从而 进而 而且\nD. 然而 进而 而且 从而", "choice": "D", "keypoints": "关联关系-转折关系;关联关系-并列关系;关联关系-因果关系", "most_wrong": "A", "human_count": 161, "human_acc": 95.652173913, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第4题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 5028974, "material": "", "question": "猫是人类最早________的动物之一,然而它也从未太过迁就和顺从人类。猫大概认定,自己一旦________于人类,人类必将变得傲慢无礼,所以在与人交往时,它偏要与人争得个平起平坐。而人呢,也因为无法完全俘获猫而愈发地想要占有它、爱它,爱猫酷爱自由的个性,也爱它遗世独立的________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 接触 听命 禀性\nB. 豢养 相守 特性\nC. 调教 屈从 习性\nD. 驯化 臣服 品性", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-因果关系;实词填空", "most_wrong": "C", "human_count": 140307, "human_acc": 67.5604210766, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2671252, "material": "", "question": "艺术的归宿是无形的历史印记,不应因其被________还是蒙尘而松动。在探讨优劣之时,更应主动跳出“表象化”的________,让植入时代特征的文艺作品释放最大善意。不论是“阳春白雪”,还是“下里巴人”,正如荷兰画家梵高所说:“没有什么是不朽的,包括艺术本身。唯一不朽的,是艺术所传递的对人和世界的理解。”\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 推崇 鸿沟\nB. 青睐 窠臼\nC. 追捧 牢笼\nD. 认可 藩篱", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;实词填空", "most_wrong": "C", "human_count": 34213, "human_acc": 39.0377926519, "source": "2020年下半年省考第十季行测模考大赛(天津卷)第12题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 161445, "material": "", "question": "相对于政府公关,民间外交更具柔性,传播内容和载体更易于被接受,更能达到“润物细无声”的效果。当前,越来越多外国民众来华参观访问,中国越来越多的公民走出国门,网络媒体的发展也使普通公众更易影响舆论。因此要因势利导,通过新闻媒体、社区组织、民间社团等渠道,引导国内公众主动配合公共外交,积极传播中国的文化传统和价值理念,维护国家形象。\n\n这段文字意在强调的是:", "type": "单选题", "options": "A. 民间外交与政府公关的差别\nB. 民间外交在国际交往中的意义\nC. 应引导民间外交积极发挥作用\nD. 媒体应在国际交往中正确引导公众", "choice": "C", "keypoints": "关联词-对策;关联词-因果", "most_wrong": "D", "human_count": 1943398, "human_acc": 82.4217684695, "source": "2014年国家公务员录用考试《行测》题第41题", "difficulty": 5, "formulas": 0, "history": [{"id": 253569, "material": "", "question": "夏天少数人为贪图凉爽,早餐以冷饮代替豆浆和牛奶,这种做法在短时间内不会对身体产生影响,但长期如此会伤害“胃气”。在早晨,身体各系统器官还未走出睡眠状态,过多食用冰冷的食物,会使体内各个系统出现挛缩及血流不顺的现象。所以早饭时应首先食用热稀饭、热豆浆等热食,然后再吃蔬菜、面包、水果和点心等。\n\n这段文字主要谈的是:", "type": "单选题", "options": "A. 夏天吃早餐的重要性\nB. 夏天早餐喝冷饮的危害\nC. 夏天早餐应吃什么食物\nD. 夏天吃早餐的注意事项", "choice": "D", "keypoints": "关联词-对策;关联词-因果", "most_wrong": "C", "human_count": 34418, "human_acc": 46.1706084026, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第40题", "difficulty": 5, "formulas": 0}, {"id": 2256389, "material": "", "question": "移风易俗殊为不易,更无法一蹴而就、一劳永逸。近年来,一些地方纷纷发文限制天价彩礼,但效果不彰。事实证明,单靠一纸禁令,难以改变传统心理或激活当事人的道德自觉。因此,除了善于激发深蕴于乡土熟人社会中的道德力量,还应因地制宜、因时制宜,在创新中做好教育引导、实践养成、制度保障。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 应采取有效措施限制天价彩礼\nB. 移风易俗的困境\nC. 倡导年轻人树立正确的婚姻观和价值观\nD. 激活“零彩礼”背后的乡风文明", "choice": "A", "keypoints": "关联词-对策;关联词-因果", "most_wrong": "D", "human_count": 42382, "human_acc": 42.3458071823, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第21题", "difficulty": 5, "formulas": 0}, {"id": 2172339, "material": "", "question": "传统手工艺从来都不是完全浪漫化的存在,不是建立在空中楼阁上,而是存活在一个由生产、传播到消费的经济链条上,并由此形成了一个手工艺职业群体和一套行业体系。脱离了消费市场的手工艺无疑很难生存下去。所以,在当代社会,对手工艺的关注和推广依然要注意挖掘其生存的土壤,探讨其拓展的途径,不能沉浸于对民间文化过分理想化的想象和迷恋之中。\n\n这段文字重在说明", "type": "单选题", "options": "A. 传统手工艺的当代发展\nB. 传统手工艺的历史渊源\nC. 振兴传统手工艺的策略\nD. 发展传统手工艺的误区", "choice": "C", "keypoints": "关联词-对策;关联词-因果", "most_wrong": "A", "human_count": 1341783, "human_acc": 60.1003291888, "source": "2018年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 5483943, "material": "", "question": "构建和完善了中国特色社会主义法律体系之后,执行实施和适用法律规范的人员就是决定因素。如何将“死”的法律制度规定变成“活”的法治社会治理效果,努力让人民群众在每一项执法决定中感受到公平正义,这就对法治队伍建设和执法人员的复合型治理能力提出了很高的要求,因而也就要系统性、渐进性地抓好法治工作人员的现代化治理能力培养。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 中国特色社会主义法治理论取得的创新\nB. 加强社会主义法治队伍能力建设的意义\nC. 实现法律效果与社会效果走向统一的目标\nD. 以人民为中心是中国式法治现代化的根本", "choice": "B", "keypoints": "关联词-对策;关联词-因果", "most_wrong": "C", "human_count": 52471, "human_acc": 89.5713822874, "source": "2023年北京市公务员录用考试《行测》题(网友回忆版)第31题", "difficulty": 4, "formulas": 0}, {"id": 453797, "material": "", "question": "工业革命开始以后,化石燃料(煤炭、石油、天然气)的燃烧量越来越大,使大气中二氧化碳的浓度不断增加。同时,雷击、虫害、砍伐造成的森林火灾、草地衰退和森林破坏也使能够吸收二氧化碳的绿色植物遭到破坏。所以,要控制全球变暖,必须改变能源结构,大力植树造林。有科学家指出,只有以核燃料代替化石燃料,才能从根本上防止温室效应的加剧。\n\n这段文字意在:", "type": "单选题", "options": "A. 探讨全球气候变暖现象出现的主要原因\nB. 强调核能在防止温室效应加剧中的关键作用\nC. 阐明大气层中二氧化碳含量上升的巨大危害\nD. 呼吁人们改变能源结构并大力植树造林", "choice": "D", "keypoints": "关联词-对策;关联词-因果", "most_wrong": "B", "human_count": 585863, "human_acc": 70.9152139664, "source": "2014年广东省公务员录用考试《行测》题(县级以上)第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 4652271, "material": "", "question": "消费决策是指人们根据自己的消费需要,在一定的收入和其他消费环境的约束下,为了实现一定的消费目标而作出关于消费层次、消费方式、消费途径、消费范围等方面的决定或方案。\n\n根据上述定义,以下哪种行为不属于消费决策?", "type": "单选题", "options": "A. 大学生小李没有时间逛街,因此喜欢在网上买东西\nB. 某公司采购员计划与供应商签订乙烯采购合同\nC. 在朋友的推荐下,小王选择购买某款高性价比的入门级单反相机\nD. 某老师决定在学生毕业前自费为他们每人买一本书", "choice": "B", "keypoints": "方式目的;大前提", "most_wrong": "D", "human_count": 628647, "human_acc": 61.8191131112, "source": "2022年北京市公务员录用考试《行测》题(网友回忆版)第106题", "difficulty": 5, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"], ["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 5761220, "material": "", "question": "A、B两地分别在河流的上游和下游,相距18千米,甲、乙在静水中划船的速度分别为每小时12千米和9千米。同时岸上有一条公路连接A、B两地,长度为27千米,甲开车的速度为36千米/时。甲从A地出发沿公路开车到B地后立刻划船返回A地,用时2小时45分钟,乙从A地出发划船到B地后立即沿公路开车返回A地,用时2小时30分钟。则乙开车的速度为每小时多少千米?(两人换乘的时间均忽略不计)", "type": "单选题", "options": "A. 27\nB. 30\nC. 32\nD. 36", "choice": "A", "keypoints": "普通行程;流水行船", "most_wrong": "C", "human_count": 133170, "human_acc": 14.3305549298, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第56题", "difficulty": 7, "formulas": 0, "history": [{"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1129961, "material": "", "question": "大学生进行9天野营拉练,晴天每天走32千米,雨天每天走25千米,一共走了274千米,则拉练期间雨天的天数是:", "type": "单选题", "options": "A. 1\nB. 4\nC. 5\nD. 2", "choice": "D", "keypoints": "普通行程", "most_wrong": "C", "human_count": 30941, "human_acc": 87.001066546, "source": "2010年江苏省公务员录用考试《行测》题(C类)第26题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 2049308, "material": "", "question": "纵观现代化历程,中国改革一直是在争论中推进的,之所以能够顺利推进并取得举世瞩目的成就,就是因为主流意识形态具有强大的________力量,总是能够超越左与右,促使社会形成新的共识。而主流意识形态有这样强大的力量,恰恰是从不同社会思潮中汲取智慧,而不是______________的“任性”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 吸收 泥古不化\nB. 平衡 剑走偏锋\nC. 整合 刚愎自用\nD. 柔化 恃才放旷", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 1604600, "human_acc": 74.598342266, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第8题", "difficulty": 4, "formulas": 0, "history": [{"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5401289, "material": "", "question": "凭个人爱憎或感情冲动看待和处理事情,在现实中多半被认为是一个人不________的表现,而以形象思维为主的文学创作,其思维过程却常常伴随________活动。文学家与一般人在天赋或曰天性上的差异,大半就在于能否对万事万物“感情用事”,能否____________地体察万物。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独立 感性 将心比心\nB. 稳重 虚构 设身处地\nC. 理智 主观 细致入微\nD. 成熟 情感 感同身受", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 300916, "human_acc": 75.8597083571, "source": "2023年国考第四十七季行测模考大赛(副省级)第31题", "difficulty": 4, "formulas": 0, "history": [{"id": 5493104, "material": "", "question": "从《诗经·大雅·抑》“质尔人民,谨尔侯度,用戒不虞”,到孔子“仁者,爱人”,再到张载“为天地立心,为生民立命”······这些爱民、富民、保民、养民、利民的民本思想,虽然____________,但皆是一个“民”字贯穿其中,终而殊途同归,源源不断________中华传统文化的历史长河,泽被后世,成为我们继续前行的不竭力量。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 大相径庭 融入\nB. 百家争鸣 汇入\nC. 不一而足 注入\nD. 流派纷呈 纳入", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 42796, "human_acc": 65.6813720908, "source": "2023上半年省考第九季行测模考大赛(四川卷)第13题", "difficulty": 4, "formulas": 0}, {"id": 410475, "material": "", "question": "在中国人心目中,“圣人”是道德修养的楷模。中国人尤其是知识分子,往往以君子_____,却不以圣人______。可见圣人的道德境界是一种崇高的理想,圣人也就只是人们心目中的崇拜偶像。______,圣人的道德境界,也不是天生的,而是一点一滴积累起来的。荀子认为,圣人不仅是崇拜的偶像,普通人也能经过坚持不懈的实践,从日常生活中不断地积累德行,提高自己的道德修养,达到尽善尽美的境地,成为一个圣人。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自称 自居 因此\nB. 自居 自夸 其次\nC. 自封 标榜 所以\nD. 自诩 自居 然而", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 554324, "human_acc": 72.0028358866, "source": "2014年上海市公务员录用考试《行测》题(B类)第5题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4484774, "material": "", "question": "电子警察,只不过是一个电子拍照设备而已,如今在一些地方为何遭遇舆论____________?恐怕还是设置电子警察的方式、行为背离了其初衷。目前,各地政法队伍教育整顿____________,成效显著,也应借机开展一场规范交警执法处罚的“自我革命”,向群众敞开监督之门,尤其是针对群众呼声强烈的事项排查到底、整改到位,同时规范合理设置道路交通技术监控设备。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 冷嘲热讽 蓄势待发\nB. 口诛笔伐 如火如荼\nC. 讽刺挖苦 甚嚣尘上\nD. 津津乐道 势如破竹", "choice": "B", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 9817, "human_acc": 94.896607925, "source": "2021下半年省考第二十六季行测模考大赛(西藏卷)第2题", "difficulty": 3, "formulas": 0, "history": [{"id": 4516220, "material": "", "question": "只有深入文艺现场,文艺评论者才能逐步培养起对文艺作品、文艺现象敏锐的感受力、精准的判断力,才能管中窥豹、____________,及时捕捉到文艺思潮的新动向。这样写出来的文艺评论,也就跳出了____________的窠臼,能够言之有物、一针见血,更容易和当下受众产生连接、引发共鸣。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 见微知著 照本宣科\nB. 睹始知终 走马观花\nC. 一叶知秋 隔靴搔痒\nD. 以蠡测海 语焉不详", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 249573, "human_acc": 44.1329791284, "source": "2021下半年省考第二十九季行测模考大赛(四川卷)第19题", "difficulty": 7, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5431035, "material": "", "question": "落户政策、住房补贴、就业便利、薪资水平、幼儿教育、医疗水平——不论放下身段还是掏出真金白银,城市间竞争人才的一系列指标似乎都____________,然而在这些具体项之外,一座城市的“人性化”程度,却难以被________,而诸如城市的“温度”这类柔性指标究竟有多重要,不妨多听听来自人才的“声音”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 行之有效 测算\nB. 一目了然 量化\nC. 尽善尽美 衡量\nD. 大同小异 忽略", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 355341, "human_acc": 59.0748042022, "source": "2023上半年省考第一季行测模考大赛(四川卷)第20题", "difficulty": 6, "formulas": 0, "history": [{"id": 5291702, "material": "", "question": "“头等民生大事”“重要支撑”“就业优先”······可以看出,国家层面对稳就业的重视程度____________。“灵活就业”让很多失业者找到了自己的兜底工作,继续实现自己的价值。但“灵活就业”也存有________,如劳动保障不健全等。因此,应允许灵活就业人员在就业地参加职工社保,让失业人员的就业真正夯实。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 责无旁贷 短板\nB. 显而易见 过错\nC. 不言而喻 缺憾\nD. 任重道远 风险", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 170558, "human_acc": 78.6148993304, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第29题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4491764, "material": "", "question": "电话手表由于其私密性,为儿童社交带来了便利,开辟了崭新的途径,但与此同时,由于排他性和易成瘾,又可能窄化儿童社交,影响其视野和对新事物、新朋友的接受度。因此,家长对儿童使用电话手表进行社交要保持关注,随时进行评估。一旦有成瘾和社交封闭迹象,或由于过度使用挤压睡眠时间和体育活动,甚至涉及网络欺凌,那么就应该及时纠偏,进行一定的________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 干涉\nB. 干预\nC. 诘责\nD. 监督", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 23274, "human_acc": 72.033170061, "source": "2021下半年省考第二十八季行测模考大赛(内蒙古卷)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4654248, "material": "", "question": "最近各地再次开展“专精特新”中小企业上市培育,不少人为此点赞,但也有少数人觉得是“____________”。如何培育更多企业上市,给“上市的旧瓶装新酒”更加考验智慧。上市是在符合上市的必要条件下优中选优,支持“小巨人”企业上市要防止____________,避免“为了上市而上市”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 老生常谈 一拥而上\nB. 不经之谈 削足适履\nC. 老调重弹 因噎废食\nD. 不刊之论 急功近利", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 64705, "human_acc": 28.7813924735, "source": "2021下半年省考第三十八季行测模考大赛(西藏卷)第2题", "difficulty": 7, "formulas": 0, "history": [{"id": 5507537, "material": "", "question": "近年来,随着技术的更新换代,不少快递公司已采用自动化分拣技术,不规范分拣现象得到很大改善。但是,暴力分拣问题仍未____________,在一些社区快递网点,仍存在抛扔甚至踩踏快递包裹现象。此外,还有一些快递公司为了抢占市场,肆意进行低价恶性竞争。实际上,以打折服务换取业务扩张无异于____________,对企业长远发展有害无益,对行业也会产生极坏影响。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 斩草除根 竭泽而渔\nB. 偃旗息鼓 削足适履\nC. 扬汤止沸 抱薪救火\nD. 消失殆尽 饮鸩止渴", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "A", "human_count": 40233, "human_acc": 57.0874655134, "source": "2023上半年省考第十季行测模考大赛(四川卷)第12题", "difficulty": 6, "formulas": 0}, {"id": 2563318, "material": "", "question": "疫情将过,人们期待中的“报复性消费”还没完全形成,一些商家的“报复性涨价”却____________了。依托自身红利形成的话语权,使头部企业有涨价的底气,但中小企业可能难以效仿,有的本来就经营十分困难的企业,一味涨价无异于____________。而事实上,有逆势涨价的,也有顺势促销的。如麦当劳近日推出一项会员日半价桶活动,消费者闻讯____________,抢到麦当劳小程序崩盘。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 急不可耐 自不量力 跃跃欲试\nB. 刻不容缓 缘木求鱼 摩拳擦掌\nC. 迫不及待 饮鸩止渴 蜂拥而至\nD. 按捺不住 升山采珠 趋之若鹜", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 18469, "human_acc": 89.5771292436, "source": "2020年上半年省考第三十一季行测模考大赛(海南卷)第42题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 1746770, "material": "", "question": "建筑设计,是一个科学问题,也是一个民主决策问题,规划设计要_______专业人士的意见,_______艺术创新。但是,城市公共建筑的设计规划,又是重要的公共事务,需要遵循民主决策、公开决策的原则,通过制度化的渠道,_______公众尤其是当地民众的意见。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 重视 保障 征集\nB. 听取 保护 吸纳\nC. 采纳 支持 吸收\nD. 采用 维持 征求", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;实词填空", "most_wrong": "A", "human_count": 2847788, "human_acc": 30.5919892913, "source": "2016年国家公务员录用考试《行测》题(副省级)第40题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4525730, "material": "", "question": "在过去,高校通常缺乏劳动教育课程,一些学校虽然开设了劳动课程,但常常____________。部分大学生不仅不热爱劳动,甚至鄙视劳动,更缺乏自我劳动的习惯和意识。开设“家常菜”作为通识必修课,不仅找到了学生们感兴趣的切入点,而且学习难度不大,门槛不高,能让学生____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 纸上谈兵 受益匪浅\nB. 闭门造车 登堂入室\nC. 形同虚设 大有裨益\nD. 照本宣科 游刃有余", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 9287, "human_acc": 40.4759341014, "source": "2021下半年省考第三十季行测模考大赛(西藏卷)第2题", "difficulty": 7, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4576417, "material": "", "question": "在许多人的眼里,助产士就是“接生婆”,甚至是给产科医生“打下手”的。实际上,助产士在妇幼健康方面起到的作用,远不是人们认为的这么________。专业的助产士为孕产妇提供87%的基本护理,使孕产妇和新生儿的死亡率降低三分之二。有他们参与生育的整个过程,生育安全就有了持续稳定的保障,生育的愿望会得到“________”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 简单 巩固\nB. 肤浅 激活\nC. 鸡肋 提升\nD. 纯粹 满足", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;实词填空", "most_wrong": "A", "human_count": 399219, "human_acc": 31.8045984785, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第60题", "difficulty": 7, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2453004, "material": "", "question": "马克思的政治经济学虽然以资本主义作为研究对象,但它一开始就根植于无产阶级解放运动的土壤中,服务于人民,因而具有鲜明的人民主体性。中国特色社会主义政治经济学脱胎于马克思主义政治经济学,流淌的是马克思主义政治经济学的血液,因而,人民主体性也毫无例外是其首要原则。人民主体性原则的基本意涵就是全体人民都是社会主义物质文明、精神文明、社会文明和生态文明的参与者、建设者、推动者,同时又是平等分享经济社会发展成果的主人。脱离人民主体性原则,中国特色社会主义政治经济学就不是马克思主义的,也肯定不是社会主义性质的。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 马克思的政治经济学以资本主义作为研究对象\nB. 马克思的政治经济学根植于无产阶级解放运动\nC. 中国特色社会主义政治经济学具有马克思政治经济学基因\nD. 人民主体性是中国特色社会主义政治经济学的首要原则", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总分", "most_wrong": "C", "human_count": 483242, "human_acc": 92.5250702547, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 161449, "material": "", "question": "偶然性在心理学中扮演的角色时常被外行人士甚至临床心理从业者忽略。人们很难意识到,行为的变化有一部分是随机因素引起的,因此心理学家不应自诩能够预测每一例个案的行动。心理学的预测应该是概率性的,表示自己可以在个体层次上进行心理预测,是临床心理学家常犯的错误。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 人的行为发展变化具有偶然性\nB. 心理学的预测是对行为的总体预测\nC. 目前对人类行为预测的准确性还不高\nD. 临床心理学家更擅长对个体进行心理预测", "choice": "B", "keypoints": "关联词-因果;行文脉络-分总分", "most_wrong": "A", "human_count": 1865998, "human_acc": 51.333388353, "source": "2014年国家公务员录用考试《行测》题第43题", "difficulty": 5, "formulas": 0}, {"id": 2166203, "material": "", "question": "时间永是流驶,街市依旧太平,有限的几个生命,在中国是不算什么的,至多,不过供无恶意的闲人以饭后的谈资,或者给有恶意的闲人作流言的种子。至于此外的深的意义,我总是觉得很寥寥,因为这实在不过是徒手的请愿。人类的血战前行的历史,正如煤的形成,当时用大量的木材,结果却只是一小块,但请愿是不在其中的,更何况是徒手。\n\n这段文字的主要内容是(  )。", "type": "单选题", "options": "A. 有限的几个生命在中国不算什么\nB. 徒手的请愿并没有多大的意义\nC. 人类血战前行的历史有如煤的形成\nD. 闲人把请愿当作饭后的谈资或流言的种子", "choice": "B", "keypoints": "关联词-因果;行文脉络-分总分", "most_wrong": "C", "human_count": 1051192, "human_acc": 76.7642828332, "source": "2018深圳市公务员录用考试《行测》题(网友回忆版)第76题", "difficulty": 4, "formulas": 0}, {"id": 2139478, "material": "", "question": "器具之量,是一定之规,人心之量,则未可猜测。《初刻拍案惊奇》卷十五:“量大福也大,机深祸也深”。《水浒传》的作者在白衣秀士王伦被杀后,也引用了这句“古人云”,可见“量”和“福”有着相辅相成的关系。人们在庙宇里,经常瞻拜弥勒佛,而总能得到一种心胸宽阔、笑口常开的乐天感觉,主要是因为这位菩萨有一个很大的肚子,这袒露的腹部,就象征着那具有海阔天空、无垠无限的肚量。这段文字的中心是:", "type": "单选题", "options": "A. 人心之量是无法计算出来的\nB. 中国人的迷信思想依然严重\nC. 弥勒佛受到人们的爱戴\nD. 肚量与福气关系密切", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总分", "most_wrong": "A", "human_count": 509533, "human_acc": 83.5955669211, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第27题", "difficulty": 3, "formulas": 0}, {"id": 2388283, "material": "", "question": "新媒体快速崛起,并以其快捷方便、信息海量、不受时间地点限制、受众门槛低等优势吸引了大众的眼球。传统媒体不得不重新定位自己的角色,寻求转型之路,但传统媒体的权威性不可替代。因此,二者的融合迫在眉睫。媒体融合不仅可以实现优势互补、取长补短,优化资源配置,还可以使正能量的传播方式多样化,传播效果达到最大化。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 新媒体迅速崛起,传统媒体日渐衰落\nB. 媒体融合时代,新闻工作者需要保持个性\nC. 传统媒体要增强活力,以更好地适应新形势\nD. 媒体融合不仅势在必行,而且具有多重优势", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总分", "most_wrong": "C", "human_count": 1508962, "human_acc": 95.1409644511, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第42题", "difficulty": 3, "formulas": 0}, {"id": 163561, "material": "", "question": "市场学上有个跟随者战略,就是企业不做任何创新性的尝试,而是等到别人把产品、技术、市场都做出来以后,自己拷贝这些东西或者是加以改进,从而占领市场。这虽然促进了竞争,但是由于跟随者不承担开拓技术、产品、市场的成本以及试错的风险,因此比创新者更具有竞争优势。如果跟随者是某种资源、渠道的垄断者的话,就足以置创新者于死地,从而最终扼杀了竞争,并抑制了创新精神。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 创新精神是企业精神的核心\nB. 跟随者战略在商场中的价值\nC. 资源和渠道的垄断状态亟待打破\nD. 建立和完善创新保护机制的重要性", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总分", "most_wrong": "B", "human_count": 356214, "human_acc": 82.729482839, "source": "2013年四川公务员录用考试《行测》题(下半年)第41题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 5276702, "material": "", "question": "从文字书籍、广播电视到移动互联网,知识的生产与传播方式不断演变。如今,短视频发展____________、知识付费____________,各种各样的短视频、付费知识正变得随处可见。相关研究报告显示,各大平台粉丝过万的知识类创作者数量呈稳步增长趋势,视频作品的传播效力远高于平台的平均水平。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如鱼得水 屡见不鲜\nB. 异军突起 如日中天\nC. 如火如荼 方兴未艾\nD. 蒸蒸日上 东山再起", "choice": "C", "keypoints": "词的辨析-程度轻重;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 181081, "human_acc": 64.0691182399, "source": "2022下半年省考第十季行测模考大赛(深圳卷)第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5368048, "material": "", "question": "中国历史上以文明立国,曾为人类社会和世界文明作出巨大贡献,被世界各国视为文明之国、礼仪之邦。在经济全球化浪潮的冲击下,西方文化____________。我们必须保护中华文明的独特性,也就是保证中华文化不被西方文化所________。否定传统、妄自菲薄、自轻自贱,必将丧失自己的优秀传统,成为西方文化的附庸。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 铺天盖地 钳制\nB. 沸反盈天 裹挟\nC. 无孔不入 同化\nD. 来势汹汹 超越", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 277374, "human_acc": 78.1306106556, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第29题", "difficulty": 4, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2024178, "material": "2015年保险公司原保险保费收入24282.52亿元,同比增长$20.00\\%$,比上一年高$2.51\\%$。其中,产险业务原保险保费收入7994.97亿元,同比增长$10.99\\%$;寿险业务原保险保费收入13241.52亿元,同比增长$21.46\\%$;健康险业务原保险保费收入2410.47亿元,同比增长$51.87\\%$;意外险业务原保险保费收入635.56亿元,同比增长$17.14\\%$。\n\n        2015年保险公司赔款和给付支出8674.14亿元,同比增长$20.20\\%$。其中,产险业务赔款4194.17亿元,同比增长$10.72\\%$;寿险业务给付3565.17亿元,同比增长$30.67\\%$;健康险业务赔款和给付762.97亿元,同比增长$33.58\\%$;意外险业务赔款151.84亿元,同比增长$18.24\\%$。\n\n        截至2015年末,保险公司资金运用余额111795.49亿元,较年初增长$19.81\\%$。其中,银行存款24349.67亿元,占比$21.78\\%$;债券38446.42亿元,占比$34.39\\%$;股票和证券投资基金16968.99亿元,占比$15.18\\%$;其他投资32030.41亿元,占比$28.65\\%$。\n\n        截至2015年末,保险公司总资产123597.76亿元,较年初增长$21.66\\%$。其中,产险公司总资产18481.13亿元,较年初增长$31.43\\%$;寿险公司总资产99324.83亿元,较年初增长$20.41\\%$;再保险公司总资产5187.38亿元,较年初增长$47.64\\%$;资产管理公司总资产352.39亿元,较年初增长$46.44\\%$。", "question": "截至2015年末,保险公司资金运用余额占比最大的是:", "type": "单选题", "options": "A. 银行存款\nB. 债券投资\nC. 股票和证券投资基金\nD. 其他投资", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 101749, "human_acc": 94.3517872412, "source": "2016年重庆市公务员录用考试《行测》题(下半年)第114题", "difficulty": 3, "formulas": 21, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 4840028, "material": "", "question": "在监管严厉打压下,国内首次代币发行(ICO)被肃清,“挖矿”活动也____________,但由于造富神话的驱使,相关交易炒作活动仍屡禁不止。此次监管部门重磅出击,再次彰显出“一锤到底”的决心和态度:对虚拟货币的打压没有过去时,也绝非一时兴起,更多____________的监管措施正在路上。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 日渐式微 正本清源\nB. 销声匿迹 势在必行\nC. 名存实亡 恰逢其时\nD. 偃旗息鼓 切中要害", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 241978, "human_acc": 28.7745166916, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第30题", "difficulty": 7, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4330601, "material": "", "question": "1840年鸦片战争后,中华民族陷入内忧外患的苦难深渊,中国人民处于水深火热的悲惨境地。为了挽救民族危亡,无数仁人志士进行了____________的艰辛探索。但无论是太平天国运动、义和团运动,还是洋务运动、戊戌变法、辛亥革命,都没有也不可能完成救亡图存和反帝反封建的历史任务。中国向何处去?出路在哪里?1921年,中国共产党____________、登上历史舞台,中国人民从此在走向中华民族伟大复兴的道路上拥有了坚强的领导核心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 孜孜不倦 应运而生\nB. 孳孳不息 粉墨登场\nC. 宵衣旰食 登堂入室\nD. 朝乾夕惕 平步青云", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 10098, "human_acc": 76.678550208, "source": "2021下半年省考第二十三季行测模考大赛(西藏卷)第1题", "difficulty": 4, "formulas": 0, "history": [{"id": 5745123, "material": "", "question": "60年来,学雷锋活动在全国持续深入开展,产生了广泛而深远的社会影响,雷锋精神也滋养着一代代中华儿女的心灵。雷锋,一个闪亮的名字,一个____________的人。他用无数个____________的“小事”彰显了共产党人的优秀品质,在短暂的生命中书写了不朽的人生篇章,树立起令人景仰的道德丰碑。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 特立独行 微不足道\nB. 大公无私 不足挂齿\nC. 路人皆知 一脉相承\nD. 家喻户晓 默默无闻", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 118704, "human_acc": 58.6349238442, "source": "2023下半年省考第二十一季行测模考大赛(四川卷)第16题", "difficulty": 5, "formulas": 0}, {"id": 3932098, "material": "", "question": "正如习总书记所言,“要有真正的批评和自我批评”。的确,“____________”虽然看似融洽、和谐,却起不到推进工作的作用,体现不了民主生活会的确切含义。而真正的批评和自我批评,互相之间有理有据的“____________”,却正是民主生活会的魅力所在,只有找到存在的突出问题、剖析出根本原因,才能准确制定出整改的措施,为标本兼治、“____________”、取得群众满意的实效打下坚实的基础。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 觥筹交错 推杯换盏 对症下药\nB. 太平盛世 短兵相接 斩草除根\nC. 歌舞升平 鸡犬不宁 正本清源\nD. 莺歌燕舞 唇枪舌剑 祛病除邪", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 124363, "human_acc": 44.8228170758, "source": "2021下半年省考第十七季行测模考大赛(陕西卷)第38题", "difficulty": 6, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 3579852, "material": "", "question": "面对市场经济的发展,政府最应该做的就是坚决捍卫公平、正义等社会底线,同时又要维护市场经济的主体性,不能大包大揽、____________。历史证明,虽然强势的行政力量在短期内可能起到____________的效果,但随着经济的发展走向深入,个性化需求越来越多,过于强势的行政干预必然会遏制市场经济活力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 喧宾夺主 事半功倍\nB. 颐指气使 釜底抽薪\nC. 听之任之 扬汤止沸\nD. 越俎代庖 立竿见影", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 82351, "human_acc": 86.8793335843, "source": "2021下半年省考第五季行测模考大赛(四川卷)第19题", "difficulty": 4, "formulas": 0, "history": [{"id": 8695, "material": "", "question": "老庄固古今天下第一等聪明人,《道德经》五千言亦世界第一等聪明哲学。然聪明至此,已近老猾巨奸之哲学,不为天下先,则永远打不倒,盖老猾巨奸之哲学无疑。盖中国人之聪明达到极顶处,转而见出(    ),乃退而守愚藏拙以全其身。又因聪明绝顶,看破一切,知“为”与“不为”无别,与其(    ),何如不为以养吾生。\n\n填入括号内最恰当的一项是:", "type": "单选题", "options": "A. 强弩之末 为而无效\nB. 强弩之末 苦心孤诣\nC. 聪明之害 苦心孤诣\nD. 聪明之害 为而无效", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 71225, "human_acc": 53.0333450333, "source": "2009年浙江省公务员录用考试《行测》题第17题", "difficulty": 6, "formulas": 0}, {"id": 2717453, "material": "", "question": "诸多有自己独特见识与新颖见解的文学评论者,会从各自的视角,进行“只眼独具”的解读与“____________”的阐述,时常呈现出一些与众不同的____________,给人以独到的启示。它们极有可能在众声喧哗当中,不同流俗,____________,甚至一时之间难于被理解和接受。但经过时间的淘洗,随着认知的拓展,这种“偏见”终会获得有识之士的普遍认可。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 匠心独具 高谈阔论 高深莫测\nB. 卓尔独行 高瞻远瞩 卓尔不群\nC. 蹊径独辟 真知灼见 曲高和寡\nD. 超然独立 远见卓识 佶屈聱牙", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 104437, "human_acc": 81.0201365416, "source": "2020年下半年省考第十五季行测模考大赛(云南卷)第38题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5198466, "material": "", "question": "小张每周上班6天(每周日休息),每天5:30下班开车回家需经过1个路口。周一至周五,若回家途中不堵车,则在路口遇到红灯的概率为30%;若回家途中堵车,则在路口遇到红灯的概率为70%。已知周六不会堵车,且在路口遇不到红灯的概率为60%。若周一至周五每天回家途中堵车的概率为40%,则一周内任选连续3天,小张下班回家途中在路口均遇到红灯的概率最小在以下哪个范围内?", "type": "单选题", "options": "A. 不到9%\nB. 9%~10%\nC. 10%~11%\nD. 11%以上", "choice": "A", "keypoints": "给概率求概率;非典型最值问题", "most_wrong": "B", "human_count": 133817, "human_acc": 11.5583221863, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第64题", "difficulty": 7, "formulas": 0, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 1589, "material": "", "question": "一个三位数除以43,商是$a$,余数是$b$,则$a+b$的最大值是:", "type": "单选题", "options": "A. 957\nB. 64\nC. 56\nD. 33", "choice": "B", "keypoints": "非典型最值问题", "most_wrong": "D", "human_count": 37388, "human_acc": 58.9948646625, "source": "2008年陕西省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 3}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 5597058, "material": "", "question": "元宇宙、人工智能尚在萌芽阶段,但靠这些概念圈钱的套路却已经____________。以各种新概念为幌子的非法集资活动之所以能让人上当受骗,在于名目的新奇和手段不断翻新。比如,有的不法分子编造与元宇宙等概念相关的高科技投资,看似前景________,实则虚构项目、非法集资······如此种种,让投资者防不胜防。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 司空见惯 浩瀚\nB. 崭露头角 光明\nC. 屡见不鲜 广阔\nD. 沸反盈天 无限", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 43628, "human_acc": 92.8394608967, "source": "2023下半年省考第六季行测模考大赛(陕西卷)第34题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3932120, "material": "", "question": "现实和虚构作品有区别:现实中各种参与者、事件背景和走向都极为复杂,无数细节相互________,很多时候人们只能看出一个大致轮廓,可能就有了剧情反转。虚构作品则不然,它可以用一两个小时________地呈现事件,形成一个有________的、单纯的话题,以此帮助人们跳出自己的生活,有所反思,有所交流。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 牵扯 详尽 价值\nB. 成就 准确 范围\nC. 勾连 完整 边界\nD. 关联 高效 深度", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 99390, "human_acc": 46.1042358386, "source": "2021下半年省考第十七季行测模考大赛(陕西卷)第39题", "difficulty": 6, "formulas": 0, "history": [{"id": 5443218, "material": "", "question": "“网络沉迷会不会毁掉一代人”并不是一个________的问题,在科技史上,这是已经多次出现的“技术焦虑”。“技术焦虑”的本质,就是把技术和社会相________,放大其危害或益处。然而,公众不应该妖魔化网络,忽视了社会结构的________性,正是因为技术和社会整体不可分割,从社会角度出发进行综合治理才势在必行。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 新奇 牵连 多元\nB. 新鲜 剥离 复杂\nC. 简单 割裂 客观\nD. 陌生 分离 真实", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 141379, "human_acc": 63.2682364425, "source": "2023上半年省考第三季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0}, {"id": 4576443, "material": "", "question": "学院派评论与“段评”截然不同。学院派评论面对的是完成时的传统文学作品,是评论家对整部作品的__________评论。这种评论形成了一种________的文体,即“文学批评”。但“段评”面对的是连载的长篇网文,是业余读者对作品片段的__________的碎言碎语,充斥着词语的泡沫和句子的残渣,勉强算一种“微文体”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 权威性 正式 趣味性\nB. 滞后性 专业 即时性\nC. 迟缓性 特殊 主观性\nD. 客观性 严肃 随意性", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "D", "human_count": 277513, "human_acc": 34.8707988455, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2376530, "material": "", "question": "有人曾________“人工智能是个筐,什么都能往里装”,虽然________,但也说明了现状。通常,当解决问题需要推理、决策、理解、学习这类最基本的技能时,我们才认为它跟人工智能相关。常见的人工智能技术应用有指纹识别、人脸识别、机器翻译等。很多通过机械的计算和机械的记忆实现的东西,一般不把它看成人工智能的本质应用。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 嘲笑 苛刻\nB. 调侃 尖酸\nC. 揶揄 刻薄\nD. 嘲弄 刻毒", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;实词填空", "most_wrong": "B", "human_count": 1834851, "human_acc": 33.3664150386, "source": "2019年420联考《行测》题(黑龙江省直卷)(网友回忆版)第37题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2557505, "material": "", "question": "京雄城际高铁全长仅106公里,没有复杂的地质环境,也很少穿越繁华的城市街区。面对这条看似________却是承载千年大计运输任务、支撑引领国家战略的国家级新干线,是轻车熟路地建成一条和其他项目____________的高铁,还是以开创性思维和更高标准,打造一个示范引领性的时代工程?新时代铁路人果断选择了后者。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 传统 毫厘不爽\nB. 普通 别无二致\nC. 平凡 不分畛域\nD. 独特 大同小异", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 444250, "human_acc": 89.0462577378, "source": "2021年国考第六季行测模考大赛(副省级)第25题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5008953, "material": "", "question": "作为国内市场兴起的网络促销活动,“双十一”经过11年的发展已成为全球著名的购物节。购物本应带给消费者愉悦的体验,但随着促销活动的规则趋于复杂,不少网友表示自己的购买欲望在各类预售套路面前都____________。于商家而言,把握销售机遇固然重要,但对顾客真诚相待更是____________。商家不能将消费者视为待宰的羔羊,诚实守信是商家赢得市场的关键,任何依靠坑蒙拐骗获得的利润都不可能长久,甚至还要付出沉重的代价。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 烟消云散 首当其冲\nB. 每况愈下 对症下药\nC. 化为乌有 重中之重\nD. 形同虚设 迫在眉睫", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 58135, "human_acc": 94.6194203148, "source": "2022上半年省考第二十一季行测模考大赛(西藏卷)第2题", "difficulty": 3, "formulas": 0, "history": [{"id": 2524200, "material": "", "question": "美国和伊朗虽然____________,但二者都清楚对方的“红线”和“底线”,在矛盾和摩擦中“走钢丝”。伊朗判断,美国逐步退出中东是特朗普的全球战略,在伊拉克的“人民动员组织”有近16万兵力,而伊朗更是拥有域内____________的军事实力,因此美国不会贸然同伊朗正面开战。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不分伯仲 无可比拟\nB. 不分畛域 屈指可数\nC. 不分轩轾 无与伦比\nD. 针锋相对 首屈一指", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 20237, "human_acc": 90.5816079458, "source": "2020年上半年省考第二十六季行测模考大赛(海南卷)第43题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5761242, "material": "", "question": "学校规定某专业学生要学习三门专业课,第一学期结束时,该专业100名学生学习三门专业课的情况为:已学习不止一门专业课的学生人数是三门均学习的3倍,三门均未学习的学生人数是仅学习了两门专业课的$\\frac{1}{8}$。第二学期,未完成所有专业课学习的学生,均再学习一门新的专业课,第二学期结束时,仅学习了两门专业课的学生人数占比比第一学期下降26个百分点。此时三门专业课均学完的学生有多少人?", "type": "单选题", "options": "A. 84\nB. 72\nC. 60\nD. 48", "choice": "B", "keypoints": "和差倍比问题;三集合", "most_wrong": "C", "human_count": 29385, "human_acc": 43.8386932108, "source": "2023下半年省考第二十二季行测模考大赛(北京卷)第78题", "difficulty": 6, "formulas": 1, "history": [{"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 5115455, "material": "", "question": "某班级有学生30人,自愿参加田径运动会,报名长跑的有3人,报名短跑的有8人,报名跳高的有5人,且有18人没有报名任何项目,则只报名两个项目的最多有多少人?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 86911, "human_acc": 34.7033171865, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 4563217, "material": "", "question": "最近,小微企业又迎来了金融机构送出的一波“红包”,人民银行等4个部门联合推出进一步降低支付手续费等12条减费措施,涵盖银行账户服务、人民币结算等5个方面。企业是经济活动的基本“细胞”,“细胞”活力旺盛,经济才能“身强体健”。这些降费举措,有助于企业降低资金流通成本,这种做法已经被实践证明是一条可行的道路。2020年,在遭遇疫情冲击的不利条件下,我国新增市场主体2502万户,实现了逆势大幅增长,背后的重要动力之一,就是把真金白银送到企业手中,助力企业发展。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 中小微企业发展需要政策扶上马、送一程\nB. 通过减费“红包”激活企业这一经济“细胞”\nC. 企业发展健康活跃才能推动经济健康发展\nD. 降低企业的实际负担需要多部门联合行动", "choice": "B", "keypoints": "主题词;行文脉络-分总分", "most_wrong": "C", "human_count": 345231, "human_acc": 66.3631018072, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第81题", "difficulty": 4, "formulas": 0, "history": [{"id": 1796092, "material": "", "question": "秦汉四百年间,政治与文化相互推动,形成互补机制,其效应是:统一被认为是合理的、正常的,分裂则被认为是违理的、反常的。秦汉文化造成的这一定势,深刻地影响了此后两千年的中国历史。国家统一,使多元文化整合的速度与力度加强;而整合后的一统文化,具有强大的凝聚力和向心力,又反过来推动政治一统。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 政治与文化存在紧密联系\nB. 秦汉文化对于后世影响深远\nC. 中国文化具有强大的向心力\nD. 国家统一的前提是文化的一统整合", "choice": "B", "keypoints": "主题词;行文脉络-分总分", "most_wrong": "A", "human_count": 1695863, "human_acc": 34.7141838698, "source": "2016年423联考《行测》题(贵州卷)第37题", "difficulty": 5, "formulas": 0}, {"id": 8051, "material": "", "question": "大亚湾地理位置得天独厚,地处21世纪亚太经济圈的核心位置。近年来,他以集港口工业、国际贸易、旅游为一体的未来百万人口海滨一流新城市的宏伟蓝图,吸引着众多的海内外客商。举世瞩目的熊猫汽车城、东风汽车城、南海石化城、庄士工业城等一批超大型工业和旅游项目,都先后落户在这里。\n这段话的中心意思是:", "type": "单选题", "options": "A. 大亚湾得天独厚的地理位置\nB. 大亚湾的工业和旅游项目\nC. 大亚湾得天独厚的地理位置将给它带来繁荣的商业前景\nD. 大亚湾是一座现代化城市", "choice": "C", "keypoints": "主题词;行文脉络-分总分", "most_wrong": "A", "human_count": 29515, "human_acc": 93.0509910215, "source": "2009年江西省公务员录用考试《行测》题第25题", "difficulty": 3, "formulas": 0}, {"id": 8541, "material": "", "question": "其实对于人生、道德、审美以及社会的解释,并无绝对正确的标准答案。每个时代、每个民族,都有提出问题的冲动以及解决问题的能力。满足这种历史需求的,便是所谓的“恰当学术”。你可以嘲笑胡适浅薄,称其提倡的实验主义颇为浅陋,甚至不如学衡派所推销的白璧德的新人文主义精细,但没用,后者就是不如前者适合那个时代中国人的趣味。\n\n以上文字是在阐述:", "type": "单选题", "options": "A. 现实与理论的关系\nB. 实验主义与新人文主义的关系\nC. 时代与学术的关系\nD. 人生、道德、审美与社会的关系", "choice": "C", "keypoints": "主题词;行文脉络-分总分", "most_wrong": "D", "human_count": 43638, "human_acc": 78.7593381915, "source": "2009年浙江省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 2187723, "material": "", "question": "“天下为公”的基本含义是,天下是天下人所共有的,不是一个集团、一个群体的。在“天下为公”观念背后,我们看到的是中国人最基本的政治观念,也是过去四千年来中国政治运作的基本原则,那就是政治平等,人人都有参与天下之治理的机会。当然,参与方式非常多样,一个普普通通的人,也可以参与天下之治理,比如修身、齐家,这就是治国、平天下的内容和基础。\n\n这段文字主要介绍了:", "type": "单选题", "options": "A. 中国政治运作的基本原则\nB. “天下为公”的含义和表现\nC. 人们参与治理国家的多种形式\nD. “天下为公”所反映的政治观念", "choice": "D", "keypoints": "主题词;行文脉络-分总分", "most_wrong": "B", "human_count": 1398144, "human_acc": 51.2724726495, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第28题", "difficulty": 6, "formulas": 0}, {"id": 23357, "material": "", "question": "蝴蝶以其绚丽的色彩和优美的舞姿,赢得了“会飞的花朵”“大自然的舞姬”等美誉。蝴蝶翅膀丰富的色彩、各异的图案造就了这美丽的精灵。有些蝴蝶在阳光下飞舞时翅膀会闪烁着金属光芒,有些蝴蝶翅膀的色彩可以单一到通体只有一个颜色,也有蝴蝶的颜色可以丰富到让人眼花缭乱,甚至还有人在蝴蝶翅膀上收集到了阿拉伯数字1—9和26个英文字母形状的图案。\n\n这段文字描述的主要是:", "type": "单选题", "options": "A. 蝴蝶是自然界美丽的化身\nB. 蝴蝶的翅膀丰富多彩、无奇不有\nC. 蝴蝶是昆虫中极具有观赏性的类群\nD. 在蝴蝶翅膀上有许多绚丽的图案", "choice": "B", "keypoints": "主题词;行文脉络-分总分", "most_wrong": "D", "human_count": 196941, "human_acc": 64.3766407198, "source": "2011年917联考《行测》题(河南/福建/甘肃/重庆/新疆兵团)第44题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 2187755, "material": "", "question": "一直升机在海上救援行动中搜索到遇险者方位后通知快艇,快艇立即朝遇险者直线驶去。此时,直升机距离海平面的垂直高度200米,从机上看,遇险者在正南方向,俯角(朝下看时视线与水平面的夹角)为$30^{\\circ}$,快艇在正东方向,俯角为$45^{\\circ}$。若忽略当时风向、潮流等其它因素,且假定遇险者位置不变,则快艇以60千米/小时的速度匀速前进需要多长时间才能到达遇险者的位置?", "type": "单选题", "options": "A. 21秒\nB. 22秒\nC. 23秒\nD. 24秒", "choice": "D", "keypoints": "普通行程;立体几何", "most_wrong": "B", "human_count": 1013661, "human_acc": 29.0502446084, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第59题", "difficulty": 7, "formulas": 2, "history": [{"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 49897, "material": "", "question": "一个圆形牧场面积为3平方公里,牧民骑马以每小时18公里的速度围着牧场外沿巡视一圈,约需多少分钟?", "type": "单选题", "options": "A. 12\nB. 18\nC. 20\nD. 24", "choice": "C", "keypoints": "普通行程;平面几何", "most_wrong": "B", "human_count": 304126, "human_acc": 53.8073035518, "source": "2013年山东省公务员录用考试《行测》题第52题", "difficulty": 5, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 1129961, "material": "", "question": "大学生进行9天野营拉练,晴天每天走32千米,雨天每天走25千米,一共走了274千米,则拉练期间雨天的天数是:", "type": "单选题", "options": "A. 1\nB. 4\nC. 5\nD. 2", "choice": "D", "keypoints": "普通行程", "most_wrong": "C", "human_count": 30941, "human_acc": 87.001066546, "source": "2010年江苏省公务员录用考试《行测》题(C类)第26题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "普通行程"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 5067400, "material": "", "question": "在中国,面膜是美容护肤品中当之无愧的王者,其主要由基布和精华液组成,基布可以隔离空气,促使皮肤升温、毛细血管扩张,而在面膜的精华液配方中,80%的成分是水和保湿剂,剩下的20%里包含各种增稠剂、乳化剂、稳定剂、香精和色素等。因此,有人认为敷面膜不仅能够保持皮肤水分,还可以美白嫩肤。\n\n以下能够削弱上述结论的有几个?\n\n①面膜中超过99%的成分只能停留在皮肤最外的角质层,这意味着它只有清洁、保湿功能\n\n②由于面膜制造工艺的技术含量过低,面膜的行业门槛甚至比开一家小饭馆还要低\n\n③实验证实,无论是面膜精华液中的保湿剂还是其他的成分,都和美白嫩肤没有必然关系\n\n④目前欧洲只有30%-44%的女性使用过面膜,欧洲在全球的面膜市场仅占2%", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "拆桥;削弱论点", "most_wrong": "A", "human_count": 363494, "human_acc": 87.7164409866, "source": "2022上半年省考第二十四季行测模考大赛(北京卷)第97题", "difficulty": 3, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"], ["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 2434267, "material": "", "question": "综观20世纪西方绘画史,各种时髦的“主义”____________,而柯尔内留·巴巴作为一名传统油画艺术的捍卫者,却在西方画坛____________。他的作品在写实的基础上注重概括和提炼,画面效果深重浑厚,____________,又不失深刻的象征寓意和文化旨归,给观者一种视觉的震撼和心灵的触动。\n\n依次填入画横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 层出不穷 独树一帜 大气磅礴\nB. 大行其道 崭露头角 栩栩如生\nC. 浮光掠影 独领风骚 精美绝伦\nD. 铺天盖地 另辟蹊径 妙趣横生", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 421709, "human_acc": 84.5981470635, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 2392049, "material": "", "question": "在中国辽阔的土地上,不仅有着雄伟广袤的高原、____________的高山、茫茫无垠的沙漠,更有巨大富饶的盆地、极目千里的平原,以及冈峦起伏的低山和丘陵。各种地形相互交错,但又____________,真是山河壮丽、____________!\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 纵横绵延 井然有序 气象万千\nB. 巍峨挺拔 一丝不乱 万里无垠\nC. 错落有致 有条不紊 千姿百态\nD. 蜿蜒起伏 星罗棋布 气势磅礴", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 22998, "human_acc": 54.6830159144, "source": "2016年黑龙江省公务员录用考试《行测》题(县乡卷)第50题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2621063, "material": "", "question": "有句话说得好:世界上怕就怕“认真”二字。其实,很多时候,只要有一个人选择“认真”,那些看似坚不可摧的不合理制度,便会以超乎想象的速度____________。归根结底,只要以法治手段维权,“霸道行为”绝不是不可战胜的。唯有让法治维权成为常态,____________的“霸王条款”才能真正得以解决。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 土崩瓦解 形形色色\nB. 支离破碎 五花八门\nC. 一蹶不振 层出不穷\nD. 灰飞烟灭 擢发难数", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 116715, "human_acc": 76.2978194748, "source": "2020年下半年省考第三季行测模考大赛(江苏卷)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4918890, "material": "", "question": "在大学校园里,“社牛”的人各有不同,“社恐”的人____________。或________于社交礼节的繁琐,或把别人眼中的“热闹”视作“尴尬”,都会让社恐的大学生们在团建时____________,在上课被点名时恨不得找个地缝钻进去,然后,逐渐把自己活成了一个“小透明”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 始终一贯 倦怠 诚惶诚恐\nB. 如出一辙 抵触 无所适从\nC. 千篇一律 疲惫 如坐针毡\nD. 千人一面 厌倦 噤若寒蝉", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 255994, "human_acc": 42.5142776784, "source": "2022上半年省考第十六季行测模考大赛(陕西卷)第40题", "difficulty": 7, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4198375, "material": "", "question": "虚拟与现实是相互激发的,因此线上与线下并非____________,反而趋向彼此融合。然而,有人却认为线上花费的时间越来越多、与现实世界的联系就会越来越少,这其实是一种____________的二元对立观念:线下是真实的、线上是虚假的,两者____________,彼此在进行一场争夺时间的博弈。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 不分畛域 针锋相对 大相径庭\nB. 泾渭分明 非此即彼 格格不入\nC. 判若鸿沟 相辅相成 殊途同归\nD. 壁垒森严 此消彼长 判若云泥", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 163558, "human_acc": 72.5271769036, "source": "2021下半年省考第二十一季行测模考大赛(陕西卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 3579855, "material": "", "question": "人们常说“以不变应万变”,强调的是战略上要有定力。而具体到实际工作中,在保持定力的同时,还要____________,因时、因地制宜,通过求变应变抢占先机。这就意味着,既要勇于冲破条条框框的羁绊,在“领跑”中闯出新路子、干出新事业,又要见微知著、____________,下好应对变化的“先手棋”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 审时度势 未雨绸缪\nB. 革故鼎新 运筹帷幄\nC. 与时俱进 棋高一着\nD. 因势利导 当机立断", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 75355, "human_acc": 78.8295401765, "source": "2021下半年省考第五季行测模考大赛(陕西卷)第28题", "difficulty": 4, "formulas": 0}, {"id": 5439244, "material": "", "question": "将下列选项中的成语依次填入各句横线处,最恰当的一组是:\n\n(1)事实上,中庸之道的平衡点并不是固定的、一成不变的,而是____________,因时、因地、因人、因物展开适宜的积极调整,这就是所谓的“时中”与“权变”。\n\n(2)阅读经典不是“到此一游”的旅游打卡。与其“打卡式”的____________,还不如等待一个更好的时机与经典相遇。", "type": "单选题", "options": "A. 因地制宜 大而化之\nB. 审时度势 大而化之\nC. 因地制宜 囫囵吞枣\nD. 审时度势 囫囵吞枣", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 1487, "human_acc": 61.0625420309, "source": "2023上半年省考第三季行测模考大赛(深圳卷)第68题", "difficulty": 6, "formulas": 0}, {"id": 2376710, "material": "", "question": "古人根据经验编制了许多脍炙人口的农谚,比如“清明前后,种瓜点豆”。不仅是农谚,与二十四节气相关的诗词歌赋也是____________,比如“蒹葭苍苍,白露为霜”,再比如“清明时节雨纷纷,路上行人欲断魂”。这些诗词歌赋____________,将二十四节气与天气现象巧妙地结合在一起,具有很好的传播性。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 俯拾皆是 沉思翰藻\nB. 不胜枚举 形神兼备\nC. 不计其数 文采斐然\nD. 举不胜举 缀玉联珠", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 1687321, "human_acc": 43.9581443009, "source": "2019年420联考《行测》题(黑龙江省直卷)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}, {"id": 2028542, "material": "", "question": "晚清官员最害怕的就是和洋人直接打交道,他们中的绝大部分人不懂外语,不明世界大势,不知国际公法,在和洋人打交道时未免______________,进退失据。对于日渐增多的华洋纠纷,他们处理起来更是______________,稍有不慎,就会招来严重的外交纷争。因此,他们便普遍形成了一种“畏洋如虎”的心态。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如履薄冰 捉襟见肘\nB. 瞻前顾后 手足无措\nC. 左支右绌 力不从心\nD. 妄自菲薄 眼花缭乱", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 2907310, "human_acc": 55.2247954295, "source": "2017年国家公务员录用考试《行测》题(地市级)第34题", "difficulty": 5, "formulas": 0}, {"id": 5731990, "material": "", "question": "交朋友贵不在多,而在于能交些____________地指出自己错误、缺点或不足的“诤友”。善待“诤友”,善用“诤言”,“改正”才是“诤言”的真谛。广大党员干部若是____________,仅有“闻过则喜”的态度而缺乏“知错则改”的担当,满足于指出问题和找到不足,其结果“过而不改,斯谓过矣”。因此,必须利用好“诤言”,“有则改之,无则加勉”,才能及时未雨绸缪或是____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一针见血 执迷不悟 防患未然\nB. 直言不讳 叶公好龙 亡羊补牢\nC. 正色直言 皮里阳秋 防微杜渐\nD. 单刀直入 讳疾忌医 迷途知返", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 99826, "human_acc": 40.9582673853, "source": "2023下半年省考第十九季行测模考大赛(陕西卷)第36题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5050583, "material": "", "question": "某工厂要生产一批货物,需要经过染色、定型和烘干三道工序。已知会染色的有26人,会定型的有38人,会烘干的有18人,既会染色又会定型的有12人,既会定型又会烘干的人数占会烘干人数的$\\frac{1}{3}$,既会染色又会烘干的有5人,三道工序都会的只有1人,不存在三道工序都不会的人。现要挑选只会一道工序的若干人参加专项拓展培训,那么至少需要选多少人,才能保证参加培训的人中会同样工序的有10人?", "type": "单选题", "options": "A. 30\nB. 29\nC. 28\nD. 27", "choice": "D", "keypoints": "最不利构造;三集合", "most_wrong": "C", "human_count": 337360, "human_acc": 14.5725634337, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第6题", "difficulty": 7, "formulas": 1, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 21099, "material": "", "question": "一个班里有30名学生,有12人会跳拉丁舞,有8人会跳肚皮舞,有10人会跳芭蕾舞。问至多有几人会跳两种舞蹈:", "type": "单选题", "options": "A. 12人\nB. 14人\nC. 15人\nD. 16人", "choice": "C", "keypoints": "非典型最值问题;三集合", "most_wrong": "A", "human_count": 242090, "human_acc": 33.9287042009, "source": "2012年浙江省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 5115455, "material": "", "question": "某班级有学生30人,自愿参加田径运动会,报名长跑的有3人,报名短跑的有8人,报名跳高的有5人,且有18人没有报名任何项目,则只报名两个项目的最多有多少人?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "非典型最值问题;三集合", "most_wrong": "C", "human_count": 86911, "human_acc": 34.7033171865, "source": "2022下半年省考第二季行测模考大赛(广东县级卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"], ["数量关系", "数学运算", "容斥原理问题", "三集合"]]}, {"id": 4932725, "material": "", "question": "中国传统民间美术形式多样,追求质朴、自然的美感,________着浓厚的人文精神。剪纸艺术作为其中的重要组成部分,其创作在题材选择、艺术技法、装饰纹样等诸多方面,都可与其他传统民间美术形式建立____________的联系。如丁园的《锣鼓喧天庆冬奥》在色彩和构图的营造上颇有传统农民画的“乡土味儿”,范金萍的《福虎迎冬奥》中憨态可掬的动物形象则吸纳了布虎、虎头鞋等传统手工艺的艺术精髓。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 蕴藏 盘根错节\nB. 充斥 唇齿相依\nC. 渗透 千丝万缕\nD. 积淀 如影随形", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 281594, "human_acc": 56.7913378836, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第2题", "difficulty": 6, "formulas": 0, "history": [{"id": 3762241, "material": "", "question": "对于虚拟世界的担心,并非____________。互联网已经被我们________日常生活轨迹之中,越来越多曾经的非媒介化活动被转化为媒介化形式,进而形成一种新型的“媒介化社会”。在一些情况下,媒介化所带来的过度沉浸乃至________,的确有可能让一些人“越来越拥抱技术、越来越忽略彼此”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无稽之谈 融入 放纵\nB. 杞人忧天 嵌入 沉迷\nC. 庸人自扰 切入 狂热\nD. 陈词滥调 纳入 耽溺", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 107209, "human_acc": 62.2531690436, "source": "2021下半年省考第十三季行测模考大赛(陕西卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 53033, "material": "", "question": "世界建筑文化源远流长。自古以来,人们在建筑房屋的过程中,创造着自己的建筑文化。因此,建筑汇聚了文化的精华,也体现了建筑师的人文修养。纵观历史上优秀的建筑师,除了学识渊博外,大都有着丰富的阅历,而不是____________的理论家,正因此,他们才能____________,迁想妙得,将自己意匠独造的想象力渗入建筑之中,丰富人类的建筑文化。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 循规蹈矩 融会贯通\nB. 纸上谈兵 博采众长\nC. 闭门造车 才华横溢\nD. 墨守成规 推陈出新", "choice": "B", "keypoints": "对应关系-解释类对应;关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "D", "human_count": 716553, "human_acc": 73.4629538918, "source": "2013年921联考《行测》题(河南卷)第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 2547914, "material": "", "question": "如果不能在继承过程中融入时代特征,那么所谓“传承”就意味着“流失”。因此,京剧艺术的传承是活态传承,它必然是____________的,必须以流派的灵魂结合时代的精神,进行新的创造。以梅兰芳、程砚秋为代表的京剧大师,都是创新之猛将,故步自封、____________首先就在精神上与大师相背离。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 推陈出新 缩手缩脚\nB. 革故鼎新 墨守成规\nC. 与时俱进 画地为牢\nD. 标新立异 因循守旧", "choice": "C", "keypoints": "对应关系-解释类对应;关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 19136, "human_acc": 70.1034698997, "source": "2020年上半年省考第二十九季行测模考大赛(海南卷)第43题", "difficulty": 4, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5519257, "material": "", "question": "作为暴利产业,槟榔与地方利益、娱乐业、饭圈等密切绑定,甚至成了个别地方的“支柱产业”,这些现实让地方职能部门____________。但是,如果放任不管,海量的利润流进了行业腰包,却把巨大的癌症危害、医保负担丢给了社会。因此,要想彻底整顿这个带血的产业,地方必须拿出“____________”的决心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 助纣为虐 刮骨疗毒\nB. 骑虎难下 困兽犹斗\nC. 投鼠忌器 壮士断腕\nD. 以身试法 破釜沉舟", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 40013, "human_acc": 77.9746582361, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第15题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 455277, "material": "", "question": "如果说清末的红学还只是一种开玩笑式的诨号,1921年后红学则确实已成为一种______的专门之学,由于胡适的提倡,《红楼梦》的考证工作已和中国近代学术的主流——从乾嘉考据学到“五四”之后的国故整理——汇合了。因此,从学术史的观点来看,“红学”无疑可以和其他当代的显学如“甲骨学”或“敦煌学”等______,而毫无愧色。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 严格 平分秋色\nB. 严谨 三足鼎立\nC. 严密 等量齐观\nD. 严肃 并驾齐驱", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "C", "human_count": 772402, "human_acc": 53.1404631267, "source": "2014年浙江省公务员录用考试《行测》题(B类)第9题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2671023, "material": "", "question": "网络用语为语言环境增添了活力,但同时也存在____________的问题,粗鄙、低俗、浮夸语言并不鲜见。对于网络语言,我们要给予宽松的环境,但同时也不能________:涉及私人领域和人际传播范围的,可以____________;但涉及社会公共和大众传播领域的,则必须严格规范。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 泥沙俱下 纵容 顺其自然\nB. 画蛇添足 委蛇 因势利导\nC. 良莠不齐 揶揄 听之任之\nD. 鱼龙混杂 放任 兼容并蓄", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 208139, "human_acc": 47.6422006448, "source": "2021年国考第二十季行测模考大赛(副省级)第31题", "difficulty": 6, "formulas": 0, "history": [{"id": 2637045, "material": "", "question": "对于网络文学是不是文学,时至今日已没有什么争议。但对于网络文学是一种什么样的文学,人们却____________。其丰富多样的描写对象和____________的叙事风格,让文学超越了传统的边界。但面对网络文学的“变”,如果采取________的态度,一味坚守传统的文学观念,无疑切断了文学的信息化发展之路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 众说纷纭 不拘一格 拒斥\nB. 莫衷一是 千变万化 质疑\nC. 摇摆不定 包罗万象 鄙夷\nD. 见仁见智 随心所欲 抵制", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "D", "human_count": 130298, "human_acc": 72.9558396906, "source": "2020年下半年省考第五季行测模考大赛(江苏卷)第36题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4410888, "material": "", "question": "网络文艺的出现顺应了文艺大众化的趋势,每一个人都能成为“创作者”,这样的现实激活了大众的文艺细胞与潜能。而另一方面,因为网络文艺门槛低、易发表等特点,导致了网络文艺在数量上很惊人,质量上却参差不齐的尴尬。任何东西,都会有精华的部分,也会有糟粕的地方。从这个角度来说,无需视网络文艺为洪水猛兽,只需加以引导即可。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 网络文艺自身特点导致其质量水平高低不一\nB. 应出台相应政策法规提高网络文艺整体质量\nC. 网络创作在激活社会文化的同时也存在弊端\nD. 应该对网络文艺的发展作出正确规范的引导", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总", "most_wrong": "C", "human_count": 12507, "human_acc": 96.1941312865, "source": "2021下半年省考第二十四季行测模考大赛(辽宁卷)第59题", "difficulty": 3, "formulas": 0, "history": [{"id": 4004640, "material": "", "question": "对于外国游客而言,除了中国广袤大地上的壮美风光之外,中国的魅力还来自于传统文化。尽管目前入境游还未恢复,以入境游为业务的旅游企业却已在提前谋划布局。然而无论怎样,让外国游客发现中国文化的独特魅力,应成为这些企业的着力点和突破口。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 外国游客被中国的传统文化所吸引\nB. 旅游企业需做好向外国游客宣传讲解中国文化的日常工作\nC. 旅游企业需提前计划安排好入境游业务\nD. 引导外国游客发现中国文化魅力是旅游企业的工作关键", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总", "most_wrong": "B", "human_count": 394655, "human_acc": 95.116747539, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 3541408, "material": "", "question": "盐本身不会导致体重增加,但是食盐过多会引起钠水滞留,导致水肿、体重和体积变大,还会降低人体的基础代谢。因此,在减肥过程中要少吃盐,不仅能避免血压升高等,还能通过减少体内水的潴留而减轻体重。但是,当体内缺乏钠时,也会出现各种各样的症状,如类似贫血的头晕、目眩等症状,并可能出现神经性损害等症状。所以,对于减肥的人来说,控盐也要有一定的限度,不能过分减盐,饮食以清淡、低盐为主,既有利于减肥也有利于健康。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 减肥过程中不吃盐对健康有好处\nB. 减肥时应合理控制食盐的摄入量\nC. 体内缺钠会出现头晕目眩等症状\nD. 食盐本身会降低人体的基础代谢", "choice": "B", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总", "most_wrong": "C", "human_count": 12482, "human_acc": 99.5673770229, "source": "2021下半年省考第三季行测模考大赛(辽宁卷)第57题", "difficulty": 3, "formulas": 0}, {"id": 4525687, "material": "", "question": "近年来,破除SCI至上的错误科研评价倾向,受到关注和热议。论文评价无疑是最重要的评价方式之一,但有其适用范围。有些科研工作重在实绩,成果涌现在田间地头、厂矿车间,或表现为文化艺术产品创造,可能参考和凝结了许多论文成果,但它本身无法也无需用论文表达。在适用论文评价的领域,也依然有“细分”的必要,应做到一文一议,对论文质量进行多学科专家“会诊”。科研评价具有强大的引导力,只有细分评价,引导才能精准,真正评出成果、评出人才。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 科研评价应依靠多元评价体系\nB. 精准引导科研评价需细分评价\nC. 破除SCI至上倾向迫在眉睫\nD. 科研评价更应看重工作实绩", "choice": "B", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 12381, "human_acc": 83.0466036669, "source": "2021下半年省考第三十季行测模考大赛(辽宁卷)第57题", "difficulty": 4, "formulas": 0}, {"id": 4330509, "material": "", "question": "在人类社会快速转型的进程中,网络化越来越像水和电一样成为人们生活的基础设施,特别是新冠肺炎疫情的全球肆虐,加速塑造了“一切在线、万物互联、扫码操作、点击支付”的生活方式。但与此同时,互联网也变成了网络乱象的滋生地,各种低俗网络文化的蔓延,防不胜防的网络诈骗事件的频发、网络谣言四起以及滥用个人信息等现象,带来了前所未有的治理挑战。对此,需加强网络文明建设,以处理好促进网络技术的向善发展和控制人对网络的心理依赖之间的关系。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 重塑网络问责机制用以解决网络乱象\nB. 网络化渗透并影响人类各方面的生活\nC. 治理网络乱象频发问题面临的新挑战\nD. 整治网络乱象需要加强网络文明建设", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总", "most_wrong": "C", "human_count": 12691, "human_acc": 98.1876920652, "source": "2021下半年省考第二十三季行测模考大赛(辽宁卷)第58题", "difficulty": 3, "formulas": 0}, {"id": 4576448, "material": "", "question": "事实上,我国A级景区的申报和管理,都有一套明确的制度。尤其是代表我国旅游风景区最高等级的5A级景区,申报更是有着严格的程序,评级需要经过充分论证和审核。然而,由于以前景区评级管理缺少退出机制,A级景区成了“终身制”,一些景区打起这样的小算盘:申报A级景区时,不惜投入巨额资源,申报成功、拿到“金招牌”后,就180度大转弯,把游客体验抛之脑后。旅游主管部门对A级景区开出“有进有出”的药方,可谓是对症下药,让这些急功近利的景区不能再钻空子。\n\n对这段文字概括最准确的是:", "type": "单选题", "options": "A. “5A级景区”资质不是一劳永逸的“金饭碗”\nB. 我国A级景区申报管理制度体系亟待完善\nC. 建立退出机制倒逼A级旅游景区提升服务质量\nD. 口碑立身、品质说话才是景区吸引客源的正道", "choice": "C", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 389215, "human_acc": 73.1898821988, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第75题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 48471, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第四次人口普查显示我国65岁及以上人口所占的比重大约是:", "type": "单选题", "options": "A. 5.30%\nB. 5.57%\nC. 6.96%\nD. 8.35%", "choice": "B", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 67160, "human_acc": 80.4198927933, "source": "2009年湖南省公务员录用考试《行测》题第127题", "difficulty": 3, "formulas": 0, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 2255931, "material": "", "question": "①20世界初发现的大量实验事实表明微观粒子具有波粒二象性,它们的运动不能用通常的宏观运动规律来描述。德布罗意.海森伯,薛定谔,玻尔和狄拉克等人建立和发展了量子力学的基本理论。\n\n②因此,量子力学早期亦被称“波动力学”或“矩阵力学”。\n\n③量子力学是现代物理学的理论基础之一。是描述微观粒子运动规律的理论。\n\n④因此量子力学的建立大大促进了原子物理,固体物理和原子核物理等学科的发展,并标志着人们对客观规律的认识从宏观深入到了微观世界。\n\n⑤应用这理论去解决微观粒子的问题时,得到的结果与实际符合。\n\n⑥量子力学用波函数描述微观粒子的运动状态,以薛定谔方程确定波函数的变化规律,并用算符和矩阵方法对各物理量进行计算。\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③②⑥⑤④\nB. ③①⑤④⑥②\nC. ①③⑤②⑥④\nD. ③①⑥②④⑤", "choice": "B", "keypoints": "首句特征;确定捆绑", "most_wrong": "D", "human_count": 8889, "human_acc": 65.0241871977, "source": "2016年江西省法检系统招录考试《行测》题第34题", "difficulty": 5, "formulas": 0, "history": [{"id": 2365984, "material": "", "question": "①地外天体水一直是月球和深空探测的重要内容\n\n②无论在月球表面还是月球样品中都没有发现水存在的明显证据\n\n③水是生命活动赖以维持的基础,也是揭示太阳系天体形成演化过程的重要依据\n\n④但一些研究者的探测结果表明月球是一个极其干燥的天体\n\n⑤月球水的探测却经历了漫长曲折的过程\n\n⑥有人认为月球永久阴影极区的低温环境有助于保存水冰\n\n将上述文字重新排序,最为恰当的是:", "type": "单选题", "options": "A. ③①⑤⑥④②\nB. ①③⑤④②⑥\nC. ③①⑤④②⑥\nD. ①⑤⑥③④②", "choice": "A", "keypoints": "首句特征;确定捆绑", "most_wrong": "C", "human_count": 666406, "human_acc": 90.9294033967, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第85题", "difficulty": 3, "formulas": 0}, {"id": 5102372, "material": "", "question": "①我国现存辽塔约有90座,其中辽宁省内就有约40座\n\n②辽宁辽塔的“辽”字,既有空间上的地理分布,又有时间上的历史积淀\n\n③辽代古塔简称辽塔,其以独特的风格造型和精美的建造艺术在中华古塔中独树一帜\n\n④一座座矗立在辽宁省内的辽塔,历经千年,记录着佛教在东北地区的传播流变,也成为我们窥探大辽王朝兴衰的一扇窗\n\n⑤契丹民族兴起于辽河河畔,辽宁省名源于辽河\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①⑤②④\nB. ③⑤①②④\nC. ②③①④⑤\nD. ①③②⑤④", "choice": "A", "keypoints": "首句特征;确定捆绑", "most_wrong": "B", "human_count": 1509309, "human_acc": 60.166341021, "source": "2022年湖北省公务员录用考试《行测》题(网友回忆版)第55题", "difficulty": 4, "formulas": 0}, {"id": 2729737, "material": "", "question": "①榫,“剡木入窍”;卯,“以虚入盈”。凸出的部分是榫,凹进的部分是卯\n\n②同时要遵照特定木材的性质,“吃线”或“留线”,依具体所需,进行调整和优化\n\n③榫与卯相扣,使各个组成部分契合为一\n\n④榫卯,是传统木作的接合方式\n\n⑤榫卯结构,尊重木质的纯粹,不借胶、钉、金属丝等物体的加固或穿和,反而更加耐久\n\n⑥人与木,一来一往,每一个精微的步骤,都是与自然的探讨过程\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④⑤①③⑥②\nB. ④①③⑤②⑥\nC. ①③④⑤②⑥\nD. ①⑤⑥④③②", "choice": "B", "keypoints": "首句特征;确定捆绑", "most_wrong": "C", "human_count": 13909, "human_acc": 85.5201667985, "source": "2021上半年省考第一季行测模考大赛(河南卷)第31题", "difficulty": 3, "formulas": 0}, {"id": 5562980, "material": "", "question": "①在大众健身锻炼中,长跑是一项经常被采用的、很好的健身手段\n\n②每个人应根据自身情况,灵活选择运动方式\n\n③经常进行长跑运动可以提高心肺功能水平,预防部分代谢性疾病\n\n④长跑一般是指长距离跑,路程在5公里以上的被划分为长跑\n\n⑤但体重基数较大和一些下肢关节有劳损或伤病的人就不适宜长跑\n\n⑥在竞技体育比赛中,长跑项目主要包括5千米、1万米、半程马拉松、全程马拉松等\n\n将以上6个句子重新排序,最恰当的一项是:", "type": "单选题", "options": "A. ④⑥①③⑤②\nB. ④①⑥③②⑤\nC. ③④⑥①⑤②\nD. ③②④⑥①⑤", "choice": "A", "keypoints": "首句特征;确定捆绑", "most_wrong": "C", "human_count": 52693, "human_acc": 84.548232213, "source": "2023下半年省考第二季行测模考大赛(北京卷)第33题", "difficulty": 3, "formulas": 0}, {"id": 2028478, "material": "", "question": "①未开采的煤炭只是一种能源储备,只有开采出来,价值才能得到发挥\n\n②充分挖掘并应用大数据这座巨大而未知的宝藏,将成为企业转型升级的关键\n\n③有人把大数据比喻为蕴藏能量的煤矿\n\n④数据作为一种资源,在“沉睡”的时候是很难创造价值的,需要进行数据挖掘\n\n⑤大数据是一种在获取、存储、管理、分析方面规模大大超出传统数据库软件工具能力范围的数据集合\n\n⑥与此类似,大数据并不在“大”,而在于“用”\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑤④⑥\nB. ⑤③④⑥①②\nC. ③⑤②①④⑥\nD. ⑤④③①⑥②", "choice": "D", "keypoints": "首句特征;确定捆绑", "most_wrong": "B", "human_count": 3122891, "human_acc": 66.9099241696, "source": "2017年国家公务员录用考试《行测》题(地市级)第50题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 5114051, "material": "", "question": "不得不承认,印刷媒介独领风骚的时代已然远去,人们之所以________于讨论纸质书的阅读量,或许是因为在印刷媒介退居边缘的过程中,许多人产生了一种严肃阅读、深度学习的焦虑感。在这一语境下,纸质书渐渐等同于深度阅读,互联网渐渐等同于碎片化阅读,它们似乎成了____________的两面——要么唱衰纸质书,要么贬低互联网。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 倾向 泾渭分明\nB. 执着 背道而驰\nC. 热衷 非此即彼\nD. 沉迷 水火不容", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 103785, "human_acc": 79.5818278171, "source": "2022下半年省考第三季行测模考大赛(广东乡镇卷)第2题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2693493, "material": "", "question": "留住返乡农民工,让他们在生养自己的土地上创业,就是给乡村振兴增添一份特殊的力量。奉献故土、建设家乡是许多返乡农民工的心愿,许多农民工户口留在家乡,人却已经在外地工作生活了许多年,对于家乡的发展、相关政策了解得并不多。因此,相关部门需要提升服务意识,耐心地向他们介绍家乡的发展机会,与意图返乡的农民工实现“精准对接”。而回到家乡的农民工创业者,也常常会为办事难、难办事,求人难、难求人而发愁。为他们提供更好的政务服务才能真正让他们安心留下来,为乡村振兴作贡献。\n\n这段文字重在说明:", "type": "单选题", "options": "A. 简化办事流程为返乡农民工搭好创业舞台\nB. 留住返乡农民工需要提供优质的利民服务\nC. “合身”的惠民政策是乡村振兴的杀手锏\nD. 农民工返乡“扎根”有利于推动乡村振兴", "choice": "B", "keypoints": "关联词-并列;行文脉络-总分", "most_wrong": "C", "human_count": 265069, "human_acc": 85.3641881925, "source": "2021年国考第二十三季行测模考大赛(副省级)第41题", "difficulty": 3, "formulas": 0, "history": [{"id": 2042342, "material": "", "question": "晨练是一种好习惯,但未必人人适合。从人的生理特点来看,早上6点左右,人体的血压开始升高,心率逐渐加快,上午10点左右达到峰值,如果有冠心病、高血压的人此时锻炼,尤其是进行剧烈运动,就有可能发生意外。清晨6点到8点,人体血小板的凝聚力明显增强,血液相对黏稠,这段时间运动可能会使心脑血管梗塞率增大。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 晨练总的来说还是弊大于利\nB. 晨练不宜选在6至8点之间\nC. 晨练应尽可能避免剧烈运动\nD. 晨练时间和强度要因人而异", "choice": "D", "keypoints": "关联词-并列;行文脉络-总分", "most_wrong": "B", "human_count": 1227453, "human_acc": 93.5053317724, "source": "2017年江苏省公务员录用考试《行测》题(C类)第22题", "difficulty": 4, "formulas": 0}, {"id": 47875, "material": "", "question": "1994年到1997年4年时间,财政收入占GDP的比重仅$10\\%$多一点,到2011年接近$22\\%$,如果考虑到土地出让和其他政府基金性收入,有专家估计政府收入占GDP的比重超过$30\\%$。而同期,企业或者是资本收入占比也大幅度提高。一个佐证是,2002年底,企业存款为64298.47亿元,低于当时的个人存款,而到2011年底,企业存款(央行新的统计科目为“单位存款”,口径相当)上升到423086.61亿元,增长了5.58倍,远超同期个人存款2.68倍的增幅。\n\n通过这段文字,作者想表达的观点是:", "type": "单选题", "options": "A. 收入越来越向政府和资本倾斜\nB. 政府应适当降低税收\nC. 我国经济增长的速度较快\nD. 政府收入过高会成为企业的负担", "choice": "A", "keypoints": "关联词-并列;行文脉络-总分", "most_wrong": "C", "human_count": 491447, "human_acc": 75.0963990013, "source": "2013年浙江省公务员录用考试《行测》题(B类)第29题", "difficulty": 4, "formulas": 3}, {"id": 2388271, "material": "", "question": "不能说辱骂学生的老师是好老师,但我要告诉大家,在今天的中国校园里,肯为学生着急的老师恐怕不多了。为什么呢?一方面,现有的教育机制并没有给严师提供保障。有句话说,“没有教不好的学生,只有不会教的老师”,这实际上把所有教学管理中的风险都转嫁给了老师,一旦老师严厉管教,学生出了问题,老师不管有理没理,总是遭遇舆论千夫所指。久而久之,很多老师也都感觉到多一事不如少一事。另一方面,今天的学生也真的不好“管”了。对老师有所不满,截屏上网,甚至录音录像的情况新闻里也都曝光过。你觉得严师出高徒是为学生好,学生也许想的是舒舒服服躺成人生赢家。\n\n通过这段文字,作者最想表达的意思是:", "type": "单选题", "options": "A. 舆论环境不利于老师对学生严格管理\nB. 学生经常利用舆论表达对老师的不满\nC. 现在的学生越来越难以严加管理\nD. 当前的舆论导向过度保护学生", "choice": "A", "keypoints": "关联词-并列;行文脉络-总分", "most_wrong": "D", "human_count": 1432351, "human_acc": 70.4078818669, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第52题", "difficulty": 4, "formulas": 0}, {"id": 3743931, "material": "", "question": "不管是一个世界级的“群”,还是一个地方级的“城”,都秉承着“要相融、道先通”的朴素理念。对于此,京津冀有着比别人更深的领悟。1905年,中国第一条由中国人设计的铁路——京张铁路开始修建;2008年,中国第一条时速350公里的铁路——京津城际运营,将中国带入高铁时代,京津两地形成“半小时通勤圈”;2019年,世界首条智能化高铁——京张高铁通车,不仅助力京津冀一体化协同发展,更为2022年北京冬奥会提供交通运营服务保障······轨道上的京津冀从历史深处走来,“看似寻常最奇崛,成如容易却艰辛”。如今,我们还要沿着这条道路前行,驶向更加灿烂美好的未来。\n\n这段文字主要介绍了:", "type": "单选题", "options": "A. “融与通”是世界乃至地区发展的必然要求\nB. 风雨艰辛铸就了京津冀发展美好灿烂的明天\nC. 发达的交通为未来京津冀协同发展增添亮色\nD. 铁路交通的融合优势让京津冀未来华彩可期", "choice": "D", "keypoints": "关联词-并列;行文脉络-总分", "most_wrong": "A", "human_count": 98368, "human_acc": 62.3322625244, "source": "2021下半年省考第十二季行测模考大赛(四川卷)第28题", "difficulty": 6, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 2187618, "material": "", "question": "在大时代背景下,一群文物修复师,默默地固守“冷宫”一隅,日复一日地打理着价值连城的“国宝”。宫墙外的世界_____________,宫墙内的他们却要用几年的时间摩挲同一件文物。一座宫廷钟表上千个零件要______________,一件碎成100多片的青铜器要拼接完整,一幅古画揭一两个月······\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 沧海桑田 金瓯无缺\nB. 熙熙攘攘 完璧归赵\nC. 白云苍狗 精挑细选\nD. 斗转星移 严丝合缝", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "A", "human_count": 1638628, "human_acc": 59.1180548605, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第40题", "difficulty": 5, "formulas": 0, "history": [{"id": 2604024, "material": "", "question": "在以往的文艺批评作品中,有些批评家____________,结合西方的形式主义、结构主义等文艺理论,创作了不少精彩的批评文本,让人眼前一亮。但也有不少批评家生搬硬套西方文艺理论的一些名词、概念和具体的理论,貌似给人耳目一新之感,实则____________,使得批评文本艰涩僵硬、____________,令人望而却步。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 剑走偏锋 矫枉过正 离题万里\nB. 独具慧眼 空洞无物 高深莫测\nC. 独辟蹊径 弄巧成拙 诘屈聱牙\nD. 标新立异 照猫画虎 不忍卒读", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 346119, "human_acc": 57.0780569688, "source": "2021年国考第十季行测模考大赛(副省级)第23题", "difficulty": 6, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4737371, "material": "", "question": "认知历史的渠道有很多,听____________的故事、学文字记录的典籍、看考古遗存的文物,但这些都未能充分调动大众认知历史的主观能动性。考古盲盒的出现,让大众自己动手经历沉浸式考古体验,无疑是____________,让人零距离感受历史的脉动,从识记政治经济的“硬历史”转向感受精神谱系传承的“软历史”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 脍炙人口 奇思妙想\nB. 耳闻则诵 别出心裁\nC. 口耳相传 另辟蹊径\nD. 路人皆知 推陈出新", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 279146, "human_acc": 68.0099302874, "source": "2022上半年省考第八季行测模考大赛(陕西卷)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 453921, "material": "改革开放三十多年以来,广东经济发展连上新台阶,综合实力不断实现大跨越。1979—2012年,世界经济年均增长速度为2.8%,中国增速为9.8%,广东增速则达13.3%。持续较快的经济增速,推动广东经济总量不断跃上新台阶。自1989年开始,广东GDP总量(国内生产总值)在全国一直保持首位,到2012年已连续24年居全国第一,占全国经济总量比重在1/10至1/8之间。\n\n        2012年,民营经济达29319.97亿元,占GDP比重为51.4%;民营经济上缴税金6467.82亿元,占全省税收总额的49.1%;民间投资10177.28亿元,占全部固定资产投资的52.7%,民营经济已成为支撑广东经济内生增长的主力。\n\n        2012年,广东铁路营业里程达到2577公里,比1978年增长1.6倍;公路通车里程19.5万公里,增长2.7倍;民用航线里程185.1万公里,增长88.1倍;管道输油(气)里程6448.01公里,增长82.7倍;沿海港口货物吞吐量14.08亿吨,增长49.5倍。改革开放之初尚无的高速公路在2011年实现通车里程5049公里,首次突破5000大关,2012年进一步提高到5524公里。\n\n        2012年,广东城镇居民人均消费性支出22396.35元,比1978年增长55.0倍;农村居民人均生活消费支出7458.56元,比1978年增长39.3倍。2012年,广东城镇居民人均住宅建筑面积34.4平方米,比1978年增加27.3平方米;农村居民人均生活住房面积31.67平方米,比1978年增加22.9平方米。", "question": "广东高速公路在2012年实现通车里程比2011年增长约:", "type": "单选题", "options": "A. 9.4%\nB. 109.4%\nC. 270%\nD. 370%", "choice": "A", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 362166, "human_acc": 86.3725473954, "source": "2014年广东省公务员录用考试《行测》题(县级以上)第88题", "difficulty": 5, "formulas": 0, "history": [{"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 48511, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度三大产业增加值中,增长速度最快的是:", "type": "单选题", "options": "A. 第一产业\nB. 第二产业\nC. 第三产业\nD. 无法确定", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 67399, "human_acc": 66.0054303476, "source": "2009年湖南省公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}, {"id": 4351, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1985年与1981年相比,海外来中国大陆访问者人数增加了多少?", "type": "单选题", "options": "A. 12.8%\nB. 128%\nC. 56%\nD. 228%", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 6586, "human_acc": 73.2159125418, "source": "2008年内蒙古自治区公务员录用考试《行测》题第135题", "difficulty": 5, "formulas": 0}, {"id": 5692303, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年来,j国普通家庭的税费支出变化,正确的说法是________。", "type": "单选题", "options": "A. 2013年是50年前的1832%\nB. 2013年是50年前的1732%\nC. 2013年比50年前增加了1832%\nD. 2013年比50年前增加了1732%", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 104, "human_acc": 68.2692307692, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第43题", "difficulty": 4, "formulas": 0}, {"id": 7389, "material": "请根据下列文字资料,完成以下各题:\n\n        2005年我国对外贸易出口总额达到7620亿美元,占全球贸易出口总额的比重由2001年的4.3%提高到2005年的7.3%。2005年,我国对外贸易进出口总额为14221亿美元,居世界第三位,占全球贸易进出口总额的6.7%。2005年我国吸引外国直接投资额由2001年的469亿美元增加到603亿美元,居世界第三位。\n\n        近年来,我国外汇储备持续大幅增长,2001年我国外汇储备2122亿美元,2005年比2001年增长了2.9倍,居世界第二位,为我国经济持续、稳定发展奠定了重要基础。", "question": "2005年我国吸引外资直接投资较2001年增长的百分比是:", "type": "单选题", "options": "A. 128.57\nB. 228.57\nC. 28.57\nD. 70.31", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 17029, "human_acc": 85.7360972459, "source": "2008年河南省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 3579862, "material": "", "question": "张载自信担当的为学勇气,来自于他对天下民生的家国情怀。无论是身处乡野之远,还是________于诗书之乐,张载都关心着国家的政治,牵挂着社会的安危。他的政治主张,不寻求____________的效果,而是希望通过儒家的“德治”逐渐建成理想社会,这正是张载“为万世开太平”情怀的真实________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 专注 一针见血 彰显\nB. 沉潜 立竿见影 表白\nC. 沉溺 一蹴而就 宣示\nD. 痴迷 一劳永逸 诠释", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 84427, "human_acc": 35.6521018158, "source": "2021下半年省考第五季行测模考大赛(四川卷)第24题", "difficulty": 7, "formulas": 0, "history": [{"id": 5333633, "material": "", "question": "中华文明源远流长、博大精深,是中华民族独特的精神标识,是当代中国文化的根基,是________全世界华人的精神纽带,也是中国文化创新的宝藏。在信息时代,使中华民族最基本的文化基因与当代文化相适应、与现代社会相协调,以人们____________、具有广泛参与性的方式推广开来,文化数字化是一项基础工程。数字科技发展日新月异,中华文化魅力____________。为文化传承和发展插上数字之翼,中华文化必将在数字时代绽放更夺目的光彩。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 维系 喜闻乐见 历久弥新\nB. 凝结 争先恐后 与日俱增\nC. 连结 趋之若鹜 一成不易\nD. 连接 交口称赞 经久不衰", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 287536, "human_acc": 83.5081520227, "source": "2022下半年省考第十五季行测模考大赛(浙江A卷)第31题", "difficulty": 3, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4753519, "material": "", "question": "转型社会中的矛盾冲突____________,相互交织。受制于体制机制等因素,传统的地方治理体系形成了“省域”和“县域”两大重心,省域治理幅员辽阔,____________,县域治理辖责有限,____________,两者之间的市域治理不上不下,地位尴尬,难有作为。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遍地开花 捉襟见肘 如履薄冰\nB. 来势汹汹 左支右绌 难以为继\nC. 此起彼伏 望尘莫及 进退两难\nD. 层出不穷 鞭长莫及 力不从心", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 303459, "human_acc": 87.398956696, "source": "2022上半年省考第九季行测模考大赛(陕西卷)第33题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5415935, "material": "", "question": "青霉素作为人类迈入抗生素时代的“带头大哥”,从1928年被发现到如今近一个世纪,几乎到了____________的程度,但“抗菌界”历经多轮迭代发展之后,很多人似乎对青霉素这一“抗菌老将”产生了“审美疲劳”,甚至逐渐将其遗忘。殊不知,就青霉素的杀菌机理而言,青霉素如今仍然居于____________的地位。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如日中天 力拔头筹\nB. 耳闻则诵 无可比拟\nC. 无孔不入 至关重要\nD. 妇孺皆知 不可替代", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 199577, "human_acc": 84.5302815455, "source": "2022下半年省考第二十三季行测模考大赛(河南卷)第11题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4718315, "material": "", "question": "在很多人的印象中,主旋律影片宣教色彩浓厚,人物形象概念化、抽象化,缺乏艺术感染力,因而____________。将普通人作为主人公,发掘他们灵魂中的闪光之处,从个人扩大到家庭,从小家________到大国,家国情怀、时代精神被凝聚在日常生活和________可感的人物形象中,才是主旋律影片的破解之道。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 束之高阁 延展 立体\nB. 敬而远之 辐射 具体\nC. 漠然置之 过渡 详尽\nD. 望而却步 延伸 具象", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 316989, "human_acc": 31.2433554477, "source": "2022上半年省考第七季行测模考大赛(四川卷)第24题", "difficulty": 7, "formulas": 0, "history": [{"id": 2742048, "material": "", "question": "今天的汉语是历史汉语的发展。要更好地了解今天的汉语,就要了解它的____________。通过现代的录音工具和记录手段,我们已经能________今天汉语及各种方言、各个要素的现状;历代典籍的数字化,又为我们深入探求汉语悠久的、____________的历史,使我们的语言和语言学研究自立于世界民族之林奠定了坚实基础。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 古往今来 发掘 生生不息\nB. 来龙去脉 理清 周而复始\nC. 前世今生 描摹 绵延不断\nD. 千姿百态 探明 代代相传", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 1040620, "human_acc": 59.8893928619, "source": "2021年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 5539937, "material": "", "question": "平台经济的发展固然离不开规模效应,但绝不意味着平台企业可以走向垄断,否则会对市场公平造成严重影响。因此,要________相关垄断行为,不能让垄断行为肆无忌惮。而且从平台经济长远健康发展角度看,强化监管与支持发展并不是矛盾关系,而是____________的关系。唯有将鼓励创新与有效监督有机结合,才能以良法善治________平台经济健康持续发展。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 遏制 相辅相成 推动\nB. 制止 并行不悖 赋能\nC. 打破 相得益彰 促进\nD. 严惩 互为表里 助力", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 40166, "human_acc": 77.5631130807, "source": "2023上半年省考第十三季行测模考大赛(四川卷)第19题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4491526, "material": "", "question": "人类进化的关键可能一直存在于我们的思想深处。试图解释大脑进化的神经科学家倾向于关注大脑皮层,尤其是前额叶皮层,它支撑着我们有意识地做决定的能力。近年来,一些神经科学家则认为,在人类进化过程中,小脑的变化比人们想象的多。他们从人类、黑猩猩和猕猴的大脑中提取了样本,并从小脑和前额叶皮层中提取了DNA,随后,他们观察了DNA的哪些部分附着了甲基小分子。DNA的甲基化模式反映了基因的活跃性。研究人员发现,人类DNA的甲基化模式与黑猩猩和猕猴的不同。至关重要的是,不同物种之间小脑的差异比前额叶皮层的差异更大。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 小脑可能是人类进化的关键\nB. 小脑比大脑更能反映基因活跃性\nC. 人类与其他物种最大的差异在小脑\nD. DNA的甲基化模式是研究人类进化的钥匙", "choice": "A", "keypoints": "关联词-转折;主题词;行文脉络-分总分", "most_wrong": "C", "human_count": 247867, "human_acc": 80.2736951672, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第57题", "difficulty": 4, "formulas": 0, "history": [{"id": 2262543, "material": "", "question": "“法之必行”的真正动力来自哪里?有人说靠激励,也有人寄希望于惩戒。这些都不无道理,但还有一点往往被人忽视,那就是法治精神的作用。常见媒体有这样的报道,尽管有制度规范,严格监管,依然有一些不法商贩存在侥幸心理,寻机销售假冒伪劣产品。如果人们有心理契约,规则在人们心中,自然有良好的行为约束。\n\n以上文字意在强调:", "type": "单选题", "options": "A. “法之必行”有多重动力来源\nB. 法治精神是民众守法的内在动力\nC. 制度规范本身不能杜绝违规行为\nD. 心理契约是人们心中的行为约束", "choice": "B", "keypoints": "关联词-转折;主题词;行文脉络-分总分", "most_wrong": "D", "human_count": 4587, "human_acc": 87.9441901025, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第43题", "difficulty": 3, "formulas": 0}, {"id": 5445689, "material": "", "question": "在市场经济时期,劳动密集型制造工厂普遍采用流水线技术,工人被高度“去技能化”,几乎不需要技能便可完成装配操作,企业没有需求也没有动力去培养中高级技术工人。但是,当一个国家的产业结构向中高端迈进时,高水平职业教育的支撑作用就会显现出来。技术进步与人力资本相互影响、相互促进:企业引进的高端生产线,需要技术工人去操作和维护,否则技术改造和升级就无法实现;如果没有配套的职业技能培训体系,企业的转型升级就难以达到预期效果。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 产业结构转型升级需要职业教育的支撑\nB. 技术进步对人力资本提出了更高要求\nC. “技工荒”会随产业结构升级更趋严重\nD. 职业技能培训需求与经济增长有相关性", "choice": "A", "keypoints": "关联词-转折;主题词;行文脉络-分总分", "most_wrong": "B", "human_count": 1382196, "human_acc": 80.7349319489, "source": "2023年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第42题", "difficulty": 4, "formulas": 0}, {"id": 5101718, "material": "", "question": "除了探矿队员,很多矿石收藏家也对铀矿石感兴趣,因为它们实在太漂亮了。然而学过物理、化学的人都知道,不管化学上结合成什么物质,铀元素的放射性都是不会变的。那么把含铀的“毒花”放在博物馆甚至家里,真的没事吗?实际上,只要隔着一层玻璃,这些铀矿石就算放在卧室里都伤不了人,因为它们所含的铀,几乎全是放射性较弱的铀-238(俗称“贫铀”),只有极少量是用于制造核弹头的同位素铀-235。不过千万不要吸入它的粉尘,因为哪怕它所放出的最弱的α射线,也会造成辐射伤害。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 铀矿石为什么应该保存在玻璃柜中\nB. 铀矿石作为矿石收藏是比较安全的\nC. 铀-238与同位素铀-235有本质不同\nD. 粉尘态铀矿石的放射性会大大增强", "choice": "B", "keypoints": "关联词-转折;主题词;行文脉络-分总分", "most_wrong": "A", "human_count": 1850797, "human_acc": 57.7249152662, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第38题", "difficulty": 4, "formulas": 0}, {"id": 5661980, "material": "", "question": "中国哲学注重情与意,儒家对道德实践和人格的理解,便首先与“恻隐之心”相联系,后者即属广义的情感。不过,在注重道德行为与人格培养中情感作用的同时,儒家也肯定礼、义的引导,后者涉及理性的规范,并赋予行为以自觉的性质。以孟子而言,与确认礼、义的规范作用相联系,孟子突出“大体”、注重“心之官”,二者更多地体现了理性的规定。但同时,他又以“恻隐之心”“羞恶之心”“辞让之心”为仁、义、礼之“端”,而“恻隐”“羞恶”“辞让”则在不同意义上都与情感相关,并涉及伦理行为的动因、道德品格的培养等问题。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中国哲学有理性与非理性的哲学内涵\nB. 儒家既看重情感作用也认同理性规范\nC. 孟子之道中的理性规范都与情感相关\nD. 儒家思想更为注重礼与义的理性规范", "choice": "B", "keypoints": "关联词-转折;主题词;行文脉络-分总分", "most_wrong": "A", "human_count": 7055, "human_acc": 75.2941176471, "source": "2023下半年省考第十三季行测模考大赛(四川卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 3634344, "material": "", "question": "移动互联网初期,碎片化时间催生出社交小游戏、信息流资讯等一众新形式的内容产品,而如今碎片化的概念似乎已经不再成立。用户对移动游戏或短视频的上瘾,表面上是他们自主的选择,或是自制力的退化,但不容忽视的一点是,技术一直在驱动他们对这些产品“主动”上瘾。如今,社交媒体、信息流及短视频平台对如何刺激大脑中的多巴胺,已经越来越娴熟,他们甚至从内容上迎合人性天然的兴趣所在,从而牢牢把控住用户的空余时间。从微信、微博到今日头条、快手抖音,算法通过记录用户行为、进行数据分析,能更直接地透视和抓住人性的弱点,所以网络上瘾的问题越发公开化。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 技术加持助推人们网络上瘾\nB. 当下网络上瘾碎片化日趋严重\nC. 亟需加强自制力防止网络上瘾\nD. 数据分析让人难逃“游”网", "choice": "A", "keypoints": "关联词-转折;主题词;行文脉络-分总分", "most_wrong": "C", "human_count": 32304, "human_acc": 75.1733531451, "source": "2021下半年省考第七季行测模考大赛(辽宁卷)第59题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 4935343, "material": "", "question": "①当前,文化遗产具有较高的社会效益与经济效益,不同的效益属性导致文化遗产的保护与利用开发存在着更为明显的复杂性\n\n②随着国际经贸合作的逐步加深,文化事业的发展成为各国竞争的战略新高地\n\n③当下文化遗产被肆意破坏的情况却时有发生,文化遗产保护缺位、思维错位现象突出,且文化遗产保护职责落实不明确\n\n④改革开放以来,百花齐放、百家争鸣的多元文化格局逐步成型,文化遗产作为中华传统文化的物质传承载体理应受到有效的保护\n\n⑤文化遗产保护应兼顾经济效益与社会效益,把握时代发展规律,完善文化遗产保护法律法规,重视非物质文化遗产的立法保障,构筑文化遗产保护的法治之墙\n\n⑥文化遗产是一个国家与民族精神图谱的时代见证,保护文化遗产是文化自信的时代需求,更是新时代中国特色社会主义文化事业发展的力量之源\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑥④①②③⑤\nB. ④③⑥⑤②①\nC. ②④③①⑥⑤\nD. ①②⑥⑤④③", "choice": "C", "keypoints": "尾句特征;确定捆绑", "most_wrong": "A", "human_count": 16680, "human_acc": 46.948441247, "source": "2023年国考第十九季行测模考大赛(地市级)第58题", "difficulty": 6, "formulas": 0, "history": [{"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}, {"id": 5271135, "material": "", "question": "①排污单位“魔高一尺”,就要求打击相关违法犯罪时必须“道高一丈”\n\n②良好的生态环境是最普惠的民生福祉\n\n③以便于加强企业监管,规范企业排污行为,优化调整环保政策\n\n④然而现实生活中,一些企业为了追求经济利益,往往使用一些“反调查措施”,以逃避监管\n\n⑤近年来,为了实时掌握企业的排污动态,生态环境部门在很多重点排污单位设置了自动监测设施\n\n⑥这使得数据造假行为变得更加隐蔽,监管部门的调查取证难度也不断加大\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ⑤②⑥①④③\nB. ⑤①②⑥③④\nC. ②⑤③④⑥①\nD. ②④⑤③①⑥", "choice": "C", "keypoints": "尾句特征;确定捆绑", "most_wrong": "D", "human_count": 103011, "human_acc": 91.1650212113, "source": "2022下半年省考第九季行测模考大赛(新疆区考卷)第35题", "difficulty": 3, "formulas": 0}, {"id": 4918952, "material": "", "question": "①然而,目前全球范围内将氨作为低碳燃料的研究仍处于起步阶段\n\n②减少燃煤发电的二氧化碳排放是我国顺利实现碳达峰碳中和目标的关键\n\n③氨还未能在工业尺度条件下验证将氨作为低碳燃料大规模使用的可行性\n\n④与氢相比,这是一种极具发展潜力的清洁能源载体和低碳燃料\n\n⑤燃煤锅炉混氨燃烧技术,为我国未来实现大幅度碳减排探索出一条有效技术路径\n\n⑥氨体积能量密度高,单位能量储存成本低,大规模储存和运输基础设施与技术成熟完善\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ②⑥④①③⑤\nB. ②⑤④⑥①③\nC. ⑥④⑤①②③\nD. ⑥④③⑤②①", "choice": "A", "keypoints": "尾句特征;确定捆绑", "most_wrong": "B", "human_count": 212727, "human_acc": 43.1703544919, "source": "2022上半年省考第十六季行测模考大赛(河南卷)第27题", "difficulty": 6, "formulas": 0}, {"id": 2453223, "material": "", "question": "①用人的关键并不在于用这个人而不用那个人,而在于怎样使组织中的每个成员都能得到最适当的位置,发挥最大的潜能\n\n②在不同的情景和条件下,长与短都会向自己的对立面转化,长的可以变短,短的可以变长\n\n③扬长避短是用人的基本方略\n\n④这种长与短互换的规律,是长短辩证关系中最容易被人忽视的一部分\n\n⑤管理者的高明之处,就在于短中见长,善用其短\n\n⑥然而,在现实生活中,人的长处和短处并不是绝对的,没有静止不变的长,也没有一成不变的短\n\n将以上6个句子重新排列,语序最恰当的是", "type": "单选题", "options": "A. ③⑥②④①⑤\nB. ⑤④⑥②①③\nC. ②⑤④①③⑥\nD. ①⑤⑥③②④", "choice": "A", "keypoints": "尾句特征;确定捆绑", "most_wrong": "D", "human_count": 1306704, "human_acc": 81.3492573682, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第50题", "difficulty": 5, "formulas": 0}, {"id": 2387664, "material": "", "question": "①为了更好地利用这些新工具,肿瘤学家必须成为真正的演化生物学家\n\n②现在,每年都会有许多新的针对特定基因突变的抗癌药物上市\n\n③只有这样,才能通过检测每位病人癌组织中的基因突变,制定有效策略,摧毁癌症树的根源和分支\n\n④传统化疗、放疗和免疫疗法相结合的复合疗法也表现出了越来越大的潜力\n\n⑤肿瘤学家不再将一种癌症看作是可以一概而论的疾病,而是认为,每一个病例都有其自身的特点\n\n⑥研究病人个体的基因组,将会对未来的癌症治疗产生巨大影响\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②④⑤⑥①③\nB. ④①⑥③⑤②\nC. ⑤④⑥①③②\nD. ⑥②③④⑤①", "choice": "A", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 1399609, "human_acc": 55.5384396642, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第42题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 5423764, "material": "", "question": "据史料记载,从明代永乐年间开始,官窑瓷器上便有落帝王年号款的传统。然而,十五世纪中期,即明代的正统、景泰、天顺时期,帝位更迭频繁,政局动荡,至今未见任何一件有明确纪年的陶瓷器物。由于不书年款,史料记载语焉不详,这三朝的官窑面貌一直模糊不清,被称为中国陶瓷史上的“空白期”或“黑暗期”。\n\n这段时期之所以被称为“空白期”或“黑暗期”是因为:", "type": "单选题", "options": "A. 瓷器上未落帝王年号款\nB. 帝位更迭频繁,政局动荡\nC. 未有这三朝的陶瓷器物存世\nD. 史料记载语焉不详", "choice": "A", "keypoints": "关联词-因果;特殊问法", "most_wrong": "B", "human_count": 983213, "human_acc": 33.4384309402, "source": "2023年上海市公务员录用考试《行测》题(A类)(网友回忆版)第14题", "difficulty": 4, "formulas": 0, "history": [{"id": 5727204, "material": "", "question": "中国长期以来的历史性实践,清晰地印证了文化传统深厚的支配力和恒久的影响力。但是,我们对文化传统的强调,绝不意味着回到遥远的古代。真正伟大的文化复兴运动,都必然是一个自我主张的原创性的胜利。我们的传统文化一方面有着巨大的包容性,另一方面也有着极大的创新性。因此,中国式现代化所承担的新的文化使命,不是返回到纯粹的过往中去,而是推动中华优秀传统文化的“创造性转化”。文化传统的精华是在漫长的历史行程中汰择检选出来的东西,也是在当今中国的历史性实践中生成的东西。正是中国式现代化的历史性实践,为文化传统的接续提供了一切可能性的前提,不仅打开了传统本身固有的锁闭形态,而且为这一传统的取舍和光大创造了条件并制定了基本方向。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 中国式现代化 传统文化 文化复兴\nB. 历史性实践 文化使命 创造性转化\nC. 中国式现代化 创新性发展 文化复兴\nD. 中国式现代化 传统文化 创造性转化", "choice": "D", "keypoints": "关联词-因果;特殊问法", "most_wrong": "C", "human_count": 9748, "human_acc": 82.7041444399, "source": "2023下半年省考第十九季行测模考大赛(江苏C卷)第30题", "difficulty": 3, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5122097, "material": "", "question": "物理学中的液化是指物质由气态转变为液态的过程;凝华是指物质跳过液态直接从气态变为固态的过程;升华是指固态物质不经液态直接变为气态的过程。\n\n根据上述定义,下列说法正确的是:", "type": "单选题", "options": "A. 灯丝变细属于液化\nB. 水变成冰属于凝华\nC. 雾凇的形成属于凝华\nD. 冰棍冒“白气”属于升华", "choice": "C", "keypoints": "特殊问法", "most_wrong": "D", "human_count": 91369, "human_acc": 63.3573750397, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第77题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 2012266, "material": "", "question": "设想用以下的方式来教授孩子关于花的结构:在黑板上画一株植物,标明其各个部分:雄蕊、雌蕊、茎柄等,解释每个名词术语。让孩子们都写在本子上,直到把它们都记住后,孩子们才能观察和接触真正的植物。没有人会容忍这种愚蠢的教授生物学的方法。但是几百年来,学习外语运用的恰恰是这种方法——至今,这种方法还未结束呢!\n\n从上文看,作者认为不恰当的外语学习方法是(    )。", "type": "单选题", "options": "A. 边学语法边说话\nB. 先学语法再学说话\nC. 先学说话再学语法\nD. 只学语法不学说话", "choice": "B", "keypoints": "关联词-转折;行文脉络-分总;特殊问法", "most_wrong": "D", "human_count": 2919, "human_acc": 87.9753340185, "source": "2014年上海市公务员录用考试《行测》题(A类)第11题", "difficulty": 5, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 4633635, "material": "", "question": "最近的一项调查显示,76.5%的受访者感觉自己的语言越来越________,主要表现在不会用复杂、微妙且________的修辞,正如网友所说,“有时候脑子里想一件事,无法很利索、饱满地说出来”。越来越多的人习惯使用一套固定句式或者很多夸张的语气词,看似个性实则雷同,既钝化了丰富多彩的表达方式,也在一定程度上________了吐故纳新的文化积累。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 单调 丰富 制约\nB. 贫乏 精确 阻滞\nC. 质朴 凝练 限制\nD. 僵化 简洁 掣肘", "choice": "B", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "A", "human_count": 81814, "human_acc": 52.7758085413, "source": "2021下半年省考第三十五季行测模考大赛(陕西卷)第35题", "difficulty": 6, "formulas": 0, "history": [{"id": 5292557, "material": "", "question": "5000多年来,中华民族始终保持文明的_________发展,在同其他文明的交流互鉴中始终秉持对自身文化的自信和定力,历久弥新、生生不息。当今世界百年未有之大变局加速演进,我国仍处于并将长期处于社会主义初级阶段,我们面临的风险和挑战前所未有。这些问题与中国的社会环境和文化土壤息息相关,具有鲜明的__________和民族性。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自主性 地域性\nB. 包容性 独特性\nC. 多元性 先进性\nD. 独立性 滞后性", "choice": "A", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 102595, "human_acc": 72.7423363712, "source": "2022下半年省考第十一季行测模考大赛(四川卷)第17题", "difficulty": 4, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 2377292, "material": "根据以下资料,回答下列问题。\n\n        2016年全年全国互联网保险收入为2299亿元,同比增加$5.10\\%$,占全国总保费收入的$7.43\\%$,较2016年上半年占比减少$0.17\\%$。其中互联网财产险收入为502亿元,同比减少$34.63\\%$,占全国财产险保费收入的$5.76\\%$,较2016年上半年占比减少$1.14\\%$;互联网人身险收入为1797亿元,同比增加$22.60\\%$,占全国人身险保费收入的$8.08\\%$,较2016年上半年占比增加$0.28\\%$。\n\n        2017年上半年全国互联网保险收入为1346亿元,同比减少$6\\%$,占全国总保费收入的$5.9\\%$。其中互联网财产险收入为238亿元,同比减少$19.9\\%$,占全国财产险保费收入的$4.5\\%$;互联网人身险收入为1108亿元,同比减少$2.3\\%$,占全国人身险保费收入的$6.3\\%$。", "question": "2016年全年全国总保费收入在以下哪个范围内?", "type": "单选题", "options": "A. 不到2万亿元\nB. 2~4万亿元之间\nC. 4~6万亿元之间\nD. 6万亿元以上", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "A", "human_count": 977461, "human_acc": 93.5407141564, "source": "2019年四川省选调优秀大学毕业生到基层工作《行测》试题(网友回忆版)第86题", "difficulty": 3, "formulas": 15, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "文字资料"]]}, {"id": 4658507, "material": "", "question": "取名不规范已经成为中国楼市的怪现状。讨彩头、求吉利本来____________,但如果追逐流俗,浮华之风和矫饰文化就会“____________”。若只是市场流俗,不违反法治原则和市场规则也就罢了,若用“大、洋、怪”或“擅自更名”的方式去________商业利润,不仅坐实了资本贪婪之名,甚至可能违反法律。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 无可厚非 应运而生 追逐\nB. 理所当然 水到渠成 获取\nC. 习以为常 层出不穷 谋求\nD. 顺理成章 蔚然成风 牟取", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "D", "human_count": 1742924, "human_acc": 59.5235936851, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 5447462, "material": "", "question": "齐白石的《荒山残雪》和《一白高天下》是近现代写意山水画的代表之作。《荒山残雪》看似寥寥数笔,实则____________。画中残雪同样不用白粉,而以笔墨留出纸白,既________出残雪形状,又使纸白与墨色天趣自得,别具一种朴素自然的格调。《一白高天下》与《荒山残雪》具有异曲同工之妙,充分体现了白石老人崇尚“极简”的美学理想。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 苦心孤诣 刻画\nB. 惨淡经营 勾勒\nC. 机关算尽 绘制\nD. 短小精悍 勾画", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 275540, "human_acc": 16.895913479, "source": "2023上半年省考第四季行测模考大赛(广东县级卷)第3题", "difficulty": 7, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4489683, "material": "", "question": "确定碳达峰、碳中和目标是党中央作出的重大战略决策。我国是世界上能源生产和消费规模最大的国家,________是能源结构“以煤为主”国家的代表,要实现这样的目标并非易事。但________锚定“双碳”转型目标,坚定信念,继续稳扎稳打,提升绿色行动力,我们________有足够的信心去实现这次影响范围广、触及层次深、持续时间长的能源革命。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 而 即使 也\nB. 也 一旦 又\nC. 而 只有 才\nD. 也 只要 就", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系", "most_wrong": "C", "human_count": 8928, "human_acc": 95.9005376344, "source": "2021下半年省考第二十七季行测模考大赛(深圳卷)第61题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 5341391, "material": "", "question": "战争史证明,与战场实际相符的正确战法打法,有利于发挥出自身技术优势;反之,则抑制或阻止自身技术优势的发挥。所以,打赢战争必须靠高敌一筹的作战指导,实现战争环节有机衔接转换,才能有效发挥技术优势,最终赢得战争胜利。一方面,最大限度消减敌方技术优势,使“敌人打我时打不着”;另一方面,寻机释放自身技术优势,使“我打敌人时一定打得狠”。20世纪50年代的朝鲜战场上,美军无疑有着强大技术优势,然而面对“小米加步枪”的中国人民志愿军难以占到便宜,最终被迫坐到了停战谈判桌上。原因之一在于,其战法打法呆板僵化,与我军灵活机动的打法不可同日而语。\n\n作者引用朝鲜战场的例子是为了证明:", "type": "单选题", "options": "A. 着力消减敌方的技术优势方可在战争中占据上风\nB. 灵活机动的战略是抗美援朝取得胜利的重要保证\nC. 技术优势的充分发挥离不开出色的作战指导\nD. 高昂的军心士气有利于技术优势的充分发挥", "choice": "C", "keypoints": "关联词-对策;特殊问法", "most_wrong": "B", "human_count": 9159, "human_acc": 65.5966808604, "source": "2022下半年省考第十六季行测模考大赛(四川卷)第45题", "difficulty": 4, "formulas": 0, "history": [{"id": 2188034, "material": "", "question": "有位作家说:“负能量是在鞭笞别人的不好、责骂社会的不公;正能量是在讲完后告诉你,即使再苦,我依旧可以通过努力去改变一些。”有人先天是乐观向上的,当身边出现越来越多的负能量的人时,你会发现他很快就会显示出一副疲惫的状态。那是因为情绪最容易感染人,当人总是处在这样的氛围时,心情也就自然容易变得抑郁起来。\n\n这段文字的言外之意是:", "type": "单选题", "options": "A. 要鄙视那些充满负能量的人\nB. 负能量的消极影响显而易见\nC. 人的情绪均由客观事物引起\nD. 要靠近那些富有正能量的人", "choice": "D", "keypoints": "关联词-对策;特殊问法", "most_wrong": "B", "human_count": 1004751, "human_acc": 68.159175756, "source": "2018年421联考《行测》题(吉林乙级)(网友回忆版)第50题", "difficulty": 5, "formulas": 0}, {"id": 16377, "material": "", "question": "正确的观点是从哪里来的呢?是从客观实际中来的。我们在研究任何一个问题的时候,都要从客观存在着的事物出发,详细地占有材料,在马克思主义基本原理的指导下,给以科学的分析,然后才能在这个问题上形成正确的观点。因此,我们要把正确的观点传达出来,也是离不开材料的。\n\n对这段文字最准确的复述是:", "type": "单选题", "options": "A. 正确的观点是从实际材料中出来的\nB. 正确的观点是经科学分析得出来的\nC. 正确的观点是通过材料传达出来的\nD. 正确的观点是在马克思主义原理指导下,对实际材料进行科学分析得出来的", "choice": "D", "keypoints": "关联词-对策;特殊问法", "most_wrong": "A", "human_count": 20888, "human_acc": 83.5407889697, "source": "2009年山西省党群机关录用考试《行测》题第43题", "difficulty": 5, "formulas": 0}, {"id": 1365357, "material": "", "question": "要想终结烟草研究参评科技奖的荒唐,已经不能光靠民间组织、一些有良知的科学家或相关人士的呼吁和反对。根本上,我们需要打破既有的控烟体系,切实加大控烟力度,扭转财税对烟草行业依赖的现状。除此之外,我们还要完善科技类荣誉评选的设计,避免给“中式烟草”之类的“伪科学”留下可以钻营的空间。\n\n最能准确复述文意的一项是:", "type": "单选题", "options": "A. 目前的控烟体系和控烟力量不足以杜绝“中式烟草”参评科技奖\nB. 要探索阻止烟草研究参评科技奖的多种途径\nC. “中式烟草”参评科技奖是科技奖的耻辱\nD. 烟草研究参评科技奖是因为政府从烟草行业的税收中获利", "choice": "B", "keypoints": "关联词-对策;特殊问法", "most_wrong": "A", "human_count": 455157, "human_acc": 71.261125282, "source": "2015年天津市公务员录用考试《行测》题第41题", "difficulty": 5, "formulas": 0}, {"id": 1702050, "material": "", "question": "谁都希望自己一生平安顺利,但挫折、困难、逆境往往在所难免。当今社会,资源更稀缺,竞争更激烈,人们遭遇挫折和逆境的可能性也在加大。在这一背景下,有人提出“逆商”概念。所谓“逆商”,是指摆脱挫折、克服困难、走出困境的能力。因为一个人事业成功、生活幸福,不仅需要智商、情商,还需要“逆商”,以更好的摆脱挫折,克服困难,走出困境。\n\n下列古代名句中,不能直接说明原文主旨的一项是(  )。", "type": "单选题", "options": "A. 天行健,君子以自强不息\nB. 不畏浮云遮望眼,只缘身在最高层\nC. 宝剑锋从磨砺出,梅花香自苦寒来\nD. 天生我材必有用,千金散尽还复来", "choice": "B", "keypoints": "关联词-对策;特殊问法", "most_wrong": "D", "human_count": 430134, "human_acc": 70.3129722366, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第55题", "difficulty": 5, "formulas": 0}, {"id": 2021710, "material": "", "question": "东北文化有好的一面。东北人仗义、大气、敢拍板,但东北人在商业上有个最大的弱点,就是不爱干小事儿,不爱弯腰,从来不爱干让人瞧不起的事。东北人不如南方人细腻、敢冒险,我们很多时候有雄心壮志,但落地的时候瞧不起那些辛苦的工作,看不上最低微的工作,我们老想干大事,不想干小事。要创业,就要有冒险精神,我们要肯干小事,干别人瞧不上的工作,一点一点地创业,这是成功的基础。任何事儿,只有小成功,才有大成功。\n\n与这段文字主旨无关的名言是:", "type": "单选题", "options": "A. 他山之石,可以攻玉\nB. 不积跬步,无以至千里\nC. 恢弘志士之气,不宜妄自菲薄\nD. 业无高卑志当坚,男儿有求安得闲", "choice": "A", "keypoints": "关联词-对策;特殊问法", "most_wrong": "C", "human_count": 371810, "human_acc": 41.2533283128, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 22843, "material": "", "question": "有人分析过成功学的基本讲义和习惯用词,发现它们几乎就是人类世界已知的公理。不能否认,从这些廉价、方便、_________,但又貌似永远正确的道理中,我们似乎获得了营养甚至是前进的动力;但是如果一味地_________于所谓的“成功之道”,放弃了对生活的体验和思考,则有可能在追求“成功”的路上,与自己最初的想象_________。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 唾手可得 沉迷 渐行渐远\nB. 轻而易举 沉浸 南辕北辙\nC. 手到擒来 沉湎 大相径庭\nD. 一蹴而就 沉溺 相去甚远", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 608532, "human_acc": 78.7652908968, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第34题", "difficulty": 5, "formulas": 0, "history": [{"id": 49577, "material": "", "question": "对城市建设焕然一新的追求,不仅会使城市记忆受到损坏甚至毁灭,也是对城市中人的生活情感的_________。城市中长期积淀形成的文化风格和人文环境,被当作了“过时”的东西予以___________或抛弃,城市记忆也因此没有了依托对象,公众的情感认同无法被唤起,在心灵上就会出现_________的不安状态。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 轻视 改造 居无定所\nB. 淡忘 分解 无依无靠\nC. 漠然 整饬 孤苦伶仃\nD. 亵渎 批判 举目无亲", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;混搭填空", "most_wrong": "C", "human_count": 1701800, "human_acc": 52.5502409214, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第50题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2637051, "material": "", "question": "电影和网剧是两种具有鲜明区别的艺术形式。电影更具专业性,往往重视艺术层面的________;而网剧偏重剧情,只重视热络涌动的流量。二者有不同的制作艺术、传播机制,因此一方的成功经验不易直接________给另一方。个别由知名电影导演监制的网剧收获了好评,为传媒艺术的跨界融合________了新的思路,打开了一扇新的大门。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 堆砌 复制 提供\nB. 刻画 让渡 开拓\nC. 雕琢 移植 启迪\nD. 打磨 共享 引进", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;实词填空", "most_wrong": "B", "human_count": 132576, "human_acc": 26.780865315, "source": "2020年下半年省考第五季行测模考大赛(新疆卷)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 826171, "material": "", "question": "在中国,中秋节是仅次于春节的重要节日,这是因为人们在农耕文化发展过程中,认识到季节的重要性,故很早就有春天祭日、秋天祭月的习俗。古人发现 “月到中秋分外明”,所以在公元 1 世纪后从祭月、拜月发展到赏月,但未固定在哪一天。8世纪后中秋节成型,八月十五在秋季正中,故称中秋。此时正是桂花飘香之际,人们面对人间桂,联想月中桂,于是在赏月、拜月之外又添了赏桂的习俗。最迟在9世纪,吃月饼的中秋习俗已经出现。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中秋节有哪些习俗\nB. 中秋节的形成过程\nC. 古人重视中秋节的原因\nD. 农耕文化对中秋习俗的影响", "choice": "A", "keypoints": "关联词-并列;关联词-因果", "most_wrong": "B", "human_count": 290123, "human_acc": 17.2495803504, "source": "2014年四川省公务员录用考试《行测》题(下半年)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 16571, "material": "", "question": "我们的企业领导者必须清醒地认识到,企业固然要顾及股东的利益,尽可能实现股东利益的最大化,但是,企业在获得社会资源进行生产的同时,也就承担了对社会各方面利益相关者的责任。是否充分考虑了这些利益相关者的利益,已日益成为评价企业绩效和企业伦理的重要尺度。对这段文字概括最准确的是:", "type": "单选题", "options": "A. 企业要兼顾股东及其他利益相关者的利益\nB. 股东利益的重要性与其他社会利益相关者相当\nC. 评价企业绩效和企业伦理的尺度发生了变化\nD. 企业在获取利益时更要承担各种社会责任", "choice": "A", "keypoints": "关联词-并列;关联词-因果", "most_wrong": "D", "human_count": 204325, "human_acc": 41.911660345, "source": "2010年贵州省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4633652, "material": "", "question": "网络媒体不仅能改变愤怒的动机,还能改变主观体验。在日常生活中,对于那些做错事的人,人们会通过语言、肢体与他们发生直接冲突。但无论是语言还是肢体冲突,都会让施行惩罚者面临潜在的肢体风险。而在网络中,表达愤怒则仅需要在电脑前敲几下键盘,甚至有些人只是简单地评论或转发,因此门槛远远低于现实生活。不同于现实生活,网络表达愤怒也不受位置、时间等限制,这都使得人们可以在网络上轻易地表达愤怒。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 在网络上更容易表达愤怒的原因\nB. 网络改变了人们发泄愤怒的方式\nC. 网络表达愤怒的门槛远低于现实\nD. 在网络和现实中表达愤怒的差别", "choice": "A", "keypoints": "关联词-并列;关联词-因果", "most_wrong": "C", "human_count": 197875, "human_acc": 57.7612128869, "source": "2021下半年省考第三十五季行测模考大赛(广东乡镇卷)第7题", "difficulty": 6, "formulas": 0}, {"id": 4330524, "material": "", "question": "中华优秀传统文化的创造性转化、创新性发展,在于文化精神的传承。中国历史上,对服饰文化有丰富多元的阐释。传统服饰观普遍强调人的内在精神,肯定服饰美的意义,并赋予其道德、人格的内涵。有形的服饰背后,是无形的精神力量和美学意蕴。所以,传承中华传统服饰美学,就是要传承和谐之美、意境之美、精神之美,而非浮浅华丽之表、追新逐异之态,更不可使其沦为物质消费的符号。此外,“材美工巧”“锦绣匠作”等,也是中华传统服饰美学的应有之义。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中华传统文化的传承在于文化精神\nB. 不可使传统服饰沦为物质消费的符号\nC. 传承中华传统服饰之美要形神兼备\nD. 应主动传承中华优秀传统文化精神", "choice": "C", "keypoints": "关联词-并列;关联词-因果", "most_wrong": "A", "human_count": 12676, "human_acc": 80.7589144841, "source": "2021下半年省考第二十三季行测模考大赛(辽宁卷)第60题", "difficulty": 4, "formulas": 0}, {"id": 2049702, "material": "", "question": "以往城市的规模取决于周围地区所能生产的粮食数量,因而,人口最稠密的城市都分布于流域地区,如尼罗河流域、新月沃地等。随着工业革命的发展和工厂体系的建立,大批的人涌入新的工业中心。新城市的大量人口因为能从世界各地获得粮食而得到供养。技术和医学上的进步能充分供应洁净的水、改善集中式排水系统和垃圾处理系统、保证充足的粮食供应以及预防和控制传染病,这些进步使城市生活变得更加舒适,世界各地的城市也因而开始以极快的速度发展。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 工业革命推动了世界各地的城市化进程\nB. 工业革命的发生改变了人们的生活方式\nC. 粮食获取渠道的扩展使城市人口迅速增长\nD. 技术和医学的进步提高了人们的生活水平", "choice": "A", "keypoints": "关联词-并列;关联词-因果", "most_wrong": "C", "human_count": 1071276, "human_acc": 82.9038455076, "source": "2017年422联考《行测》题(山东卷)第27题", "difficulty": 4, "formulas": 0}, {"id": 2264394, "material": "", "question": "基础数学是一门对天赋要求极高的学科,它的高度抽象性让不具备这种天赋的人望而生畏。在某种意义上可以说,是数学选择了它的追随者,而非相反。加之数学是一门完全依赖人自身最纯粹的大脑机能进行探索的学科,这使得一流的数学研究介乎学问和艺术创造之间,总是在“灵感乍现”的时刻产生突破。因此,数学家实际上是一个极其冒险的职业,其成就几乎完全仰仗天赋和灵感的偶然眷顾。另一方面,对具有数学才能的人来说,现代社会充满了机会的诱惑,金融、计算机、互联网,都是比数学研究更赚钱的行业。\n\n这段文字意在:", "type": "单选题", "options": "A. 解释数学家可遇不可求的现象\nB. 说明天赋对于数学研究的意义\nC. 探讨基础数学研究的本质规律\nD. 强调基础数学发展面临的困境", "choice": "A", "keypoints": "关联词-并列;关联词-因果", "most_wrong": "D", "human_count": 3812701, "human_acc": 59.5358251276, "source": "2019年国家公务员录用考试《行测》题(副省级网友回忆版)第47题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 2009222, "material": "", "question": "天文学家们宣布,他们通过太空望远镜_________到了三颗与地球非常相似的行星,其环境似乎很适宜生命生存,而且,其中一颗的表面可能______着大片海洋,因此它________与地球一样,呈现出美丽而迷人的蓝色,这是迄今为止人类找到的最像地球的行星。虽然这是一个重要的科学发现,但却带有哲学意味。\n\n依次填入划横线部分最恰当的一项是(  )。", "type": "单选题", "options": "A. 观察 覆盖 也许\nB. 观测 覆盖 也许\nC. 观测 存在 一定\nD. 观察 存在 可能", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 7594, "human_acc": 83.6713194627, "source": "2014年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 50267, "material": "", "question": "一个金鱼缸,现已注满水。有大、中、小三个假山,第一次把小假山沉入水中,第二次把小假山取出,把中假山沉入水中,第三次把中假山取出,把小假山和大假山一起沉入水中。现知道每次从金鱼缸中溢出水量的情况是:第一次是第二次的$\\frac{1}{3}$,第三次是第二次的2倍。问三个假山的体积之比是多少?", "type": "单选题", "options": "A. $1\\colon3\\colon5$\nB. $1\\colon4\\colon9$\nC. $3\\colon6\\colon7$\nD. $6\\colon7\\colon8$", "choice": "B", "keypoints": "和差倍比问题;立体几何", "most_wrong": "A", "human_count": 191683, "human_acc": 54.1138233437, "source": "2013年河北省公务员录用考试《行测》题第44题", "difficulty": 5, "formulas": 336, "history": [{"id": 6015, "material": "", "question": "有7个不同的质数,它们的和是58,其中最小的质数是多少:", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "A", "keypoints": "和差倍比问题", "most_wrong": "B", "human_count": 17751, "human_acc": 64.5879105403, "source": "2008年云南省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 6399, "material": "", "question": "正四面体的棱长增加20%,则表面积增加:", "type": "单选题", "options": "A. 20%\nB. 15%\nC. 44%\nD. 40%", "choice": "C", "keypoints": "立体几何", "most_wrong": "D", "human_count": 17902, "human_acc": 72.7404759245, "source": "2009年江苏省公务员录用考试《行测》题(B类)第73题", "difficulty": 4, "formulas": 0}, {"id": 21559, "material": "", "question": "某数加上5再乘以5再减去5再除以5结果还是5,这个数是多少:", "type": "单选题", "options": "A. 0\nB. 1\nC. -1\nD. 5", "choice": "B", "keypoints": "和差倍比问题", "most_wrong": "C", "human_count": 275211, "human_acc": 84.6241610982, "source": "2012年安徽省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 48237, "material": "", "question": "正六面体的表面积增加96%,棱长增加多少:", "type": "单选题", "options": "A. 20%\nB. 30%\nC. 40%\nD. 50%", "choice": "C", "keypoints": "立体几何", "most_wrong": "B", "human_count": 142437, "human_acc": 65.4886019784, "source": "2013年天津市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "和差倍比问题"], ["数量关系", "数学运算", "几何问题", "立体几何"]]}, {"id": 2365979, "material": "", "question": "我们的工作、生活节奏不断加快;有些人做事往往追求立竿见影,生活不自觉地迈入加急时代。效率就是生命演变为众所公认的价值观。外出是飞机、高铁,上网要极速体验,吃饭需争分夺秒,就连咿呀学语的孩子,都不能输在起跑线上。这份急夹杂着对过程的忽视,衍生出对规则的漠视,同时催生出各种问题。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 节奏提速导致人们做事追求立竿见影\nB. 效率就是生命成为众所公认的价值观\nC. 人们必须争分夺秒以免输在起跑线上\nD. 加急时代生活催生出各种各样的问题", "choice": "D", "keypoints": "行文脉络-分总;行文脉络-总分", "most_wrong": "B", "human_count": 25580, "human_acc": 93.3659108679, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第80题", "difficulty": 3, "formulas": 0, "history": [{"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}, {"id": 219993, "material": "", "question": "所谓知识经济,是指建立在知识和信息的生产、分配和使用上的经济,是以智力资源的占有、配置以及知识的生产、分配和使用为最重要因素的经济。\n\n这段话主要是讲:", "type": "单选题", "options": "A. 知识经济的来源\nB. 知识经济的含义\nC. 知识经济的形式\nD. 知识经济的特点", "choice": "B", "keypoints": "行文脉络-总分", "most_wrong": "D", "human_count": 225916, "human_acc": 91.780130668, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第80题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 4682910, "material": "", "question": "农民既是乡村文化的建设者,也是乡村文化的受益者,以农民为主体的乡村生活有助于维系传统文化的传承。任何排斥农民主体地位,试图____________的做法,都必然失败。因此,要尊重农民的创造,如倡导德孝文化、弘扬优秀家风、通过村规民约移风易俗等,均是来自基层____________的乡村文化建设经验,值得推广和借鉴。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 削足适履 独一无二\nB. 反客为主 因地制宜\nC. 一手遮天 日积月累\nD. 越俎代庖 行之有效", "choice": "D", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 171201, "human_acc": 61.8150594915, "source": "2022上半年省考第三季行测模考大赛(陕西卷)第30题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5653941, "material": "", "question": "盛唐时代,李白在《将进酒》中写下“黄河之水天上来,奔流到海不复回”的不朽辞章,________了中华文明何等洒脱浪漫、狂纵豪放的博大胸襟。当尼罗河、底格里斯河、幼发拉底河与印度河所孕育的文明相继_________于历史的大幕,黄河却始终奔腾在中华民族不屈不挠的文明历史中,以顽强的毅力________着这个民族的力量与希望。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 体现 湮灭 解读\nB. 彰显 隐退 书写\nC. 显示 淡化 诠释\nD. 凸显 消亡 演绎", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-解释类对应;实词填空", "most_wrong": "D", "human_count": 5102, "human_acc": 55.3704429635, "source": "2023下半年省考第十二季行测模考大赛(陕西卷)第40题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 9499, "material": "", "question": "古代动物中有一类动物叫蜥螈,它________具有两栖动物的特征,________具有爬行动物的特征。________古生物学工作者不容易弄清楚它到底是两栖动物还是爬行动物,________过去把它放在爬行动物中,________现在又把它放到两栖动物中去。\n\n依次填入划横线部分最恰当的一组是:", "type": "单选题", "options": "A. 既 又 因此 以至 而\nB. 不但 而且 不过 尽管 但是\nC. 既 又 因此 以致 而\nD. 不但 而且 因此 尽管 但是", "choice": "C", "keypoints": "关联关系-因果关系;词的辨析-词义侧重", "most_wrong": "A", "human_count": 73191, "human_acc": 58.171086609, "source": "2009年河北省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0, "history": [{"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 18747, "material": "", "question": "由于国际原油价格的______攀升,汽油产品的售价一直呈上扬的态势,因此油耗低的经济型轿车的市场需求也逐步增大。", "type": "单选题", "options": "A. 再三\nB. 持续\nC. 反复\nD. 日趋", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;实词填空", "most_wrong": "D", "human_count": 175322, "human_acc": 93.9151960393, "source": "2011年内蒙古自治区公务员录用考试《行测》题第23题", "difficulty": 3, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 18977, "material": "", "question": "我国还处于社会主义初级阶段,民主建设的起点比较低,社会主义民主建设受到几个条件的制约,因此绝不是______的事情。", "type": "单选题", "options": "A. 一朝一夕\nB. 操之过急\nC. 一蹴而就\nD. 轻而易举", "choice": "C", "keypoints": "关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 214759, "human_acc": 58.3765988853, "source": "2011年内蒙古自治区公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4640972, "material": "", "question": "一个正值花季的少年突然从学校坠楼身亡,家长的悲痛可想而知。面对突发事件,校方本该及时查明学生死因,回应家长和社会关切,对公众疑虑给出应有的解释,但在事发之后却一再对处理过程____________,对家长的丧子之痛视而不见,对社会舆论的质疑____________,这样冷冰冰的、缺乏人道主义的处理方式,令家长和社会寒心。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 谨言慎行 秘而不宣\nB. 讳莫如深 敬而远之\nC. 遮遮掩掩 充耳不闻\nD. 处心积虑 噤若寒蝉", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 26572, "human_acc": 98.6677705856, "source": "2021下半年省考第三十六季行测模考大赛(浙江卷)第21题", "difficulty": 3, "formulas": 0, "history": [{"id": 2377095, "material": "", "question": "“梨花节”、“牡丹节”······各地主办的各种各样的“节”频频亮相,热闹非凡。这些名目繁多的活动大多____,耗资不菲。各地利用自己得天独厚的地方特色或特产举办活动,打响品牌,促进地方经济发展,本____。但一些地方不顾实际,办节中讲排场、比阔气,形成公费办节的攀比之风。少数地方搞“拉郎配”,只要与本地沾点边,哪怕是传说、神话,都抬出来热炒一番。", "type": "单选题", "options": "A. 兴师动众 无可非议\nB. 劳民伤财 无可厚非\nC. 繁文缛节 无可争议\nD. 大动干戈 无可讳言", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 1633539, "human_acc": 33.2307340076, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第14题", "difficulty": 5, "formulas": 0}, {"id": 3010045, "material": "", "question": "受宏观经济环境、退市制度落地等因素影响,机构短期抱团避险确实____________,但长期、过度抱团爆炒龙头股,等于“偷懒赚快钱”,与证券投资基金的信义精神相违背。真正着眼于长期业绩的基金管理人,不会____________、盲目从众抱团,而应尽早选择自己的赛道,精选行业和个股,在未来长期的业绩比拼中彰显真正的资管实力。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 萧规曹随 司空见惯\nB. 无可厚非 狗尾续貂\nC. 顺理成章 指鹿为马\nD. 情有可原 随波逐流", "choice": "D", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;成语填空", "most_wrong": "B", "human_count": 357911, "human_acc": 94.0828865277, "source": "2022年国考第六季行测模考大赛(副省级)第28题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5562954, "material": "", "question": "党的二十大报告明确提出:“健全网络综合治理体系,推动形成良好网络生态。”技术进步不会等待我们准备万全才出现,面对____________的数字化发展,相关治理既不能因噎废食,更不能____________。________发展与安全,既是在守正创新中不断探索新技术、新应用、新业态的治理路径,更是立足自身实践为全球相关科技治理提供中国方案、贡献中国智慧。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 日新月异 放任自流 统筹\nB. 间不容息 视而不见 兼顾\nC. 突飞猛进 因小失大 协调\nD. 势如破竹 顺其自然 平衡", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "B", "human_count": 40501, "human_acc": 85.9238043505, "source": "2023下半年省考第二季行测模考大赛(山西卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 1791768, "material": "", "question": "今年的竞赛单元依旧气氛激烈,___。这几年的纪录片有一个明显的变化,就是镜头越来越深入人物的内心,___被拍摄对象的生活情绪,传达他们的孤独、挣扎和纠结,甚至达到了剧情片的效果,就探索这个时代人们的内心而言,这些纪录片取得的成就,是电影院里放映的商业电影所____的。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如火如荼 描写 自叹不如\nB. 强手如林 追踪 望尘莫及\nC. 短兵相接 揭露 望而却步\nD. 刀光剑影 刻画 无法比拟", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "D", "human_count": 689985, "human_acc": 50.2360196236, "source": "2016年江苏省公务员录用考试《行测》题(C类)第54题", "difficulty": 5, "formulas": 0}, {"id": 3692302, "material": "", "question": "置身海量信息时代,有些人已习惯从App中接收推送、获取信息,但长期________于单一信道中“看我想看,听我想听”,在不断重复和自我认证中强化固有喜好,不仅难以接受异质信息与观点,甚至会逐渐________社会共识。互联网的意义本在于促进信息互联、开放、多元、共享,如果个体接收的信息陷入狭隘、单一、破碎、低质,显然与之____________。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 局限 吞噬 差强人意\nB. 沉迷 打磨 格格不入\nC. 拘泥 瓦解 南辕北辙\nD. 沉溺 蚕食 背道而驰", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;混搭填空", "most_wrong": "C", "human_count": 118355, "human_acc": 73.9630771831, "source": "2021下半年省考第九季行测模考大赛(陕西卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4651773, "material": "", "question": "现如今,各行各业因品牌效应而带来持续的经济收益十分可观,然而农村电商在建立农业品牌的道路上可谓____________。由于受到长久以来分散生产经营的影响,农村电商未能切实体会到农产品品牌效应所能带来的巨大收益,以至于对建立品牌的________不足,缺乏动力。所以,________农村电商主体强化品牌意识至关重要。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 举步维艰 兴趣 引导\nB. 孤军奋战 认识 扶持\nC. 一筹莫展 经验 协助\nD. 凤毛麟角 信心 敦促", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 1091092, "human_acc": 76.3687205112, "source": "2022年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第37题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4988476, "material": "", "question": "近年来,部分学术研讨会出现了形式主义倾向,原本作为学术研讨会重头戏的研讨环节,或者因时间有限,难以达到充分交流的目的;还有的研讨会为了能让更多学者登台单独发言,干脆取消了研讨环节,这些都令学术研讨会的价值____________。学术不能____________,只有顺应潮流,才能凝聚更多的智慧与资源,攻克一个又一个难关。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 乏善可陈 故步自封\nB. 不尽人意 纸上谈兵\nC. 大打折扣 闭门造车\nD. 一文不值 照本宣科", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 287412, "human_acc": 89.1104059677, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第27题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4408983, "material": "", "question": "钱钟书以及他之前那些学术大师们,引经据典的学术功力令人叹为观止,让后来人____________。后来,这样的学问路数依然有人________,但总觉得不如前人了,逐渐放弃,这可能与后来人的心境有关。前人做学问____________,耐得寒窗寂寞,不顾纷纷扰扰,而后来人要维持这样的心境已经非常困难。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不可企及 拥护 孜孜不倦\nB. 望尘莫及 追随 心无旁骛\nC. 瞠乎其后 效法 宠辱不惊\nD. 望其项背 沿用 心如止水", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 180951, "human_acc": 77.8138833165, "source": "2021下半年省考第二十四季行测模考大赛(四川卷)第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5333626, "material": "", "question": "中华文化之所以如此精彩纷呈、博大精深,就在于它____________的特性。展开历史长卷,从赵武灵王胡服骑射,到北魏孝文帝汉化改革;从“洛阳家家学胡乐”到“万里羌人尽汉歌”,以及今天随处可见的舞狮、胡琴、旗袍等,展现了各民族文化的互鉴融通。各族文化____________,中华文化历久弥新,这是今天我们强大文化自信的根源。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 博采众长 相辅相成\nB. 取长补短 相得益彰\nC. 兼收并蓄 交相辉映\nD. 海纳百川 相伴相生", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 245004, "human_acc": 68.402556693, "source": "2022下半年省考第十五季行测模考大赛(浙江C卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 3631, "material": "", "question": "下列依次填入横线处的词语,恰当的一组是:\n\n吾平生未尝以吾志语汝,是吾不是处;________语之,________恐汝日日为吾担忧。吾牺牲百死而不辞,而使汝担忧,的的非吾所忍。吾爱汝至,________为汝谋者惟恐未尽。汝幸而偶我,又何不幸而生今日之中国!吾幸而得汝,又何不幸而生今日之中国!________不忍独善其身。嗟夫!巾短情长,所未尽者,尚有万千,汝可以模拟得之。", "type": "单选题", "options": "A. 然,惟,故而,遂\nB. 然,又,所以,卒\nC. 然,惟,所以,卒\nD. 既,又,故而,遂", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应", "most_wrong": "A", "human_count": 83702, "human_acc": 21.4893311988, "source": "2008年上海市公务员录用考试《行测》题第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 455559, "material": "", "question": "对诚实的否定固然令人遗憾,但人们尚可从精神上、道德上的肯定中得到_______。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 偿还\nB. 回报\nC. 弥补\nD. 欣慰", "choice": "C", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "D", "human_count": 540644, "human_acc": 69.6744993008, "source": "2014年天津市公务员录用考试《行测》题第16题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"]]}, {"id": 5365118, "material": "", "question": "大多数生物斗争发生在人类感官无法察觉的尺度上,需要靠更________的、科学解剖式的观察才能够体会到。因为“人类的感官被调教成只感受那些能发出巨大响声的生物”,我们会__________地只去关注跟我们自身相关的联系,但实际上,很可能被我们________的那些看起来跟人并不直接相关的联系,才是对整个生命共同体而言更为重要的。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深入 随机性 忽视\nB. 细致 选择性 忽略\nC. 直观 针对性 无视\nD. 敏锐 倾向性 漠视", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 44172, "human_acc": 90.1657158381, "source": "2022下半年省考第十八季行测模考大赛(浙江A卷)第33题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5291719, "material": "", "question": "从参与主体的庞大数字、作品的巨量产出和广泛的社会影响来看,网络文学已经成长为____________的文学力量。虽拥有普及化优势,网络文学却也面临着进一步提升的特殊困难。在资本逐利本性的________下,网络作家往往需要刻意迎合特定群体的文化心理和审美趣味,从而在不计其数的作者中____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不容忽视 裹挟 拔得头筹\nB. 颠扑不破 推动 炙手可热\nC. 不容小觑 驱使 脱颖而出\nD. 不容置喙 催促 一鸣惊人", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 221121, "human_acc": 87.7804460002, "source": "2022下半年省考第十一季行测模考大赛(浙江A卷)第31题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4918874, "material": "", "question": "如果科普仅停留在使用知识之流,并未培育知识之源,这难免有些“____________”的味道。我们应该承认,科学方法的习得并不是____________的,需要科学家经过长达十几年的学术训练。但是这并不能成为我们____________,止步不前的理由,毕竟“路漫漫其修远兮,吾将上下而求索”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 舍近求远 一气呵成 安于现状\nB. 削足适履 一劳永逸 画地为牢\nC. 舍本逐末 一蹴而就 因噎废食\nD. 因小失大 一朝一夕 避而不谈", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 207431, "human_acc": 77.6798067791, "source": "2022上半年省考第十六季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2445059, "material": "", "question": "国家级和省级博物馆往往建设完善,参观者____________,甚至每天一早就出现排队的长龙;省级以下的公办博物馆则______________。有的地方有充分的财政投入保障,博物馆拥有不错的硬件和软件设施,参观者的“回头率”较高;有的地方则缺乏对博物馆的投入,馆舍狭小老旧,展出品维护不当,专业讲解人员稀缺,导致博物馆____________,可能连当地人都不知道博物馆的大门朝哪个方向开。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 纷至沓来 参差不齐 无人问津\nB. 络绎不绝 良莠不齐 门庭冷落\nC. 川流不息 泥沙俱下 无足轻重\nD. 比肩接踵 大相径庭 门可罗雀", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "D", "human_count": 582536, "human_acc": 50.7336885617, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第35题", "difficulty": 5, "formulas": 0, "history": [{"id": 5389871, "material": "", "question": "作为四大文明古国之一,中国有着悠久灿烂的物质文明,技术发达、工艺先进、产品丰富。但是由于古时掌握知识和话语权的文人阶层认为技艺是不登大雅之堂的雕虫小技,文献中对技艺、技术的记载____________。体现在出版印刷领域,虽然我们是印刷术和印刷史的故乡,但留存下来可供研究的材料却屈指可数,这让今天的研究者时有____________之感。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 讳莫如深 左支右绌\nB. 微乎其微 捉襟见肘\nC. 寥寥无几 手足无措\nD. 含糊其辞 力不从心", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 268153, "human_acc": 37.3227224756, "source": "2022下半年省考第二十季行测模考大赛(浙江C卷)第32题", "difficulty": 6, "formulas": 0}, {"id": 3884796, "material": "", "question": "近年来美俄两国关系持续处于低谷。国际空间站作为美俄合作少数存续的项目之一,虽然仍在维持运行,但近年发展已____________。在此情况下,美俄两国便都有意“____________”。2020年美国的“龙”飞船首次执行常规商业载人航天任务,迈出了摆脱对俄罗斯飞船依赖的关键一步;而俄罗斯也多次提出要退出国际空间站,并在积极寻求与其他国家的沟通合作。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 差强人意 改弦更张\nB. 江河日下 分庭抗礼\nC. 穷途末路 单兵突进\nD. 乏善可陈 另起炉灶", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-解释类对应;成语填空", "most_wrong": "B", "human_count": 13761, "human_acc": 61.4998909963, "source": "2021下半年省考第十六季行测模考大赛(西藏卷)第3题", "difficulty": 6, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2050014, "material": "", "question": "古典农业社会中,人的乡愁和城市没有太大的关系。彼时的乡愁大抵是怀才不遇的流荡,以及战争带来的______________和乡土难返。而现在,大多数“乡愁感慨”是具有城市生活经历的人发出的,他们发愁的是城市“工作好不好找,房子买不买得起”等等,过去随时可以返回的家乡,正逐渐消失在城市化运动中。因此,他们对乡愁的________可能完全不是同一个方向,甚至可能是“城愁”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 背井离乡 认同\nB. 流离失所 认识\nC. 民不聊生 认可\nD. 饥寒交迫 认知", "choice": "A", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "B", "human_count": 1774855, "human_acc": 26.3975367002, "source": "2017年422联考《行测》题(湖南卷)第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 5445833, "material": "", "question": "注册制改革越包容,市场主体越要________。随着注册制全面推进,新股上市数量势必增多,上市公司“____________”的时代一去不返。将自身相关信息说完整、说清楚,既是上市公司的法定责任,也是逐浪资本市场的立身之本。因此,企业应提升__________和竞争意识,高度负责、抱诚守真地“自我介绍”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 自律 待价而沽 紧迫感\nB. 自重 滥竽充数 使命感\nC. 自觉 奇货可居 危机感\nD. 自强 一枝独秀 责任感", "choice": "C", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "D", "human_count": 1380279, "human_acc": 44.4140641131, "source": "2023年国家公务员录用考试《行测》题(副省级网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5188223, "material": "", "question": "面对认识上的盲区,一种思路是从经验主义的思维方式出发,认为过去的经验足以“以不变应万变”。然而,世界不断变化、新问题____________,以过去经验应对不确定的未来难免遭遇挫折。另一种思路是盲目________书本上的教条,不论是信奉西方的“洋教条”,还是僵硬地以马列经典作家书本上的“原则”裁剪生活的“本本主义”,都是将理论与实际相脱节。经验主义与教条主义看似____________,实则同为主观主义。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 层出不穷 崇拜 相去甚远\nB. 接踵而至 固守 貌合神离\nC. 纷至沓来 迷信 殊途同归\nD. 包罗万象 追求 大相径庭", "choice": "A", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 144132, "human_acc": 85.4619376682, "source": "2022下半年省考第六季行测模考大赛(浙江A卷)第32题", "difficulty": 3, "formulas": 0, "history": [{"id": 4661696, "material": "", "question": "国有资产绝对量的增加,并不是靠________私有制经济取得的。民营企业的“民进”,也不是在与国有企业的冲突中完成的,相反,它们在多个方面得到了国有经济的________,其健康发展是在同国有企业的优势互补和产业配套中实现的。可以说,“两个毫不动摇”是支持国进民也进的“国民共进”,而不是将二者置于____________的两端。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 挤压 保护 同仇敌忾\nB. 欺压 支援 短兵相接\nC. 压制 荫庇 水火不容\nD. 钳制 袒护 截然对立", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 132827, "human_acc": 67.5344621199, "source": "2021下半年省考第三十九季行测模考大赛(四川卷)第25题", "difficulty": 4, "formulas": 0}, {"id": 5629571, "material": "", "question": "对游客来说,游览踏青不仅是舒心畅意的游玩,也是展现自身________的过程。要增强文明旅游、保护环境意识,切莫让不文明行为毁了风景、坏了心情。有关管理部门也要加强宣传、教育和________,督促游客文明旅游,强化人们的公共意识、规则意识、文明意识,倡导文明旅游新理念、新风尚,让文明意识____________,成为旅行途中一道亮丽的风景。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 素质 鼓励 蔚然成风\nB. 涵养 监督 根深蒂固\nC. 文化 规范 历久弥新\nD. 修养 引导 深入人心", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 61107, "human_acc": 80.9776294042, "source": "2023下半年省考第十季行测模考大赛(四川卷)第19题", "difficulty": 4, "formulas": 0}, {"id": 4969450, "material": "", "question": "考古关乎人们对历史的态度,关乎人们能否建立起真正的文化自信。我国古代历史还有许多未知领域,考古工作____________。历史容不得半点马虎,学术不允许有丝毫________。要秉持对国家负责、对民族负责、对人民负责的态度开展考古工作。要尊重科学规律,培养____________、精益求精的工作态度,推动考古学与其他学科的交叉融合。\n\n依次填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 举步维艰 懈怠 不遗余力\nB. 大有可为 草率 求全责备\nC. 任重道远 敷衍 一丝不苟\nD. 道阻且长 疏漏 呕心沥血", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "D", "human_count": 264343, "human_acc": 93.0949561744, "source": "2022上半年省考第十八季行测模考大赛(陕西卷)第37题", "difficulty": 3, "formulas": 0}, {"id": 4881978, "material": "", "question": "优质的智库成果能够________学科建设。长期以来,我国智库研究普遍存在____________多、分类研究少;浅尝辄止多、深入专业少等问题。为解决此类问题,湖南省社会科学院智库办公室主任周湘智打了个比方:决策部门是“点菜人”,智库机构是“做菜厨师”,管理部门就是“行政总厨”。三者需要同向而行,在研究如何“精”上持续发力、__________监管。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 带动 通观大局 长效化\nB. 促进 大而化之 常态化\nC. 引领 以点带面 具体化\nD. 强化 大水漫灌 固定化", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 280785, "human_acc": 46.5487828766, "source": "2022上半年省考第十四季行测模考大赛(陕西卷)第37题", "difficulty": 7, "formulas": 0}, {"id": 5407807, "material": "", "question": "中国社会是乡土性的,中华文化的起源和发展与土地有着密不可分的联系,因而造就了中国人____________的乡土情结。三秦大地上的乡土戏曲亦是如此。在城镇化进程持续推进的今天,秦腔等戏曲中蕴含的乡土情结________到陕西人生产生活的方方面面,维系着人们内心的文化认同。文化的力量无形中守护着属于所有三秦人的城市记忆,________着秦腔姓“秦”的文化根源。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 得天独厚 贯穿 坚守\nB. 难以割舍 熏染 维护\nC. 刻骨铭心 深入 承担\nD. 与生俱来 渗透 捍卫", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 295503, "human_acc": 78.1203574921, "source": "2023年国考第四十八季行测模考大赛(副省级)第35题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5616205, "material": "", "question": "基层建设是一项科学系统的长期工程,其规律也如自然界的风速一样,不会一成不变。横向对比来看,不同基层单位在结构类型、专业分工、力量员额、建设基础等方面存在差别,建设的方向路子必然各异;纵向来看,各单位的工作重点会随着时间节点而改变、随着大项任务而________,不同时间段的建设特点也不尽相同。因此,对基层进行精确指导,就要做到____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 转型 因势利导\nB. 迁移 顺势而为\nC. 蜕变 因利乘便\nD. 调整 顺其自然", "choice": "B", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;关联关系-并列关系;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 61398, "human_acc": 43.5812241441, "source": "2023下半年省考第九季行测模考大赛(四川卷)第14题", "difficulty": 7, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2261936, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2018年上半年,文化传播渠道营业收入比上年同期增加了约(  )亿元。", "type": "单选题", "options": "A. 410\nB. 409\nC. 408\nD. 407", "choice": "B", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 420665, "human_acc": 83.3670497902, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第72题", "difficulty": 4, "formulas": 15, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 2050622, "material": "", "question": "某些意义上讲,与现代白话文一道_______于20世纪初的中国科幻文学,起点是很高的,因为当初在中国力推科幻文学的“科幻粉”中,有着不少文学史上的“大腕”级人物。然而因科幻文学今日之_______,以至于许多实实在在的事例,在今天不熟悉文学史的人听来,反倒像是_______了,因为,寒酸久了,再怎么说自己“出身高贵”也难取信于人。\n\n依次填入画横线部分最恰当的一组是:", "type": "单选题", "options": "A. 发端 凋敝 低人一等\nB. 滥觞 式微 无稽之谈\nC. 起源 衰落 天方夜谭\nD. 发轫 衰败 胡说八道", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 800202, "human_acc": 41.5106435625, "source": "2017年422联考《行测》题(吉林卷乙级)第41题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5570210, "material": "", "question": "目前的植入式脑机接口,需要被试者与分析程序共同进行长期的学习训练,如此才能使大脑顺利输出极为________的数字化指令,往往只是几个引导机械臂末端或者屏幕光标的坐标、角度信息,还有响应延迟与误码率的问题,与外人看来____________、如臂使指的表现效果完全不同。但即便有如此多的困难,脑机接口技术依然在不断________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 有限 随心所欲 推进\nB. 基础 挥洒自如 革新\nC. 简单 武偃文修 摸索\nD. 可观 得心应手 更新", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 41015, "human_acc": 40.4534926246, "source": "2023下半年省考第三季行测模考大赛(四川卷)第20题", "difficulty": 7, "formulas": 0, "history": [{"id": 5597062, "material": "", "question": "“法不察民情而立之,则不威”,制度的科学化水平决定了抓落实能力的高低。考核目标的制定必须是________的,要考虑到它的可执行性。管理学中有一个原则,叫“跳一跳,摘桃子”,设定目标要量力而行,但更强调____________。另外,抓落实必须坚持____________,精准施策,一把钥匙开一把锁,将各项工作真正落到实处。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 科学 顺势而为 有的放矢\nB. 务实 尽力而为 对症下药\nC. 严谨 审时度势 量体裁衣\nD. 现实 尽心竭力 标本兼治", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 47744, "human_acc": 70.3543900804, "source": "2023下半年省考第六季行测模考大赛(山西卷)第38题", "difficulty": 4, "formulas": 0}, {"id": 3707544, "material": "", "question": "近年以来,随着中国综合国力和国际地位的提升,中国新诗其价值内蕴、审美取向等也在发生若干________却意义重大的改变,简而言之:它不再寻求“到世界上去”,而本身即是“在世界之中”;不再____________、唯“西方”马首是瞻,而是以“我”为主、为“我”所用,更为自信、从容;不再简单地抛弃传统、别求新声,而是在更为内在的层面对接、________、发扬传统。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深刻 人云亦云 吸纳\nB. 显著 崇洋媚外 融合\nC. 细微 妄自菲薄 继承\nD. 平凡 瞻前顾后 发掘", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 102296, "human_acc": 84.5692891218, "source": "2021下半年省考第十季行测模考大赛(陕西卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3523515, "material": "", "question": "过去几十年我们主要依靠引进外国技术实现发展,短期看这不失为加快经济发展的捷径,从长期看只靠引进是不行的,它会使我们与国外的技术差距越拉越大,将我们长期锁定在产业分工格局的低端。关键核心技术是要不来、买不来、讨不来的。为此,要加快推进国家重大科技专项,深入推进知识创新和技术创新,增强原始创新、集成创新和引进消化吸收再创新能力。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 我国要不断提高自主创新能力\nB. 我国要逐步掌握关键核心技术\nC. 我国要依靠技术推动经济发展\nD. 我国要减少对国外技术的依赖", "choice": "A", "keypoints": "主题词;关联词-对策;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 1493504, "human_acc": 84.1611405125, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第47题", "difficulty": 4, "formulas": 0, "history": [{"id": 5292540, "material": "", "question": "近年来,各式各样的共享充电宝进入了餐饮、商超等场所,通过扫码租用即可免费为手机充电,为消费者带来不少便利。不过最近公安部门提醒,免费赠送或试用的充电宝中或隐藏木马程序,一旦插入手机,可能会盗取用户的个人信息。现在手机普遍只留一个USB接口,既能充电又能传输数据,很容易被入侵。当一个正常的充电宝拆开后,如果有不法分子对其进行改造,就很有可能在内部加上芯片,当用户租借到被动过手脚的充电宝,包括手机唯一标识码、通讯录、照片甚至应用的账号密码等信息会被立刻盗取。甚至即使拔掉充电宝,手机依然处于被控制状态。正因如此,人们外出时不妨对来历不明的免费充电宝多留个心眼儿。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 外出时不要租用免费共享充电宝\nB. 共享充电宝存在泄露信息的风险\nC. 要高度重视充电宝盗取信息的危害\nD. 警惕免费共享充电宝盗取个人隐私", "choice": "D", "keypoints": "主题词;关联词-对策;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 103896, "human_acc": 89.1121891122, "source": "2022下半年省考第十一季行测模考大赛(四川卷)第41题", "difficulty": 3, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 2685914, "material": "", "question": "决定学科理论高度的既不是基础理论,也不是应用理论,而是前沿理论,在考古学中亦是如此。在考古学科的发展过程中,前沿理论以其引领性、前瞻性、创新性和理论上的颠覆能力,规定学科如何发展和怎样发展,推进取得一系列突破性进展。因此,考古学中前沿理论的诞生,往往是新的学科体系形成的标志,是推动学科体系创新的根本动力。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 理论高度 前沿理论 根本动力\nB. 前沿理论 考古学科 体系创新\nC. 理论高度 考古学科 根本动力\nD. 前沿理论 学科标志 体系创新", "choice": "B", "keypoints": "行文脉络-分总;特殊问法", "most_wrong": "D", "human_count": 41383, "human_acc": 71.4907087451, "source": "2020年下半年省考第十二季行测模考大赛(江苏卷)第18题", "difficulty": 4, "formulas": 0, "history": [{"id": 2133728, "material": "", "question": "绿叶蔬菜中的硝酸盐被人体摄入后,一部分不吸收而被大肠细菌利用,最终排出体外;另一部分被吸收,在几个小时当中逐渐缓慢转变成微量的亚硝酸盐。亚硝酸盐的存在时间只有几分钟,然后转变成一氧化氮,发挥扩张血管的作用。换句话说,如果需要亚硝酸盐扩张血管的作用,完全用不着吃剩菜;而且一次性大量摄入亚硝酸盐是有害的,摄入硝酸盐之后,在体内缓慢转变成亚硝酸盐,才能发挥有益作用。\n\n这段文字反驳了哪种观点?", "type": "单选题", "options": "A. 人体无法避免摄入亚硝酸盐\nB. 亚硝酸盐对人体有害\nC. 过量食用绿叶蔬菜也有风险\nD. 吃剩菜可以扩张血管", "choice": "D", "keypoints": "行文脉络-分总;特殊问法", "most_wrong": "B", "human_count": 2775001, "human_acc": 71.9724425325, "source": "2018年国家公务员录用考试《行测》题(地市级网友回忆版)第54题", "difficulty": 5, "formulas": 0}, {"id": 4817725, "material": "", "question": "儿童学习语言主要依靠内隐的语言习得机制,需要长期大量的语言输入和练习才能取得好的效果。而年龄较大的外语学习者,因其认知能力方面的优势,表现往往优于年龄较小者。一项长达7年的研究发现了正规课堂中年龄因素对外语学习的影响:在接受了同样时间的语言教学之后,年龄较大的学习者成绩优于年龄较小者,特别是在语言的形态、句法特征掌握方面表现尤为突出。这就说明,在课堂学习环境下,儿童并不具备明显的低龄优势,如果没有大量的语料输入和练习,即使很早接触外语学习,也很难获得母语那样的水平。\n\n这段文字最可能回答的问题是:", "type": "单选题", "options": "A. 年龄因素对外语学习会产生哪些影响\nB. 是否应该让儿童尽早在课堂学习外语\nC. 成年人外语课堂学习表现为何优于儿童\nD. 学习者在外语学习中受哪些因素的影响", "choice": "B", "keypoints": "行文脉络-分总;特殊问法", "most_wrong": "A", "human_count": 1620974, "human_acc": 68.9090633163, "source": "2022年四川省公务员录用考试《行测》题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 4792203, "material": "", "question": "蒸汽机、电、核能、计算机,理工科领域的每一次突破都带来了世界的巨变。然而,它是否必然造福于人类?理工科知识本身并不能自动提供价值判断。火药可以用于放焰火也可以用于制造炸弹,指南针可以用于航海也可以用于看风水,核电站与核弹头预示了核能的迥异用途,生化武器、生物医学或者植物培育的生物技术表明了生物学的各种不同远景,互联网既可能是文化空间、娱乐空间,也可能是赌博空间乃至战争空间。每一种理工科知识的评价、掌控以及如何利用,必须与人类社会的各种意愿联系起来。\n\n这段文字最可能批评以下哪种论点?", "type": "单选题", "options": "A. 人文知识对社会发展的贡献甚微\nB. 自然科学的成果是衡量国家发展的程度和文明水平的指标\nC. 社会的进步关键在于自然科学技术的进步\nD. 纯粹的理论研究是科学技术发展的动力", "choice": "A", "keypoints": "行文脉络-分总;特殊问法", "most_wrong": "C", "human_count": 1883, "human_acc": 27.5624004249, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第48题", "difficulty": 5, "formulas": 0}, {"id": 2947508, "material": "", "question": "霍金曾指出,人工智能的崛起很有可能导致人类文明最终走向终结。试想,机器在几乎所有领域都比人类大脑聪明很多,包括科学创新、通识和社交技能,这是一件多么可怕的事情。在现实生活中,人工智能已经显示出其极大的优越性与替代性。AI可以替代人类更好地完成工作,从服务业到制造业,这些工作几乎覆盖人类生产生活的各个方面。但是,工厂的自动化使很多传统制造业工人面临失业,如今AI的迅速崛起将会使失业范围扩大,留给人类的岗位进一步被局限,由此所导致的社会发展不平衡,必然会引起整个社会的焦虑,加剧社会的不稳定。\n\n上述文字主要用来反驳以下哪个观点?", "type": "单选题", "options": "A. 人工智能并不比人脑聪明\nB. 人工智能带来的失业是暂时的\nC. 人工智能将导致人类文明的终结\nD. 人工智能不会对社会发展造成实际影响", "choice": "D", "keypoints": "行文脉络-分总;特殊问法", "most_wrong": "B", "human_count": 32754, "human_acc": 86.7436038346, "source": "2022年国考第五季行测模考大赛(地市级)第60题", "difficulty": 4, "formulas": 0}, {"id": 5308541, "material": "", "question": "免费医疗之所以值得期许,恰是因为民众对当下医疗保障现状的不满,这种不满并非在于是不是有足够的财政收入建立起免费医疗制度。从备受诟病的医疗体系来看,医疗资源的分配不均,双轨制的存在,财政支出中医疗保障投入比例过低等等,让千千万万的纳税人遭遇了无以复加的看病贵、看病难的问题,而与此同时,那些不缴纳个人医疗保险的权力利益集团,却可以坐享高比例甚至是全额报销。就此而言,民众对“免费医疗制度”的期待,在于对“取之于民,用之于民”的税收角色的期待,在于对“医疗资源分配均衡”的期待。\n\n这段文字指出了当下医疗保障存在的哪一问题?", "type": "单选题", "options": "A. 当下医疗资源在分配上存在不均衡现象\nB. 免费医疗并不能真正让纳税人免费治疗\nC. 现有医疗体系致使医疗保障分配不公平\nD. 民众所缴税费未能用于免费医疗保障中", "choice": "C", "keypoints": "行文脉络-分总;特殊问法", "most_wrong": "A", "human_count": 13160, "human_acc": 45.3267477204, "source": "2022下半年省考第十三季行测模考大赛(山东卷)第34题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5035806, "material": "", "question": "师徒两人合作生产甲、乙两种产品,师父只制作A、B零件,徒弟只制作a、b零件。甲产品由A、a零件各一个组装而成,乙产品由B、b零件各一个组装而成。师父制作一个A零件需1小时,制作一个B零件需2小时;徒弟制作一个a零件需3小时,制作一个b零件需1小时,师父每天最多工作8小时,徒弟每天最多工作9小时。如做成一件甲产品可获利润50元,做成一件乙产品可获利润70元。问在一天的工作时间内,师徒两人获得的利润最多是多少元?(组装时间忽略不计)", "type": "单选题", "options": "A. 170\nB. 240\nC. 280\nD. 310", "choice": "D", "keypoints": "经济利润问题;统筹规划问题;非典型最值问题", "most_wrong": "C", "human_count": 152054, "human_acc": 16.8874215739, "source": "2022上半年省考第二十二季行测模考大赛(河南卷)第65题", "difficulty": 7, "formulas": 0, "history": [{"id": 12567, "material": "", "question": "商场为了促销,将原价75元的商品,先提价40%,再打8折,该商品实际售价是多少元:", "type": "单选题", "options": "A. 80\nB. 72\nC. 78\nD. 84", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "C", "human_count": 99554, "human_acc": 83.8951724692, "source": "2008年湖北省公务员录用考试《行测》题(B类)第38题", "difficulty": 4, "formulas": 0}, {"id": 2388047, "material": "", "question": "集贸市场销售苹果5元/个和火龙果3元/个,花光61元最多可购买这两种水果共多少个?", "type": "单选题", "options": "A. 13\nB. 16\nC. 18\nD. 19", "choice": "D", "keypoints": "经济利润问题;统筹规划问题", "most_wrong": "C", "human_count": 549772, "human_acc": 67.5474560363, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第64题", "difficulty": 5, "formulas": 0}, {"id": 5510294, "material": "", "question": "某科研团队中男性占比高于50%,低于60%,问这一团队最少有几人?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "和差倍比问题;非典型最值问题", "most_wrong": "B", "human_count": 184889, "human_acc": 67.0277842381, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 5510095, "material": "", "question": "某商品的利润率是20%。如果进货价降低20%,售价保持不变,此时利润率是多少?", "type": "单选题", "options": "A. 40%\nB. 30%\nC. 60%\nD. 50%", "choice": "D", "keypoints": "经济利润问题", "most_wrong": "A", "human_count": 160341, "human_acc": 60.6943950705, "source": "2023年河北省公务员录用考试《行测》题(网友回忆版)第71题", "difficulty": 3, "formulas": 0}, {"id": 567163, "material": "", "question": "一架天平,只有5克和30克的砝码各一个,要将300克的食盐平均分成三份,最少需要用天平称几次:", "type": "单选题", "options": "A. 6次\nB. 5次\nC. 4次\nD. 3次", "choice": "D", "keypoints": "统筹规划问题", "most_wrong": "C", "human_count": 203660, "human_acc": 24.8885397231, "source": "2014年河北省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "经济利润问题"], ["数量关系", "数学运算", "统筹规划问题"], ["数量关系", "数学运算", "最值问题", "非典型最值问题"]]}, {"id": 4357469, "material": "", "question": "接近联想,是指当一个人同时或者先后经历两件事情(某种刺激或者感觉),所经历的这两件事情会在人的思想里互相联系,互相结合。由于两种事物在位置上、或在空间距离上、或在时间上比较接近,所以认知到第一种事物的时候,很容易联想到另一种事物。\n\n根据上述定义,下列不属于接近联想的是:", "type": "单选题", "options": "A. 老师上课提到电灯,小利一下子想到会发光的手电筒\nB. 每到中午十一点半左右,大明就会想起食堂香喷喷的饭菜\nC. 提到天安门广场,北京人老王总会想起人民大会堂\nD. 每当说起冬天,阿伟的脑海中都会浮现白茫茫的雪", "choice": "A", "keypoints": "原因结果;大前提", "most_wrong": "B", "human_count": 191788, "human_acc": 49.7872651052, "source": "2021下半年省考第二十三季行测模考大赛(四川卷)第68题", "difficulty": 6, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"], ["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 5493146, "material": "", "question": "当前,越来越多的人投身于文化传承,他们脑洞大开,富于奇思妙想,善于将传统与现代________,能够让“老古董”潮起来。创意“创”到公众心坎上,公众是会买账的;找到精巧的切入点并成功转化,就会有惊艳的效果。没有优秀的传统文化打底,创新就是____________;没有创意让人耳目一新,只是________传统文化就很难在舆论场中激起水花。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 联通 明日黄花 套用\nB. 对接 无源之水 拷贝\nC. 融合 空中楼阁 扬弃\nD. 混淆 镜花水月 保留", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "C", "human_count": 38170, "human_acc": 63.4975111344, "source": "2023上半年省考第九季行测模考大赛(四川卷)第20题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4036812, "material": "", "question": "补偿型代偿机制是指当个体因本身生理或心理上的缺陷致使不能达成某种目标时,改以采取其他方式来弥补/代偿这些缺陷,以减轻缺陷所带来的自卑感、不安全感,建立自尊。\n\n根据上述定义,以下无法体现补偿型代偿机制的是:", "type": "单选题", "options": "A. 张奶奶在战争年代丧失了独生子,悲痛使她把母爱倾注在养子的身上\nB. 创业失败后的小王成为邻居们议论的对象,许久都不能忘记这“奇耻大辱”\nC. 一场车祸使小杨失去了双臂,他凭借坚强意志学会了用嘴巴和足趾执笔写字\nD. 小李从小缺少正向注意与关怀,长大后做出负面的行为以获得他人的注意", "choice": "B", "keypoints": "原因结果;方式目的", "most_wrong": "C", "human_count": 151462, "human_acc": 88.5251746313, "source": "2021下半年省考第十九季行测模考大赛(四川卷)第67题", "difficulty": 3, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"], ["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 5144749, "material": "", "question": "在网络时代背景下的文艺评论,比如影视批评,必须把________社会大众作为目标。当下文艺评论已经不是订正、把关的批评,而是相互交流、互相切磋的批评。评论不再________主流表述或是一本正经的社论,而以趣味活泼的语言来呈现;文艺评论是一种独立的存在,而不是它物的________,有其自身的生存价值,并且对文艺创作乃至文化艺术整体的发展具有重要的推动作用。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 触及 限于 陪衬\nB. 通向 依从 附属\nC. 抵达 囿于 附庸\nD. 勾通 推崇 点缀", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 11307, "human_acc": 43.0264437959, "source": "2022下半年省考第四季行测模考大赛(青海卷)第38题", "difficulty": 7, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2145059, "material": "", "question": "尼采就自诩过他是太阳,光热无穷,只是给予,不想取得。_______尼采毕竟不是太阳,他发了疯。中国也不是,_______有人说,掘起地下的煤来,就足够全世界几百年之用。________几百年之后呢?几百年之后,我们当然是化为魂灵,或上天堂,或落了地狱,但我们的子孙是在的,________还应该给他们留下一点礼品。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 但是 尽管 可是 那么\nB. 然而 虽然 但是 所以\nC. 因为 即使 然而 不过\nD. 可是 或者 假如 或者", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-因果关系", "most_wrong": "A", "human_count": 23215, "human_acc": 83.6829636011, "source": "2015年深圳市公务员录用考试《行测》题第63题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"]]}, {"id": 2730968, "material": "", "question": "填入下面横线处的句子,最恰当的顺序是:\n\n口碑的背后是审美,这是一个有主观意识的评判,它受个人阅历经验的影响,也与地域文化、风俗习惯有关联,反映到电影的感受,可能就会出现这样的景象:同一部电影,你觉得是一地鸡毛,____________________;你觉得毫无会心之处,____________________;你觉得强行煽情,____________________。\n\n①他却笑得前仰后合\n\n②他却觉得曾经沧海\n\n③他早已哭得梨花带雨", "type": "单选题", "options": "A. ①②③\nB. ②①③\nC. ①③②\nD. ②③①", "choice": "B", "keypoints": "结尾;中间", "most_wrong": "A", "human_count": 491975, "human_acc": 50.9137659434, "source": "2020年深圳市考公务员录用考试《行测2》试题(网友回忆版)第46题", "difficulty": 6, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 2187561, "material": "", "question": "与先进轨道交通国家比,国内APM等自动导向轨道交通系统占比还较小;因此,在未来的城市轨道交通建设中,将形成包括APM在内的多制式轨交系统。那么_______,鉴于APM300型无司机胶轮列车“小编组、大密度、高灵活”的特点,将来势必在国内机场摆渡线、城市远郊社区轨交线、景区及大型娱乐园观光线,乃至三四线城市轨道交通系统中_______,遍地开花。\n\n依次填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 莫此为甚 大展拳脚\nB. 毋庸置疑 大马金刀\nC. 未定之天 大有可观\nD. 不言而喻 大有作为", "choice": "D", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 1534161, "human_acc": 65.1996107319, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2049304, "material": "", "question": "雄企鹅这样煞费苦心地用石子来讨好雌企鹅绝非小题大做,而是由于筑巢的石子对它们有____________的魅力。有好巢才能吸引好配偶,筑巢最好的雄企鹅,引起异性注意的机会最大。别致的巢能够________雄企鹅作为配偶的价值,确保配偶的珍贵投资——企鹅蛋不被冰雪冻坏,所以雄企鹅要____________地通过建造新居来打败竞争对手。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不可名状 体现 千方百计\nB. 无与伦比 昭示 不惜血本\nC. 不可抗拒 彰显 不遗余力\nD. 无以复加 代表 千难万险", "choice": "C", "keypoints": "关联关系-转折关系;关联关系-并列关系;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 1778943, "human_acc": 88.0175474987, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5218486, "material": "", "question": "找人代写论文行为本质上是论文造假,是对学术诚信的________。然而,多年来论文代写乱象____________,在论文交易中推波助澜的中介更是“生意兴隆”,火爆的产业链背后是________的论文造假需求。一些高校学子混学历的做法,一些科研人员急功近利的心态,一些学术机构唯论文评价学术成果······诸多因素均成为论文代写“产业链”发展的推手。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 亵渎 层出不穷 畸形\nB. 浸染 大行其道 蓬勃\nC. 挑战 遍地开花 多元\nD. 损害 屡禁不绝 旺盛", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 129749, "human_acc": 43.3899297875, "source": "2022下半年省考第七季行测模考大赛(陕西卷)第38题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5591314, "material": "", "question": "尽管有________的法律加以惩处,餐饮安全违规事件依旧____________。食品安全现象的产生一方面是由于“经济人”盈利的本性所致,经营者为追求利益最大化而忽视了对食品安全的保障。另一方面是由于法律惩罚力度和监督力度不够大,使得经营者总是抱有侥幸心理。鉴于此,亟须群力共筑食品安全长城,守护“舌尖安全”____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 严苛 愈演愈烈 至关重要\nB. 系统 接二连三 不绝如缕\nC. 明确 屡禁不止 刻不容缓\nD. 相关 遍地开花 迫在眉睫", "choice": "C", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 42127, "human_acc": 92.2828589741, "source": "2023下半年省考第五季行测模考大赛(四川卷)第19题", "difficulty": 3, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5368081, "material": "", "question": "①然而目前的基层执法队伍存在渗透力不强、基层执法者“权小责大”等问题\n\n②乡村执法能力是政府或其部门在乡村社会实施法律的能力\n\n③而对于实施法治建设时间还不长且不少法律不是从乡村社会“自然生长”出来的中国,法律在乡村的实施会遇到来自诸多方面的压力和阻力\n\n④在成熟的法治国家,法律与社会的契合程度较高,法治实施的阻力和困境相对较小\n\n⑤应当深化行政执法体制改革,按照减少层次、整合队伍、提高效率的原则,合理配置执法力量\n\n⑥因此,执法能力至关重要,它决定了国家法律能够“穿透”乡村社会的程度\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ②④③⑥①⑤\nB. ④③⑥⑤②①\nC. ②③⑤①④⑥\nD. ④①③⑤②⑥", "choice": "A", "keypoints": "尾句特征;确定顺序;确定捆绑", "most_wrong": "B", "human_count": 301291, "human_acc": 67.2280287164, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 5114170, "material": "", "question": "①健康码在行政法上的法律性质如何界定,其应遵守何种法律边界\n\n②健康码作为个人的“电子健康证明”,在具体场景中能为基层防疫部门的治理决策提供判断依据\n\n③然而,治理角度的有效性并不等同于规范上的合法性\n\n④健康码由个人提交的敏感信息和后台的公共大数据自动比对而成\n\n⑤红码、黄码和绿码代表了个人的疫情风险等级,反映了当地的疫情风险状况\n\n⑥我们需要从规范的角度进行进一步的分析\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ①⑥④②③⑤\nB. ④⑤②③①⑥\nC. ②①⑥④⑤③\nD. ⑤④③②①⑥", "choice": "B", "keypoints": "尾句特征;确定顺序;确定捆绑", "most_wrong": "C", "human_count": 64678, "human_acc": 81.9165713226, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 4678603, "material": "", "question": "对下面6个句子语序排列正确的一项是:\n\n①对于任何一个民族文化而言\n\n②人类历史的前进\n\n③方能获得文化补偿\n\n④拥有文化输出与文化接受的健全机制\n\n⑤离不开文化的交流融合\n\n⑥赢得空间上的拓宽和时间上的延展", "type": "单选题", "options": "A. ①④③⑥②⑤\nB. ②⑤①④⑥③\nC. ②⑤①④③⑥\nD. ①④⑥③②⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 13279, "human_acc": 53.6938022441, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 5539941, "material": "", "question": "创新、协调、绿色、开放、共享,就好比中国古代哲学所讲的“五行”,金木水火土,一个都不能少。它们高度________,不可分割,是统领发展的总纲要和大逻辑,共同构筑了未来发展图景的顶层设计;它们各有侧重、协同支撑,每一个都对应经济社会发展中的重要__________。准确把握新发展理念,必须全面完整,不能____________,更不能相互替代。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 耦合 着力点 顾此失彼\nB. 一致 切入点 以偏概全\nC. 统一 平衡点 避重就轻\nD. 契合 落脚点 以一持万", "choice": "A", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 38270, "human_acc": 66.5090148942, "source": "2023上半年省考第十三季行测模考大赛(江苏C卷)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4997722, "material": "", "question": "“智能+”“共享教育”“在线教育”等一众新兴概念开始了对传统教育的广域________。在实际中,教育模式不能____________,因为各个地方必然存在高校师资水平的差异、教育设备的差异,这是天堑鸿沟。在此基础上,应以自身教育情况为基准进行交流指导,摈弃各家____________,在协作共享中,收获灵感和思路,从而打破思维的局限。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 侵袭 一概而论 照本宣科\nB. 浸润 千篇一律 固步自封\nC. 渗透 生搬硬套 闭门造车\nD. 影响 急于求成 纸上谈兵", "choice": "C", "keypoints": "词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 273057, "human_acc": 76.8846797555, "source": "2022上半年省考第二十季行测模考大赛(陕西卷)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5317363, "material": "", "question": "19世纪德国大学在政府资助下,虽然能够享有一定程度的自治,但是这种自治犹如温室里的花草,一旦遭遇外部变局,德国大学的自治便日渐________。可以说,政府资助下的大学,其官僚化管理一直为学界所________,但又是很难去除的顽疾。在外部官僚化的管理下,大学学术资本运营表现出强烈的依附性,在这种境遇下要求大学自主创业,无异于____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 枯萎 揶揄 与虎谋皮\nB. 凋零 指摘 火中取栗\nC. 萎缩 抨击 缘木求鱼\nD. 缩简 诟病 刻舟求剑", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "B", "human_count": 227917, "human_acc": 43.1108693077, "source": "2022下半年省考第十四季行测模考大赛(陕西卷)第38题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4753566, "material": "", "question": "①其核心软件是中国科学院自主研发的地球系统模式,能够模拟大气圈、水圈、冰冻圈等的演变规律,对地球的过去进行反演、对现在进行观察、对未来进行预测\n\n②地球系统数值模拟装置是我国首个具有自主知识产权,以地球系统各圈层数值模拟软件为核心,软、硬件协同设计的专用地球系统数值模拟装置\n\n③随着人类社会飞速发展,海平面上升、冰川融化退缩、沙漠化等灾害不断加剧,给人类社会带来严重威胁\n\n④气候变化应对与碳中和实现,是世界各国所面临的共同问题,也是最为复杂的多边外交谈判议题之一\n\n⑤人类越来越迫切地需要读懂地球,更精准、全面地认识地球变化,研究全球变化的机制和机理,预知地球的未来\n\n⑥一些发达国家已建成专门的地球模拟装置,从而在这一外交谈判中占据主导地位,我国面向地球系统专用数值模拟装置的建成将有利于扭转这一局面\n\n将以上六个句子重新排序,最恰当的一项是:", "type": "单选题", "options": "A. ②①④⑥③⑤\nB. ④③②⑥①⑤\nC. ③⑤②①④⑥\nD. ⑥③②④⑤①", "choice": "C", "keypoints": "非首句特征;首句特征;确定捆绑", "most_wrong": "A", "human_count": 329463, "human_acc": 80.9933133614, "source": "2022上半年省考第九季行测模考大赛(四川卷)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 4840091, "material": "", "question": "①雕漆作为一门造物手艺,需要精湛的技艺,有时这技艺本身就是艺术的体现\n\n②庄子认为在特定的条件下,技是道的体现\n\n③统筹安排雕漆过程中的各种技艺,考虑工艺制作能否达到造型与纹样设计的效果,并事先筹划确定运用何种工艺进行雕刻\n\n④技是造物的手段,也是造物美得以显现的载体\n\n⑤在雕漆制作过程中,工艺设计也是重要一环\n\n⑥而这种道正是造物文化“以神遇而不以目视,官知止而神欲行”的最高境界\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑤③②④⑥\nB. ③⑤②⑥①④\nC. ④②⑥①⑤③\nD. ⑥①⑤④②③", "choice": "C", "keypoints": "非首句特征;首句特征;确定捆绑", "most_wrong": "A", "human_count": 358556, "human_acc": 70.1865259541, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第49题", "difficulty": 4, "formulas": 0}, {"id": 2678922, "material": "", "question": "①宝卷宣卷活动之所以绵延至今,是因为它们满足了不同人群对于生存、自我认同和归宿感的需要\n\n②经过宋元时期的发展,在明清两朝达到鼎盛\n\n③在这一活动过程中,宝卷发挥的社会认同与凝聚作用不可小觑,因此,宝卷研究一直颇受学界重视\n\n④宝卷是承载民众文化记忆、伦理道德、精神信仰的文化文本,长期在民间流传\n\n⑤宝卷可以分为两种,有的以宣传宗教仪轨为主,有的以说唱文学故事为主\n\n⑥宝卷是一种中国传统说唱文学形式,起源于唐代的佛教俗讲\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④⑥②①⑤③\nB. ⑤④②⑥①③\nC. ③①②⑤⑥④\nD. ⑥②④⑤①③", "choice": "D", "keypoints": "非首句特征;首句特征;确定捆绑", "most_wrong": "A", "human_count": 15685, "human_acc": 83.5894166401, "source": "2020年下半年省考第十一季行测模考大赛(新疆卷)第50题", "difficulty": 4, "formulas": 0}, {"id": 5367811, "material": "", "question": "①而对于快递企业来说,要想支撑循环箱的运转,还得就运营管理等系统进行持续研发和投入\n\n②对快递员来说,这么做明显影响投递效率,远不如使用一次性包装来得痛快\n\n③消费者出于保护隐私等的考虑,现场拆箱的意愿并不高\n\n④循环快递箱,是可以反复使用的快递箱,多由可降解的材料制成,同时采用固定带、魔术贴等代替胶带纸、塑料泡沫填充物,可循环使用几十次\n\n⑤不过,要实现这种快递箱的循环使用,需要快递员在送达快递后,现场将循环箱内的物品取出,然后带走循环箱,以投入下次使用\n\n⑥在收发快递这件事上,每个主体都选择了于己有利的选项,但就最终的结果而言,似乎是所有人皆输\n\n将以上6个句子重新排序,语序正确的是:", "type": "单选题", "options": "A. ④⑤③②①⑥\nB. ④③⑤②①⑥\nC. ②①④⑤③⑥\nD. ②①③④⑤⑥", "choice": "A", "keypoints": "非首句特征;首句特征;确定捆绑", "most_wrong": "B", "human_count": 2640, "human_acc": 90.5681818182, "source": "2022下半年省考第十八季行测模考大赛(新疆区考卷)第49题", "difficulty": 3, "formulas": 0}, {"id": 5144754, "material": "", "question": "①值得注意的是,考古学和哲学的平行线也会出现殊途同归的非欧几何式交点,集中表现在文明早期之“作”\n\n②考古学是一个广义概念,首先包括作为一种科学的考古学,同时也包括在延伸意义上作为方法论的各种“考古学”\n\n③古人所谓“作”指的是对文明具有重大意义的创作。比如《周易》就罗列了先民多种大“作”,包括制度、文字、农耕、兵器等发明\n\n④所有研究“本源”的哲学都是某种考古学。在本源问题上,考古学和哲学似乎有着平行线的互相参照效果\n\n⑤考古学发现具有本源性的实物,哲学试图发现具有本源性的思想\n\n⑥正是这些发明定义了时代和文明的本源。我们目前对“本源”的发现和理解仍然很有限\n\n将上述6个语句重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ②④⑤①③⑥\nB. ③①②④⑤⑥\nC. ⑥②④⑤①③\nD. ⑤②④①③⑥", "choice": "A", "keypoints": "非首句特征;首句特征;确定捆绑", "most_wrong": "D", "human_count": 4596, "human_acc": 67.906875544, "source": "2022下半年省考第四季行测模考大赛(新疆卷)第49题", "difficulty": 5, "formulas": 0}, {"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 5367819, "material": "", "question": "在高楼建设中适时“下层楼”,是对经济成本和资源代价的再思考。在城市建设密集型住宅区和商业区的初衷是均摊高额的土地成本、高效利用空间。然而,高楼不一定“高效”,随着楼层的不断攀升,供水供电、应急消防、结构防风等成本不断累加,有可能会突破建筑成本的临界点。有研究显示,一栋摩天大楼每平方米的年耗电量高达139度,能耗远高于其他建筑。高楼意味着配套的高资源消耗,在强调节能减排的今天,容不下更多的“能耗大户”拔地而起。摆脱对高度的盲目追求、契合城市文脉,才可能千城千面、不拘一格。\n\n这段文字最适合作为下列哪个观点的论据?", "type": "单选题", "options": "A. 城市建设更应考虑历史性与实用性\nB. 打好“人文地基”才能够跳出“高楼竞赛”\nC. 对于城市建设不应该“求高”\nD. 坚持因地制宜原则以避免“能耗大户”的出现", "choice": "C", "keypoints": "关联词-对策;行文脉络-总分;特殊问法", "most_wrong": "D", "human_count": 13752, "human_acc": 60.0930773706, "source": "2022下半年省考第十八季行测模考大赛(山东卷)第34题", "difficulty": 5, "formulas": 0, "history": [{"id": 2011462, "material": "", "question": "汉语西文字母词被汉语词典收录的历史已有100多年,收录字母词早已是汉语词典和工具书编纂的惯例和通行的做法。1903年出版的《新尔雅》在正文中收录了“X光线”一词,这是汉语词典首次收入字母词。在辞书史上,这部词典是近代中国最早的一部新语词词典,它虽然还不是纯粹现代意义上的汉语词典,但具有承前启后的重要意义。\n\n这段文字介绍《新尔雅》的目的是:", "type": "单选题", "options": "A. 总结西文字母词在汉语词典中的收录规律\nB. 说明汉语词典收录西文字母词早有先例\nC. 论述其对于近代以来辞书编纂的影响\nD. 探讨汉语词典收词规律的历史演变", "choice": "B", "keypoints": "关联词-对策;行文脉络-总分;特殊问法", "most_wrong": "C", "human_count": 1847057, "human_acc": 72.059443753, "source": "2015年国家公务员录用考试《行测》题(省部级)第43题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5147474, "material": "", "question": "受传统观念影响,中国人对精神类疾病不太重视,________很忌讳看心理医生。________,现代社会节奏那么快,压力那么大,不少人或多或少都存在一些心理问题,讳疾忌医,只会加剧病症。________在抗疫特殊时期,________长时间封控,无论是被隔离对象,还是防疫工作人员,精神压力都很大。这就更需要做好心理防护工作,尽量避免心理上的“次生伤害”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 也 然而 特别是 由于\nB. 还 因此 尤其 因为\nC. 且 当然 尽管 可是\nD. 又 可是 即使 加上", "choice": "A", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-并列关系", "most_wrong": "B", "human_count": 1804, "human_acc": 89.0243902439, "source": "2022下半年省考第四季行测模考大赛(上海卷)第3题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 10681, "material": "", "question": "他并不富裕,但还______和照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37792, "human_acc": 63.0212743438, "source": "2009年湖南省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 4874930, "material": "", "question": "众所周知,法律同道德一样,也是调整社会关系的行为规范。但是,与道德作为衡量人的行为正当与否的观念标准不同,法律是国家意志的体现。法律制定的行为规范普遍适用于全体社会成员和一切社会活动,也是社会监督的刚性标准。监督虽然是一种普遍的社会行为,但并不等于人的一切行为都应当置于监督的范围之内,同样也不意味着对所有失范行为都要进行惩戒。任何监督都应当以法律为底线,都应当遵循法定的规则、程序和标准,一旦违反法律规定,即使目的正当合理,也会因为缺乏法律依据而丧失其应有的效力。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 实现监督的制度化和规范化势在必行\nB. 社会监督应坚守国家意志的法律底线\nC. 我国在社会监督立法过程中遭遇的困境\nD. 开展社会监督需用好法律和道德两个标尺", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-分总分", "most_wrong": "A", "human_count": 20534, "human_acc": 85.638453297, "source": "2023年国考第十六季行测模考大赛(行政执法类)第56题", "difficulty": 4, "formulas": 0, "history": [{"id": 4658466, "material": "", "question": "为什么过去租赁市场发展相对滞后?为什么房企更愿意采取“开发一一出售”模式,而不是“开发——持有一一出租”模式?其根源在于租赁需求不旺;租赁需求不旺的根源则在于租购不同权,租房者难以享受与购房者同等的基本公共服务。对症施策,就是在法律上明确规定“租购同权”,把所有居民享受基本公共服务与是否拥有住房剥离开来,购房与否不再作为基本公共服务区别提供的条件。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 租房者的租赁需求不旺的原因\nB. 需要规定“租购同权”的原因\nC. 租赁市场发展相对滞后的原因\nD. 房企愿意采取现有模式的原因", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-分总分", "most_wrong": "C", "human_count": 1683609, "human_acc": 59.4929107649, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第30题", "difficulty": 4, "formulas": 0}, {"id": 5637671, "material": "", "question": "知识产权是一种私有的权利,在很多情况下,通过行政手段对其进行保护并不能取得预期的成效,大多数情况下,还是要依靠权利主体的自我保护。对此,我们需要设立专门的智慧法庭。这是因为,在对知识产权进行全面保护的同时,还可以对侵犯行为进行法律处罚,从而使知识产权的保护更具专业性和综合性。设立专业的知识产权法庭,能够提高对这类案件的审理效率,并能极大地降低侵权案件的发生。\n\n这段文字主要介绍了:", "type": "单选题", "options": "A. 加大知识产权侵权行为处罚力度的重要意义\nB. 设立专门智慧法庭对知识产权进行保护的原因\nC. 设立专业的知识产权法庭对减少侵权案件有益\nD. 维护知识产权为何依靠权利主体的自我保护", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-分总分", "most_wrong": "C", "human_count": 50905, "human_acc": 83.5065317749, "source": "2023下半年省考第十一季行测模考大赛(四川卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 5407822, "material": "", "question": "新冠肺炎疫情发生后,口罩等防护用品以及口罩的核心材料熔喷布成为紧缺防疫物资,由此产生了一系列与口罩相关的犯罪行为,有的哄抬口罩价格,有的利用口罩实施诈骗,有的生产销售伪劣口罩等等。这些行为很大程度上是因疫情而暴发,其最核心的危害后果就是干扰、破坏疫情防控总体战,因此司法必须在这个特殊时期针对这一系列特殊问题予以果断快速反应。最高人民法院在短期内连续发布两批有关妨害疫情防控犯罪的典型案件,展示了雷霆之力,充分说明了司法机关的责任担当。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 应提高司法效率维护社会环境秩序\nB. 最高人民法院在疫情期间展示雷霆治理\nC. 司法部门应及时介入疫情期间违法行为\nD. 疫情对刑事司法体系和能力的考验", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-分总分", "most_wrong": "B", "human_count": 227987, "human_acc": 71.3606477562, "source": "2023年国考第四十八季行测模考大赛(副省级)第42题", "difficulty": 4, "formulas": 0}, {"id": 5570550, "material": "", "question": "这些年,有关女性在职场中面临“玻璃天花板”、受到或明或暗的就业歧视等话题,不时引发社会热议。每一次涉及职场性别歧视的新闻被报道后,都会有人为单位“叫屈”,因为单位招用女职工,必须承担生育成本。可问题在于,全社会都在劳动力人口中共享红利,自然应该共同分摊生育成本,用人单位也不例外。这其中,法律对相关责任和权利的界定,就显得格外重要。比如,政府有关部门应该承担什么责任,在税收政策上对合法合规的单位提供怎样的助力,对违法违规的单位应该怎样监管、惩处,都是法律需要更加明确之处。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 法律应明确政府和企业承担的责任\nB. 社会各界应共同分摊女性生育成本\nC. 需要从立法层面消除职场性别歧视\nD. 政府应采取措施保障女性职场权利", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-分总分", "most_wrong": "A", "human_count": 4933, "human_acc": 48.9357389013, "source": "2023下半年省考第三季行测模考大赛(四川卷)第39题", "difficulty": 6, "formulas": 0}, {"id": 4025351, "material": "", "question": "近年来,随着信息技术在社会科学研究领域的深入应用,数字人文技术也逐步运用到农耕图像的研究中。目前有关中国古代农耕图像的汇集成果,只是以简单的“文本”形式呈现与传播,“信息化”“数据化”程度还远远不够,不利于农耕图像的保存、传播与利用。广泛搜集并细致整理各种门类的中国古代农耕图像,同时建设相应的数据库,很有必要。在全面、系统搜集资料的基础上,应对每一种、每一幅农耕图像及与之相关的文献资料分门别类,将全部农耕图像及文字资料进行元数据处理,建设成熟、全面、实用的中国古代农耕图像资料数据库,为学术研究提供基本的数据支撑。\n\n这段文字主要说明“中国古代农耕图像”:", "type": "单选题", "options": "A. 运用了数字人文技术\nB. 需搜集资料分门别类\nC. 汇集成果不利于保存\nD. 建设数据库的必要性", "choice": "D", "keypoints": "主题词;关联词-对策;行文脉络-分总分", "most_wrong": "A", "human_count": 12709, "human_acc": 82.4533794948, "source": "2021下半年省考第十九季行测模考大赛(辽宁卷)第59题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 5114128, "material": "", "question": "我们常常毫不怀疑小说和诗歌的假定性,又____________地相信散文、传记、日记、访谈的真实性。殊不知,随着现代叙事中各种文体的融合和文体边界的模糊,以真实与虚构来区分各种文体的做法也受到质疑。已有学者提出,中国当代作家的____________文字存在假言叙事的现象,即作家对创作动机、文本意图等的说明会出现前后不一甚至相互________的表述。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 坚定不移 史传性 分歧\nB. 义无反顾 自传性 龃龉\nC. 不假思索 纪实性 矛盾\nD. 毫无保留 严肃性 掣肘", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;混搭填空", "most_wrong": "A", "human_count": 87679, "human_acc": 93.0131502412, "source": "2022下半年省考第三季行测模考大赛(江苏卷)第39题", "difficulty": 3, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5144253, "material": "", "question": "早在视频网站发展初期,就有一系列____________的微短剧,但身处长系列剧集流行的年代,观看微短剧未能形成社会风潮。随着手机用户观看短视频习惯的养成,微短剧市场开始生根发芽,形态发展____________,从一开始搞笑段子的简单演绎,到今天类型化的相对多元、成熟、精致。在移动互联网存量时代,微短剧不仅是短视频平台用户黏性的新增长点,而且是未来短视频行业的风口。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 哗众取宠 高歌猛进\nB. 可圈可点 日新月异\nC. 有口皆碑 方兴未艾\nD. 博人眼球 欣欣向荣", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 91952, "human_acc": 77.0934835566, "source": "2022下半年省考第四季行测模考大赛(广东县级卷)第3题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4661688, "material": "", "question": "当下,让传统文化“活起来”,互联网发挥了____________的作用。在互联网的加持下,四书五经、唐诗宋词不再是____________、少人问津的“书写在古籍里的文字”;“全景故宫”等通过全新的漫游体验让人们仿佛身临其境,让传统文化在网络中找到了“____________”。可以说,互联网彻底改变了中华优秀传统文化的存在方式。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 举足轻重 默默无闻 立足之地\nB. 无可比拟 束之高阁 一席之地\nC. 有目共睹 佶屈聱牙 一隅之地\nD. 大有裨益 孤芳自赏 立锥之地", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 104520, "human_acc": 55.9730195178, "source": "2021下半年省考第三十九季行测模考大赛(陕西卷)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 5416749, "material": "", "question": "人民尚正义,社会有正气,民族才会____________,国家才会兴旺发达。在新时代新征程上,必须充分利用多平台、多途径、多方式褒奖、宣传见义勇为英雄事迹,让更多的人____________,更加坚定对见义勇为者的认同,从而积极主动加入见义勇为的行列之中。同时,我们也要深入弘扬见义勇为英雄事迹集中体现出的中华美德和社会主义核心价值观,不断激发全社会____________、崇德向善的内生动力,让凡人善举成为时代风景,让美德浸润社会每个角落。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 生生不息 见贤思齐 明德惟馨\nB. 经久不衰 洗心革面 馨香祷祝\nC. 一脉相承 兼听则明 心驰神往\nD. 绵延不绝 闻过则喜 受益匪浅", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 8760, "human_acc": 97.8767123288, "source": "2022下半年省考第二十三季行测模考大赛(通用卷)第39题", "difficulty": 3, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 4932837, "material": "", "question": "基础研究是科技创新的源头,欲流之远者,必浚其泉源,加强基础研究势在必行。根深才能叶茂,基础认知不清晰,原理机制不清楚,就很难做出原创性、革命性、颠覆性的关键核心技术。以我国的“人造太阳”为例,它之所以能接连创造出1.2亿摄氏度“燃烧”101秒、1.6亿摄氏度“燃烧”20秒的世界纪录,就源自科研人员对核物理规律更深层次的理解与把握。基础研究一小步,科技创新一大步,载人航天、大洋深潜等重要科技工程连奏凯歌的背后,是基础研究的有力支撑。\n\n这段文字主要强调的是:", "type": "单选题", "options": "A. 基础研究是突破技术瓶颈的密钥\nB. 核物理规律推动科技创新发展\nC. 不断夯实科技创新的“根基”\nD. 下大气力推进科技创新势在必行", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-总分", "most_wrong": "A", "human_count": 294413, "human_acc": 44.8234283133, "source": "2022上半年省考第十七季行测模考大赛(陕西卷)第45题", "difficulty": 6, "formulas": 0, "history": [{"id": 5430276, "material": "", "question": "在社会文化的变革中,如果要创新,就必须要有新的思维,必须突破原有的观念体系和知识框架,必须要对社会已经蔓延的“常识”进行反思和批判。这里的“常识”,指既定的思想框架和方法路径。尽管这种思想框架和方法路径可能是人类智慧和实践的一种积累,但是随着历史的发展,它很可能又变成了一种枷锁,限制和捆绑着人们的创造力。我们的反思、修正、突破和创新,都需要不断地去做各种各样的尝试。\n\n这段文字意在强调:", "type": "单选题", "options": "A. “常识”容易让人墨守成规\nB. 要创新就必须突破“常识”\nC. 突破和创新需要大胆尝试\nD. 要警惕“常识”的负面影响", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-总分", "most_wrong": "C", "human_count": 784777, "human_acc": 69.1865332445, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5554812, "material": "", "question": "中医是中华民族的瑰宝,而人才是中医发展的第一资源,以创新价值、能力、贡献为导向,分类建立中医临床、基础、科研人才评价标准。临床人才重点评价其临床疗效,把诊断准确率、治疗方案、患者满意度、带徒情况等作为评价要素。基础人才重点评价其中医药基础理论研究和原创能力,把重大理论创新、重要学术专著、古典医籍挖掘成果等作为评价要素。科研人才重点评价其探索疾病规律、解决临床问题、用现代科学解读中医药学原理等的能力,将主持重大科研项目、创新性代表作、科研成果产出及转化等作为重要评价要素。\n\n文段意在说明:", "type": "单选题", "options": "A. 需营造中医人才发展的良好环境\nB. 分门别类建立中医人才评价标准\nC. 完善人才评级体系促中医药发展\nD. 让中医振兴发展人才培养是关键", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-总分", "most_wrong": "C", "human_count": 57721, "human_acc": 78.3544983628, "source": "2023下半年省考第一季行测模考大赛(四川卷)第34题", "difficulty": 4, "formulas": 0}, {"id": 5144657, "material": "", "question": "职业教育的重点在于培养职业技能,但不能只停留在技术培训层面,必须把提高职业技能和培养职业精神结合起来,不仅要让学生有一技之长,更要培养学生的专业精神和敬业品格。从焊造我国首个空间站“天和”核心舱密封舱体的高级技师郑兴,到世界技能大赛冠军曾正超,从这些大国工匠身上,我们看到的不仅是高超的技术,还有执着专注、精益求精、一丝不苟、追求卓越的工匠精神。在职业教育中大力弘扬劳模精神、劳动精神、工匠精神,我们定能培育出更多德技双修的优秀技能人才,为实现高质量发展提供坚实的人才保障。\n\n这段文字强调职业教育应:", "type": "单选题", "options": "A. 培养学生的专业精神和敬业品格\nB. 将职业技能和职业精神结合培养\nC. 为高质量发展提供充分人才供给\nD. 不能只注重对技术层面进行培训", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-总分", "most_wrong": "A", "human_count": 56362, "human_acc": 80.3874951208, "source": "2022下半年省考第四季行测模考大赛(新疆卷)第45题", "difficulty": 3, "formulas": 0}, {"id": 5430279, "material": "", "question": "军事指挥员在未来战场上的谋优制胜能力取决于其军事思维发展水平,而要形成良好的军事思维能力,必须把战争制胜机理搞透。不同的战争形态,遵循不同的制胜机理,需要不同的思维方式。凡是罔顾军事实践发展、囿于陈旧观念的军队,必然会在战争中受到惩罚。事实证明,按照机械化条件下作战方式培养出来的指挥员,如果固守传统思维,是不能打赢信息化战争的。不清楚未来作战的制胜机理,就不能在实战化训练中及时增添反映未来作战的新要素、新内容、新手段,导调就只能在“老一套”上转圈圈,就无法引领参训官兵确立符合未来作战需要的思维。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 信息化战争对参战人员提出的新要求\nB. 提升指挥员军事思维发展水平的途径\nC. 培养方式对提升军事指挥员素质的影响\nD. 研究战争制胜机理对军事指挥员的意义", "choice": "B", "keypoints": "主题词;关联词-对策;行文脉络-总分", "most_wrong": "D", "human_count": 801859, "human_acc": 9.9674631076, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第66题", "difficulty": 4, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5077024, "material": "", "question": "庚子的云彩,不落俗套,摆脱了__________,它们是最有才气最有想象力的艺术家,进行着出色的艺术创造。它们把许多艺术手法,诸如变形、夸张、比喻、通感等,都运用得____________。有时候,云有好多层,让人意识到何谓九重天,也让人看到了云的________。忽然,太阳的光线穿透一层层的云,一支支金色的箭矢携着贝多芬的第九交响曲飞泻而下,大地一片辉煌。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 模式化 无出其右 灵性\nB. 通俗化 得心应手 从容\nC. 程式化 游刃有余 深邃\nD. 规模化 炉火纯青 厚重", "choice": "C", "keypoints": "词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;词的辨析-词义侧重;混搭填空", "most_wrong": "D", "human_count": 70210, "human_acc": 66.694203105, "source": "2022下半年省考第一季行测模考大赛(江苏卷)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5480636, "material": "", "question": "①如果缺乏实施完全学分制的理念与制度支撑,开设微专业之路很难走远\n\n②比如,随着微专业的增多,怎么解决微专业教学与传统专业教学的冲突问题?微专业课程建设和传统专业课程建设怎么协调\n\n③最终,微专业将融入所有专业建设的课程改革之中,成为各专业学生完成大学学业所需选修的跨学科课程学习模块内容\n\n④从这一角度看,开设微专业的探索,对推进高校的整体教学改革具有现实意义,不但可以积累一批跨学科课程,还可以积累提高教学质量的经验\n\n⑤开设微专业,其实是高校深入推进完全学分制改革的探索\n\n⑥因此,开设微专业是推进完全学分制教学的阶段性举措\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑥④⑤②③\nB. ②③⑤①⑥④\nC. ④⑤②①⑥③\nD. ⑤①②⑥③④", "choice": "D", "keypoints": "非首句特征", "most_wrong": "A", "human_count": 33570, "human_acc": 84.6023235031, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第79题", "difficulty": 4, "formulas": 0, "history": [{"id": 6609, "material": "", "question": "①其中包括他们的肤色、相貌、身材、线条、姿态、气质、风度等许多方面\n\n②这样的美,才是广大女性更加向往、追求和渴望的\n\n③真正的女性美,应该是结实、精干、肌肉强健,具有区别于男子的特有曲线美\n\n④越来越多的人们现在都倾向于认为:现代女性人体美,绝不是苗条、柔软、纤细\n\n⑤当代青年人心目中美的典型,已不再是一个或一种人,而是一个多层次、多因素的复杂模式\n\n⑥既不失女性的妩媚,又足以承担生活竞争的压力,担当起社会责任\n\n排列组合最连贯的是:", "type": "单选题", "options": "A. ⑤⑥③②④①\nB. ⑤④⑥②①③\nC. ⑤①④③⑥②\nD. ②⑤①③④⑥", "choice": "C", "keypoints": "非首句特征", "most_wrong": "B", "human_count": 92466, "human_acc": 85.1058767547, "source": "2008年江苏省公务员录用考试《行测》题(A类)第71题", "difficulty": 5, "formulas": 0}, {"id": 4840106, "material": "", "question": "①就这样,日复一日,年复一年,我在平凡的岗位上奉献着,也收获着\n\n②我的家乡地处鄂东大别山支脉的深山僻岭,那里交通不便、曾经生活贫困\n\n③高中毕业后,我开始了梦寐以求的职业生涯,走上了“传道授业解惑”之路\n\n④知识打开了我的眼界,也给我幼小的心灵播下种子:长大后我要当一名教师,用知识改变偏远的山乡\n\n⑤能与乡村教育结缘,还得从小时候的梦想说起\n\n⑥用实际行动改变一个又一个孩子,点燃他们对于生活和未来的希望\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑤②⑥④③\nB. ⑤②④③①⑥\nC. ②⑤③④①⑥\nD. ④②⑤③⑥①", "choice": "B", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 246048, "human_acc": 87.6910196384, "source": "2022上半年省考第十三季行测模考大赛(河南卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 2033074, "material": "", "question": "①提起“小清新”,或许很多人不屑。\n\n②“人生一场小清新,此生不改是天真。”\n\n③天真,含义有褒有贬。既有纯真、简单之意,也有幼稚、不成熟之意。\n\n④这位“网络红人”却难能可贵地在“小清新”中,发现了它最可爱又可贵的内核——天真。\n\n⑤天真是好是坏?是多一点好还是少一点好?在不同的语境中答案当然不同。但在当前,窃以为这种品质不是太泛滥,而是太稀缺。 \n\n⑥这是不久前一位“网络红人”与网友互动时,在微博上写下的一句俏皮的“禅语”。\n\n下列语序排列正确的是:", "type": "单选题", "options": "A. ①⑥②④⑤③\nB. ⑥④①⑤③②\nC. ②⑥①④③⑤\nD. ③⑤②⑥①④", "choice": "C", "keypoints": "非首句特征", "most_wrong": "D", "human_count": 512840, "human_acc": 81.1087278683, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第50题", "difficulty": 5, "formulas": 0}, {"id": 5355308, "material": "", "question": "①它们也是人类赖以生存的生态系统的重要组成部分,与人类的衣食住行密切相关\n\n②开花是其区别于其它植物大类群最重要的特征,是其成为陆地生态系统主导类群的重要优势特征\n\n③花的起源和演化是认识和理解被子植物的起源,及与其它种子植物大类群谱系发育关系的关键\n\n④这一类群对人类和地球上的其它生命有着至关重要的影响,其起源和早期演化一直都是演化生物学中重要的科学问题\n\n⑤被子植物被认为是植物界进化完善、种类丰富、生态习性复杂的大类群\n\n⑥食物、棉麻衣服、建筑木材,绝大多数直接或间接地取自被子植物\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑤①⑥④②③\nB. ⑥⑤①②④③\nC. ②③①④⑥⑤\nD. ③④②①⑥⑤", "choice": "A", "keypoints": "非首句特征", "most_wrong": "D", "human_count": 2414, "human_acc": 75.2692626346, "source": "2022下半年省考第十七季行测模考大赛(新疆区考卷)第49题", "difficulty": 6, "formulas": 0}, {"id": 5570233, "material": "", "question": "①这种研究不再局限于传统对于地域文学的简单外部地理关注\n\n②以空间为导向的文学研究在实质上极大地促进了当代文学批评的变革,把越来越多的评论目光吸引到空间、地方和文学的动态关系上\n\n③随着空间概念日益前景化,我们看待和研究作家创作的角度也有了全新发展\n\n④还拓展到地图和地理意识在作家创作过程中的重要意义、空间在文本结构和意义再现中的重要功能等\n\n⑤通过在相关期刊数据库中以“空间性”为关键词搜索发现,相关研究成果在21世纪以来出现大幅增长并一直居高不下\n\n⑥这说明空间文学研究已经成为文学研究新的增长点\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤⑥③①④\nB. ③①⑤⑥④②\nC. ⑤⑥③①②④\nD. ⑥③①⑤④②", "choice": "A", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 42575, "human_acc": 57.9424544921, "source": "2023下半年省考第三季行测模考大赛(四川卷)第30题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"]]}, {"id": 5629598, "material": "", "question": "“飞天”并不是一个纯粹的中国文化概念,敦煌飞天的形象,其实是古代中原文化、丝路文化与印度文化特征的结合,体现出浓郁的多元文明色彩。这些“飞天”元素从十六国时期到元代都存在,而不同时期的“飞天”形象也有差异。最早的北凉时期的“飞天”形象,并没有后来的轻盈感,壁画的线条看起来比较粗粝,北魏时期的“飞天”则增加了裙摆的飘逸感,已经出现了衣服的褶皱细节。隋唐时期,“飞天”艺术达到巅峰状态,更有七身或九身的“飞天”群像,仙气飘飘、灵动美妙的形象大量出现。尤其是唐代文化雍容华贵而大气开放,“飞天”形象也色彩斑斓,极具灵韵。从五代到宋代,再到元代,“飞天”艺术风格趋于保守与内敛,这与宋人“内倾型”审美风格有关。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 敦煌“飞天”其实是丝路文化融合的代表作\nB. “飞天”形象的变迁反映出文化交流的深入\nC. “飞天”文化历史悠久且形象表现多元\nD. 敦煌文化的发展是兼容并蓄循序渐进的", "choice": "C", "keypoints": "关联词-并列;行文脉络-分总分", "most_wrong": "B", "human_count": 69641, "human_acc": 75.9523843713, "source": "2023下半年省考第十季行测模考大赛(上海卷)第11题", "difficulty": 4, "formulas": 0, "history": [{"id": 2557697, "material": "", "question": "随着城镇化进程加快,人口和其他生产要素越来越向城市集中,就会有更多空间用于生态涵养。因此,城市群的培育为区域经济发展注入强大动力的同时也有效促进了一些地区的生态保护,有助于形成发展与保护互相促进的局面。相比之下,生态比较脆弱、需要特别注重保护的地区往往位于乡村。促进人与自然和谐共生、实现绿色发展,也是实现乡村振兴面临的紧迫任务。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 乡村振兴需要处理好发展与保护的关系\nB. 相比城市而言乡村的生态保护更为急迫\nC. 城镇化发展为生态保护提供了强大驱动\nD. 城市群的形成有效推动了区域经济发展", "choice": "B", "keypoints": "关联词-并列;行文脉络-分总分", "most_wrong": "A", "human_count": 59235, "human_acc": 49.2597282012, "source": "2020年上半年省考第三十季行测模考大赛(山西卷)第59题", "difficulty": 6, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 4619, "material": "", "question": "不要过分地依赖语言。不要总是企图在语言上占上风。语言解不开的,事实可以解开。语言解开了而事实没有解开的话,语言会失去价值,甚至于只能添乱。\n\n这段话的主要观点是:", "type": "单选题", "options": "A. 事实比语言更有力量\nB. 平常不要说太多的话以免惹出是非\nC. 没有事实基础的语言是毫无价值的\nD. 语言是不重要的,事实才是重要的", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "C", "human_count": 39770, "human_acc": 41.7525773196, "source": "2008年河北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 2671008, "material": "", "question": "工商业的发展与文化的传承都跟江南的水有关。在江南,水走到的地方就热闹,水聚集的地方就繁荣。水不但方便了人们的迁徙与流动,也代表了多维度的商品诞生与发育,水还代表着文化在时间和空间上的交流与相互滋养。使得江南的文化传承和工商业发展能够____________,不论是那些____________的历代名人,还是“引车买浆者流”的普通民众,都有着一股浓浓的书卷气,这是江南独有的气质。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 此消彼长 举世瞩目\nB. 相得益彰 脍炙人口\nC. 殊途同归 家喻户晓\nD. 并行不悖 彪炳千秋", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 195832, "human_acc": 49.9387229871, "source": "2020年下半年省考第十季行测模考大赛(广东卷)第2题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4840035, "material": "", "question": "高校思政课的改革要坚持____________,要将习近平总书记提出的“八个相统一”要求作为高校思政课改革创新的根本遵循。在教学规律与方向上不能____________,而是要与时俱进;在教学方法上不能____________,而是要服从思政课的根本宗旨、切合学生对真善美的期待,围绕学生发展需求创新教学方法,帮助学生“扣好人生第一粒扣子”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 有条不紊 一成不变 独辟蹊径\nB. 循序渐进 墨守成规 曲意逢迎\nC. 守正出新 刻舟求剑 标新立异\nD. 釜底抽薪 画地为牢 剑走偏锋", "choice": "C", "keypoints": "词的辨析-感情色彩;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 257088, "human_acc": 28.5769853124, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第33题", "difficulty": 7, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 219031, "material": "", "question": "这件事情基本符合正常情况,可以按照________程序处理。\n\n填入划横线部分最恰当的一项是:", "type": "单选题", "options": "A. 陈规\nB. 常见\nC. 特殊\nD. 常规", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空", "most_wrong": "C", "human_count": 319883, "human_acc": 98.4550601314, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第56题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2557987, "material": "", "question": "癌症风险总体上是一个有机体一生中细胞分裂数量的函数,这是由体细胞进化驱动的,当体细胞复制基因组、分裂并产生子细胞时,就会发生遗传变化,寿命越长,细胞分裂就越多,后代细胞基因组中发生致癌突变的可能性就越高。然而,世界上最大且最长寿的哺乳动物鲸鱼却是患癌几率最低的动物之一,有研究发现这是因为鲸鱼有一种抑制肿瘤的基因,可以抑制细胞增殖,使其有足够的时间来修补自己的损伤。\n\n以下各项如果为真,能够削弱上述研究发现的有:", "type": "不定项", "options": "A. 鲸鱼体积较大,水中运动消耗能量的速度较快,消耗能量的速度快也会导致其患癌几率低\nB. 所有哺乳动物自身都带抑制肿瘤基因,包括患癌风险会随着年龄和体重增长而加大的人类\nC. 研究显示一些鸟类、爬行动物和鱼类同样会经历癌症,但野生的比圈养的患癌风险要低一些\nD. 癌症的核心是细胞发生异常变异,不可控制地生长和分裂,破坏了其生物环境(免疫系统)的正常功能", "choice": "AB", "keypoints": "他因削弱;削弱论点", "most_wrong": "D", "human_count": 14987, "human_acc": 19.5903116034, "source": "2020年上半年省考第三十季行测模考大赛(陕西卷)第109题", "difficulty": 5, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"], ["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 4932801, "material": "", "question": "在这样的国际国内背景下,我国宏观调控既要“防风险”又要“稳增长”,传统的逆周期调节能够较好地应对经济的短期波动,但面对国内外经济的长期结构性调整则常常____________。这就要求宏观调控____________:跨周期调节从长计议、____________地调整策略正好满足了在面对国内外变局时我国“防风险”和“稳增长”的调控目标要求。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 进退维谷 因势利导 未雨绸缪\nB. 捉襟见肘 高屋建瓴 追根溯源\nC. 左支右绌 另辟蹊径 高瞻远瞩\nD. 束手无策 迎难而上 有的放矢", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 209799, "human_acc": 42.5802792196, "source": "2022上半年省考第十七季行测模考大赛(陕西卷)第38题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2139574, "material": "", "question": "桃子渐渐摘完了。但还有一只________趴在枝上不愿下来。________在立秋那天它还没有丝毫动摇的意思。_________,它在继续壮大,________长得如饭碗一般。________我们自己也有点眼馋了。是的,除了孩子以外,我们还没有尝过一只完整的果实——我们只吃过一些夜间自动落下来,在地上跌破了的桃子。\n\n下列选项中,最适合填入横线的是:", "type": "单选题", "options": "A. 仍然 即使 而且 几乎 恐怕\nB. 始终 即使 而且 宛然 恐怕\nC. 始终 甚至 相反 几乎 连\nD. 仍然 甚至 相反 宛然 连", "choice": "C", "keypoints": "关联关系-转折关系;词的辨析-词义侧重", "most_wrong": "D", "human_count": 37405, "human_acc": 57.8184734661, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第15题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 455559, "material": "", "question": "对诚实的否定固然令人遗憾,但人们尚可从精神上、道德上的肯定中得到_______。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 偿还\nB. 回报\nC. 弥补\nD. 欣慰", "choice": "C", "keypoints": "关联关系-转折关系;实词填空", "most_wrong": "D", "human_count": 540644, "human_acc": 69.6744993008, "source": "2014年天津市公务员录用考试《行测》题第16题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5416736, "material": "", "question": "在世界技能大赛中,上海市城市科技学校教师获得精细木工项目金牌,重庆城市管理职业学院教师获得美容项目金牌······平时看着不起眼的专业和人才,如今站在了世界级的领奖台上,让人们不禁感叹“行行出状元”。古有庖丁解牛,今有站上世界技能大赛领奖台的“匠人”,我国从来不乏工匠精神,也一直赞誉工匠精神。在全面建设中国特色社会主义现代化国家的强国之路上,我们尤其需要具有工匠精神的高素质劳动者。故年轻人应把工匠精神融入自己的职业,以提升自己的技能和本领,将个人发展融入到国家现代化建设的大潮中去。\n\n这段文字主要说明:", "type": "单选题", "options": "A. 现代化建设离不开具有工匠精神的“匠人”\nB. 当代年轻人应秉持工匠精神努力提升自身\nC. 强国之路上高素质专业技术人才大有可为\nD. 工匠精神是我国历朝历代的强国之“本”", "choice": "B", "keypoints": "主题词;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 51369, "human_acc": 77.764799782, "source": "2022下半年省考第二十三季行测模考大赛(四川卷)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 4658474, "material": "", "question": "长江拥有水生生物4300多种,其中鱼类400多种(含亚种),170多种为长江特有,是世界上水生生物多样性最为丰富的河流之一。水生生物尤其是鱼类是长江水域生态系统健康状况的标志,而实施长江流域重点水域常年禁捕就是要在一段时间内从根本上停止捕捞利用,这是有效缓解长江生物资源衰退和生物多样性下降危机的关键之举,对改善长江水域生态环境、恢复生态功能具有重要意义。\n\n这段文字主要介绍:", "type": "单选题", "options": "A. 长江水域生态环境修复的意义\nB. 长江水域生物多样性的变化趋势\nC. 水生生物对长江生态系统的作用\nD. 长江流域重点水域常年禁捕的主要原因", "choice": "D", "keypoints": "主题词;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 1636802, "human_acc": 78.2059772654, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第41题", "difficulty": 4, "formulas": 0}, {"id": 5428279, "material": "", "question": "马克思在《1844年经济学哲学手稿》中指出:“如果你想要得到艺术的享受,那你就必须是一个有艺术修养的人。”审美主体只有具备了一定的艺术修养,才能与对象建立起良好的审美关系,才能形成正确的审美观且获得震撼人心的审美体验。这种艺术修养并不是天生的禀赋,而是在长期的社会实践中形成和发展起来的,是对生命的深刻领悟和对道德的精当见解。其中,德性作为涵养内在修养的重要内容,对主体的审美境界提升有着十分关键的作用。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 涵养德性可以提高艺术修养水平\nB. 提升审美境界需具备艺术修养\nC. 培养德性有利于提升审美境界\nD. 主体的德性与审美境界相得益彰", "choice": "C", "keypoints": "主题词;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 82256, "human_acc": 62.0635576736, "source": "2023上半年省考第一季行测模考大赛(四川卷)第41题", "difficulty": 5, "formulas": 0}, {"id": 5682055, "material": "", "question": "从家庭家族的丧祭活动到国家层面的祭祀黄帝、祭祀孔子,都不同程度地体现和传承着慎终追远的传统。但有些地方往往把庄严的祭祀活动办成文化旅游活动,搞得很热闹,一些祭祀活动形式大于内容,在举行宏大的仪式时,参祭者往往缺乏发自内心的虔诚敬畏,流于形式化。各种礼仪、礼品等都是有形的表面的东西,属于形祭,而真正重要的是施礼者、参礼者以及观礼者内心对于行礼对象的真实感受,这种心祭才是真正有价值的。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 对传统习俗与活动的沿袭在心而不在形\nB. 内心的诚敬更能够体现慎终追远的意义\nC. 形式化的传统祭祀习俗已经不适合当下\nD. 丰富多彩的祭祀礼仪蕴含对先贤的哀思", "choice": "B", "keypoints": "主题词;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 92140, "human_acc": 39.5344041676, "source": "2023下半年省考第十五季行测模考大赛(四川卷)第24题", "difficulty": 7, "formulas": 0}, {"id": 4525691, "material": "", "question": "荣宝斋的自来水毛笔,同仁堂的阿胶面膜,五芳斋的王者荣耀联名款粽子礼盒,内联升的手工汉服鞋······在电商大促中,老字号强势崛起,刮起一股“国潮”风。在一些老字号奋力转型,变身“新国潮”的同时,也有一些老字号发展遇到了瓶颈。一些老字号面临消费群体老龄化、产品更新迭代缓慢、电商落地效果欠佳、无数字化运营意识等问题。同是老字号品牌,有的既守住了经典又当上了“网红”,有的却只是吃老本,最终渐渐脱离了市场,一“热”一“冷”的背后关键是老字号能否跟时代接轨,与新消费合拍。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 老字号的两极化发展\nB. 老字号应接轨新消费\nC. 新国潮引领品牌新风尚\nD. 老字号需加快数字探索", "choice": "B", "keypoints": "主题词;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 12612, "human_acc": 83.5474151602, "source": "2021下半年省考第三十季行测模考大赛(辽宁卷)第58题", "difficulty": 4, "formulas": 0}, {"id": 5445693, "material": "", "question": "火山灰是指火山爆炸性喷发形成的,直径小于2毫米的喷发碎屑。在爆炸性火山活动中,围岩和岩浆被炸碎成细小的颗粒,形成火山灰。火山灰从火山口喷发到大气中,经过大气搬运再沉降到各类环境中,整个过程通常只有数年,从地质时间尺度来看,几乎只是瞬间。所以在各种地质记录中,火山灰是一种高精度的绝对时间标志层。火山灰年代学正是利用地质记录中的火山灰层来确定地质年代的科学,该学科可以解决一些重要的科学问题,比如大型火山喷发事件与气候变化、人类演化之间的关系,以及气候快速变化的区域差异等。\n\n这段文字主要介绍了:", "type": "单选题", "options": "A. 火山灰的形成过程与主要特点\nB. 火山灰年代学的研究思路和价值\nC. 火山灰在自然环境中的分布状态\nD. 火山喷发对环境和人类的影响", "choice": "B", "keypoints": "主题词;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 1517927, "human_acc": 77.915999913, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第45题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 2628580, "material": "", "question": "高维度战争采取的非火药杀伤机理,如网络攻击、声波武器、心理战等,常使陆海空三军、导弹力量陷入“无力回天”之境地,使现有防御____________。为抢占高维度战争先机,需要指挥员们跳出固有思维,要意识到新型力量不再仅是常规力量的有利辅助,不再只对常规战争起____________的作用,要打开战争视野,利用高维度战争的模糊性、可控性、软摧毁性,让其成为决定大国斗争成败的一柄利刃。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 不攻自破 拾遗补缺\nB. 灰飞烟灭 为虎添翼\nC. 土崩瓦解 画龙点睛\nD. 形同虚设 锦上添花", "choice": "D", "keypoints": "对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 104398, "human_acc": 62.9111668806, "source": "2021年国考第十四季行测模考大赛(副省级)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 3515, "material": "", "question": "到底转产什么得赶紧定下来,作为厂长,办事更要______,否则就会失去大好时机。", "type": "单选题", "options": "A. 果敢\nB. 果断\nC. 干练\nD. 稳妥", "choice": "B", "keypoints": "对应关系-重点词句对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 92313, "human_acc": 78.5317344253, "source": "2008年广东省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2758088, "material": "", "question": "与“快直播”的精心策划不同,“慢直播”没有主持人,依靠一个监控摄像头,事件的传播与发生同步进行,因而更加________。“慢直播”看似________,其实内涵丰富,因为有信息模糊性的破除,有公众认知和情感互动······这使公众体验远丰富于主持人和字幕给出的一种解读,话语边界消失,__________被充分调动起来,“慢直播”在特定场景下充分赋权赋能,因而火爆。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 真实 乏味 互动性\nB. 客观 枯燥 自主性\nC. 直接 简单 选择性\nD. 可靠 繁琐 有效性", "choice": "B", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-因果关系;实词填空", "most_wrong": "A", "human_count": 149999, "human_acc": 33.1702211348, "source": "2021上半年省考第四季行测模考大赛(陕西卷)第37题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 4810133, "material": "", "question": "上市公司是实体经济的“基本盘”、资本市场的“动力源”,对其严格监管有利于确保资本市场良好生态。可以说,各地证监局对上市公司进行现场检查,是推进完善资本市场基础性制度,形成层次分明、合理有效、协调规范的上市公司监管法规体系的重要一环。除了要对上市公司信息披露、公司治理等情况实行例行性的、独立客观的全面检查,还要针对上市企业存在的难点和易发风险的重大事项进行专门检查。风险防范须臾不可放松。上市公司现场检查唯有突出信息披露、公司治理的严格执法,让“零容忍”震慑更加彰显,才能保护好投资者合法权益,维护好资本市场秩序,持续优化市场生态。\n\n这段文字意在说明上市公司现场检查:", "type": "单选题", "options": "A. 必须重点关注信息披露、公司治理\nB. 助力投资者合法权益和市场发展双赢\nC. 需以严格执法,彰显“零容忍”震慑\nD. 既需例行全面检查又需针对性专门检查", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-分总", "most_wrong": "D", "human_count": 20932, "human_acc": 50.7787120199, "source": "2023年国考第十三季行测模考大赛(行政执法类)第57题", "difficulty": 6, "formulas": 0, "history": [{"id": 4792129, "material": "", "question": "传播学中有个名词“议程设置”,认为大众媒介不能决定人们对某一事件或意见的具体看法,但可以通过提供信息和安排相关的议题来有效地左右人们的意见,新闻媒介提供给公众的是议程。不过,媒体却极少反思,他们自身的选择又受到哪些因素的影响?为什么会关注某些问题,而忽视另外一些问题?这样的反思媒体应该时常进行,对于这些问题我们应该深入思考,慎之又慎。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 大众媒体不能决定人们对事件的具体看法\nB. 公众应客观冷静地对待某些热点问题\nC. 大众媒体应对自身影响舆论的方式进行反思\nD. 大众媒体应在议程设置上持慎重态度", "choice": "D", "keypoints": "主题词;关联词-对策;行文脉络-分总", "most_wrong": "C", "human_count": 1918, "human_acc": 49.9478623566, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第35题", "difficulty": 4, "formulas": 0}, {"id": 4330497, "material": "", "question": "受疫情影响,“云生活”“宅经济”等热词成为了焦点,全民加速步入互联网连接一切、万物皆可“云”的时代。在技术与网络设施快速成熟的背景之下,“云行业”创新与应用正快速加码,“云手机”也迎来更多的创新可能与市场机遇。然而值得指出的是,目前产业仍处于早期阶段。在这一阶段,“云手机”品牌之间的竞争应该立足于自身产品的打磨,提高用户体验,带来产业的良性进步,推动产业有序发展。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 品牌竞争有助于“云手机”提升自身品质\nB. 疫情期间应加速创新以迎“云行业”新机遇\nC. “云手机”品牌应各凭本事利用产品说话\nD. 亟需营造公平环境为“云行业”提供保障", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 12622, "human_acc": 78.3790207574, "source": "2021下半年省考第二十三季行测模考大赛(辽宁卷)第57题", "difficulty": 4, "formulas": 0}, {"id": 5445691, "material": "", "question": "作为经典的艺术门类,绘画在历史长河中并非独立发展。在原始艺术中,音乐、诗歌、舞蹈三位一体,密不可分,绘画则将载歌载舞的场景留存于世。不同艺术门类成熟之后各自独立,但在发展的过程中又相互吸收、相互依托、相互影响。各艺术门类之间的吸收与借鉴、配合与结合,是艺术发展创新的重要手段。古典名画是人类审美情趣的集中体现,很长一段时间是深藏在博物馆中的高雅艺术,名画想要真正“活”化,还需要借助跨界融合。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 绘画是诗歌和舞蹈传承的重要载体\nB. 不同艺术门类的跨界融合由来已久\nC. 古典名画可以借助跨界融合重焕生机\nD. 打破形式壁垒是艺术创新的重要手段", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-分总", "most_wrong": "D", "human_count": 1515528, "human_acc": 69.690695256, "source": "2023年国家公务员录用考试《行测》题(副省级网友回忆版)第39题", "difficulty": 3, "formulas": 0}, {"id": 5305132, "material": "", "question": "近年来,儿童肥胖率不断攀升、“小胖墩”现象日益普遍,超重肥胖已成为威胁儿童身心健康的重要公共卫生问题。儿童肥胖的发生受先天和后天多重因素影响,其中遗传因素在肥胖发生中占40%-70%,而生命早期的营养摄入、膳食结构、生活习惯等也是重要因素。儿童期肥胖不但影响身体和心理健康,降低运动和学习能力,还会增加成年后患肥胖、心血管疾病、糖尿病等疾病的风险,给经济社会发展带来巨大负担。这个问题需引起家长、学校乃至全社会的高度重视,齐抓共管儿童肥胖刻不容缓。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 各方要高度警惕青少年肥胖问题\nB. 肥胖是威胁儿童健康的首要因素\nC. 防治儿童肥胖亟需多方共同发力\nD. 家长和学校要着力增强孩子体质", "choice": "C", "keypoints": "主题词;关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 104661, "human_acc": 85.3469773841, "source": "2022下半年省考第十三季行测模考大赛(四川卷)第40题", "difficulty": 3, "formulas": 0}, {"id": 4935362, "material": "", "question": "基层治理坚持以人为本的价值导向,把提升居民的获得感、幸福感作为根本目的。“互联网+”属于一种技术治理路径,将技术治理嵌入公共治理过程,目的在于依靠科技赋能,及时识别、回应并解决问题,更好地保障和改善民生。技术治理具有天然的工具理性导向,然而,过于强调技术因素则会忽略人的价值。在“互联网+基层治理”中,以人为本具有明确的价值规定性,就是要关注人的需求,重视人的价值,注重维护人的尊严和权利,坚持为民服务,及时识别基层问题,协调相关责任主体有效解决问题。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 探索技术赋能公共治理需从基层起步\nB. 基层治理应以满足居民需求作为根本目标\nC. 实现“互联网+基层治理”的技术赋能策略\nD. “互联网+基层治理”不能脱离以人为本的原则", "choice": "D", "keypoints": "主题词;关联词-对策;行文脉络-分总", "most_wrong": "B", "human_count": 23234, "human_acc": 95.2612550572, "source": "2023年国考第十九季行测模考大赛(行政执法类)第56题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 4718309, "material": "", "question": "如何在观众所熟知的历史题材中演绎出新意,广西戏剧院的艺术家们给出了一个满意答案。壮剧《百色起义》的编导____________,构筑了两个人物系列,一是飘扬在八桂大地上的先烈灵魂,二是奋战在革命运动中的英雄身影。该剧在情节演绎上也____________,使人们所熟知的伟大历史呈现出____________的风貌,从而营造出熟悉且陌生的审美效果。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 别出机杼 变动不居 焕然一新\nB. 另辟蹊径 别具一格 与众不同\nC. 与时俱进 别出心裁 欣欣向荣\nD. 独辟蹊径 不拘一格 别开生面", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 267462, "human_acc": 65.6384832238, "source": "2022上半年省考第七季行测模考大赛(陕西卷)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 5388940, "material": "", "question": "文艺评论要倡导说真话、讲道理。“____________”不是良好的批评生态,“一评就跳,一评就骂”同样不是衡文论艺的正常氛围。批评的品格在于____________,应当像镜子一般使作者的优点和缺点呈现出来。评论家要成为作家艺术家的良师,也要成为诤友;既要有围炉夜话式的交流,____________的讨论,又要秉笔直书、公道直言,好处说好,不足处说不足;既不“棒杀”,也不“捧杀”,既不“乱骂”,也不“乱捧”。只有这样,文艺批评才有公信力和影响力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一团和气 实事求是 推心置腹\nB. 和颜悦色 适可而止 开诚布公\nC. 阿谀奉承 有的放矢 以德服人\nD. 和风细雨 不偏不倚 循循善诱", "choice": "A", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 9535, "human_acc": 84.2789722077, "source": "2022下半年省考第二十季行测模考大赛(新疆兵团卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2693520, "material": "", "question": "人自出生的时刻开始,除了肺的表面,几乎所有空气可以到达的部位,比如皮肤、眼睑、呼吸道尤其是口鼻腔、胃肠道、泌尿生殖道的表面就都会建立起微生物生态,这是人体与微生物相互作用、相互选择的结果。特别是胃肠道微生物的总数量大致与人体细胞数量级相当,直接影响人的饮食偏好。这些微生物的组成及相互关系是在长期生活中形成的,又与每个人的饮食偏好有关。例如,习惯低纤维饮食的人,肠道菌群中厌氧细菌多,需氧细菌少,而喜欢高纤维饮食的人情况则恰好相反。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 微生物群几乎遍布人体的各个角落\nB. 饮食习惯影响人体肠道菌群的分布\nC. 人的饮食偏好影响胃肠道微生物的形成\nD. 人的饮食偏好与胃肠道微生物相互作用", "choice": "D", "keypoints": "关联词-并列;程度词", "most_wrong": "C", "human_count": 255861, "human_acc": 76.2316257656, "source": "2021年国考第二十三季行测模考大赛(副省级)第48题", "difficulty": 4, "formulas": 0, "history": [{"id": 2066942, "material": "", "question": "中国陶瓷,凡一新品种诞生,其由小到大、由弱到强的演变,脉络清晰。但元青花没有童年,没有少年,当你看见它时,它俨然已是一个风华正茂的青年。在人们的印象中,蒙古人善武而不善文,所以如此精美的青花瓷出自蒙古人之手太让人不可思议。再有,元青花出现之前,中华文明的传统色调鲜有蓝色的身影。近年在南海打捞出的多套精美的蓝色青花瓷器,经考证为明代郑和下西洋带入东南亚的明青花。这更让世人质疑元青花的身份。\n\n这段文字意在说明(  )。", "type": "单选题", "options": "A. 元青花没有清晰的演变过程\nB. 元青花让世人质疑\nC. 元代陶瓷的发展状况\nD. 元青花被世人质疑的原因", "choice": "D", "keypoints": "关联词-并列;程度词", "most_wrong": "A", "human_count": 559174, "human_acc": 71.0345974598, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 49827, "material": "", "question": "自上世纪90年代以来,有“工业维生素”美称的稀土全球年消费量从3.3万吨增加到10多万吨。由于特殊的原子结构和物理化学性质,稀土不仅是钢铁、有色金属、石油化工和轻工纺织等传统产业不可缺少的重要原料,而且随着科技的进步,在光电信息、催化、新能源、激光等高新技术和新材料领域中显示出不可替代的作用。当今世界,几乎每隔3~5年人们就会发现稀土的一种新用途,每四项新技术就有一项与稀土有关。\n\n这段文字主要说明:", "type": "单选题", "options": "A. 稀土的特性和价值正逐步被人类了解\nB. 我国稀土资源的开发利用前景广阔\nC. 国际社会已将稀土视为一种战略资源\nD. 稀土的开发利用制约着高新技术应用", "choice": "A", "keypoints": "关联词-并列;程度词", "most_wrong": "B", "human_count": 249484, "human_acc": 76.4181270142, "source": "2013年山东省公务员录用考试《行测》题第17题", "difficulty": 4, "formulas": 0}, {"id": 4490318, "material": "", "question": "作为中华文明的使者,从春秋战国时期起,汉字陆续传入朝鲜、日本、越南等亚洲国家,并在很长一段时期内直接充当这些国家的官方文字,在这些国家的历史发展进程中留下了闪亮的文明印记,至今仍有部分亚洲国家将汉字作为国家通用文字之一。汉字在这些国家的应用与传播,成为中国与世界各国友谊的桥梁,拉近了国家之间的感情,更重要的是促进交流,传播了中华文明。现在,随着中国加快推进全球化步伐,中华优秀文化伴随着汉字走向更为宽广的世界舞台,受到世界瞩目。\n\n这段文字主要说明:", "type": "单选题", "options": "A. 中华文化将更加受到世界瞩目\nB. 汉字为世界文明作出重要贡献\nC. 传承中华文明要呵护好汉字\nD. 汉字是传播中华文明的使者", "choice": "D", "keypoints": "关联词-并列;程度词", "most_wrong": "B", "human_count": 177916, "human_acc": 86.5543290092, "source": "2021下半年省考第二十七季行测模考大赛(四川卷)第44题", "difficulty": 3, "formulas": 0}, {"id": 5510355, "material": "", "question": "“地铁丢书”,最早可追溯到2009年的伦敦,两个英国青年以地铁为据点,发起了“选择你的读物”活动,实现了大量书籍在乘客中的流通。这类活动旨在分享阅读体验、传递知识、鼓励人们利用通勤时间读书,在发起之初就收到了良好效果。对“地铁丢书”的参与者来说,活动的价值不仅仅是追逐流行时尚,更大程度上是满足了部分人群的知识分享心理,也迎合了大众的全民娱乐精神。这种带有神秘感却又默契配合的“地铁丢书”活动,还传递了一种人文关怀——渴望交流的都市一族,在冷漠、快节奏的城市生活中,寻觅到了来自社会角落的温暖。\n\n这段文字主要介绍“地铁丢书”:", "type": "单选题", "options": "A. 首倡者的身份和动机\nB. 收到的良好社会反响\nC. 创造的流行文化时尚\nD. 蕴含的文化心理机制", "choice": "D", "keypoints": "关联词-并列;程度词", "most_wrong": "B", "human_count": 534930, "human_acc": 60.9156338212, "source": "2023年山东省公务员录用考试《行测》试题(网友回忆版)第28题", "difficulty": 4, "formulas": 0}, {"id": 2307792, "material": "", "question": "通过参与国际分工,参与资本与技术的引进和输出,摆脱封闭的自我调整,在国际产业结构的转换中实现产业结构的调整。这与世界经济一体化的发展趋势是密不可分的,通过商品和劳务的交流,通过利用外资和引进技术,可以对我国产业结构起补调作用,实现对原有企业的技术改造,提高劳动生产率。同时填补国内的一些空白产业,促进产业结构的调整和升级。在这里,关键是如何瞄准国际产业结构的动向,盯住国际产业结构变动的重心,顺利实现产业结构的调整。\n\n这段话主要支持了这样一种论点,即:", "type": "单选题", "options": "A. 实现我国产业结构调整必须跟紧国际产业结构的发展变化\nB. 通过参与国际分工,在国际产业结构的转换中实现我国产业结构的调整\nC. 通过商品和劳务的交流,促进产业结构的调整和升级\nD. 世界经济一体化的发展趋势促使中国产业结构进行调整", "choice": "A", "keypoints": "关联词-并列;程度词", "most_wrong": "B", "human_count": 1027546, "human_acc": 58.8820354515, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第54题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5317359, "material": "", "question": "陈寅恪曾说“读史求识、脱俗求真”,历史的洞察力,并非“饱学”的自然结果,读书人中,有知之士摩肩接踵,但有识之士却是____________。做学问的宗旨,在于求真理,探究历史,需要有“辨真”的________。要有很强的形象思维能力和过人的想象还原能力,透过虚实互补去寻找历史发展中带有规律性的东西。面对文献史料时,就有一种____________、如对故人的感觉。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 凤毛麟角 慧根 身临其境\nB. 百里挑一 态度 重温旧梦\nC. 屈指可数 天资 如梦初醒\nD. 门可罗雀 悟性 恍如隔世", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;混搭填空", "most_wrong": "B", "human_count": 254805, "human_acc": 58.6660387355, "source": "2022下半年省考第十四季行测模考大赛(浙江A卷)第32题", "difficulty": 5, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 4516293, "material": "", "question": "文风是文艺评论的命脉。好的文学评论文风应鲜活生动,活泼可亲,但现在不少文艺评论读起来____________,就是因为缺乏创新理论与创新思维支撑,习惯于____________,缺乏独特的论点、论据和论证,导致文章陈旧呆板、面目可憎。对此,评论家要树立鲜明的问题意识,对不同现象与不同作品进行个性、科学的分析,为推动文艺繁荣提供____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 佶屈聱牙 老调重弹 不刊之论\nB. 味同嚼蜡 陈陈相因 真知灼见\nC. 曲高和寡 拾人牙慧 珠玑之言\nD. 枯燥无味 吹毛求疵 肺腑之言", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 243345, "human_acc": 69.7519981919, "source": "2021下半年省考第二十九季行测模考大赛(深圳卷)第65题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5570588, "material": "", "question": "仔细观赏一方邮票,我们既能品得历史文化底蕴,也能________时代审美潮流。结合我国独有的生肖文化,从中国1980年发行第一枚生肖邮票,到如今生肖文化走向海外,生肖邮票受到广泛________,大有“普及全球”之势,生肖文化在海外得到了________的呈现,与各国文化传统形成有效交流融合。可以说,生肖邮票在近年来越发成为中华优秀传统文化的一大友好象征和________名片。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 感受 青睐 多元 亮眼\nB. 体会 好评 完美 独特\nC. 领略 拥趸 清晰 崭新\nD. 窥视 推崇 生动 高雅", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;实词填空", "most_wrong": "B", "human_count": 2295, "human_acc": 62.962962963, "source": "2023下半年省考第三季行测模考大赛(河南卷)第15题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "实词填空"]]}, {"id": 3557034, "material": "", "question": "①它们共同构建起充满生机、丰富多元的假日经济生态\n\n②未来,推动假日经济发展仍须立足于这一基本国情,找准发展方向,精准施策发力\n\n③假日经济不只是简单的“节日经济”,也不是单纯的“旅游经济”,它的发展离不开庞大的产业体系支撑\n\n④事实上,我国假日经济之所以能快速恢复,其背后依托的正是超大规模国内市场优势及巨大的需求潜力\n\n⑤除了大家熟悉的旅游业外,诸如餐饮、娱乐、影视、交通、展览、竞技等行业,无不与假日经济有着这样那样的联系\n\n⑥从这个意义上看,假日经济在一定程度上反映了一个国家或地区的经济活跃程度,假日经济越繁荣,经济发展越有活力\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③⑤①⑥④②\nB. ③⑥②⑤④①\nC. ④③①⑤②⑥\nD. ④⑥①③⑤②", "choice": "A", "keypoints": "尾句特征", "most_wrong": "B", "human_count": 71175, "human_acc": 86.6638566913, "source": "2021下半年省考第四季行测模考大赛(四川卷)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 1791732, "material": "", "question": "①回顾人类法律发展史,我们也能看到法律的发展过程在很大程度上是法官不断补充完善法律规则、填补法律漏洞的过程。\n\n②即使法律再完备也不能包罗万象,总是会给法官留下大量的解释空间。\n\n③法律只有借助法官的解释才能实现对社会生活的有效规范。\n\n④法典由法律语言构成,法律语言描述功能和信息载体功能十分有限,无法涵盖与描述全部的社会生活。\n\n⑤有的立法者希望通过立法本身的高度完善去消除法律解释活动的必要性,但事实证明是徒劳的。\n\n将以上5个句子重新排序,语序正确的一项是:", "type": "单选题", "options": "A. ②①⑤④③\nB. ①⑤④③②\nC. ①④⑤③②\nD. ②①③④⑤", "choice": "A", "keypoints": "尾句特征", "most_wrong": "B", "human_count": 441043, "human_acc": 37.0242810792, "source": "2016年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}, {"id": 2452717, "material": "", "question": "①文化是每个民族每个国家的生命体现\n\n②文化的积淀是一个社会、一个民族最可宝贵的精神财富\n\n③“不同”“多元”是社会发展的必然,更是现代社会文明进步的标志\n\n④如若所有的民族、所有的国家都强求一律,很可能导致人类文明僵化衰落\n\n⑤中国道路的成功充分说明,各个国家必须根据自己的国情建设精神家园\n\n⑥中国有句古话说得好,“和实生物,同则不继”\n\n将以上6个句子重新排列,语序最恰当的是", "type": "单选题", "options": "A. ②⑤④⑥③①\nB. ⑥②③④⑤①\nC. ③⑥④①②⑤\nD. ④⑥①⑤②③", "choice": "C", "keypoints": "尾句特征;确定顺序", "most_wrong": "B", "human_count": 1057850, "human_acc": 46.9145909155, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 27403, "material": "", "question": "为下列句子排列顺序,使其意思连贯。正确的一项是:\n\n①面对身边诸多纠结,多一点智慧和勇气,保持一份平和心态,可助我们削弱“纠结”的纠缠\n\n②随着现代生活节奏的加快,生活压力的增大,“纠结”的事越来越多\n\n③如今,随着信息技术的快速发展,“纠结”一词率先在网络上爆红,不但使用率颇高,而且使用更加广泛灵活\n\n④纠结的本意就是“相互缠绕”,常作动词用。语出唐代诗人李白的《古意》一诗:“枝枝相纠结,叶叶竞飘扬。”", "type": "单选题", "options": "A. ③②④①\nB. ③④①②\nC. ②①④③\nD. ②④③①", "choice": "D", "keypoints": "尾句特征;确定顺序", "most_wrong": "A", "human_count": 417327, "human_acc": 39.5133791966, "source": "2012年河北省公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"]]}, {"id": 14971, "material": "", "question": "一直到九十年代中期以前,我们都在试图重新寻找自己的精神家园,钱穆、钱钟书和陈寅恪的著作和传记成了畅销书。《顾准文集》、《顾准日记》__________于市场,这个中国“市场经济第一人”,坚持学术自由的孤独者形象,__________了人们对于知识分子的期许。《傅雷家书》长达二十余年的畅销,成为了__________的“三字经”,浪漫骑士王小波横空出世,给这个日益保守的社会打开了一个叛逆的缺口。\n\n填入横线部分最恰当的一项是:", "type": "单选题", "options": "A. 充斥 符合 金玉良言\nB. 风靡 印证 字字珠玑\nC. 风行 满足 老少咸宜\nD. 充塞 引发 家喻户晓", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;混搭填空", "most_wrong": "B", "human_count": 146300, "human_acc": 51.7211209843, "source": "2010年浙江省公务员录用考试《行测》题(A类)第16题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2595698, "material": "", "question": "①科学家发现,健康的珊瑚礁发出的声音和白化珊瑚礁不同,白化珊瑚总是静静的无法吸引鱼类\n\n②珊瑚是依靠吸引各种各样的鱼类来维持健康的生态系统\n\n③近年来,大堡礁受到气候变化影响,珊瑚白化的问题日益严重\n\n④通过播放健康珊瑚的声音,使白化珊瑚对幼鱼更具吸引力,从而恢复这些珊瑚的活力\n\n⑤于是澳大利亚科学家在珊瑚礁上安装了水下扬声器\n\n⑥这些鱼类通过执行一系列“管家”职责,来维护自己的生活环境,同时为新的珊瑚生长提供了空间\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑥③①⑤④\nB. ③②⑥⑤①④\nC. ②⑥①③④⑤\nD. ③①⑥②④⑤", "choice": "A", "keypoints": "首句特征;尾句特征;确定捆绑", "most_wrong": "B", "human_count": 237579, "human_acc": 74.1946889245, "source": "2021年国考第九季行测模考大赛(副省级)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 15087, "material": "", "question": "①无论一个人在哪儿,只要他在一扇关着的门的后面,他就能使自己不受拘束。\n\n②没有门的屋子不是屋子,而是走廊。\n\n③在关着的门内,头脑的工作最为有效。\n\n④人不是在一起放牧的马群。\n\n⑤门是隐秘、回避的象征,是心灵躲进极乐的静谧或悲伤的秘密搏斗的象征。", "type": "单选题", "options": "A. ②①③④⑤\nB. ④①③②⑤\nC. ①③④⑤②\nD. ⑤②①③④", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 7175, "human_acc": 43.2891986063, "source": "2008年重庆市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 25197, "material": "", "question": "①它们没有超过一千年的家谱\n\n②金鱼是世界上养殖最普遍的宠物鱼类\n\n③不过有一件事是可以确定的\n\n④却没有多少证据证实它们是什么时候被驯养的\n\n⑤只有少数几个国家还没有引进\n\n⑥尽管我们知道金鱼原产于中国\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤③①⑥④\nB. ②⑤③⑥④①\nC. ②⑤⑥④③①\nD. ⑥④③①②⑤", "choice": "C", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 433895, "human_acc": 68.2326369283, "source": "2011年国家公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"]]}, {"id": 5661983, "material": "", "question": "习近平总书记强调:“要健全风险防范化解机制,坚持从源头上防范化解重大安全风险,真正把问题解决在萌芽之时、成灾之前。”安全生产“一失万无”,须臾不可放松。从修改安全生产法,到持续推进危险化学品安全法、矿山安全法、煤矿安全条例等法律法规制修订工作,随着我国安全生产相关制度逐步健全,安全生产形势也日趋稳定。全国安全生产专项整治行动虽已在去年收官,但安全生产永远在路上。常抓不懈、久久为功,牢牢守住安全生产红线,就能更好维护人民群众生命财产安全,为经济高质量发展、社会和谐稳定提供有力保障。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 要增强安全意识,强化安全责任\nB. 时刻绷紧安全生产这根重要的弦\nC. 严把安全生产红线,促进社会稳定发展\nD. 坚决将风险“扼杀”在萌芽之时", "choice": "B", "keypoints": "关联词-转折;主题词;关联词-对策", "most_wrong": "C", "human_count": 6958, "human_acc": 44.3518252371, "source": "2023下半年省考第十三季行测模考大赛(四川卷)第40题", "difficulty": 7, "formulas": 0, "history": [{"id": 4651768, "material": "", "question": "为了向公众传播科学,科学媒体将艰深晦涩的科学理论与科学项目转化为通俗易懂的文化产品,公众透过科学媒体了解科学的发展动态。然而,某些媒体创作的科学故事并未真实反映科学的本来面目,为使科学故事引人入胜,对科学研究进行了筛选、改造,忽略了科学研究的不确定性与风险性,同时又放大了科学研究的局部片段。随着数字媒体时代的到来,碎片化阅读行为使公众更加无法对科学有全面真实的了解。\n\n这段文字重在说明:", "type": "单选题", "options": "A. 科学故事应还原科学的本来面目\nB. 科学本身并不具备引人入胜的故事性\nC. 媒体可能误导公众对科学的认知\nD. 媒体的科学传播应更注重严谨和真实", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策", "most_wrong": "C", "human_count": 1055038, "human_acc": 66.6701104605, "source": "2022年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第19题", "difficulty": 4, "formulas": 0}, {"id": 4633655, "material": "", "question": "网络维权事件中,往往因当事人之间存在工作中的上下级关系或被曝光者社会地位较高等多种因素,维权者一般选择求助于网络,以舆论监督的方式进行维权,这无可厚非。但是值得警惕的是,有些网络维权者不仅无视其对网民注意力资源的消耗,甚至还发布与事实不符的信息,触碰法律底线,长此以往,倘若网络维权成为一种社会风气,会导致民众习惯性忽视将诉诸法律程序放在首位的维权方式,损害法律的威严,破坏网络和谐生态。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 应建立个人网络信用评价体系\nB. 维权者曝光信息应该忠于事实\nC. 应谨慎选择合理使用网络维权\nD. 维权者应当选择法律手段维权", "choice": "C", "keypoints": "关联词-转折;主题词;关联词-对策", "most_wrong": "D", "human_count": 229043, "human_acc": 73.8804503958, "source": "2021下半年省考第三十五季行测模考大赛(广东乡镇卷)第8题", "difficulty": 4, "formulas": 0}, {"id": 4906929, "material": "", "question": "在互联网时代,网络文艺的传播与流行离不开流量的加持,流量大小也因此成为衡量网络文艺作品的重要指标。文化产品通过市场行为实现价值,当然不能不考虑经济效益,但是网络文艺一旦充当市场的奴隶,受困于资本的逻辑,甚至沾满铜臭气,就会造成流量与质量的内在紧张。若为了博得眼球、赚取流量,走迅捷化、形式化、表面化、功利化的路子,在追逐流量的过程中放松对质量的要求,终会导致流量稀释了质量,看似赢得了流量,实则失去了质量。\n\n这段文字主要说明:", "type": "单选题", "options": "A. 网络文艺应兼顾经济社会双效益\nB. 质量是衡量作品好坏的核心指标\nC. 网络文艺不能走上市场化的道路\nD. 网络文艺作品不可醉心流量陷阱", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策", "most_wrong": "A", "human_count": 261910, "human_acc": 75.0452445497, "source": "2022上半年省考第十五季行测模考大赛(广东乡镇卷)第9题", "difficulty": 4, "formulas": 0}, {"id": 5451328, "material": "", "question": "制造业高质量发展要求企业应具备满足定制化和个性化需求的能力。相应地,在工业互联网服务制造业转型的过程中,也需要具备满足不同行业、不同企业、不同流程和不同场景的个性化需求的能力。近年来我国的工业互联网服务平台、工业APP数量增长迅速,但其中大量应用仅具备技术展示的功能,能够付诸于实践的场景十分有限,整体看目前应用层的实用性较差,使用效率较低。为解决这种现状,需要拓展服务领域,同时增强应用的针对性和精准度,最终实现范围经济。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 制造业发展需提升个性化、定制化服务能力\nB. 范围经济是工业互联网发展的最终目的\nC. 制造业转型中工业互联网要增强应用的针对性\nD. 工业互联网服务既要有“广度”又要有“精度”", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策", "most_wrong": "C", "human_count": 318113, "human_acc": 72.0416958754, "source": "2023上半年省考第五季行测模考大赛(四川卷)第37题", "difficulty": 4, "formulas": 0}, {"id": 5532764, "material": "", "question": "从经济学意义上讲,我们常说的经济政策从类别上说可以分为宏观、中观、微观政策,也可以分为总量性政策和结构性政策。这些政策都是通过发挥市场机制的作用改变经济变量,传递一定的经济信号,促使经济运行中的市场主体对生产要素配置做出相机性选择,决定产出的规模数量,从而改变市场的供求关系,最终目的是实现经济增长目标。一般的经济政策就是指财政政策、货币政策、产业政策、价格政策等。但我国实行的是社会主义市场经济体制,处于现代化经济体系的建设和完善阶段,我国经济的指导工作就需要更多元的政策。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 经济发展情况决定了经济政策的实施\nB. 多元化政策有助于发挥市场机制效用\nC. 宏观经济发展需要广泛普及经济政策\nD. 稳住我国经济盘需要打好政策组合拳", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策", "most_wrong": "B", "human_count": 1792, "human_acc": 51.8973214286, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第40题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 4170323, "material": "", "question": "今年以来,随着经济恢复,居民消费价格涨幅有所扩大,但物价仍处于一个温和上涨的状态。从需求基本面来看,我国经济整体上处于恢复中,主要需求指标还未恢复到疫情前水平。从供给端来看,生产供给保持较快增长,供求基本面不支持价格大幅上涨。从政策因素来看,我国财政政策和货币政策继续保持对经济恢复的必要支持,没有使用“大水漫灌”强刺激政策。同时,相关部门还加大保供稳价的力度。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 我国经济状况与消费价格有所“回暖”\nB. 我国供需现状为物价稳定保驾护航\nC. 我国为稳定物价打出调控“组合拳”\nD. 我国物价整体稳定且有“抬头”趋势", "choice": "D", "keypoints": "关联词-转折;关联词-并列;行文脉络-总分", "most_wrong": "C", "human_count": 12638, "human_acc": 31.278683336, "source": "2021下半年省考第二十一季行测模考大赛(辽宁卷)第60题", "difficulty": 7, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 4597413, "material": "", "question": "全日制教育是有限的,非全日制教育是无限的;全日制教育是阶段性的,而非全日制教育则可以是终身的,二者相辅相成、互补互进,就会实现“$1+1\\gt2$”的效果。而如今,全日制与非全日制似乎“____________”,势必把非全日制“挤入绝境”。需知,学历不代表能力,文凭不代表水平,只有消除学历歧视,告别学历崇拜,学历才能____________,才能让学历“归位”,让学历只能发挥出固有的“学历功效”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 泾渭分明 与时俱进\nB. 水火不容 返璞归真\nC. 针锋相对 因势利导\nD. 此消彼长 脱胎换骨", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;对应关系-重点词句对应;对应关系-解释类对应;成语填空", "most_wrong": "C", "human_count": 8473, "human_acc": 89.3308155317, "source": "2021下半年省考第三十四季行测模考大赛(西藏卷)第1题", "difficulty": 4, "formulas": 1, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5218508, "material": "", "question": "纵观历史,各个政治清明的朝代无不将法律视为理政之圭臬;放眼世界,大凡社会治理相对较好的国家和地区,都拥有比较完备的法律体系和很强的依法执政意识。立法的目的是维护社会秩序和伸张社会正义,最终达成人民幸福、国家强盛和民族复兴。如果法只存留于字面,显然就很难起到这种作用。所以在治理国家时,制定法律规则固然重要,但更重要的是要看有多少真正得到了落实。推进依法治国,要把法律法规落到实处。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 切实履行法律才能体现其生命力\nB. 法律是国家治理体系的重要依托\nC. 应不断提升政府的行政执法效能\nD. 贯彻法律是实现依法治国的关键", "choice": "D", "keypoints": "关联词-对策;关联词-因果;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 166974, "human_acc": 58.5606142274, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第37题", "difficulty": 5, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5110985, "material": "", "question": "《中华人民共和国民法典》是新中国成立以来第一部以“法典”命名的法律,作为“社会生活百科全书”,民法典同人民群众生活____________。作为我国法律体系中条文最多、体量最大的一部法律,民法典要实施好,就必须让民法典走到群众身边、走进群众心里,想让老百姓真懂真用民法典就不能简单____________,要因地制宜,创新方式方法,更加突出针对性、有效性,让民法典的宣传教育更加____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 紧密相连 择善而从 声入心通\nB. 息息相关 纸上谈兵 刻骨铭心\nC. 密不可分 照本宣科 深入人心\nD. 休戚与共 上行下效 根深蒂固", "choice": "C", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10083, "human_acc": 94.6642864227, "source": "2022下半年省考第三季行测模考大赛(通用卷)第37题", "difficulty": 3, "formulas": 0, "history": [{"id": 5446691, "material": "", "question": "将下列选项中的成语依次填入各句横线处,最恰当的一组是:\n\n(1)随着电子商务的蓬勃发展,一大批“测评”平台和博主____________,通过对产品测试评级,在质量、价格、服务等方面为消费者提供购物决策的参考。\n\n(2)当前,我国经济发展面临需求收缩、供给冲击、预期转弱三重压力,一些市场主体业绩下滑甚至经营困难。一系列帮扶政策,将更好激发亿万市场主体活力,汇成经济社会发展的澎湃动力,助力“中国号”经济巨轮____________,行稳致远。", "type": "单选题", "options": "A. 异军突起 扬帆起航\nB. 应运而生 劈波斩浪\nC. 应运而生 扬帆起航\nD. 异军突起 劈波斩浪", "choice": "B", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 1394, "human_acc": 61.3342898135, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第68题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 2385153, "material": "", "question": "将下列选项中的词语依次填入各句横线处,最恰当的一组是:\n\n(1)________________,如今的大学里,似乎已经很少有这种因为一台电脑而生发出的虚荣与苦涩了。\n\n(2)在各级部门都简化行政审批的当下,当地的一小撮办事员却还________________,让群众开具“奇葩”证明,这样的做法显然需要反思。\n\n(3)回望光伏行业发展历程,可以发现,一些在国内甚至全球领先的光伏巨头企业在经历了________________的风光后,纷纷跌下“神坛”。", "type": "单选题", "options": "A. 物换星移、抱残守缺、白驹过隙\nB. 物换星移、独辟蹊径、昙花一现\nC. 时过境迁、独辟蹊径、白驹过隙\nD. 时过境迁、抱残守缺、昙花一现", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "A", "human_count": 78978, "human_acc": 94.4326268075, "source": "2019深圳市公务员录用考试《行测》题(网友回忆版)第64题", "difficulty": 3, "formulas": 0, "history": [{"id": 5318684, "material": "", "question": "生活中的钱钟书收敛锋芒、谨言慎行,尽力回避文网语阱,有时会给人____________的印象,但真正了解钱钟书的人知道,他将自己嫉恶如仇的激情和____________的明智藏进文字,坚守着有所为、有所不为的人生立场。钱钟书反复修订自己的著作,除少数是订正外,绝大多数为增补例证、发展和完善论点,表现出他潜心琢磨、____________的精神和心怀坦荡的学术品格。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 独善其身 明察秋毫 坚韧不拔\nB. 明哲保身 洞若观火 精益求精\nC. 韬光养晦 见微知著 孜孜不倦\nD. 与众不同 大智若愚 精雕细琢", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 7826, "human_acc": 81.2675696397, "source": "2022下半年省考第十四季行测模考大赛(通用卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4639337, "material": "", "question": "行政处罚不是为罚而罚,行政处罚法是为了规范行政处罚的设定和实施。依据处罚与教育相结合、过罚相当等基本原则,对于故意扰乱交通秩序、严重违法的行为,确实应该给予严厉处罚。但对于轻微、对社会没什么危害性的违法行为,若事事都处罚,会加大交通运输从业人员负担,反而不符合规范市场秩序、更好地促进社会稳定等执法理念的要求。同时,也会降低违法行为人受到行政处罚后的耻辱感,达不到处罚与教育相结合的目的。\n\n这段文字讨论的问题是:", "type": "单选题", "options": "A. 如何让违法行为人感受到执法的温度\nB. 如何科学认定轻微违法行为\nC. 是否应对所有违法行为进行处罚\nD. 处罚标准是否应作出调整", "choice": "C", "keypoints": "关联词-转折;主题词;关联词-并列", "most_wrong": "A", "human_count": 1497403, "human_acc": 69.4270012816, "source": "2022年国家公务员录用考试《行测》题(副省级网友回忆版)第48题", "difficulty": 4, "formulas": 0, "history": [{"id": 4456756, "material": "", "question": "学界认为康德在历史哲学中以类的延续以及类的延续所达到的伦理共同体取代灵魂不朽的公设。但是这种观点忽视了康德哲学中类的希望与个体的希望的区分。康德的历史哲学属于反思判断力的作用,试图说明人类会逐步进入一个合乎法权的状态,从而发展自己的禀赋。这是人作为理性存在者对类的希望,在类的延续中得到实现。此外,人作为个体还具有道德完善的希望,它只能在灵魂不朽的公设中才具有可能性。康德在后期著作中提出的伦理共同体彰显了实现个体的希望所具有的社会性因素。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 康德历史哲学 时间性\nB. 类的希望 伦理共同体\nC. 反思判断力 灵魂不朽\nD. 类的希望 个体的希望", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-并列", "most_wrong": "B", "human_count": 25470, "human_acc": 60.1923831959, "source": "2021下半年省考第二十五季行测模考大赛(江苏卷)第23题", "difficulty": 5, "formulas": 0}, {"id": 5600463, "material": "", "question": "近年来,许多国家为应对知识经济的挑战,都在不同程度上进行了教育改革。这些改革大多要求教师运用全新的教育理念和教学方式,开发和实施先进的课程,以培养出适应国际竞争的优质人才。改革目的本无可厚非,但在改革的过程中忽略了教师的想法与能力基础,改革的速度与力度超出了教师的接受能力与适应水平,这就会令教师对于如何做才能取得好的成绩而深感迷惑,这种不确定感可能就会使教师感到一种压力。再者,繁多的教育改革,也会使教师承担的职责也越来越多,特别是面对新理念、新课程、新技术,教师只能不断地去学习、去实践,以便能追赶上教育改革的快速步伐,使自身的压力在无形中变得更为沉重。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 教育改革要全面衡量教师的能力水平\nB. 学校教师应不断提高自身素养和技能\nC. 教育改革或许会使教师背负沉重压力\nD. 时代的发展对教育改革提出了新要求", "choice": "C", "keypoints": "关联词-转折;主题词;关联词-并列", "most_wrong": "A", "human_count": 46654, "human_acc": 65.7585630385, "source": "2023下半年省考第七季行测模考大赛(四川卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"]]}, {"id": 5344644, "material": "", "question": "动脉硬化是指动脉的一种非炎症渐进性病变,可使动脉管壁增厚、变硬,失去弹性、管腔狭窄,是一种不可逆的自然现象,只能缓解其发生的时间,________无法完全避免。可怕的是此病通常是在青少年时期发生,至中老年时期加重,________在发病前期无任何症状。动脉硬化是一个宽泛的概念,发生硬化的动脉不同,疾病名称就会不同,造成的后果________不同。________动脉硬化发生在心脏,那就可能会引起冠心病。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 但是 且 也 如果\nB. 但是 并 同样 无论\nC. 即使 且 同样 如果\nD. 即使 并 也 无论", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;关联关系-并列关系", "most_wrong": "C", "human_count": 2034, "human_acc": 97.2959685349, "source": "2022下半年省考第十六季行测模考大赛(深圳卷)第64题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 14515, "material": "", "question": "夏天的大草原美极了,蔚蓝的天空(    )着一片片白云。", "type": "单选题", "options": "A. 铺展\nB. 铺陈\nC. 铺设\nD. 铺排", "choice": "A", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 40926, "human_acc": 55.2851488052, "source": "2009年四川省公务员录用考试《行测》题(上半年)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"]]}, {"id": 5447486, "material": "", "question": "思想政治工作是做人的工作,内容丰富、牵涉面广、复杂而不易。在学校学习和生活的学生群体既是思想比较活跃、对社会极其敏感的群体,又是价值观念尚未固定、容易受到各种思想文化信息影响而产生情绪变化、思想波动的群体。由于学生容易受到多方面因素的影响,因此仅仅凭借思想政治教育一种方式和课堂教学单个渠道,很难保障思想政治工作的整体效果,也很难实现意识形态教育成效的最大化和优质化。因此,学校思想政治工作需要多个部门共同参与、共同建设,并在组织健全、机制完备和功能强大的体系中展开。\n\n这段文字主要强调了:", "type": "单选题", "options": "A. 学生群体的特有属性影响学校思政工作的开展\nB. 做好学校思想政治工作离不开多主体共同参与\nC. 提升意识形态教育的成效须丰富思政教育形式\nD. 学校思政工作需要汇聚力量与健全体系齐发力", "choice": "D", "keypoints": "关联词-对策;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 265691, "human_acc": 79.7373640808, "source": "2023上半年省考第四季行测模考大赛(北京卷)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 5430304, "material": "", "question": "舰船类部队装备型号多,使得不同岗位的船员都有不同的学习训练需求,客观上加大了军事院校集中组织培训的难度。与此同时,船用装备结构复杂、构件精密,操作维修的技术含量高,人才培养周期较长。以机电岗位为例,从刚接触设备到能够单独操作设备、处理机械故障,一般要3~5年的培养期。如仅仅依靠军队系统培养人才,既会造成资源浪费,也会影响发展质量。因此只有把舰船类人才培养的眼光投向社会,充分借助地方平台载体,拓宽培养渠道,才能不断提升人才培养质量。\n\n这段文字意在强调舰船类部队人才培养要:", "type": "单选题", "options": "A. 提高培训质量\nB. 缩短培养周期\nC. 创新培养模式\nD. 加大培训力度", "choice": "C", "keypoints": "关联词-对策;关联词-因果;行文脉络-分总", "most_wrong": "A", "human_count": 762217, "human_acc": 88.2444238321, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第71题", "difficulty": 3, "formulas": 0}, {"id": 2262526, "material": "", "question": "人性化的公共行政服务,不能依赖于具体公务人员的道德品行;改变传统的行政思维,也难以通过一纸通知就顺利实现。现代公共行政领域之宽泛、基层服务部门之繁杂、公务执法人员素质之不均,表明普遍意义上的服务行政很难通过简单的方式实现,持久性的效应必须确立在稳定的制度基石之上。所以,在中央政府行政指令的导向下,更需启动制度建设模式,将服务行政的各项要求纳入行政法律制度之中,成为各级部门依法行政的核心理念和自觉遵循。\n\n这段文字主要想表达的是:", "type": "单选题", "options": "A. 公共行政转型势在必然\nB. 必须树立人性化的公共行政服务理念\nC. 唯有依法行政,才能保证人性化的公共行政服务\nD. 对官员个体的道德伦理要求需要上升到制度层面", "choice": "D", "keypoints": "关联词-对策;关联词-因果;行文脉络-分总", "most_wrong": "C", "human_count": 4649, "human_acc": 34.7816734782, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第26题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 4597399, "material": "", "question": "相较传统的销售模式,直播营销虽然平台变了、形式换了,但“诚信经营”却不能变,这是底线,也是生命线。对此,需要各方共同努力。比如,直播平台加强内容审核力度,完善诚信评价机制;相关监管部门严厉打击虚假营销行为,提高侵权成本;主播们对销售的产品严格把关,对售后服务、物流保障等要心中有数······作为时代催生的行业,网络直播营销给社会经济注入了活力,但要想持久地享受这一行业带来的红利,唯有保证其诚信至上,依法依规地运行。\n\n这段文字意在说明直播营销:", "type": "单选题", "options": "A. 对各方职业素养的要求\nB. 依法依规共享直播红利\nC. 持续发展还需多方合力\nD. 以诚信经营共守生命线", "choice": "D", "keypoints": "关联词-转折;主题词;行文脉络-总分", "most_wrong": "C", "human_count": 23179, "human_acc": 76.7634496743, "source": "2021下半年省考第三十四季行测模考大赛(辽宁卷)第58题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 4410878, "material": "", "question": "家国一体,优良的家风,既是传统道德的坚实基础,又是革命道德的重要组成部分。圣贤在现实世界中施展才华,讲规矩,办实事,推己及人,泽被苍生。无论是修身、齐家、治国、平天下,还是“老吾老以及人之老,幼吾幼以及人之幼”,都无法否认家庭的重要作用。今天,我们更应正视理解“国有国法,家有家规”的时代价值,为中华民族伟大复兴提供精神动力、智力支持和制度保证。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中华文明的生生不息取决于中国人的家庭意识\nB. 正确理解家规的时代价值对民族复兴至关重要\nC. 从古至今家庭都是社会活动中不可或缺的一环\nD. 中华民族需依靠家规和制度实现民族未来复兴", "choice": "B", "keypoints": "关联词-对策;行文脉络-分总;程度词", "most_wrong": "D", "human_count": 12563, "human_acc": 79.1053092414, "source": "2021下半年省考第二十四季行测模考大赛(辽宁卷)第58题", "difficulty": 4, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 2365977, "material": "", "question": "近些年,网络小说读者越来越多。相关调查表明,网络小说读者之所以对网络小说产生浓厚的阅读兴趣,甚至成为“网络小说迷”,一是因为在商业化运营模式下,不少网络小说情节设置委婉曲折、引人入胜,类似于以前盛行一时的说评书,关键时刻总是“请听下回分解”,让网络小说读者欲罢不能;二是因为网络小说通常都非常通俗化,阅读网络小说不需要太多思考,对网络小说读者而言就是一种消遣、一种娱乐。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 网络小说读者阅读网络小说成瘾的原因\nB. 网络小说阅读成为新的娱乐方式的理由\nC. 网络小说引发网络小说读者兴趣的原因\nD. 网络小说吸引网络小说读者的具体途径", "choice": "C", "keypoints": "关联词-因果;行文脉络-总分", "most_wrong": "A", "human_count": 971707, "human_acc": 82.56861379, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第78题", "difficulty": 4, "formulas": 0, "history": [{"id": 826093, "material": "", "question": "常常被感动而充满激情的人是有福的。我或许属于其中之一。故我想,感动是由于我深爱着世上一切美好的事物,甚至比别人更留意也更钟情于它们。而这些美好的事物也仿佛是我的朋友和亲人,也同样爱着、留意着、钟情着我。每一次小小的感动都会洗净我灵魂中某个小小的斑点和污渍,每一次深深的感动都有可能斩断我性情中某一段深深的劣根。日复一日,年复一年,感动使我的内心变得清洁、明亮、丰富而又宽敞,使我在面对每一轮崭新的日出时都能赢得一个全新的自我。\n\n这段文字主要告诉我们:", "type": "单选题", "options": "A. 人应该有不断完善自我的意识\nB. 充满爱的人才有可能获得幸福\nC. 提升人格境界需要持之以恒\nD. 人应该对美好事物充满感情", "choice": "D", "keypoints": "关联词-因果;行文脉络-总分", "most_wrong": "B", "human_count": 638078, "human_acc": 67.2174875172, "source": "2014年四川省公务员录用考试《行测》题(下半年)第43题", "difficulty": 5, "formulas": 0}, {"id": 48249, "material": "", "question": "目前我们的城市化道路走了一条不符合中国国情的道路,为什么?一是现有的城市发展是“关起门来搞城市化”,把农民关在城外,自己在城内搞现代化,这是为城市“锦上添花”,而不是搞农村“人口城市化”。二是我们在城市化道路上搞“天女散花”,强调大力发展小城镇,因为“小城镇,大战略”能解决农村剩余劳动力的大问题。这是一种错误的战略选择和过时观念,实际上这是一种“离土不离乡”的传统观念的延续,它实质上就是不愿意让农民进大中城市,不允许他们分享大中城市积累的文明成果。\n\n这段文字的主要观点是:", "type": "单选题", "options": "A. 城市化就是让农村人口城市化\nB. 城市化就是使农村人口进入大中城市\nC. 城市化就是让农民离土又离乡\nD. 城市化道路选择要考虑中国国情", "choice": "D", "keypoints": "关联词-因果;行文脉络-总分", "most_wrong": "B", "human_count": 284957, "human_acc": 71.2209210512, "source": "2013年天津市公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 53069, "material": "", "question": "清末学者康有为在《广艺舟双楫》中将晚清书法衰微的现象归咎于传统书法范本面目失真,这是承袭了清代中叶学者对书法范本的认识,与书法史的真实状况并不十分吻合,与书法史发展的实际趋势也多有出入。当代书法家启功先生则在《论书绝句》提出,这种令人生厌的“馆阁书”与朝廷在科举考试中标举卷面书写“黑大光圆”密不可分。那么,在不能废除“馆阁书”书写要求的前提下,士人即便有条件取法摹刻精良的书法范本,也不能从根本上改掉“馆阁书”的书写习惯,这在康氏写成《广艺舟双楫》之后的时代中得到了验证。\n\n对这段文字的主旨概括最准确的是:", "type": "单选题", "options": "A. 批评康有为书法研究中存在的误区\nB. 探讨晚清书法艺术衰微不振的原因\nC. 强调科举考试对书法艺术的负面影响\nD. 分析书写模式与创作风气之间的关系", "choice": "B", "keypoints": "关联词-因果;行文脉络-总分", "most_wrong": "C", "human_count": 557617, "human_acc": 55.1591863232, "source": "2013年921联考《行测》题(河南卷)第30题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5521235, "material": "", "question": "山歌与号子不同,它不受劳动动作和劳动节奏的限制,所以节拍不规整、节奏自由而悠长。一方面,在陈述唱词的部分,音乐节奏接近自然语言的节奏,语言自然化;另一方面,在唱词词组或句读之后,即句间或句尾多出现自由延长音,自由延长音与曲首、曲尾的呼唤性词结合形成前腔或后腔,是山歌区别于其他民歌的独特之处。山歌的自由延长音使得节奏较密集的朗诵性曲调与抒咏性自由延长音相结合,这种悠长自由的节奏,使山歌的节奏节拍类型丰富多变,增强了山歌的抒情性。\n\n上文主要介绍的是(    )。", "type": "单选题", "options": "A. 山歌与号子的区别\nB. 山歌与自然语言的区别\nC. 山歌的节奏特征\nD. 山歌抒情性的由来", "choice": "C", "keypoints": "主题词;关联词-因果;行文脉络-总分", "most_wrong": "A", "human_count": 382393, "human_acc": 65.0550611544, "source": "2023年深圳市考公务员录用考试《行测》试题(网友回忆版)第84题", "difficulty": 4, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5509944, "material": "", "question": "在信息化时代和学习化社会进程里,学习权客观上要求国家能真正提供满足个体差异性发展的平等教育机会。但这并不意味着教育自由是一种没有限度的自由,当教育自由超越了教育目的的要求以及社会允许的范围时,就需要国家公权力予以保障。结合我国实际,除了对学习权进行立法保障外,最为主要的也最为可行的办法就是调整现有相关的法律法规,完善公民学习权利的法律法规保障细则,从共同利益视角保障学习权,为终身学习社会下的公民学习权利法律保障提出治理思路。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 学习权利的法律保障\nB. 国家公权力的重要性\nC. 学习权的产生及权利性质\nD. 学习权利需要公权力的保障", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策;行文脉络-分总分", "most_wrong": "A", "human_count": 811385, "human_acc": 70.9410452498, "source": "2023年河北省公务员录用考试《行测》题(网友回忆版)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 4810131, "material": "", "question": "在“双减”政策出台之后,各地开展的校外培训专项治理工作初见成效,但一些违法违规的校外教育培训机构由“地上”转向“地下”、由“台前”走向“幕后”,出现以“高端家政”“众筹私教”“游学研学”等为名的隐形变异校外培训,给教育部门的执法治理带来挑战。这类问题如得不到有效解决,将严重干扰政策的长期实施。面对现实提出的执法难题,教育行政部门转变执法方式、规范执法行为、强化执法能力的自我变革刻不容缓。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 教育部门开展自我变革刻不容缓\nB. “双减”政策落地遭遇执法难题\nC. 教育行政部门的执法亟待转变与优化\nD. 隐形变异校外培训危害巨大不容姑息", "choice": "C", "keypoints": "关联词-转折;主题词;关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 20765, "human_acc": 79.13797255, "source": "2023年国考第十三季行测模考大赛(行政执法类)第56题", "difficulty": 4, "formulas": 0, "history": [{"id": 5445700, "material": "", "question": "“高精尖”产业是辐射带动力强的产业集群,对经济具有极强的拉动作用,不仅能实现中心城市的经济高质量发展,而且能带动周边地区的产业联动转型。京津冀协同发展中,产业对接协作是区域战略的核心内容之一,产业升级是三地的共同任务,在疏解非首都核心功能的过程中,天津和河北是北京产业转移的主要承接者。然而,两地仅简单承接北京转移的一般产业是远远不够的,迫切需要发展“高精尖”产业,带动区域科技创新与成果转化,促进区域产业联动,形成经济协同发展的格局。\n\n这段文字意在说明:", "type": "单选题", "options": "A. “高精尖”产业承担着高水平创新的重大使命\nB. 形成“高精尖”产业是城市群建设的长远目标\nC. 我国区域经济发展应以“高精尖”产业为依托\nD. “高精尖”产业对京津冀协同发展有重要意义", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策;行文脉络-分总", "most_wrong": "C", "human_count": 1580651, "human_acc": 61.5656460534, "source": "2023年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第53题", "difficulty": 4, "formulas": 0}, {"id": 4881993, "material": "", "question": "上世纪以来,以碳纤维复合材料为代表的轻量化材料,支撑了航空航天装备飞速发展。到本世纪,随着技术的成熟,碳纤维复合材料逐渐在交通、能源、工业等民用领域推广应用。不过,相较于碳纤维材料常用于的航空航天领域,其用于工程装备制造,技术难度和复杂性更甚。碳纤维本是一种抗拉不抗压的材料,工程施工中,具多关节结构的碳纤维细长臂架,需在空中完成各类施工所需的操作动作,运动状态和受力情况复杂多变。要应对臂架受力情况的复杂多变,就需要研发出可满足工程机械装备制造需求的“既抗拉又抗压”的碳纤维复合材料。\n\n这段话意在说明:", "type": "单选题", "options": "A. 国内需要自主研发出“抗拉又抗压”的轻量化复合材料\nB. 实现材料向“智能化”飞跃需碳纤维复合材料领航助力\nC. 国内研发的碳纤维复合材料在未来具有广阔的应用前景\nD. 应拓宽碳纤维复合材料特性满足工程机械装备制造需求", "choice": "D", "keypoints": "关联词-转折;主题词;关联词-对策;行文脉络-分总", "most_wrong": "A", "human_count": 309014, "human_acc": 83.0548130505, "source": "2022上半年省考第十四季行测模考大赛(广东县级卷)第6题", "difficulty": 4, "formulas": 0}, {"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 5320018, "material": "", "question": "近些年来,职校生实习成为社会关注的热点,“强制实习”的负面评价时有出现,不仅影响职业教育的整体形象,也给技能型人才培养质量带来伤害。职校生实习一再出现赚“人头费”的强制实习乱象,其背后原因复杂。一方面,一些职业院校对实习的性质与意义认识不到位,并未将实习视作教学活动的环节之一。这些职业院校受到利益驱动,打着实习的幌子谋劳务输出之实,歪曲了实习的本意。强制职校生实习的乱象也凸显了一些职业院校办学质量和内涵的“空心化”。众所周知,产教融合、校企合作、工学结合是职业教育区别于普通本科教育的核心。然而,一些职业院校的专业内涵建设空洞,在校企合作的探索上并未取得实质性进展。企业参与人才培养的积极性不高,校企融合、实践教学流于形式。\n\n这段文字着重指出职业院校存在的哪一问题?", "type": "单选题", "options": "A. 职业院校存在强制实习乱象\nB. 职业院校办学存在空心化乱象\nC. 职业院校对实习存在认识问题\nD. 职业院校的校企合作进展缓慢", "choice": "A", "keypoints": "行文脉络-总分;特殊问法", "most_wrong": "B", "human_count": 13595, "human_acc": 52.0779698419, "source": "2022下半年省考第十四季行测模考大赛(山东卷)第35题", "difficulty": 6, "formulas": 0, "history": [{"id": 2725415, "material": "", "question": "刘慈欣这十年创作的每一篇科幻作品我都拜读过,他屡屡将目光投向贫瘠的大西北,写西北山村如何遭遇银河帝国拆迁队,一名身患癌症的教师、一群孩子、一个村庄、一个星球的命运,在群星闪烁的宇宙之下,如何奇妙地交织在一起(《乡村教师》);写无数大肥皂泡裹带湿润空气以及两代人的梦想,进入内陆,从而调节西北干旱的气候(《圆圆的肥皂泡》)······\n\n上述文字中所举的例子,是为了反驳下列哪项关于刘慈欣科幻作品的观点?", "type": "单选题", "options": "A. 不过是幻想的文字,并不接地气\nB. 过于理性,很难使读者产生共鸣\nC. 充满硬朗气质,缺乏对个人情感的描述\nD. 注重宏大背景的描述,缺乏对普通人命运的关注", "choice": "A", "keypoints": "行文脉络-总分;特殊问法", "most_wrong": "D", "human_count": 1012111, "human_acc": 47.0555107098, "source": "2020年四川下半年公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 5, "formulas": 0}, {"id": 3012096, "material": "", "question": "观察中国的经济发展和政治变化的经验,我们似乎看到了这样的因果关系:政治制度的变化是内生于经济发展的结果,而不是经济发展的原因。事实上,正像那些在战后成功实现了经济发展和政治转型的少数经济体的经验表明的那样,民主和政治制度的转型更像是教育和收入水平提高的结果,此两者都导源于经济发展。而在经济重启、政权重建的过程中,经济的快速发展主要得益于人力资本和物质资本的高度积累,且在某些国家先于政治制度的转型。\n\n上述文字主要用来反驳以下哪个观点?", "type": "单选题", "options": "A. 经济基础决定上层建筑\nB. 政治转型往往先于经济发展\nC. 政治制度变化是经济发展的引擎\nD. 经济的快速发展与资本积累无关", "choice": "C", "keypoints": "行文脉络-总分;特殊问法", "most_wrong": "B", "human_count": 33805, "human_acc": 42.2659369916, "source": "2022年国考第六季行测模考大赛(地市级)第60题", "difficulty": 6, "formulas": 0}, {"id": 2719314, "material": "", "question": "有学者认为,技术文本和政治文献的机器翻译替代人工翻译在未来几年就可能实现,机器翻译译文总体质量超过职业译者也是必然的,甚至文学翻译也同样如此。机器翻译发展到今天已到了第三代,即神经机器翻译,其根本原理就是根据语境化原则建立海量的分门别类的语料库来处理。通过让机器反复学习和训练,语料库文本不断完善,翻译的准确率不断提高,且翻译内容越专业、场景或任务越固定、标准越统一,翻译准确率越高。\n\n上述文字主要用来反驳以下哪个观点?", "type": "单选题", "options": "A. 机器翻译不可能取代人工翻译\nB. 文学翻译的难度远大于技术文本翻译\nC. 机器翻译难以做到准确性与流畅性的统一\nD. 机器翻译离不开人工翻译和优化的辅助", "choice": "A", "keypoints": "行文脉络-总分;特殊问法", "most_wrong": "C", "human_count": 2227197, "human_acc": 75.5225065407, "source": "2021年国家公务员录用考试《行测》题(地市级网友回忆版)第60题", "difficulty": 4, "formulas": 0}, {"id": 4683150, "material": "", "question": "生态保护与修复,是全社会、所有人的事。近些年,政府在生态保护修复工程中投入资金,发挥了重要的引导作用,但面对量大面广的生态问题,只靠财政资金,无论如何完不成保护修复的重大任务。党的十九大报告明确提出“构建政府为主导、企业为主体、社会组织和公众共同参与的环境治理体系”。社会力量有责任参与到这项功在当代、利在千秋的工作中来。此外,凭借资本充裕、技术先进、了解国际经验等多方面优势,相关社会力量在生态保护修复中具有不可替代的作用。\n\n这段文字最能反驳以下哪种观点?", "type": "单选题", "options": "A. 生态保护修复工作是全社会共同的责任\nB. 生态保护修复工作应由政府独立完成\nC. 企业应首先保证经济收益再承担生态义务\nD. 资金问题是解决生态保护与修复工作的关键", "choice": "B", "keypoints": "行文脉络-总分;特殊问法", "most_wrong": "A", "human_count": 241234, "human_acc": 89.3862390874, "source": "2022上半年省考第三季行测模考大赛(四川卷)第44题", "difficulty": 3, "formulas": 0}, {"id": 3519153, "material": "", "question": "专家指出,未来的人工智能全球格局将呈现网络化的发展趋势,在基础研究、产业研发、应用服务等多个领域将涌现出一批主要和重要的中心与结点,并呈现多中心发展的趋势。没有任何一个国家有可能在人工智能发展中成为世界的中央,这些主要结点之间将高度互联、深度协作,共同带动世界人工智能的发展。以模型与算法创新为例,模型与算法创新是人工智能基础研究的核心,也被认为是各国竞争的战略制高点,即便在这个核心领域,最大程度的共享成果仍是促进创新的最佳方式。\n\n上述文字主要用来反驳以下哪个观点?", "type": "单选题", "options": "A. 人工智能将成为大国“博弈”新焦点\nB. 各国在人工智能的发展方向上难以达成一致\nC. 并非所有国家都会参与到人工智能的研究中来\nD. 人工智能的发展将进一步拉大各国的实力差距", "choice": "A", "keypoints": "行文脉络-总分;特殊问法", "most_wrong": "B", "human_count": 74132, "human_acc": 24.9271569633, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第49题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5620240, "material": "", "question": "在信贷市场,金融机构的信贷决策需要依靠能够获取的信息,从而对借款人还款能力和意愿作出判断。____________________。因此,这样的信用信息系统更新成本很高,难以长期有效维护。\n\n将下列四个句子重新排列,填入画横线处语序正确的是:\n\n①但线下信用评价需要投入大量人力、物力和时间,同时为了保证信息的有效性,需要对信息持续更新\n\n②面对农村客户,金融机构一般难以获取足够的有效信息来做信贷风险评估,需要借款人提供足够的偿债担保,但农户常常缺少可供抵押的担保物\n\n③传统的农户信用评价对推进农村普惠金融是一种有效的方法\n\n④对此,过去金融机构通常会进村入户,收集农户家庭生产生活、社区交往等信息,即所谓的软信息,评定“信用户”“信用村”,并在此基础上进行信用评级,开展金融服务", "type": "单选题", "options": "A. ④③①②\nB. ②④③①\nC. ④②①③\nD. ②③④①", "choice": "B", "keypoints": "确定顺序;中间", "most_wrong": "D", "human_count": 1193, "human_acc": 58.256496228, "source": "2023下半年省考第十季行测模考大赛(内蒙古卷)第54题", "difficulty": 5, "formulas": 0, "history": [{"id": 4934161, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n公共性代表了超越个体利益的整体。____________________,____________________。____________________,____________________。公共性是整体的,它是一个时期个体利益认同的整体跃升。换句话说,它是升华后的价值认同。\n\n①它也不是整体中某个部分的利益\n\n②它不是个体利益的简单相加\n\n③不是个体或整体各部分之间利益协商、妥协的结果\n\n④因为个体利益可能是相互矛盾的,尤其是在不同阶级之间", "type": "单选题", "options": "A. ①②④③\nB. ①③②④\nC. ②④①③\nD. ②①③④", "choice": "C", "keypoints": "确定顺序;中间", "most_wrong": "D", "human_count": 145428, "human_acc": 64.9854223396, "source": "2022上半年省考第十七季行测模考大赛(陕西卷)第60题", "difficulty": 4, "formulas": 0}, {"id": 4678603, "material": "", "question": "对下面6个句子语序排列正确的一项是:\n\n①对于任何一个民族文化而言\n\n②人类历史的前进\n\n③方能获得文化补偿\n\n④拥有文化输出与文化接受的健全机制\n\n⑤离不开文化的交流融合\n\n⑥赢得空间上的拓宽和时间上的延展", "type": "单选题", "options": "A. ①④③⑥②⑤\nB. ②⑤①④⑥③\nC. ②⑤①④③⑥\nD. ①④⑥③②⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 13279, "human_acc": 53.6938022441, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 19723, "material": "", "question": "①像慈母拍着将睡未睡的婴儿似的,它轻轻地拍着石岸;\n\n②水里小小的鱼儿,还有顽皮的小虾儿,在眼前游来游去;\n\n③盈盈的湖水一直荡漾到脚边,却又缓缓地退回去了;\n\n将以上三句话填在“四周的景色秀丽异常”一句的后面,语序最恰当的一组是:", "type": "单选题", "options": "A. ①③②\nB. ③②①\nC. ①②③\nD. ③①②", "choice": "D", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 217291, "human_acc": 86.3201881348, "source": "2011年安徽省公务员录用考试《行测》题第17题", "difficulty": 4, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "确定顺序"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 5414989, "material": "", "question": "北京2022年冬奥会精彩的比赛背后,其实还“藏”着不少来自中国科研团队的“科技力”。就拿冬奥会火炬来说,除了采用环保的氢气燃料,外壳还开创性地使用了重量轻且耐高温的“碳纤维”材料,不仅能耐受超过800摄氏度燃烧温度的淬炼,还能抗10级大风和暴雨。当体育运动遇上科技创新,正可谓如虎添翼,不仅运动员得以赛出更好的水平,冰雪科技也势必将进一步带动我国冰雪运动的长足发展。其实,在很多领域,创新都能够带来赋能效应。比如,在全面推进城市数字化转型的过程中,通过数字技术赋能,我们得以实现更好的城市治理。我们期待,未来能有更多的创新“升维”。\n\n作者引用数字技术赋能城市治理的例子意在说明:", "type": "单选题", "options": "A. 冬奥会赛场彰显我国科技实力\nB. 未来将产生更多的创新“升维”\nC. 创新使得多领域实现如虎添翼\nD. 碳纤维材料的使用具有开创性", "choice": "C", "keypoints": "行文脉络-分总分;特殊问法", "most_wrong": "B", "human_count": 3761, "human_acc": 87.6894442967, "source": "2022下半年省考第二十二季行测模考大赛(四川卷)第44题", "difficulty": 3, "formulas": 0, "history": [{"id": 5187103, "material": "", "question": "多年来,我国房地产开发资金以银行贷款等短期间接融资为主,走的是“高负债、高杠杆、高周转”模式。随着我国经济社会的发展,城镇化率不断提升,城镇人均住房面积已近40平方米。房地产开发经营“三高”模式,已越来越不可持续。2021年下半年以来,国内部分房地产企业备受高负债困扰,部分房企因资金周转困难出现违约。甚至,我国上市房企的整体资产负债率高于一些发达国家房企水平。\n\n这段文字着重指出我国房地产企业存在的哪一问题?", "type": "单选题", "options": "A. 我国房地产企业的融资方式存在问题\nB. 我国房企经营模式具有不可持续性\nC. 我国房地产企业的资产负债率偏高\nD. 我国房企提供的商品房快销的方式落后", "choice": "B", "keypoints": "行文脉络-分总分;特殊问法", "most_wrong": "C", "human_count": 10778, "human_acc": 33.6426053071, "source": "2022下半年省考第六季行测模考大赛(山东卷)第35题", "difficulty": 7, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 4619, "material": "", "question": "不要过分地依赖语言。不要总是企图在语言上占上风。语言解不开的,事实可以解开。语言解开了而事实没有解开的话,语言会失去价值,甚至于只能添乱。\n\n这段话的主要观点是:", "type": "单选题", "options": "A. 事实比语言更有力量\nB. 平常不要说太多的话以免惹出是非\nC. 没有事实基础的语言是毫无价值的\nD. 语言是不重要的,事实才是重要的", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "C", "human_count": 39770, "human_acc": 41.7525773196, "source": "2008年河北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}, {"id": 5122097, "material": "", "question": "物理学中的液化是指物质由气态转变为液态的过程;凝华是指物质跳过液态直接从气态变为固态的过程;升华是指固态物质不经液态直接变为气态的过程。\n\n根据上述定义,下列说法正确的是:", "type": "单选题", "options": "A. 灯丝变细属于液化\nB. 水变成冰属于凝华\nC. 雾凇的形成属于凝华\nD. 冰棍冒“白气”属于升华", "choice": "C", "keypoints": "特殊问法", "most_wrong": "D", "human_count": 91369, "human_acc": 63.3573750397, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第77题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 3788459, "material": "", "question": "人工智能写作软件写成的诗:“树荫扶疏绕水美,新桥小河归鸟飞。未及草青且游戏,碧波吹绿又芳菲。”它的病症____________:既是“树荫扶疏”之时,又怎会是“未及草青”之际?软件将所涉猎文体的作品一网打尽,运用技术不断分析迭代,掌握造句成篇规律。有如此本领,人工智能写作冲决文学山脚下的低洼营盘,可谓____________。在大数据和云计算的________下,人工智能记忆、识别等学习能力远超人类。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一目了然 大势所趋 助推\nB. 昭然若揭 指日可待 支持\nC. 令人瞩目 顺理成章 助力\nD. 显而易见 水到渠成 支撑", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 111701, "human_acc": 51.9458196435, "source": "2021下半年省考第十四季行测模考大赛(陕西卷)第37题", "difficulty": 6, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2536370, "material": "", "question": "增值税属于价外税,通过环环抵扣的征收机制,将中间环节税负转嫁到消费终端,避免税负在中间环节累积。但是,由于目前的增值税制存在多档税率、抵扣项目根据改革进程逐步调整等原因,造成增值税抵扣链条不完整、有断裂;同时,由于企业熟悉政策的时滞性、面临市场的差异性等影响,导致减税效果会在相对较长的时限内,在生产、销售与消费等不同环节的上下游企业之间分享和显现。因此,目前有的行业和一些企业减税效果不明显。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 税制改革需综合考虑群众的切身利益\nB. 增值税抵扣链条有待进一步调整完善\nC. 多方面原因导致增值税减税效果滞后\nD. 我国增值税改革从长远来看值得推行", "choice": "C", "keypoints": "关联词-转折;关联词-并列;关联词-因果", "most_wrong": "B", "human_count": 367885, "human_acc": 81.1109449964, "source": "2021年国考第四季行测模考大赛(副省级)第36题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 4343120, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2021年1-3月,安徽省规模以上工业企业每百元营业收入的成本约为:", "type": "单选题", "options": "A. 76元\nB. 81元\nC. 85元\nD. 90元", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 129246, "human_acc": 81.1297835136, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第117题", "difficulty": 4, "formulas": 2, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 5095567, "material": "", "question": "中医药被认为是最具代表性的中国元素之一。但在当下,仍有不少人对中医药的文化价值和意义缺乏足够了解。要让中医药文化真正地走入寻常百姓家,不仅需要大众媒体提供平台,更需要讲好中医药故事。比如,以采药人的足迹和采药用药背后的故事为线索,将地理大观和文化传统穿插其中,如此才能提升传播力,真正影响人。年初,一个浑身布满穴位的针灸铜人,让瑞士日内瓦刮起强劲“中医风”,展示了中国以开放包容心态,促进传统医学和现代医学更好融合的姿态。最近,在“一带一路”国际合作高峰论坛上,传统的中医药故事也成了让各国老百姓心心相通的桥梁。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 中医药需要“飞入”寻常百姓家\nB. 借助药品背后的文化更好地讲解中医故事\nC. 讲好中国故事以促进现代医学发展\nD. 中医药文化进入百姓家需讲好中医药故事", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分", "most_wrong": "B", "human_count": 53909, "human_acc": 88.7810940659, "source": "2022下半年省考第二季行测模考大赛(新疆卷)第47题", "difficulty": 3, "formulas": 0, "history": [{"id": 4630425, "material": "", "question": "从近些年中国电视节目的格局来看,综艺节目的几大模板几乎全部移植于国外,鲜有本土原创,文化传统和民族特质越来越淡,中国电视的本土化创新进入困境。实际上,早在十几年前,有识之士便开始呼吁电视媒体应在努力学习外国优秀节目经验的同时,更注重植根本土文化,在源远流长的中华文明中寻找创新的源动力。现在以《中国诗词大会》为代表的文化类节目的兴起,用特有的中国气派和较强的原创魅力,证明以传统文化助推电视节目创新的路径是可行的。\n\n这段文字意在强调中国的电视综艺节目:", "type": "单选题", "options": "A. 应避免一味照搬国外模式\nB. 应以传统文化为创新源泉\nC. 应担负起发扬传统文化的责任\nD. 激发了观众对传统文化的兴趣", "choice": "B", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分", "most_wrong": "C", "human_count": 1131768, "human_acc": 88.6419301482, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第35题", "difficulty": 4, "formulas": 0}, {"id": 5460057, "material": "", "question": "近年来,内需对经济发展的支撑作用明显增强,扩大内需,消费占据“C位”。但促进消费不能仅盯着传统消费领域,不能停留于衣食住行等层面,要顺应消费趋势,满足国民更高品质的消费需求。要培育新型消费,扩大服务消费,适当增加公共消费。以服务消费为例,当前公众在养老育幼方面有迫切的消费热望,如何加快健全居家社区机构相协调、医养康养相结合的养老服务体系;如何更精准地减轻家庭生育、养育、教育负担,改善优生优育全程服务,需要职能部门和社会力量等方面的共同努力。\n\n这段文字主要强调:", "type": "单选题", "options": "A. 多方合力方能妥善实施扩大内需战略\nB. 扩大内需应着力满足多样化的消费需求\nC. 要培育新型消费以激发国民消费意愿\nD. 促进消费为扩大内需战略提供不竭动力", "choice": "B", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分", "most_wrong": "C", "human_count": 360416, "human_acc": 53.017901536, "source": "2023上半年省考第六季行测模考大赛(四川卷)第37题", "difficulty": 6, "formulas": 0}, {"id": 4490319, "material": "", "question": "过去一年,博物馆业最热门的模式无疑是“云上”看展。大量的博物馆项目转战线上,闭馆不闭展,一件件凝固了人类文明之光的稀世珍宝,通过互联网和VR、AR、3D全景息等技术生动起来,以高水平的交互设计破解了传统布展的局限,以更清晰的方式给人耳目一新的体验。科技进步带来的创新体验,确实解了燃眉之急。不过,博物馆数字化应用不能只考虑到新技术的赋能,还需要上升到更有人情味、更加感性的文化层面。毕竟,互联网时代虽然赋予人们新的沟通方式,但某种程度上也让人际关系变得疏离,新冠肺炎疫情下的“无接触式”模式,更加速了这种改变。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 博物馆应兼具人文与数字技术\nB. 互联网加速了人际关系的疏离\nC. 疫情加速了博物馆数字化进程\nD. 数字博物馆更需注重文化层面", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分", "most_wrong": "A", "human_count": 144408, "human_acc": 39.0296936458, "source": "2021下半年省考第二十七季行测模考大赛(四川卷)第45题", "difficulty": 7, "formulas": 0}, {"id": 4718357, "material": "", "question": "几千年的中华文明,经过一代又一代继承与发展,形成了一个又一个传统节日,每个节日都像一颗颗璀璨的明珠,将文化、文明精神代代传递下去。清明节既是春天的一个重要节气,可以外出踏青游玩、曲水流觞,又是传统文化中的寒食节,每到清明节,家家户户礼敬祭奠、慎终追远。但是,节日在流传过程中,也会越来越淡化其文化意义,而增加更多世俗内容,比如,近年来,每到清明节,到处青烟燎烧,烧纸、烧冥币,甚至烧纸冰箱、纸房子等,远离了这个节日应有的诗意文化,走向世俗化、庸俗化,非常不利于优秀传统的继承和传播。\n\n这段文字的主旨是:", "type": "单选题", "options": "A. 批判性继承才是传统节日的正确打开方式\nB. 传统节日需要摆脱世俗化增强其文化内涵\nC. 传统节日“雅起来”有利于其继承和传播\nD. 近年来我国的清明节日趋世俗化、庸俗化", "choice": "B", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分", "most_wrong": "C", "human_count": 278586, "human_acc": 71.5057468789, "source": "2022上半年省考第七季行测模考大赛(四川卷)第38题", "difficulty": 4, "formulas": 0}, {"id": 4516567, "material": "", "question": "抄袭是情节严重的学术不端,应该对其零容忍。对存在侥幸心理的人而言,查重软件的确会有震慑作用,但是查重为抄袭设定了一个量化标准。有趣的是,各个高校和不同学位的论文要求居然还不一样,仿佛让严肃的学术不端问题可以议价。比如,有些大学允许本科毕业论文30%的重复率,有的学校则划定了10%的红线。这样一来,是不是有些学校可以多抄一点,有些学校可以少抄一点?零抄袭是一个质的问题,如果把抄袭量化,就相当于把这个问题矮化和庸俗化了。向行将走入社会的毕业生发出这种信号,对学生价值观的塑造和未来人生道路的选择,都可能产生负面影响。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 学术研究真正实现零抄袭仍任重道远\nB. 需要为查重制定科学统一的量化标准\nC. 查重中的抄袭量化让学术研究庸俗化\nD. 应当重视查重使学术抄袭量化的问题", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分", "most_wrong": "B", "human_count": 14606, "human_acc": 64.1654114747, "source": "2021下半年省考第二十九季行测模考大赛(辽宁卷)第59题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 3726041, "material": "", "question": "如今,虽说“古典接受”并未完全取代“古典传统”,但一种研究范式的转变已势不可挡。如果说“古典传统”尚处于古典学的边缘,那么“古典接受”的“双向交流”模式则有着进入古典学主流的解释力。不过,从“古典传统”到“古典接受”这一范式转变最重要的意义,在于这一新理论能让我们反思古典学本身。从历史角度出发,“古典接受”的视域有助于跳脱古典学术史,从更广阔的历史文化情境来审视古典学术的理论基础。而从现代角度下“古典接受”的视角来看,现代古典学本身也是古典文化的一种接受方式,就更有必要反思其在各种接收方式中统领地位的合理性。\n\n这段文字意在说明:", "type": "单选题", "options": "A. “古典传统”到“古典接受”势不可挡\nB. “古典接受”是古典学的自我反思之道\nC. 现代古典学需依托“古典接受”以反思\nD. “古典接受”比“古典传统”更具价值", "choice": "B", "keypoints": "关联词-转折;主题词;程度词", "most_wrong": "C", "human_count": 96775, "human_acc": 42.1265822785, "source": "2021下半年省考第十一季行测模考大赛(四川卷)第41题", "difficulty": 7, "formulas": 0, "history": [{"id": 3763320, "material": "", "question": "上自习最好的场所显然是教室或者图书馆。但教室占不到座位,图书馆数量少、空间不够、分布不均,一些人只好选择付费自习室。如果能加大图书馆等公共文化服务设施的建设力度,使其更加便利,相信愿意来免费场所学习的人会更多。这种供给上的不足,图书馆等公共文化服务机构没能及时摸清并顺势而变,不少图书馆借阅空间很大,而自习室很少。正是因为免费的公共文化空间数量不足,才会有那么多的人选择在付费自习室中读书学习。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 图书馆等公共文化空间的数量供不应求\nB. 付费自习室的流行凸显学习氛围的浓厚\nC. 公共文化空间供给不足催生付费自习室\nD. 公共文化空间应该增加其自习室的数量", "choice": "C", "keypoints": "关联词-转折;主题词;程度词", "most_wrong": "D", "human_count": 12732, "human_acc": 48.0050267044, "source": "2021下半年省考第十三季行测模考大赛(辽宁卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5459868, "material": "", "question": "人类文明仰赖文字书写而得以承递延续,虽然人类文明史上有种类繁多的文字体系,但唯独只有中国的汉字书写不仅发挥交流记录的实用功能,而且衍化成为一门文化底蕴深厚、魅力独具的艺术——中国书法。这是汉字与其他文字体系的重要区别,也是中国文化超越卓拔之处。回望历史、着眼现实,书法的艺术性与文化性深深植入中国人的血脉之中,一笔一画中形塑华夏文脉、铸就中国精神。因此,深入研究书法的文化内涵,以书法艺术为媒介传播中华优秀文化,走向世界,无疑具有重要的文化战略意义。\n\n这段文字提取的关键词最恰当的是:", "type": "单选题", "options": "A. 汉字书写 书法艺术 优秀文化\nB. 汉字书写 实用功能 中国书法\nC. 中国书法 文化自信 文化战略\nD. 文化内涵 中国书法 传播文化", "choice": "D", "keypoints": "主题词;行文脉络-分总;特殊问法", "most_wrong": "C", "human_count": 4373, "human_acc": 42.236450949, "source": "2023上半年省考第六季行测模考大赛(新疆兵团卷)第49题", "difficulty": 7, "formulas": 0, "history": [{"id": 2718240, "material": "", "question": "文物是活着的历史,沉淀着一个国家和民族厚重的文化魂魄,保护文物本质就是保护历史,护佑文化传承。近年来,随着城市化进程加快,文物破坏严重与保护不力的矛盾日益突出,亟待公益诉讼在依法保护文物方面及时补位,而文物具有典型的公共利益属性,完全契合公益诉讼保护公共利益的立法意图。在这种意义上,把涉及文物保护的案件纳入公益诉讼领域,方便检察机关对破坏文物的不法行为依法提起公益诉讼,对加强文物保护可谓正当其时。\n\n这段文字的关键词是:", "type": "单选题", "options": "A. 立法意图 公共利益 文物保护\nB. 公益诉讼 文物保护 检察机关\nC. 文化传承 公共利益 检察机关\nD. 文物破坏 公益诉讼 文化传承", "choice": "B", "keypoints": "主题词;行文脉络-分总;特殊问法", "most_wrong": "D", "human_count": 54964, "human_acc": 45.9300633142, "source": "2020年下半年省考第十五季行测模考大赛(江苏卷)第18题", "difficulty": 6, "formulas": 0}, {"id": 5651837, "material": "", "question": "在线钢琴陪练、外卖配送员、网约车司机、互联网营销师······近年来,平台经济的快速发展,催生了大量新行业、新业态和新商业模式。在疫情形势和国际局势变化等多重因素影响下,全社会就业压力增大,这些灵活用工新业态成为稳就业的“蓄水池”。数据显示,我国灵活就业人员逐年递增,截至2021年年底已超过2亿人。然而,灵活就业人员由于没有固定用人单位,在社保参保方面还存在诸多限制,许多人仍徘徊在企业职工社会保障体系之外。\n\n这段文字着重指出哪一问题?", "type": "单选题", "options": "A. 用人单位未设立完善的保障机制\nB. 灵活就业人员缺少稳定社会保障\nC. 无法解决灵活就业者的社保需求\nD. 企业职工社会保障体系范围狭窄", "choice": "B", "keypoints": "主题词;行文脉络-分总;特殊问法", "most_wrong": "C", "human_count": 5729, "human_acc": 85.3552103334, "source": "2023下半年省考第十二季行测模考大赛(四川卷)第40题", "difficulty": 3, "formulas": 0}, {"id": 5308542, "material": "", "question": "毋庸讳言,免税店具备一定的行业特殊性,其开设在固定地点、面向特定的销售对象、拥有的商品来自全球各地,消费者需满足购买免税商品的条件,比如提供机票行程单、出示护照等,才能享受免税政策提供的优惠,种种原因确实会给免税品退换货带来一些实际困难。比如,消费者不可能仅仅为了退换货而再次出入境。但困难不是理由,服务没有借口。须知,免税店免的是进口环节的关税、增值税和消费税,是国家让利于消费者,而并非某些店铺的恩惠,免税店的特殊性不能也不应体现在售后服务缺位上。\n\n这段文字最适合作为下列哪个观点的论据?", "type": "单选题", "options": "A. 免税店退换货困难的多种因素\nB. 免税店免的是税而非售后服务\nC. 在免税店购物退换货成本太大\nD. 加强售后服务,提升消费体验", "choice": "B", "keypoints": "主题词;行文脉络-分总;特殊问法", "most_wrong": "D", "human_count": 13170, "human_acc": 82.543659833, "source": "2022下半年省考第十三季行测模考大赛(山东卷)第35题", "difficulty": 4, "formulas": 0}, {"id": 5391961, "material": "", "question": "中国童书产业是一个高度市场化的产业,全国580余家出版社中有520多家从事童书出版,百舸争流。同时,激烈的市场竞争也极大激发了中国作家和中国出版人的创造性、积极性。在与国外优秀童书同台竞技中,他们既学到了先进经验,又熟悉了国际版权贸易规则,为“走出去”创造了条件。在温室中是长不出参天大树的,正是市场化竞争极大提升了中国童书的品质。这提示我们,中国童书“走出去”必须坚持市场化竞争,使其中的优秀之作脱颖而出,才能具备走向海外的能力,否则是走不远、走不快、走不稳的。\n\n这段文字中,选取的关键词最恰当的是:", "type": "单选题", "options": "A. 高度市场化 走出去 中国童书\nB. 市场化竞争 中国童书 立足国内\nC. 走出去 市场化竞争 中国童书\nD. 先进经验 儿童文学 走向海外", "choice": "C", "keypoints": "主题词;行文脉络-分总;特殊问法", "most_wrong": "A", "human_count": 33055, "human_acc": 84.7526849191, "source": "2022下半年省考第二十季行测模考大赛(新疆兵团卷)第49题", "difficulty": 3, "formulas": 0}, {"id": 5212350, "material": "", "question": "近年来,随着人们对阅读的重视程度加深,不少乡村中小学校都设置了图书馆。与此同时,部分农村学校图书馆的硬件条件有显著改善。但教师以及学生对阅读重视不够、缺乏阅读课程和活动等问题依然存在。设置图书馆只是乡村学校图书馆硬件建设的一个环节,如何引导学生爱上阅读、养成良好的阅读习惯,为农村孩子的心灵开启一扇通往世界的窗户更为关键。为此,不仅需要提高教师对阅读的认识,让教师成为孩子们的阅读陪伴者、引领者。还要发挥教育界、文化界等名人的示范、引领作用,邀请儿童文学作家与孩子们一起读书、谈书中的世界,为他们提供阅读指导,帮助孩子们掌握阅读技巧,在孩子们的心中种下阅读的种子。\n\n这段文字回答了下列哪一问题?", "type": "单选题", "options": "A. 软硬件如何发力提高儿童阅读意识\nB. 如何让农村儿童养成好的阅读习惯\nC. 如何丰富农村儿童的精神生活\nD. 乡村图书馆该如何为教育服务", "choice": "B", "keypoints": "主题词;行文脉络-分总;特殊问法", "most_wrong": "A", "human_count": 6944, "human_acc": 75.9504608295, "source": "2022下半年省考第七季行测模考大赛(四川卷)第44题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 4668911, "material": "", "question": "五代后唐长兴三年(932)明宗敕令国子监雕印“九经三传”,史称“五代监本”,被视为官刻之始。官刻,尤其是中央政府主持的刻书,往往会令官员精加校勘,慎选手书写版样,刊印精良。王国维《两浙古刊本考》中载有至正六年(1346)刊本《宋史》的牒文,从中可以看到:元代政府为了保证刊刻质量,甚至不远千里送到江浙等行中书省来刊印,所动用的提调官、儒官多达19人。尽管当时国家财政困难,无专款拨给,只能利用江浙行省的贡士庄钱作为刻印费用,仍雇佣良工巧匠,不惜工本,初印也不惜使用上等纸。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 官刻过程十分繁琐\nB. 元代政府重视文化\nC. 官刻发展历史很悠久\nD. 政府重视文献的官刻", "choice": "D", "keypoints": "主题词;行文脉络-分总分;程度词", "most_wrong": "C", "human_count": 1311464, "human_acc": 88.0376434275, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 5276836, "material": "", "question": "人格障碍的病因学因素涉及生物学因素、家庭环境因素和个体本身因素等一系列危险因素。目前许多实证研究表明,人格障碍与患者童年期不良的家庭环境有关。童年期虐待经历及早期不良的亲子依恋模式是人格障碍的高风险因素。尤其是父母的教养方式,父母惩罚和严厉、拒绝和否认、父亲过分干涉在人格障碍的发生和发展中有着重要的作用。一些学者的研究表明:边缘型人格障碍可能与早期分离和丧失、混乱或不良的亲子关系有关。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 童年虐待经历是导致人格障碍产生的根源\nB. 父母要把培养孩子心理健康放在首要位置\nC. 父母的教养方式对人格障碍有着重要作用\nD. 边缘型人格障碍与父母的忽视和虐待有关", "choice": "C", "keypoints": "主题词;行文脉络-分总分;程度词", "most_wrong": "D", "human_count": 88494, "human_acc": 81.4269894004, "source": "2022下半年省考第十季行测模考大赛(浙江B卷)第74题", "difficulty": 4, "formulas": 0}, {"id": 5406809, "material": "", "question": "古老黎锦融入现代生活,时尚化、潮流化、年轻化的设计是关键一环。如果说以往传承下来的黎锦主要看中的是实用功能,那么今天能传播开来的黎锦则更凸显文化创意属性。充分认识并挖掘黎锦的文化符号价值,形成一套包括阐释、传播、展示、品牌塑造等在内的完整链条,是黎锦提升整体形象的必由之路。在这方面,黎锦已经进行了行之有效的探索。通过举办黎锦文创设计大赛等,扶持黎锦产品开发、生产工艺创新及包装设计,市场上涌现出不少兼具美观性和实用性的黎锦文创产品。未来黎锦还将借助类似活动进一步丰富产品体系,着力提高产品附加值和品牌美誉度。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 凸显现代属性成为黎锦传承关键一环\nB. 黎锦搭乘“文化快车”焕发时代光彩\nC. 当代黎锦艺术传播与传承的有益探索\nD. 重视品牌和文化创意是黎锦成功之道", "choice": "B", "keypoints": "主题词;行文脉络-分总分;程度词", "most_wrong": "D", "human_count": 102073, "human_acc": 38.597866233, "source": "2023年国考第四十八季行测模考大赛(地市级)第58题", "difficulty": 7, "formulas": 0}, {"id": 4674475, "material": "", "question": "回顾2021年文化和旅游创意亮点,无论是建党百年接地气的文创产品,艺术舞台、电视节目中联动中华优秀传统文化的惊艳呈现,还是“万物皆可盲盒”“万物皆可雪糕”,文创已成为年轻人的社交打卡“硬通货”之一,频频“出圈”的背后显示出文创已从小众市场走向大众消费。文创产品的“出圈”不是为了一时之红,而是在于能够更好地传承传统文化。革命圣地延安今年以来陆续推出宝塔山文创雪糕、延安啤酒等一批既有情怀又接地气的产品,通过老物件衍生出新产品,并着力推动文创和当地景区资源相结合,采用“文创+科技”“文创+生活”等模式,让延安红色历史文化更具有体验性,也更吸引年轻人。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 传承中华传统文化要敢于突破和创新\nB. 年轻人成为文创产品消费市场主力军\nC. 文创产品“出圈”助力传统文化传承\nD. 传承性倒逼文创产品绽放出独特魅力", "choice": "C", "keypoints": "主题词;行文脉络-分总分;程度词", "most_wrong": "A", "human_count": 196798, "human_acc": 93.3845872417, "source": "2022上半年省考第二季行测模考大赛(四川卷)第32题", "difficulty": 3, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5077006, "material": "", "question": "文艺创作者身份各异,从事的艺术门类不同,观念各有来路,如此形成了纷繁复杂的文艺生态。但是文艺创作者与作品的多元性质并不意味着可以____________。众口异词、各行其是不见得是好事,极容易造成____________。任何文化在特定的语境中都需要形成某种具有共识性质的核心价值观,以免缺乏__________。就新时代文艺评论工作而言,通过学术争鸣推动形成创作共识、评价共识、弘扬真善美、批驳假恶丑是其必要基础。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 肆意妄为 党同伐异 突破口\nB. 随心所欲 作茧自缚 总基调\nC. 一意孤行 偏听偏信 凝聚力\nD. 信马由缰 莫衷一是 方向感", "choice": "D", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 101807, "human_acc": 39.2978871787, "source": "2022下半年省考第一季行测模考大赛(上海卷)第5题", "difficulty": 7, "formulas": 0, "history": [{"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 3634340, "material": "", "question": "近年来,包括网络文学、网络音乐、网络直播等不同形态的网络文艺取得了长足的发展,成为我国当代文艺建设的主力军和数字文化产业的重要支柱,并逐渐被纳入国家顶层设计和文化发展战略。然而,飞速发展的网络文艺在高度商品化、市场化、产业化的轨迹上仍存在低俗、庸俗、媚俗、批量生产、原创匮乏等问题,其整体的艺术追求和美学要素仍无法完全做到与时代精神同频共振。当前网络文艺的紧迫使命就是要深耕时代沃土,创作出与时代主流价值观共鸣共振的作品,推动社会主义文艺繁荣发展。一方面必须立足日新月异的时代潮流,描摹时代画卷;另一方面要引领时代文化风向,以坚定的文化自信讲述中国故事、展现中国气派、传播中国文化。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 创作与主流价值观共振的作品\nB. 网络文艺要坚持与时代同步伐\nC. 网络文艺的发展获得文化地位\nD. 网络文艺需描摹时代现实画卷", "choice": "B", "keypoints": "关联词-转折;关联词-并列;关联词-对策", "most_wrong": "A", "human_count": 12471, "human_acc": 78.8389062625, "source": "2021下半年省考第七季行测模考大赛(辽宁卷)第58题", "difficulty": 4, "formulas": 0, "history": [{"id": 3541411, "material": "", "question": "当前,全社会倾向于去鼓励创新,却很少有人去关注手艺人创新所产生的资源浪费现象,其实,这一问题已经比较严重了。仔细观察那些被闲置的创新产品,笔者注意到,有的创意好,只是工艺略显粗糙;有的设计老套,但工艺甚佳;有的造型跟不上形势,满足不了当今生活方式的变化;有的产品好,但包装不匹配等,都存在有待改进的“瑕疵”。但如果能虚心听取消费者意见,有针对性地对创新产品的“瑕疵”进行修正,就一定能提高创新的成功率。\n\n这段文字旨在说明:", "type": "单选题", "options": "A. 创新所产生的资源浪费现象日益严重\nB. 创新产品走出闲置浪费的困境迫在眉睫\nC. 创新产品需要听取消费者意见进行修正\nD. 政府需要出台相应政策鼓励手艺人创新", "choice": "C", "keypoints": "关联词-转折;关联词-并列;关联词-对策", "most_wrong": "B", "human_count": 12612, "human_acc": 92.6260704091, "source": "2021下半年省考第三季行测模考大赛(辽宁卷)第60题", "difficulty": 3, "formulas": 0}, {"id": 4576477, "material": "", "question": "在人们看来,人脸识别当然是识别人脸。但实际上,人脸识别图像上显示的是人脸,不过后台能够看见的画面已不局限在人脸范围,如此人脸识别的APP在法律上涉嫌越权或者侵权。人脸识别的相关应用需要公民肖像做支撑,因此,肖像权是人脸识别过程中最有可能受到侵害的权利。人脸识别只能采集公民主动提供人脸的图像信息,一旦采集范围扩大,将人脸周围的图像、公民所处的环境、正在从事的行为等信息进行采集,将侵犯公民不愿暴露的隐私。此外,如果图像采集者对此信息不当使用,造成了公民社会评价降低,同样可能侵害公民的名誉权。超范围进行人脸识别,不仅侵犯公民的人格权利,更是直接侵犯公民对自身个人信息的知情权。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 人脸识别APP不能超范围采集信息\nB. 用户需对人脸识别APP具备风险意识\nC. 人脸识别未经用户同意滥用个人信息\nD. 人脸识别技术须加强规范与安全规制", "choice": "A", "keypoints": "关联词-转折;关联词-并列;关联词-对策", "most_wrong": "D", "human_count": 338267, "human_acc": 36.2272997366, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第83题", "difficulty": 7, "formulas": 0}, {"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 5662238, "material": "", "question": "嗑瓜子时,无论人们喜欢与否,都很容易拿起第一颗瓜子,一旦吃上第一颗,就会吃起第二颗、第三颗······停不下来。由此诞生了瓜子理论,如果管理者有办法让下属像吃瓜子一样完成工作,那么他就成功了。所以,管理者要学会分解任务、及时督促下属开始工作、及时激励已完成任务的员工。\n\n根据上述定义,下列情形不属于瓜子理论的是:", "type": "单选题", "options": "A. 甲将一个复杂项目拆分为若干个简单的小任务,制定下发了工作计划表\nB. 乙完成了一项高难度工作任务,却被客户批评不够细致,下属鼓励了乙\nC. 丙明确了公司今年的工作目标和业绩指标,计划从第一季度起扭亏为盈\nD. 丁看完助理帮忙润色的演讲稿后十分满意,夸奖其工作完成得又快又好", "choice": "B", "keypoints": "故事类;主客体", "most_wrong": "C", "human_count": 66079, "human_acc": 75.6987847879, "source": "2023下半年省考第十三季行测模考大赛(四川卷)第69题", "difficulty": 4, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"], ["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 4840067, "material": "", "question": "近年来,为了解决关注度不高的问题,很多景区选择靠裹着厚厚滤镜的照片甚至“照骗”出圈。一张“照骗”可能就会毁了一家景区,让从业者此前的努力都付诸东流,靠“照骗”出位无异于____________。景区自身要摒弃赚快钱的错误想法,要对游客抱有敬畏之心,立足长远,沉下心来________自身特色,为游客提供优质的产品和服务。只有练好“内功”才能走得长远,这个虽是____________却也是颠扑不破的真理,旅游业从业者须时时谨记。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 掩耳盗铃 提炼 齿牙余论\nB. 饮鸩止渴 挖掘 老生常谈\nC. 缘木求鱼 探索 一言蔽之\nD. 抱薪救火 打磨 不刊之论", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;混搭填空", "most_wrong": "A", "human_count": 302141, "human_acc": 92.1827888304, "source": "2022上半年省考第十三季行测模考大赛(陕西卷)第40题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5105850, "material": "", "question": "随着改革开放的深入,各种思潮____________,文化也发生着结构性的变化,其中最大的变化可能是古代文学身份的游移、迷失或边缘化。由于古代文学的身份确立是与现代学科建设联系在一起的,这必然导致其与古代文化学术体系存在着一定的________,进而影响了古代文学的研究思路——功能意义不再是古代文学研究的出发点与轴心,____________的是对传统文化整体价值以及对古代文学在其中所扮演角色的认识成为古代文学研究的新思路。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 接踵而至 断层 买椟还珠\nB. 如火如荼 脱节 喧宾夺主\nC. 此消彼长 勾连 越俎代庖\nD. 风起云涌 错位 取而代之", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-解释类对应;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "A", "human_count": 100882, "human_acc": 83.6977855316, "source": "2022下半年省考第二季行测模考大赛(四川卷)第24题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5114116, "material": "", "question": "尽管传统水印版画在原理上遵循木刻版画制作的基本逻辑,但从题材内容、制作工艺的角度来说,其艺术面貌有着____________的审美趣味。当附着水性颜料的木质板材与中国宣纸相遇,可幻化出万千变化。因此,传统水印版画的制作并不是________的流水线作业,需要制作者在操作中准确把控。进入二十一世纪,版画家们或是关注时代发展,或是聚焦平凡生活,抑或是借由景物刻画的诗意表达,水印木刻版画的创作可谓蓬勃发展,____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 匠心独运 机械 异军突起\nB. 另辟蹊径 粗糙 登堂入室\nC. 别具一格 死板 百花齐放\nD. 天马行空 重复 遍地开花", "choice": "C", "keypoints": "关联关系-转折关系;对应关系-解释类对应;关联关系-因果关系;混搭填空", "most_wrong": "A", "human_count": 108002, "human_acc": 56.5183978074, "source": "2022下半年省考第三季行测模考大赛(四川卷)第24题", "difficulty": 6, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4965, "material": "", "question": "______你孜孜不倦地追求生活的真善美,终有一天会得到生活的______评价。", "type": "单选题", "options": "A. 只有 公平\nB. 只要 公正\nC. 只管 公证\nD. 如果 正确", "choice": "B", "keypoints": "词的辨析-固定搭配;混搭填空", "most_wrong": "A", "human_count": 76346, "human_acc": 91.0067325073, "source": "2008年湖北省公务员录用考试《行测》题(A类)第4题", "difficulty": 5, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5438700, "material": "", "question": "传统上,我们认为公众科学素养不足的原因在于存在着科学知识的缺失,因而“缺失模型”被社会科学家提出来,并得到了科学传播研究者的认可。这一观点认为只要为公众提供充分的科学知识,他们就会对科学研究更加支持,而实际上,在科学素养水平与公众对科学研究的态度之间不存在明确的相关性,具体来说,并不是公众知道的科学知识越多,他们就越支持科学研究,公众的情感、态度、价值观等因素似乎发挥着更为重要的作用。而在传播科学的时候,如果只是单纯地提供知识,则有可能引发逆火效应,适得其反。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 社会科学家的“缺失模型”在实际应用中存在局限性\nB. 公众的科学素养水平与其对科学的态度并无直接关联\nC. 公众科学素养水平低并非传播科学效果不佳的主要原因\nD. 传播科学要充分考虑公众的情感、态度、价值观等因素", "choice": "D", "keypoints": "关联词-转折;关联词-对策;程度词", "most_wrong": "B", "human_count": 52673, "human_acc": 70.3016725837, "source": "2023上半年省考第三季行测模考大赛(天津卷)第44题", "difficulty": 4, "formulas": 0, "history": [{"id": 3762277, "material": "", "question": "目前各地教育主管部门正在进行评价体系改革,包括扩大优质教育资源、鼓励学校特色发展、堵住非正规的升学渠道等,但依然有各种培训机构在向家长们传播类似“某‘牛娃’取得了某证书”“某证书被某牛校点招”等消息。可见,社会“大因素”确实是造成家长焦虑的因素,然而当下缓解焦虑最可行的方法,还是家长心态的调节和教育理念的更新。面对日益激烈的社会竞争,对未知的未来的确很难做到不焦虑,但只有缓解教育焦虑、回归育儿本心,才能让孩子们拥有快乐的童年。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 家长心态调节还需更新教育理念\nB. 社会大因素映射了家长教育心态\nC. 教育评价体系的改革是大势所趋\nD. 缓解教育焦虑方可安放孩子童年", "choice": "D", "keypoints": "关联词-转折;关联词-对策;程度词", "most_wrong": "A", "human_count": 118715, "human_acc": 61.9896390515, "source": "2021下半年省考第十三季行测模考大赛(广东乡镇卷)第6题", "difficulty": 4, "formulas": 0}, {"id": 4100586, "material": "", "question": "随着中国经济实力和制造能力的不断提升,为游客提供优质的旅游商品,实不在话下。然而,现实情况却并非如此。多数文化旅游商品缺乏创意,设计粗糙,颇受游客诟病。更糟糕的是,同质化现象使旅游商品对游客失去了吸引力。比如,各地的特产商店看似琳琅满目,但其中所出售的旅游纪念品,在全国各大景区皆大同小异。反观旅游发达国家的旅游商品,且不论其创意水平的高低,就其所显示出的地域特色,可说是让人过目难忘。究其原因,并非国外旅游产品的质量胜于国内。事实上,受到不少游客交口称赞的国外旅游产品,往往是由国内厂商加工制造的。归根结底,一件旅游商品的灵魂在于其文化内涵,这也正是旅游商品不同于一般商品的根本特点。\n\n通过这段文字,作者意在指出:", "type": "单选题", "options": "A. 旅游商品同质化阻碍了我国旅游业的发展\nB. 文化旅游产品应突出创意水平和地域特色\nC. 我国文化旅游特色商品亟需注入文化内涵\nD. 我国文化旅游特色商品应该提高产品质量", "choice": "C", "keypoints": "关联词-转折;关联词-对策;程度词", "most_wrong": "B", "human_count": 182462, "human_acc": 91.0699214083, "source": "2021下半年省考第二十季行测模考大赛(广东县级卷)第7题", "difficulty": 3, "formulas": 0}, {"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5222036, "material": "", "question": "从18世纪到20世纪中叶,因政治体制落后或国际环境不利等诸多因素,中华民族与前三次科技革命____________,但有幸赶上了第四次科技革命的浪潮。然而,中国高科技产业遭受的打压也是空前的。毫无疑问,科技博弈将是国际博弈的新战场,在这场较量中,我们如果扛不住、攻不下,民族复兴就很可能遭遇半渡而击,甚至____________,我们只能咬紧牙关、____________,才能掌握这次科技革命的主动权,赢得未来。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 失之交臂 功亏一篑 逆流而上\nB. 密不可分 前功尽弃 一鼓作气\nC. 休戚相关 毁于一旦 坚持不懈\nD. 擦肩而过 一蹶不振 循序渐进", "choice": "A", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;关联关系-并列关系;成语填空", "most_wrong": "D", "human_count": 7898, "human_acc": 95.4925297544, "source": "2022下半年省考第八季行测模考大赛(通用卷)第37题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 14231, "material": "", "question": "古代的明君都喜欢自己的臣民直言上谏,而今天有些领导则不然,总是______,相比之下,实在不应该:", "type": "单选题", "options": "A. 知错就改\nB. 讳疾忌医\nC. 刚愎自用\nD. 好大喜功", "choice": "B", "keypoints": "关联关系-转折关系;成语填空", "most_wrong": "C", "human_count": 43791, "human_acc": 56.7011486378, "source": "2008年重庆市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4827982, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n当今世界上战火纷飞,人欲横流,“黄钟毁弃,瓦釜雷鸣”,是一个十分不安定的时代。____________________。____________________,____________________。____________________。有如接力赛,每一代人都有自己的一段路程要跑。又如一条链子,是由许多环组成的,每一环从本身来看,只不过是微不足道的一点东西,但是没有这一点东西,链子就组不成。在人类社会发展的长河中,我们每一代人都有自己的任务,而且绝不是可有可无的。如果说人生有意义与价值的话,其意义与价值就在这里。\n\n①我相信,不管还要经过多少艰难曲折,不管还要经历多少时间,人类总会越变越好\n\n②但是,想要达到这个目的,必须经过无数代人的共同努力\n\n③但是,对于人类的前途,我始终是一个乐观主义者\n\n④人类大同之域决不会仅仅是一个空洞的理想", "type": "单选题", "options": "A. ③①④②\nB. ②①③④\nC. ④③①②\nD. ①④③②", "choice": "A", "keypoints": "确定捆绑;中间", "most_wrong": "C", "human_count": 177587, "human_acc": 80.5982419884, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第60题", "difficulty": 4, "formulas": 0, "history": [{"id": 4917199, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n至少从汉代开始,____________________,____________________,____________________。____________________。这意味着屏上的画面和屏外的图像之间发生了种种互动,其结果是大大增强了绘画内容的丰富性和艺术表现力。\n\n①或使用屏风图像分割和规划空间\n\n②唐代开始对屏上画面有了更详细的表现,使之成为整体图像程序中的“画中画”\n\n③或用以突出画中的主体人物\n\n④中国古人已经把屏风作为更大的画面和图像程序中的有机因素", "type": "单选题", "options": "A. ②④①③\nB. ①②③④\nC. ④①③②\nD. ④③②①", "choice": "C", "keypoints": "确定捆绑;中间", "most_wrong": "D", "human_count": 144687, "human_acc": 89.4067884468, "source": "2022上半年省考第十六季行测模考大赛(陕西卷)第60题", "difficulty": 3, "formulas": 0}, {"id": 4694998, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n家书价值的多元性首先表现在家书的认知功能,鉴赏者能够通过某些家书作品认识社会、了解历史。家书来自于特定的历史环境中,____________________,____________________。____________________,____________________,而非枯燥的说教。更重要的是,它温馨智慧的家常话语,可以启发鉴赏者在家庭情感辐射的小天地内,去探索人类世界大生活的奥秘,思考生命的意义甚至体悟宇宙人生。\n\n①家书写作过程中,也常常涉及身边的真实事件\n\n②由于家书是家人间的温情话语\n\n③一封家书总是会带有时代的印记\n\n④它的认知价值,又表现为一种生动的启迪", "type": "单选题", "options": "A. ②③①④\nB. ②④③①\nC. ③①②④\nD. ③④②①", "choice": "C", "keypoints": "确定捆绑;中间", "most_wrong": "D", "human_count": 170117, "human_acc": 56.5099314002, "source": "2022上半年省考第五季行测模考大赛(陕西卷)第60题", "difficulty": 6, "formulas": 0}, {"id": 4895956, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n我小的时候,每到中秋夜,便呆坐在楼窗外等着看“月华”。____________________。____________________。____________________。____________________。现在天上砌满了“瓦楞”云彩,霎时间引起了我早年许多有趣的记忆——但我的纯洁的童心,如今哪里去了!\n\n①但在月光放彩以前,我母亲早已逼我去睡觉,所以“月华”只是我脑海里一个不曾实现的想象,直到如今\n\n②若然见了鱼鳞似的云彩,我的心就欣欣怡悦,默祷着月儿快些“开花”\n\n③若然天上有云雾缭绕,我就替“亮晶晶的月亮”担忧\n\n④因为我常听人说只要有“瓦楞”云彩,就有“月华”", "type": "单选题", "options": "A. ②①④③\nB. ③②④①\nC. ④③②①\nD. ③②①④", "choice": "B", "keypoints": "确定捆绑;中间", "most_wrong": "C", "human_count": 150193, "human_acc": 47.4869001884, "source": "2022上半年省考第十五季行测模考大赛(陕西卷)第60题", "difficulty": 6, "formulas": 0}, {"id": 4793870, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n科技赋能节粮减损,应注重全链条布局。粮食从田间到餐桌,要经历生产、流通、加工、消费等多个环节。____________________。____________________。____________________。____________________。因此,相关部门有必要进一步为农民提供有效的产后服务和科学储粮技术指导,推动农村节粮减损取得实效。\n\n①数据显示,正确使用科学储粮装具的农民,粮食损失率一般可减少至2%以下\n\n②促进节粮减损要向科技要效益,也要“产购储加销”全链条协同发力\n\n③农民是粮食生产的主体,也是粮食生产流通的起点\n\n④在此过程中,要注重推动农民科学储粮", "type": "单选题", "options": "A. ②④①③\nB. ②④③①\nC. ④③①②\nD. ④①②③", "choice": "B", "keypoints": "确定捆绑;中间", "most_wrong": "C", "human_count": 171782, "human_acc": 30.2342503871, "source": "2022上半年省考第十一季行测模考大赛(陕西卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 5045842, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n在一些科技领先的西方发达国家,人们普遍认为虽然科技进步的成果为创新企业家率先获得,但是终究会以一种滴流的方式惠及普通劳动者和家庭。但是,____________________,____________________,____________________,____________________。这种政策倾向和民族主义思潮进而演变为国际关系中的单边主义、贸易保护主义泛滥乃至去全球化趋势。\n\n①更有甚者,在美国等位居科技前沿的国家中,技术进步助长了民粹主义的经济社会政策\n\n②历史上技术成果分享的问题从未得到良好解决\n\n③而且事实上,过去几十年的技术发展在很多国家造成了劳动力市场两极化、收入差距扩大和中产阶级萎缩的后果\n\n④如工业革命初期机器的使用对就业的冲击", "type": "单选题", "options": "A. ②④①③\nB. ②④③①\nC. ④①②③\nD. ④③②①", "choice": "B", "keypoints": "确定捆绑;中间", "most_wrong": "A", "human_count": 198860, "human_acc": 82.870361058, "source": "2022上半年省考终极行测模考大赛(陕西卷)第60题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 2051716, "material": "", "question": "要研发一款保险产品,要涉及精算、产品、风控、客服、核保、核赔、IT、法律、财务、资产、品宣、电话中心、物控,甚至关联的各个业务口,十多个部门,后续有一大堆繁杂的事项,足见一个保险产品的出台要涉及多少个部门的协同作战,是多少利益和战略的平衡,是多么复杂和专业的问题。所以,我非常理解各家保险公司的同行,想要出台一款产品是多么不容易,简直是“过五关斩六将”。\n\n以下各项中,能质疑上述观点的有:", "type": "不定项", "options": "A. 保险市场上,保险产品琳琅满目,让人应接不暇\nB. 研发保险产品的关键在于精算工作,其他业务并不复杂\nC. 一家新开张的保险公司,在短时间内出台了好几款设计合理的保险产品\nD. 保险产品的质量决定了销量", "choice": "BC", "keypoints": "削弱论点;削弱论据", "most_wrong": "A", "human_count": 75449, "human_acc": 46.8992299434, "source": "2017年422联考《行测》题(陕西卷)第118题", "difficulty": 5, "formulas": 0, "history": [{"id": 2540063, "material": "", "question": "为了精确探索人类老化的海马体体积,研究人员对28名年龄在14至79岁之间、突发猝死的男性和女性进行了全面的尸检。其中没有人有长期的健康问题或认知缺陷,并且在他们生命的最后三个月里,也没有出现明显的生活压力。科学家发现,年龄较大的男性和女性可以生成与年轻人相同数量水平的新脑细胞。因此,研究人员认为即使人变老了,脑细胞也依然会继续生长。\n\n以下各项如果为真,能够削弱上述观点的有(    )。", "type": "不定项", "options": "A. 随着寿命的增加,海马体内脑细胞之间的联系会逐渐减少,氧气和营养的供应也将减少\nB. 在啮齿类动物和灵长类动物中,海马体内生长新神经元细胞的能力随着年龄的增长而降低\nC. 研究人员在最老化的实验对象的大脑中没有发现中间神经前期细胞和未成熟神经元细胞\nD. 部分实验对象在实验期间长期服用抗抑郁药物,而抗抑郁药会对脑细胞的形成产生影响", "choice": "CD", "keypoints": "削弱论点;削弱论据", "most_wrong": "B", "human_count": 12433, "human_acc": 19.8423550229, "source": "2020年上半年省考第二十八季行测模考大赛(陕西卷)第109题", "difficulty": 7, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论点"], ["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 5352996, "material": "", "question": "20世纪上半叶,万氏兄弟就已经在上海进行了诸多关于动画片的有力尝试,上海美术电影制片厂的成立更使得“海派”动画片创作____________。除了《大闹天宫》外,上海美影推出的有影响的动画片还有《葫芦兄弟》等,这些作品很大程度上唤起几代人的童年记忆。而20世纪90年代以来,国产动画受到海外作品的冲击,因此显得颇为________。但这并不意味着放弃,而是在深入学习体会中华优秀传统文化的基础上,沉淀之后的____________。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 如虎添翼 沉寂 蓄势待发\nB. 横空出世 落寞 一鸣惊人\nC. 登峰造极 疲软 韬光养晦\nD. 锦上添花 窘迫 卷土重来", "choice": "A", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;对应关系-重点词句对应;关联关系-因果关系;词的辨析-词义侧重;混搭填空", "most_wrong": "B", "human_count": 339507, "human_acc": 63.8246045001, "source": "2022下半年省考第十七季行测模考大赛(浙江A卷)第31题", "difficulty": 4, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 5591347, "material": "", "question": "礼乐文明是中国传统文明的主干,对礼的研究丰富了我们对于传统社会的认识。从哲学、历史学、文献学、法学、社会学、人类学等不同角度进行的礼学研究,都取得了长足的进步。在此基础上,礼学研究急需解决的一个问题是,除了完成其资料梳理、文献整理、历史定位之外,还缺乏理论层面的深入讨论。因而,对于礼乐制度的实质文明意义,仍然需要拓展纵深的理论视角。只有在这样的创新理论融会贯通之下,我们才能了解,相对于世界其他诸文明,礼乐文明的基本特点究竟是什么,它在不同的历史时期如何变迁,它在现代世界中该如何自处,并有益于人类文明的总体发展。\n\n这段文字主要强调:", "type": "单选题", "options": "A. 现阶段对礼学的研究仍缺乏完整的理论体系\nB. 礼乐文明是推动人类文明高速发展的加速器\nC. 深度拓展理论视角是透彻研究礼乐文明的关键\nD. 只有创新理论才能明白礼乐文明的历史变迁", "choice": "C", "keypoints": "主题词;关联词-对策;关联词-因果", "most_wrong": "A", "human_count": 47643, "human_acc": 88.254308083, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第23题", "difficulty": 3, "formulas": 0, "history": [{"id": 5694524, "material": "", "question": "在近代西学东渐的大背景下,环境法学由于西方发达国家环境问题先发、环境立法先行而倾向于制度移植乃至理论移植,环境权理论及主要的环境法律制度都深受西方环境法理论和制度的影响。部分移植的制度难以适应实践的需要。因此,虽然法律制度的借鉴和交流是必要的,但是包括借鉴在内的中国环境法学研究都应当更明确地立足于中国现实、致力于解决中国面临的环境问题。制定符合中国国情的环境法典,是解决中国环境问题的必由之路。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 阐述解决中国环境问题是法律的必由之路\nB. 提出制定符合中国国情的环境法典的要求\nC. 法学法典研究的基本立场应该围绕中国国情\nD. 指出应以法学思维推动环境法律制度本土化", "choice": "B", "keypoints": "主题词;关联词-对策;关联词-因果", "most_wrong": "C", "human_count": 88678, "human_acc": 68.6303254471, "source": "2023下半年省考第十六季行测模考大赛(四川卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 4233404, "material": "", "question": "网络生态治理是为实现合秩序状态而进行的虚拟实践有序化过程,仅依靠技术的逻辑无法保证网络生态的秩序供给,政府对于网络内容、网络行为的调控是合理且正当的。我国的互联网建设由政府直接推动,采用政府占主导地位的治理模式,规制性工具也由此居于网络治理的核心地位。然而,网络生态的扁平化结构在政府、企业、网民之间产生了新颖的链接,意识的觉醒又激发了多元主体参与网络生态治理的积极性、主动性和创造性。因此,网络生态治理除了需要完备规制性工具作用下的他律机制,也需要通过自愿性、疏解性、调节性等政策工具来完善多主体互动的自律与互律机制。\n\n这段文字体现的观点是:", "type": "单选题", "options": "A. 网络生态治理要注重发挥多主体互动机制的作用\nB. 政府主导的治理模式无法解决网络生态的新问题\nC. 网络生态治理将会更加依赖民间力量的主动参与\nD. 多主体互动机制将促使网民由他律走向自律互律", "choice": "A", "keypoints": "主题词;关联词-对策;关联词-因果", "most_wrong": "D", "human_count": 12642, "human_acc": 85.7380161367, "source": "2021下半年省考第二十二季行测模考大赛(辽宁卷)第60题", "difficulty": 4, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 3666652, "material": "", "question": "①久而久之,人们便以铁牛为镇物,重要的桥梁、险要的堤防、急湍的河段,都置有铁牛,用以保桥护堤,镇压水患\n\n②古人认为“牛象坤,坤为土,土胜水”,所以相传大禹治水时,每治好一处就铸造一只铁牛沉入水底,可防河水泛滥\n\n③以牛镇水是中国民俗文化之一\n\n④其实,铸造铁牛最初是为固定浮桥所用\n\n⑤在科学尚不发达的年代,此举表现的是人们希望趋利避害、基业永固的朴素心理\n\n⑥两只铁牛铸成昂首而卧状,相向放在两边水中,然后用方石块围砌结实,将浮桥铁索从铁牛鼻中穿过,牢牢稳住浮桥,以利行人过往\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑤①③②④⑥\nB. ②⑤④⑥③①\nC. ③②④⑥①⑤\nD. ⑥⑤①③②④", "choice": "C", "keypoints": "非首句特征;首句特征", "most_wrong": "B", "human_count": 79808, "human_acc": 84.6907578188, "source": "2021下半年省考第八季行测模考大赛(甘肃卷)第48题", "difficulty": 4, "formulas": 0, "history": [{"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 15087, "material": "", "question": "①无论一个人在哪儿,只要他在一扇关着的门的后面,他就能使自己不受拘束。\n\n②没有门的屋子不是屋子,而是走廊。\n\n③在关着的门内,头脑的工作最为有效。\n\n④人不是在一起放牧的马群。\n\n⑤门是隐秘、回避的象征,是心灵躲进极乐的静谧或悲伤的秘密搏斗的象征。", "type": "单选题", "options": "A. ②①③④⑤\nB. ④①③②⑤\nC. ①③④⑤②\nD. ⑤②①③④", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 7175, "human_acc": 43.2891986063, "source": "2008年重庆市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 1689102, "material": "", "question": "①在大比例尺的地图上有详细的地理背景资料时\n\n②在小比例尺的地图上很难做到真正意义上的定位布点\n\n③可以准确地布点以反映其实际分布\n\n④定位布点的精确程度取决于地图比例尺和资料的详细程度\n\n将以上几个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④①③②\nB. ③①②④\nC. ①②③④\nD. ②①③④", "choice": "A", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 16069, "human_acc": 94.1377808202, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第30题", "difficulty": 3, "formulas": 0}, {"id": 25197, "material": "", "question": "①它们没有超过一千年的家谱\n\n②金鱼是世界上养殖最普遍的宠物鱼类\n\n③不过有一件事是可以确定的\n\n④却没有多少证据证实它们是什么时候被驯养的\n\n⑤只有少数几个国家还没有引进\n\n⑥尽管我们知道金鱼原产于中国\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤③①⑥④\nB. ②⑤③⑥④①\nC. ②⑤⑥④③①\nD. ⑥④③①②⑤", "choice": "C", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 433895, "human_acc": 68.2326369283, "source": "2011年国家公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}, {"id": 2066950, "material": "", "question": "①但是,在读书中,就是要过河拆桥\n\n②既然知道了那个意思以后\n\n③这就是古人所说的“得意忘言”\n\n④语言文字是帮助了解书的意思的拐棍\n\n⑤最好扔了拐棍\n\n⑥在人与人的关系中,过河拆桥是不道德的事\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④②⑤③⑥①\nB. ⑥①③④②⑤\nC. ④⑤②⑥①③\nD. ②⑤⑥③①④", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "B", "human_count": 337420, "human_acc": 46.5165076166, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第36题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "首句特征"]]}, {"id": 4985841, "material": "", "question": "隐形谈判是指谈判一方已经开始谈判或作谈判的准备,而另一方尚未意识到这种谈判的存在。是在对方不知不觉的情况下,作谈判的充分准备,以增强己方的谈判实力或寻找有利的谈判时机,如宣传造势、搜寻于对方不利的证据、摸清对方的底细等。\n\n根据上述定义,下列体现了隐形谈判的是:", "type": "单选题", "options": "A. 汽车保险销售小王在给客户打电话前都要了解客户之前在哪家公司投保,以及投保金额\nB. 徐姐旅游时发现了一种小吃,就想在自己的城市开一个加盟店,她把自己的想法告诉了闺蜜\nC. 日本某公司向中国某公司购买电石,在谈价时,日方想从410美元/吨压到390美元/吨\nD. 某传媒公司看到非常好的古装小说IP,想将其翻拍成电视剧,派专人联系该小说的作者", "choice": "A", "keypoints": "大前提;主客体", "most_wrong": "D", "human_count": 251768, "human_acc": 92.6166152966, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第73题", "difficulty": 3, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"], ["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 5038315, "material": "", "question": "在复杂多元化的现代社会,专业化、精细化的分工,早已使人与人之间形成了____________的关系网络,从社会的需求来看,大学不能只重点发展实用性强的学科,学生也不应“势利”地紧盯易就业、收入高的专业。只有维持一种相对的均衡,才不会出现某些领域人才____________、另一些行业____________的尴尬。大学所培养的是不是“人才”,在平常日子或许难以分辨,在危机时看其能否发挥扛鼎的作用,这是人才最好的试金石。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 扑朔迷离 惟器是适 良莠不齐\nB. 盘根错节 群贤毕集 筑巢引凤\nC. 瞬息万变 脱颖而出 求贤若渴\nD. 错综复杂 供过于求 捉襟见肘", "choice": "D", "keypoints": "词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 259010, "human_acc": 86.6715570827, "source": "2022上半年省考第二十三季行测模考大赛(陕西卷)第33题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 4597401, "material": "", "question": "虚拟货币监管缺失是亟待解决的全球性问题。区块链技术作为虚拟货币的底层技术,其背后涉及金融安全与金融稳定、货币政策独立性和有效性等多方面问题。各国加强虚拟货币监管,一方面,有利于规范和净化市场,维护金融市场有序、稳定,保护消费者的合法权益;另一方面,也可能对区块链等新技术的创新与应用产生不利影响,遏制技术创新和金融创新。因此,如何在打击违法犯罪维护金融安全、包容适当技术创新和金融创新之间达成动态平衡,还需要各国立法者和监管者审慎决策。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 立法者和监管者应该审慎决策以完善监管\nB. 立法者亟需大力打击犯罪以维护金融安全\nC. 虚拟货币监管需打击金融犯罪且包容创新\nD. 各国虚拟货币监管缺失的问题需引起重视", "choice": "C", "keypoints": "主题词;关联词-并列;行文脉络-分总", "most_wrong": "A", "human_count": 12945, "human_acc": 39.6601004249, "source": "2021下半年省考第三十四季行测模考大赛(辽宁卷)第59题", "difficulty": 7, "formulas": 0, "history": [{"id": 3593830, "material": "", "question": "从个体角度来看,交互叙事过程是“阅读”和“创作”的共同过程;从集体的角度来看,交互叙事是一个分工合作的“协同”过程,交互叙事系统是支持共同生产的“语境网络”。这种结构有时候并非全开放的,而是半开放的。这种半开放的结构一方面使得交互叙事成为一种可能,另一方面,新闻工作者可以通过这种半开放的结构实现控制和引导,互动参与者们在交互叙事系统的支持下,提供各种“信息内容”的同时,还提供“信息的理解语境”,从而在创作的乐趣中实现沉浸。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 沉浸式传播的形成离不开精巧的设计\nB. 半开放式交互叙事结构的重要意义\nC. 沉浸式传播的叙事方式均为半开放\nD. 新闻工作者可通过交互叙事实现沉浸", "choice": "B", "keypoints": "主题词;关联词-并列;行文脉络-分总", "most_wrong": "D", "human_count": 86036, "human_acc": 91.0293365568, "source": "2021下半年省考第六季行测模考大赛(四川卷)第40题", "difficulty": 3, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 3691742, "material": "", "question": "中医药走向世界,必须增强国际话语权。作为最能体现中国文化的代表性元素,中医药只有成为国际“通用语言”,才能更好地走向世界。目前,中医药传播到世界上183个国家和地区,但在不少地方,中药不能以药品的身份进口,只能以保健品食品的名义销售。可以说,走向世界,面临的不只是文化的差异,还有难以逾越的标准壁垒。但是,如果中医药不去拥抱世界,不去迎接国际化的挑战,不仅会丧失广阔的市场,甚至会丧失国际评审、行业标准制订的参与权、话语权。\n\n这段文字主要说的是:", "type": "单选题", "options": "A. 中药应成为国际通用语言以走向世界\nB. 中药应主动拥抱世界,接受世界挑战\nC. 中药面临文化差异和标准壁垒的困难\nD. 中药若不拥抱世界就会失去国际市场", "choice": "A", "keypoints": "关联词-转折;关联词-对策;行文脉络-总分", "most_wrong": "B", "human_count": 12666, "human_acc": 12.5769777357, "source": "2021下半年省考第九季行测模考大赛(辽宁卷)第57题", "difficulty": 7, "formulas": 0, "history": [{"id": 2671260, "material": "", "question": "新时期的妈祖信仰在“文化资源化”的社会大背景下,产业化和旅游化的发展趋势在所难免,但它作为一种全国性乃至世界性的中华信仰文化,也必须保持其民间信仰的基本特质,同时不断注入民族性的文化内涵,才能真正成为全球化语境下的一个非常具有文化凝聚力的象征符号。以妈祖的故乡和妈祖信仰的发祥地莆田市为例,也应时刻意识到本身所肩负的让开发与保存相互依存、相互推动的重任并恢复当地民众日常生活之中最本土的那部分妈祖信俗,以期让前来朝圣和谒祖的游客、香客不仅能得到身体与精神上的休闲和放松,而且更能够获得一种灵魂上的归宿之感。\n\n这段文字旨在表明:", "type": "单选题", "options": "A. 莆田市应认识到开发与保存妈祖信仰的重要性\nB. 妈祖信仰应该顺应产业化和旅游化发展的趋势\nC. 恢复最本土的妈祖信仰利于民众获得灵魂归宿\nD. 妈祖信仰成为文化凝聚力象征符号的合适途径", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-总分", "most_wrong": "C", "human_count": 18635, "human_acc": 60.225382345, "source": "2020年下半年省考第十季行测模考大赛(四川卷)第45题", "difficulty": 5, "formulas": 0}, {"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 2394022, "material": "", "question": "所谓幼儿园“小学化”,指的是在幼儿园阶段提前教汉语拼音、识字、计算、英语等小学课程内容。这种现象近年来非常普遍,________,甚至传导至幼前阶段,也就是还没上幼儿园就开始教这些知识了。更有甚者,小孩还在幼儿园阶段就在上奥数班,至于学拼音、英语,更是________。上海的家长们为了给孩子报某个毫无资质的学前班,挤破了头不说,排队报名的黄牛号都涨到5000元,这事情也一度闹得________。\n\n依次填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 靡然成风 层见叠出 沸沸扬扬\nB. 蔚然成风 层见叠出 沸反盈天\nC. 靡然成风 司空见惯 沸沸扬扬\nD. 蔚然成风 司空见惯 沸反盈天", "choice": "C", "keypoints": "词的辨析-程度轻重;词的辨析-感情色彩;词的辨析-固定搭配;成语填空", "most_wrong": "A", "human_count": 1285647, "human_acc": 58.4615372649, "source": "2019年青海省公务员录用考试《行测》题省市州级(A类)(网友回忆版)第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 15821, "material": "", "question": "每当想起父亲对我说过的他那(  )的童年,都使我倍加珍惜今天的美好生活,并催我进取。", "type": "单选题", "options": "A. 苦涩\nB. 苦难\nC. 苦命\nD. 苦恼", "choice": "B", "keypoints": "词的辨析-程度轻重;对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 32985, "human_acc": 55.3827497347, "source": "2009年山西省党群机关录用考试《行测》题第26题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 2579702, "material": "", "question": "不可否认,数学在经济学、管理学研究中有广泛的应用,为推动学术研究和科学决策发挥了积极作用。但是,学术研究应以问题为导向,而不是以技术为导向,数学方法只是工具和手段,不是目的。研究实践中,一些论文只用文字或辅以简单的图表,学术水平依然很高;有的论文没有使用数学模型,明白晓畅,即使非专业人士都能读懂。说到底,论文是用来表达思想和观点的,优秀的论文应兼具思想启迪性、理论创造性、通俗可读性。\n\n根据这段文字,作者最可能想批评的是:", "type": "单选题", "options": "A. 学术论文存在片面追求数理模型的倾向\nB. 经管研究类论文缺乏深度、创新和易读性\nC. 学术研究成果在一定程度上与现实需求脱节\nD. 学术评价中“唯论文”、重数量、功利化的现状", "choice": "A", "keypoints": "关联词-转折;主题词;特殊问法", "most_wrong": "B", "human_count": 1355708, "human_acc": 78.6156015897, "source": "2020年浙江公务员考试《行测》(B类)试题(网友回忆版)第43题", "difficulty": 5, "formulas": 0, "history": [{"id": 2782376, "material": "", "question": "在传统教科书和历史类图书当中,通常更多关注战争与条约这类大事件,而较少提及大时代之下个体的生存与命运。然而,历史终归是由人组成的,判断一个时代的进步与落后,需要结合生活于其中的个体。《中美相遇》一书将相当多的笔墨放在个体故事之上,从珠江口民妇郭梁氏之死,到密西西比州没法上学的林家女孩,从努力适应新大陆生活的留美幼童,到大搞“夫人外交”的慈禧太后,通过这些个体的小故事,我们更容易看清被大事件简化的历史本质,看清个体与集体,与国家命运之间复杂深刻的联系。\n\n作者介绍《中美相遇》目的是提倡:", "type": "单选题", "options": "A. 透过小事件看待历史本质\nB. 打破传统历史书籍的框架\nC. 认知历史终归要回到人本身\nD. 个人与国家命运联系的复杂性", "choice": "C", "keypoints": "关联词-转折;主题词;特殊问法", "most_wrong": "A", "human_count": 170153, "human_acc": 48.8883534231, "source": "2021上半年省考第七季行测模考大赛(四川卷)第34题", "difficulty": 6, "formulas": 0}, {"id": 4576488, "material": "", "question": "减税降费不是权宜之计,而是深化供给侧结构性改革、推进经济高质量发展的重大决策,是减轻企业负担、激发市场主体活力的重大举措。作为国家财政收入的主要来源,税收一头连着政府的“钱袋”,一头连着企业和个人的“腰包”。但是,根据拉弗曲线理论,税收收入多少一般取决于两个因素,即税率高低和税基大小。短期看,税基不变的情况下,降低税率确实会造成收入减少,但从长期看,减税降费往往能促进企业发展和经济增长,从而扩大税基,使得税收收入增加。\n\n这段文字反驳了哪种观点?", "type": "单选题", "options": "A. 短期财政收入并非评价经济好坏的绝对指标\nB. 减税降费在短期内会给财政收入带来压力\nC. 税率高低对财政收入的高低起决定性作用\nD. 长期来看减税降费会使财政收入持续减少", "choice": "D", "keypoints": "关联词-转折;主题词;特殊问法", "most_wrong": "B", "human_count": 296368, "human_acc": 79.3567456675, "source": "2021下半年省考第三十三季行测模考大赛(四川卷)第45题", "difficulty": 4, "formulas": 0}, {"id": 764277, "material": "", "question": "美感有时类似于灵感,只有在特定状况下才能产生。当公式的推导终于成功,或是忽然看懂一种繁难的理论,那一时刻的强烈感受不仅难以重现,也是不可转述的。晚唐的贾岛是有名的苦吟诗人,他和韩愈共同推敲“僧敲月下门”之句并结为忘年之交之事自古传为佳话。然而他还有两句诗更是苦吟了数年——“独行潭底影,数息树边身”,对于这两句诗他自称:“二句三年得,一吟双泪流。知音如不赏,归卧故山秋。”然而后世却有人认为此句稀松平常,“有何难吟”。这里自然也有文化底蕴的差别,但美感之难以传递也是极重要的原因,是以诗人自己也说“知音”方才能赏。\n\n文中举贾岛的例子是为了说明:", "type": "单选题", "options": "A. 欣赏诗词要有足够的文化底蕴\nB. 美感很难向他人传递\nC. 写诗就是在寻找灵感、创造美感\nD. 世上知音难觅", "choice": "B", "keypoints": "关联词-转折;主题词;特殊问法", "most_wrong": "D", "human_count": 347981, "human_acc": 77.0691503272, "source": "2014年黑龙江省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5492127, "material": "", "question": "在中国古代战争中,练兵是极其重要的一环。但是北宋军队恰恰在这一环节有所缺失。北宋军队的主要战力为禁军,厢军作为地方驻军,主要是承担工役和杂役,几乎不承担作战任务。作为北宋主要战力的禁军,原本是由宋太祖从各地军队中挑选的精锐部队组成,太祖时约有二十万。其规模不断扩充,战力却不断下降。到仁宗时,北宋禁军约有八十万人,但战绩却很差,其中重要的原因就是北宋禁军的训练并不注重实战。以《武经总要》的骑兵阵为例,其列阵训练无非是听鼓声出发,射三箭,大呼三声,挺枪二次,鼓停人还。如此简单的训练如何能应付复杂的战场环境呢?\n\n这段文字中,选取的关键词最恰当的是:", "type": "单选题", "options": "A. 禁军 规模扩充 实战\nB. 练兵 北宋军队 缺失\nC. 禁军 战力下降 训练\nD. 练兵 北宋禁军 实战", "choice": "D", "keypoints": "关联词-转折;主题词;特殊问法", "most_wrong": "C", "human_count": 3558, "human_acc": 62.1697582912, "source": "2023上半年省考第九季行测模考大赛(江苏C卷)第30题", "difficulty": 6, "formulas": 0}, {"id": 5330343, "material": "", "question": "尽管中央网信办已经启动专项行动严查16岁以下未成年人出镜直播,国内各大直播平台都不再为未成年人提供直播通道,但是未成年人权益的保护墙仍有漏洞。据观察,某短视频平台上一个以两岁半的双胞胎为视频主角的账号,粉丝超过100万,作品多达4300条,内容大多是给孩子吃零食、试衣服等,账号主页“商品橱窗”里则挂着994件“视频同款”。同类账号中,更有年仅一岁半的幼儿,坐在宝宝餐椅上“品尝”堆成小山的各类小零食。这种短视频平台上的“晒娃”早已超过了正常的界限,在各种粉丝流量、商业利益的裹挟下逐渐走向畸形。\n\n作者引用短视频“晒娃”的例子是为了证明:", "type": "单选题", "options": "A. 切勿把亲情当作赚取利益的“筹码”\nB. 加强短视频监管是维护网络环境的关键点\nC. 儿童形象更容易赢得用户关注和资本加持\nD. 侵犯未成年人权益依旧“有机可乘”", "choice": "D", "keypoints": "关联词-转折;主题词;特殊问法", "most_wrong": "B", "human_count": 8148, "human_acc": 81.6396661757, "source": "2022下半年省考第十五季行测模考大赛(四川卷)第45题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5187075, "material": "", "question": "过去,知网查重只对机构开放,再由学校给予学生少量的查重机会,远不能满足学生的需要,学生只能想方设法去查重,花费巨大,这也是学生毕业前的“大山”。开放个人查重,为学生提供正规渠道、减轻经济负担,算是一个进步。不过,知网被指摘的问题,远不止查重这一个。知网的版权收益问题也悬而未决。平台用作者的成果牟利,作者自己不仅毫无收益,还要付费下载,这个现实悖论让人觉得荒诞。因此,开放个人查重只是其中一小步,但知网应该明白,要做的事还有很多。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 知识付费还有很长的探索之路要走\nB. 知网查重问题应纳入社会治理范畴\nC. 开放个人查重是知网良性发展的开端\nD. 平台应主动听取意见实现知识共享初衷", "choice": "C", "keypoints": "关联词-转折;主题词;行文脉络-分总", "most_wrong": "A", "human_count": 75177, "human_acc": 69.9961424372, "source": "2022下半年省考第六季行测模考大赛(四川卷)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 5101715, "material": "", "question": "如果我们乐观地认为互联网可以解决边缘性群体等社会问题,就是典型的技术决定论。假如技术决定论成立,那么所有社会问题都可以转化为技术问题,世界其实会简单许多,但这并非事实,任何技术问题的解决都会伴随着新问题的产生,比如无人机送外卖可能解决了劳动力短缺的问题,但无人机能不能进入小区?如果能进入,这是否侵犯了隐私?谁有权利允许它进入?我们面对的新问题一点儿也不比旧问题少。技术从不会自动承诺给我们一个更好的未来。技术的发展可以辅助我们解决社会问题,但社会问题的本质是社会而不是技术。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 社会的发展不可能永远一帆风顺\nB. 边缘性群体问题有着复杂的原因\nC. 必须警惕技术发展对隐私的侵犯\nD. 单纯依赖技术无法解决社会问题", "choice": "D", "keypoints": "关联词-转折;主题词;行文脉络-分总", "most_wrong": "B", "human_count": 1864755, "human_acc": 93.5961560634, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第37题", "difficulty": 5, "formulas": 0}, {"id": 4792171, "material": "", "question": "一直到十九世纪,地球上速度的极限才得到根本性的改变。在这个世纪的头十年和二十年里,各族人民、国家与国家间的相互往来的速度就已超过了以往几个世纪。从前需要数天的路程,现在有了火车和轮船,一天之内就能完成。不过,尽管当时人们以无比自豪的心情感受到这种由火车和轮船所带来的新速度,但这种发明毕竟还是属于可以理解的范围之内。然而,当第一批电气设备出现的时候,人们对它们所产生的效果就完全意想不到了。由于电的发现,空间和时间的关系才有了创世以来最具决定性的改变。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 电气设备的诞生是近代科技革命的标志\nB. 科学技术的发展常常是普通人难以理解的\nC. 新型交通工具的发明改变了人们的生活方式\nD. 电给人类的交流速度带来根本性的改变", "choice": "D", "keypoints": "关联词-转折;主题词;行文脉络-分总", "most_wrong": "A", "human_count": 1880, "human_acc": 89.3617021277, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第42题", "difficulty": 4, "formulas": 0}, {"id": 2616116, "material": "", "question": "全球数以百计的医疗机构声称可用干细胞疗法修复多发性硬化症患者受损的组织细胞。专家指出,这些机构直接向患者打广告称可治愈疾病,而实际上没有任何证据表明它们有效或不会造成伤害。在这种情况下,处理相关广告十分必要,某些类型的干细胞移植,例如使用血液或皮肤干细胞,经全面临床试验证实能治疗特定种类的癌症以及让烧伤病人完成植皮手术,因而得到监管机构批准。专家称,虽然干细胞疗法前景广阔,但许多潜在的干细胞疗法仍处于研发的最初阶段,尚未得到监管机构的批准,还需要通过严格的临床试验和监管手续来确定其是否安全有效。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 血液和皮肤干细胞已广泛用于治疗\nB. 干细胞疗法目前仍然存在一定风险\nC. 监管组织应引入有效广告管理措施\nD. 研发细胞和组织疗法仍是巨大挑战", "choice": "B", "keypoints": "关联词-转折;主题词;行文脉络-分总", "most_wrong": "C", "human_count": 2363998, "human_acc": 68.3410899671, "source": "2020年青海省公务员录用考试《行测》试题(B卷)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}, {"id": 5616251, "material": "", "question": "众所周知,黑洞无法直接观测,但科学家可以通过间接方式得知其存在与质量,并且观测到它对其他事物的影响。在所有规模黑洞中,中等质量黑洞被认为是小质量黑洞向大质量黑洞演化的一个中间点,但能证明它们存在的观测证据一直以来都极其罕见,而且也都不是决定性的证据。中等质量黑洞长期以来都是理论预测的黑洞,然而,在天文学研究领域,测量有多少中等质量黑洞存在,将为理解黑洞的形成以及它们如何随时间生长提供重要线索。从这个意义上来说,目前仍需开展进一步研究和探测,以理解这些神秘黑洞的丰度以及它们对于其他黑洞族演化的影响。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 揭示黑洞丰度对宇宙演化的重要影响\nB. 中等质量黑洞的存在带来关键性启示\nC. 寻找黑洞的直接观测证据任重而道远\nD. 探索中等质量黑洞助力揭开黑洞之谜", "choice": "D", "keypoints": "关联词-转折;主题词;行文脉络-分总", "most_wrong": "C", "human_count": 65238, "human_acc": 73.1337563996, "source": "2023下半年省考第九季行测模考大赛(广东县级卷)第23题", "difficulty": 4, "formulas": 0}, {"id": 4489707, "material": "", "question": "很长时间以来,人们理所当然地认为所有的行星系统都应该与太阳系类似。但是当第一颗主序恒星周围的系外行星飞马座51b被发现的时候,人们对行星系统的认知也随之被打破。飞马座51b简直是一个怪胎:它拥有近似木星的质量和大约两倍于木星的体积,却运行在距离中心恒星平均只有0.05天文单位的轨道上,比水星与太阳之间的平均距离还要小得多。随后的一些空间探测任务的实施,让天文学家发现了更多千奇百怪的系外行星系统,如同进入了行星动物园一般。目前人们已经发现了超过4000颗系外行星,其中包含了七百多个多行星系统,这些多行星系统无一与太阳系构型相同。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 飞马座51b与太阳系之中行星的不同之处\nB. “行星动物园”里面的行星系统种类万千\nC. 目前来看太阳系在宇宙之中是独一无二的\nD. 太阳与水星间平均距离与飞马座相比更远", "choice": "C", "keypoints": "关联词-转折;主题词;行文脉络-分总", "most_wrong": "B", "human_count": 12597, "human_acc": 37.318409145, "source": "2021下半年省考第二十七季行测模考大赛(辽宁卷)第58题", "difficulty": 7, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 4330518, "material": "", "question": "由于历史的原因,不少人文学科的研究者对文化自信的认知还不够,以至于“反向格义”成风。汉语研究者尤其缺乏对“语言学无国界”一说的辩证思考,更忽视了中西人文科学研究的文化差异性及其导向作用。我国有世界上最大的语言学队伍,却无一语言学流派,即为其证。不少学者热衷于对西方理论的引介,没有给予对中国传统“小学”研究历程以足够的关注,甚至还有很多误解。这就导致难以充分发掘本土语言研究的历史积淀,不利于构建有中国特色的语言学体系。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 中国特色学科体系需全面进入科学轨道\nB. 我国汉语研究忽视了中西方文化差异性\nC. 趋从于西方理论使得汉语研究弊端明显\nD. “反向格义”风靡我国人文学科的研究", "choice": "C", "keypoints": "关联词-因果;行文脉络-分总;程度词", "most_wrong": "B", "human_count": 18154, "human_acc": 48.53475818, "source": "2021下半年省考第二十三季行测模考大赛(辽宁卷)第59题", "difficulty": 6, "formulas": 0, "history": [{"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5248151, "material": "", "question": "学者通过扎实研究,为现代通俗文学正名,不断完善现代文学的科学体系,积极倡导雅俗两种文学“比翼齐飞”。尽管如此,传统的观念还是____________的,不少纯文学作家、批评家依然瞧不起通俗文学。网络文学自然属于通俗文学范畴,而且____________,于是不少人对网络文学有一种潜在的轻视和偏见,甚至____________。比如,“网络文学是不是文学”还有争议;纸质文学的创作者被称为作家,网络文学的创作者则被称为“写手”。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 深入人心 鱼龙混杂 敬而远之\nB. 经久不衰 差强人意 不以为然\nC. 代代相传 昙花一现 嗤之以鼻\nD. 根深蒂固 鱼目混珠 不屑一顾", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-程度轻重;词的辨析-固定搭配;对应关系-重点词句对应;对应关系-解释类对应;关联关系-因果关系;成语填空", "most_wrong": "A", "human_count": 7938, "human_acc": 75.7243638196, "source": "2022下半年省考第九季行测模考大赛(通用卷)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 45847, "material": "", "question": "黄岩岛是我国的固有领土,我国对黄岩岛拥有_________的自主权。", "type": "单选题", "options": "A. 理所应当\nB. 毋庸置疑\nC. 天经地义\nD. 无可争辩", "choice": "D", "keypoints": "词的辨析-程度轻重;词的辨析-固定搭配;成语填空", "most_wrong": "B", "human_count": 735887, "human_acc": 42.7274839751, "source": "2012年广东省公务员录用考试《行测》题第18题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-程度轻重"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5629611, "material": "", "question": "①中国的生态文明研究经历了从理论到实践,而又由实践到理论的过程\n\n②在现实的社会生活实践中,我们已经深刻认识到,西方的环境伦理学理论不能很好地解决和回应中国生态文明理论和实践的需要\n\n③其研究主题更多聚焦于阿伦·奈斯、霍尔姆斯·罗尔斯顿、彼得·辛格、保罗·泰勒等人的学术思想\n\n④环境伦理学的实践哲学转向代表着新时代生态文明具有实践的理论自觉性\n\n⑤因而,中国的环境伦理学正在寻求理论的“自我主张”,适合中国实际的理论正在探索中发掘\n\n⑥对于环境伦理学的研究,长期以来多是译介西方的相关理论\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③②④①⑥⑤\nB. ④③⑤⑥①②\nC. ④①⑥③②⑤\nD. ④①⑤⑥③②", "choice": "C", "keypoints": "非首句特征;尾句特征;确定顺序", "most_wrong": "D", "human_count": 64089, "human_acc": 85.9835541201, "source": "2023下半年省考第十季行测模考大赛(北京卷)第33题", "difficulty": 3, "formulas": 0, "history": [{"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 4678603, "material": "", "question": "对下面6个句子语序排列正确的一项是:\n\n①对于任何一个民族文化而言\n\n②人类历史的前进\n\n③方能获得文化补偿\n\n④拥有文化输出与文化接受的健全机制\n\n⑤离不开文化的交流融合\n\n⑥赢得空间上的拓宽和时间上的延展", "type": "单选题", "options": "A. ①④③⑥②⑤\nB. ②⑤①④⑥③\nC. ②⑤①④③⑥\nD. ①④⑥③②⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 13279, "human_acc": 53.6938022441, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 1689102, "material": "", "question": "①在大比例尺的地图上有详细的地理背景资料时\n\n②在小比例尺的地图上很难做到真正意义上的定位布点\n\n③可以准确地布点以反映其实际分布\n\n④定位布点的精确程度取决于地图比例尺和资料的详细程度\n\n将以上几个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④①③②\nB. ③①②④\nC. ①②③④\nD. ②①③④", "choice": "A", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 16069, "human_acc": 94.1377808202, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第30题", "difficulty": 3, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"]]}, {"id": 2050204, "material": "", "question": "①我们要感恩大自然造就我们的生命,给我们来到世界的机会,感恩大自然赋予我们丰富的生活所需资源\n\n②宋代张载指出:“乾曰父,坤曰母”。就是说,天就是我们的父亲,地就是我们的母亲\n\n③我们要树立人与天地万物同属一个生命世界、生死与共的天人观,树立感恩自然、爱护自然的大自然观、大环境观和大生态观\n\n④大自然是我们生命所来与所归的地方,人人来自自然,在自然中生息,最后又回归自然\n\n⑤阳光、空气和水,人们须臾不可离,没有大自然,人就无法生活和生存,人与自然生死攸关\n\n⑥没有自然界,就没有我们的一切\n\n将上述6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑥④②⑤①③\nB. ③①⑤④②⑥\nC. ②④③①⑥⑤\nD. ④②⑥①⑤③", "choice": "D", "keypoints": "首句特征;尾句特征;确定顺序", "most_wrong": "A", "human_count": 1184227, "human_acc": 37.0432357985, "source": "2017年422联考《行测》题(新疆卷)第19题", "difficulty": 6, "formulas": 0, "history": [{"id": 15087, "material": "", "question": "①无论一个人在哪儿,只要他在一扇关着的门的后面,他就能使自己不受拘束。\n\n②没有门的屋子不是屋子,而是走廊。\n\n③在关着的门内,头脑的工作最为有效。\n\n④人不是在一起放牧的马群。\n\n⑤门是隐秘、回避的象征,是心灵躲进极乐的静谧或悲伤的秘密搏斗的象征。", "type": "单选题", "options": "A. ②①③④⑤\nB. ④①③②⑤\nC. ①③④⑤②\nD. ⑤②①③④", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 7175, "human_acc": 43.2891986063, "source": "2008年重庆市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 4678603, "material": "", "question": "对下面6个句子语序排列正确的一项是:\n\n①对于任何一个民族文化而言\n\n②人类历史的前进\n\n③方能获得文化补偿\n\n④拥有文化输出与文化接受的健全机制\n\n⑤离不开文化的交流融合\n\n⑥赢得空间上的拓宽和时间上的延展", "type": "单选题", "options": "A. ①④③⑥②⑤\nB. ②⑤①④⑥③\nC. ②⑤①④③⑥\nD. ①④⑥③②⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 13279, "human_acc": 53.6938022441, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 25197, "material": "", "question": "①它们没有超过一千年的家谱\n\n②金鱼是世界上养殖最普遍的宠物鱼类\n\n③不过有一件事是可以确定的\n\n④却没有多少证据证实它们是什么时候被驯养的\n\n⑤只有少数几个国家还没有引进\n\n⑥尽管我们知道金鱼原产于中国\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤③①⑥④\nB. ②⑤③⑥④①\nC. ②⑤⑥④③①\nD. ⑥④③①②⑤", "choice": "C", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 433895, "human_acc": 68.2326369283, "source": "2011年国家公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定顺序"]]}, {"id": 4651808, "material": "", "question": "在古代,许多诗人的作品是通过个人题壁、歌女吟唱的方式传之四方。在现代,传统文化不仅可以通过图书、报刊、音像、影视等形式进行传播,还可以通过日常生活中的用具进行传播。作为文房清玩的笺纸,由于和知识分子的生活密不可分,因此扮演了传承传统文化的角色。笺纸中不仅有图画,而且有书法,有篆刻,有诗词,有掌故,通过笺纸,人们可以重温诗词歌赋的名句,可以品味传统文化的精神。比如,林纾的宋人词意笺,陈师曾的杜甫诗意笺,都在很大程度上普及了唐诗宋词。\n\n上文表达的主要观点是:", "type": "单选题", "options": "A. 传统文化的现代传播途径以笺纸为主\nB. 唐诗宋词的普及与诗词意笺密不可分\nC. 诗词作品的传播形式古今有异\nD. 笺纸发挥了传承传统文化的重要作用", "choice": "D", "keypoints": "主题词;关联词-因果;行文脉络-分总分", "most_wrong": "C", "human_count": 78206, "human_acc": 88.7757972534, "source": "2022年深圳市考公务员录用考试《行测》试题(网友回忆版)第82题", "difficulty": 4, "formulas": 0, "history": [{"id": 4454630, "material": "", "question": "我们可能有过这样的体验,在欣赏音乐作品时,主旋律一出来,我们的脑海中就会呈现出某个具体画面,例如一条河流或一片树林。同样,我们在看莫奈的画时,可能也会感受到,河塘的流水潺潺、睡莲中萤火虫翅膀的扇动声。因此我们在欣赏艺术作品时,调动的绝不仅仅是视觉,而是所有的感官和感受能力,这样我们才会收获更多体验。就如同音乐会中,我们在现场不仅听到音乐,还看到指挥、灯光,看到琴弦乐器的闪动,听到旁人的呼吸声。除此之外,还有我们自己时而紧张,时而松弛,这些所有构成了音乐会的综合体验。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 艺术欣赏需受众全身心参与\nB. 打造综合沉浸式的音乐盛宴\nC. “视觉$+$听觉”构筑艺术通感\nD. 调动人体感官体味音乐之美", "choice": "A", "keypoints": "主题词;关联词-因果;行文脉络-分总分", "most_wrong": "D", "human_count": 220827, "human_acc": 70.3641311977, "source": "2021下半年省考第二十五季行测模考大赛(深圳卷)第74题", "difficulty": 4, "formulas": 83}, {"id": 5399786, "material": "", "question": "相对学龄前儿童的正规教育和非正规学习计划,小学阶段的发展任务似乎相当简单,不仅有国家规定的课程标准,而且学习也相对轻松,没有太重的升学压力。因此小学阶段可以归结为基本的学习需求,但仍然有在线教育的用武之地。在线教育依靠成熟的流媒体手段能够提供更加形象生动的教学,符合这一阶段儿童的身心特征。在线教育还能够充分考虑儿童在学习需求和生活条件上的不同,提供差异化课后服务。除了正规学习任务之外,小学阶段还有足够的时间和空间允许父母和当地社区的参与,而在线教育可以作为有效资源和工具提供支持。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 在线教育能为义务教育阶段的学生提供多元选择\nB. 小学阶段是人生命早期阶段良好的学习发展起点\nC. 在线教育能够满足小学阶段学生的基本学习需求\nD. 学前儿童教育的特殊性使得在线教育无用武之地", "choice": "C", "keypoints": "主题词;关联词-因果;行文脉络-分总分", "most_wrong": "A", "human_count": 11964, "human_acc": 63.9836175192, "source": "2022下半年省考第二十一季行测模考大赛(河南卷)第34题", "difficulty": 6, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 5391795, "material": "2019年四川省年末城乡就业人员中,乡村就业人员3173万人,比上年末减少28万人。城乡就业构成比由上年的34.4%:65.6%变为35.1%:64.9%。城乡就业人员按产业划分,第一产业1716万人,第二产业1334.7万人,第三产业1838.3万人。全年争取中央财政就业专项资金31.5亿元,增长29.6%;省级财政就业专项资金6.4亿元,与上年持平。\n\n        全年城镇新增就业107.8万人,比上年增加0.7万人;城镇失业人员再就业30.7万人,比上年减少0.9万人;就业困难人员就业9.9万人,比上年减少1.3万人。年末实有城镇登记失业人员50.4万人,比上年末减少2.9万人。\n\n        2019年末农村劳动力转移输出2482.6万人,比2018年减少29万人。其中省内转移1368.6万人,减少45.4万人;省外输出1114万人;全年实现劳务收入4923.4亿元,增长10.2%,比上年提高了2.4个百分点。\n\n        全省现有人力资源服务机构1420家,从业人员3.2万人,设立固定招聘场所1314个,年服务2441万人次,服务用人单位142万余家,举办现场招聘会3.5万次,促进520.7万人实现就业和流动。", "question": "2019年四川省通过农村劳动力转移输出实现劳务收入比2017年约增长:", "type": "单选题", "options": "A. 12.8%\nB. 14.2%\nC. 16.5%\nD. 18.8%", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 338119, "human_acc": 76.5156646033, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4933275, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "与2018年相比,2019年S省建筑业增加值约增长了:", "type": "单选题", "options": "A. 7.2%\nB. 8.0%\nC. 8.5%\nD. 19.3%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 299975, "human_acc": 65.7551462622, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第93题", "difficulty": 6, "formulas": 0}, {"id": 5198480, "material": "改革开放以来,S市作为中国第一个经济特区,凭借改革精神、政策红利以及地缘优势迅速发展成为国内最发达地区之一。2018-2020年S市实现生产总值分别为24221.98亿元、26927.09亿元和27670.24亿元,同比分别增长7.6%、6.7%和3.1%。分产业来看,2020年S市第一产业增加值25.79亿元,同比下降3.1%;第二产业增加值10454.01亿元,同比增长1.9%;第三产业增加值17190.44亿元,同比增长3.9%。第一、二、三产业增加值比例为0.1:37.8:62.1。\n\n        2020年全市现代服务业增加值同比增长6.4%,现代服务业增加值占第三产业增加值比重为76.1%,其中金融业增加值4189.63亿元,同比增长9.1%,信息传输、软件和信息技术服务业增加值2883.49亿元,同比增长11.3%,是拉动现代服务业增长的主要力量。\n\n        2020年全市货物贸易进出口总额30502.5亿元,同比增长2.4%,高于2019年增速3.0个百分点。其中,出口总额16972.7亿元,同比增长1.5%。", "question": "2020年全市货物贸易进出口总额比2018年约增长:", "type": "单选题", "options": "A. 1.79%\nB. 2.23%\nC. 3.01%\nD. 7.90%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 153985, "human_acc": 82.3346429847, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0}, {"id": 2028352, "material": "2015年我国钟表全行业实现工业总产值约675亿元,同比增长$3.2\\%$,增速比上年同期提高1.7个百分点。\n\n        全行业全年生产手表10.7亿只,同比增长$3.9\\%$,完成产值约417亿元,同比增长$4.3\\%$,增速提高1.9个百分点;生产时钟(含钟心)5.2亿只,同比下降$3.7\\%$,完成产值162亿元,同比下降$4.7\\%$,降幅扩大1.3个百分点;钟表零配件、定时器及其它计时仪器产值96亿元,同比增长$14.3\\%$,增速基本保持上年水平。\n\n        2015年我国钟表行业规模以上工业企业主营业务收入365.8亿元,同比增长$8.7\\%$;实现利润23.4亿元,与上年相比下降$1.5\\%$,而2015年轻工行业主营业务利润率(利润/主营业务收入)的平均水平为$7.57\\%$。\n\n        2015年我国钟表行业海关进出口总额为92.5亿美元,同比增长$4\\%$,完成出口总额为57.7亿美元,同比增长$8.3\\%$,进口额34.8亿美元。出口总额中加工贸易额占$47\\%$,较上年缩小2个百分点。", "question": "2015年我国钟表全行业生产时钟(含钟心)的产值与2013年相比约:", "type": "单选题", "options": "A. 上升了$11\\%$\nB. 下降了$11\\%$\nC. 上升了$8\\%$\nD. 下降了$8\\%$", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 2191826, "human_acc": 71.5692304042, "source": "2017年国家公务员录用考试《行测》题(地市级)第121题", "difficulty": 5, "formulas": 345}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 2049578, "material": "根据以下资料,回答下列小题。\n\n        2015年国家自然科学基金委全年共接收173017项各类申请,同比增长约$10\\%$,择优资助各类项目40668项,比上年增加1579项,资助直接费用218.8亿元,平均资助强度(资助直接费用与资助项数的比值)53.8万元,各项工作取得新进展新成效。\n\n        在研究项目系列方面,面上项目资助16709项,比上年增加1709项,占总项数的$41\\%$,直接费用102.41亿元,平均资助率(资助项目占接收申请项目的比重)$22.9\\%$,同比下降2.5个百分点。重点项目资助625项,同比增长约$3.3\\%$,直接费用17.88亿元。重大项目资助20项,直接费用3.18亿元。\n\n        在人才项目系列方面,青年科学基金资助16155项,比上年减少266项,占总项数的$40\\%$,直接费用31.95亿元,平均资助率$24.6\\%$,同比下降0.7个百分点。地区科学基金资助2829项,比上年增加78项,直接费用10.96亿元,有力推进了欠发达区域人才稳定与培养。优秀青年科学基金资助400人,国家杰出青年科学基金资助198人,新资助创新研究群体项目38项,促进了优秀人才和团队成长。", "question": "2015年重点项目的平均资助强度约为:", "type": "单选题", "options": "A. 213万元\nB. 286万元\nC. 342万元\nD. 398万元", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 981792, "human_acc": 92.1525129559, "source": "2017年422联考《行测》题(新疆卷)第108题", "difficulty": 3, "formulas": 6, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 2758374, "material": "2020年9月份,全国生产原煤3.3亿吨,同比下降$0.9\\%$,降幅比上月同比增速(下同)扩大0.8个百分点;日均产量1104万吨,环比增加53万吨。1-9月份,生产原煤27.9亿吨,同比下降$0.1\\%$。9月份,进口煤炭1868万吨,环比减少198万吨,同比下降$38.3\\%$,降幅比上月扩大1.0个百分点;1-9月份,进口煤炭2.4亿吨,同比下降$4.4\\%$。\n\n        2020年9月份,全国生产原油1610万吨,同比增长$2.4\\%$,增速比上月加快0.1个百分点;加工原油5735万吨,增长$1.3\\%$,比上月回落7.9个百分点。1-9月份,生产原油14625万吨,同比增长$1.7\\%$;加工原油5.0亿吨,同比增长$2.9\\%$。9月份,进口原油4848万吨,同比增长$17.6\\%$,增速比上月加快5.0个百分点。1-9月份,进口原油4.2亿吨,同比增长$12.7\\%$。\n\n        2020年9月份,全国生产天然气146亿立方米,同比增长$7.6\\%$;日均产量4.9亿立方米,环比增加0.3亿立方米。1-9月份,生产天然气1371亿立方米,同比增长$8.7\\%$。9月份,进口天然气866万吨,同比增长$5.5\\%$,增速比上月回落7.7个百分点。1-9月份,进口天然气7373万吨,同比增长$3.7\\%$。\n\n        2020年9月份,全国发电量为6315亿千瓦时,同比增长$5.3\\%$,增速比上月回落1.5个百分点;日均发电量210.5亿千瓦时,环比减少23亿千瓦时。1-9月份,发电量54086亿千瓦时,同比增长$0.9\\%$。", "question": "2020年9月份,全国进口原油同比增量约是进口天然气的多少倍?", "type": "单选题", "options": "A. 3.2\nB. 5.6\nC. 18.0\nD. 16.1", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 176161, "human_acc": 53.3131623912, "source": "2021上半年省考第四季行测模考大赛(广东卷)第93题", "difficulty": 6, "formulas": 16, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 5616312, "material": "", "question": "著名的阿拉比卡咖啡品种原产于埃塞俄比亚等凉爽热带高地,因口味上佳而价格高昂。不过,该品种适宜的最佳年均温度为$18^{\\circ}C$—$22^{\\circ}C$,对气候变化的弹性十分有限,全球的阿拉比卡咖啡种植户不得不承受升温和雨量不稳定带来的影响。据英国《自然·植物》杂志近日发表的一项研究显示,西非一种鲜为人知的稀有狭叶咖啡品种,新近被证明与高品质的阿拉比卡咖啡风味相似,而且更耐高温和降雨量变化。研究者认为,确保全球咖啡供应链能适应未来气候变化是咖啡行业面临的一个主要挑战,从这个角度来说,有必要采取措施保护野生狭叶,并进一步研究其作为耐气候变化、高品质作物种类和种质资源的潜力。\n\n这段文字意在论述:", "type": "单选题", "options": "A. 野生狭叶咖啡自身具备的高品质发展空间\nB. 应着力开发具有“气候弹性”的狭叶咖啡\nC. 采取措施研究并保护野生狭叶咖啡的原因\nD. 应对全球咖啡供应链问题需从气候角度入手", "choice": "C", "keypoints": "主题词;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 52051, "human_acc": 71.097577376, "source": "2023下半年省考第九季行测模考大赛(四川卷)第37题", "difficulty": 4, "formulas": 2, "history": [{"id": 4792121, "material": "", "question": "天下太平的时候,朝廷是要推崇文化和学术的,考量文官的标准,不但要看他的政绩,也要关注他的文化修养如何。因为按照正常的逻辑,做官要有“经略之才”,那么“知识就是力量”,文化修养就自然成了政绩的铺垫和补充。从上到下,应该都难以相信,一个“大老粗”会成为一个“治世能臣”。所以,在官场的圈子中,官员们的出身、门第、谈吐、书法、词章、风度、名望、口碑等等,都是评价的标准。那么既然这样的比较成为了一种“风气”,古代官员的“读书热”也自然是水到渠成。\n\n这段文字主要说明的是:", "type": "单选题", "options": "A. 古代官员“读书热”的原因\nB. 古代官员加强自身文化修养的重要性\nC. 古代太平时期对文官的评价标准过于单一\nD. 古代很多官员读书带有一定的功利性", "choice": "A", "keypoints": "主题词;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 1909, "human_acc": 92.9282346778, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 4932851, "material": "", "question": "通识课的授课逻辑是和学生分享学科产生和发展的过程以及与人类活动的相关性。当下,社会普遍把前途和职业发展作为评价学科、专业的标准。在最容易被塑造和改变的年纪,如果过分看重培养职业技能,而不注重思维的培养和创造的体验,这种想法是短视的。通识课程转化为经济效益的过程缓慢,但却是提升原始创新能力的基础。个人可以在学习中开拓视野,领略人类思想的深度和力度,接受心智的训练,对人生与社会进行反思,最终形成健全而有力的人格。因此,通识教育的目的正在于此——提升学生的基本素质,训练学生的思维能力,使他们有足够的知识宽度、学习能力、健全心智去适应不断变化的社会需求。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 开设通识课程弥补了职业教育的不足\nB. 通识教育的意义是提升原始创新能力\nC. 大众需转变观念,避免教育功利化\nD. 通识教育的目的在于提升学生素质和思维", "choice": "D", "keypoints": "主题词;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 223544, "human_acc": 88.8563325341, "source": "2022上半年省考第十七季行测模考大赛(陕西卷)第52题", "difficulty": 3, "formulas": 0}, {"id": 5616278, "material": "", "question": "ENSO(厄尔尼诺-南方涛动)是发生在赤道中东太平洋的冷暖振荡现象,预估全球变暖下ENSO的变化,一直是气候学研究的重要领域。此前的预估性研究通常是基于数值模式模拟,但数值模式自身的缺陷给预估带来了很大的不确定性,因此,很难在数值模拟中获取可信的ENSO变化信号。近日,中科院大气所提出了一个新的ENSO变化约束机制,该研究基于热力学理论,根据大气饱和水汽压随着温度增加而接近指数增长,也就是说,水汽对温度的响应随着温度增长而增强。因此,在全球变暖背景下,同样振幅的ENSO能造成更强的对流层水汽异常,进而造成破坏性更强的全球大气环流、气温和降水异常。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 气候学研究需要扎实的理论基础作为支撑\nB. 热力学理论研究较数值模式模拟更加精准\nC. 气温升高或将导致ENSO带来更大气候危害\nD. ENSO的研究对预防自然灾害具有重要价值", "choice": "C", "keypoints": "主题词;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 59300, "human_acc": 75.8887015177, "source": "2023下半年省考第九季行测模考大赛(四川卷)第32题", "difficulty": 4, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 2264426, "material": "", "question": "强调谋略和构想,是军事战略指导的题中之义,但这种构想必须从客观实际出发,与力量手段相匹配。在中国革命战争初期,“城市中心论”和“农村包围城市”两条路线的命运之所以截然不同,就是因为前者机械照搬俄国十月革命的经验,后者是在科学分析中国国情以及敌我力量的构成、对比和布局等基础上,提出的一种符合中国革命客观实际的战略构想。因此,确定战略目标或制定战略方针,都要依据国家安全总体战略,结合政治、经济、外交、文化,特别是现有军事力量的实际状况来确定。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 军事战略构想不能机械照搬固有模式\nB. 科学分析国情是战略制定的必要前提\nC. 军事战略构想应与客观实际紧密结合\nD. 战略选择应该取决于特定的时代要求", "choice": "C", "keypoints": "关联词-因果;程度词", "most_wrong": "B", "human_count": 3462953, "human_acc": 72.4825026502, "source": "2019年国家公务员录用考试《行测》题(地市级网友回忆版)第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 2737753, "material": "", "question": "当前,我国在高等教育发展战略中,对高校之间实施的是差异化、层级化的政策支持和资源分配方式,对高校整体发展则实施以科研加教学导向,尤其强调科研学术的激励政策和制度安排。在这种制度安排下,高校自然将自身发展的重心放在教师的科研学术水平的提高上,而对于师德具体制度的制定和执行缺乏足够的耐心和动力。出现了高校在选聘导师时,对学历、专业、职称的要求极为重视,从未或很少考核选聘导师的师德师风是否达标;对新选聘入职后的导师也很少进行有关师德方面的系统培训,不利于提高教师整体师德认知水平。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 我国“科研加教学导向”的高校发展战略存在诸多不足\nB. 以科研为中心的高校教育制度导致了高校对师德的忽视\nC. 高校选聘导师的标准应适度削弱科研要求,突出教学导向\nD. 高校应对入职后导师开展系统化师德培训,提升综合素质", "choice": "B", "keypoints": "关联词-因果;程度词", "most_wrong": "D", "human_count": 143182, "human_acc": 72.9169867721, "source": "2021上半年省考第二季行测模考大赛(四川卷)第38题", "difficulty": 4, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 28483, "material": "", "question": "中华民族的强国梦一直是百年来国人的追求,实力之强与道德之强是通往强国之路的必经之途。道德是软实力,失去道德之强,绝无实力之强。\n\n本段阐述的主要观点是:", "type": "单选题", "options": "A. 道德是软实力\nB. 实力之强与道德之强同样重要\nC. 实力之强比道德之强重要\nD. 道德之强是实力之强的必要保障", "choice": "D", "keypoints": "程度词", "most_wrong": "B", "human_count": 23716, "human_acc": 85.2673300725, "source": "2008年江苏省公务员录用考试《行测》题(B类)第127题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 3753, "material": "国家统计局小康研究课题组,对城镇居民生活小康标准5个方面12项指标进行监测显示:1999年我国城镇居民生活水平小康实现程度达到94.3%。在12项小康指标中有10项达到或者基本达到小康初始水平。但是还有两项指标,即文化教育娱乐支出比重和人均绿地面积与小康标准有一定差距。从5个方面来看,经济发展、物质生活和人口素质3个方面小康实现程度已经达到100%;精神生活水平和社会保障水平2个方面指标分别只达到86.7%和75.6%。各地区城市小康实现程度也存在较大差距。三大地带相比,1998年实现程度综合得分仍然差异较大,中、西部比东部分别低7.9个百分点和12.97个百分点。但与1996年相比,东部地区小康实现程度由91.87%下降到91.70%;中、西部实现程度分别由79.8%和74.4%提高到83.80%和78.73%。", "question": "从上述资料中,能推出的是:", "type": "单选题", "options": "A. 地理环境的差异是小康实现程度差异的原因\nB. 东部地区比中、西部地区小康水平实际增长值低\nC. 东部地区比中、西部地区小康水平实现程度高\nD. 小康标准的5个方面均有3项不同的指标", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 5837, "human_acc": 70.3100908001, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 2739949, "material": "", "question": "某乒乓球队对参加过世锦赛及奥运会的队员进行集训,其中参加过世锦赛的队员与参加过奥运会的队员人数比为4:3,两者都参加过的队员为3人,是参加过奥运会队员人数的$\\frac{1}{3}$。小明只参加过世锦赛,现在由他随机挑选一人进行三局两胜的热身赛,已知小明每局的胜率为$60\\%$。则他正好对阵只参加过奥运会的队员,并取得胜利的概率为:", "type": "单选题", "options": "A. $\\frac{6}{18}\\times\\frac{81}{125}$\nB. $\\frac{6}{18}\\times\\frac{9}{25}$\nC. $\\frac{6}{17}\\times\\frac{36}{125}$\nD. $\\frac{6}{17}\\times\\frac{81}{125}$", "choice": "D", "keypoints": "给情况求概率;两集合", "most_wrong": "C", "human_count": 61669, "human_acc": 14.6994438048, "source": "2021上半年省考第二季行测模考大赛(河南卷)第49题", "difficulty": 7, "formulas": 504, "history": [{"id": 2066998, "material": "", "question": "从一个装有三个红球两个白球的盒子里摸球,那么连续两次摸中红球的概率为(  )。", "type": "单选题", "options": "A. 0.1\nB. 0.16\nC. 0.3\nD. 0.45", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 249116, "human_acc": 73.0860322099, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 826129, "material": "", "question": "某办公室5人中有2人精通德语。如从中任意选出3人,其中恰有1人精通德语的概率是多少:", "type": "单选题", "options": "A. 0.5\nB. 0.6\nC. 0.7\nD. 0.75", "choice": "B", "keypoints": "给情况求概率", "most_wrong": "C", "human_count": 451465, "human_acc": 70.2278138948, "source": "2014年四川省公务员录用考试《行测》题(下半年)第49题", "difficulty": 4, "formulas": 0}, {"id": 1130069, "material": "", "question": "某部门共有82人,其中男性62人,本省籍42人,不是本省籍的女性11人,则本省籍的男性人数有:", "type": "单选题", "options": "A. 33\nB. 21\nC. 22\nD. 23", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 55491, "human_acc": 84.125353661, "source": "2010年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 3, "formulas": 0}, {"id": 2037778, "material": "", "question": "袋子里有6个红球和4个白球,随机取出3个球,问取出的球中红球不超过一个的概率最接近以下哪个?", "type": "单选题", "options": "A. 0.1\nB. 0.2\nC. 0.3\nD. 0.4", "choice": "C", "keypoints": "给情况求概率", "most_wrong": "B", "human_count": 421125, "human_acc": 64.6945681211, "source": "2016年423联考《行测》题(浙江B卷)第40题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给情况求概率"], ["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 4454601, "material": "", "question": "随着现代化进程的不断深入,城市也面临着日新月异的变化,一直以来,传统的消解,常被认为是城市发展的负面效应而饱受________。实际上,诸多事实证明,现代性的发展恰恰是传统在以更强的力度向大城市汇聚的过程。比如在某些城市建立的博物馆、美术馆等,在一定程度上已经促使文化传统以另一种新形式创新发展。这也意味着,摩天大楼与历史文化遗产,并非____________、相互排斥;如果配置合理,二者完全可以相互兼容、____________,并以全新的方式提升人们的生活品质。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 指责 针锋相对 求同存异\nB. 误解 南辕北辙 交相辉映\nC. 争议 分庭抗礼 取长补短\nD. 诟病 水火不容 相得益彰", "choice": "D", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-并列关系;词的辨析-词义侧重;混搭填空", "most_wrong": "C", "human_count": 197726, "human_acc": 83.0856842297, "source": "2021下半年省考第二十五季行测模考大赛(陕西卷)第36题", "difficulty": 4, "formulas": 0, "history": [{"id": 14187, "material": "", "question": "在科学技术飞速发展的今天,我们的企业经营______也要不断更新:", "type": "单选题", "options": "A. 观念\nB. 理念\nC. 理想\nD. 观点", "choice": "B", "keypoints": "词的辨析-感情色彩;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 37145, "human_acc": 94.8202988289, "source": "2008年重庆市公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-感情色彩"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"], ["言语理解与表达", "逻辑填空", "混搭填空"]]}, {"id": 2578787, "material": "", "question": "随着互联网的出现,人们求知有了更便捷、更有效率的渠道。但是,互联网企业在发展初期为了粘住市场,基本都是免费向网民提供有关的资讯和知识,这养成了中国网民对互联网的免费消费习惯,对于网上阅读需要付费还不能适应,甚至有所抵触。在这样的背景之下,一些知识付费APP在市场开发方面并不顺畅。但是,正是这种借助于互联网的APP,使知识显示了它的市场价值,而且由于新技术的普及,相比于传统的授课和著书,它一方面为知识提供者赢得了更多的经济利益,另一方面又为知识消费者节省了大量费用。\n\n这段文字意在强调互联网知识付费:", "type": "单选题", "options": "A. 为商家和消费者带来了双赢\nB. 发展有赖于新技术的普及\nC. 使人们认识到了知识的市场价值\nD. 逐渐改变了网民的传统消费习惯", "choice": "A", "keypoints": "关联词-转折;关联词-并列;行文脉络-分总", "most_wrong": "C", "human_count": 1598653, "human_acc": 73.1243115298, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第40题", "difficulty": 5, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 43161, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年,美、欧、日来华的发明专利申请总量,是同期我国向其提交总量的几倍左右:", "type": "单选题", "options": "A. 4\nB. 9.5\nC. 14\nD. 33", "choice": "B", "keypoints": "现期倍数", "most_wrong": "C", "human_count": 47969, "human_acc": 82.3573557923, "source": "2011年上海市公务员录用考试《行测》题(A类)第78题", "difficulty": 4, "formulas": 0, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"]]}, {"id": 4674488, "material": "", "question": "防范打击“非法引流”犯罪活动,需要网民提升警觉、合力共治。“非法引流”的犯罪手段比较隐蔽,迷惑性强,令人防不胜防,比如,利用黑客技术在正规网站中嵌入“暗链”实现引流,通过直播平台为涉及不良信息的聊天群拉人,发布虚假招工信息诱导网民加入各种陷阱群等。其手段再高明,也是利用了人性弱点。网民不仅需要技术防护,更需要自我保护。提高警惕,筑牢意识防线,不要轻易添加陌生人好友、点击陌生人发来的链接,更不要轻易转账,才能避免被不法分子利用、沦为牟利工具。\n\n这段文字重在强调:", "type": "单选题", "options": "A. 莫点陌生转账链接谨防掉入网络诈骗陷阱\nB. 网民需要技术防护也应提升自我保护意识\nC. 提高网民防范意识铲除“非法引流”土壤\nD. 揭示网络“非法引流”中的隐蔽犯罪手段", "choice": "C", "keypoints": "关联词-对策;行文脉络-总分;程度词", "most_wrong": "B", "human_count": 172374, "human_acc": 40.797916159, "source": "2022上半年省考第二季行测模考大赛(四川卷)第44题", "difficulty": 7, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}, {"id": 219993, "material": "", "question": "所谓知识经济,是指建立在知识和信息的生产、分配和使用上的经济,是以智力资源的占有、配置以及知识的生产、分配和使用为最重要因素的经济。\n\n这段话主要是讲:", "type": "单选题", "options": "A. 知识经济的来源\nB. 知识经济的含义\nC. 知识经济的形式\nD. 知识经济的特点", "choice": "B", "keypoints": "行文脉络-总分", "most_wrong": "D", "human_count": 225916, "human_acc": 91.780130668, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第80题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 2557982, "material": "", "question": "企业是一个特殊的组织,企业家是企业的灵魂。企业的命运是由企业的创始人赋予给企业的性格和气质决定。一个企业的创始人具有非凡的能力和勇气,能让自己的企业做大、做强、做久。这就意味着,拥有专业团队和卓越品牌的企业家,也一定能够在复杂的市场环境和激烈的市场竞争中通过特定的产品和服务获利市场资源,从而找到企业的立足之地。\n\n以下各项如果为真,能质疑上述结论的有:", "type": "不定项", "options": "A. 甲企业的创始人具有非凡的能力和勇气,但没能拥有专业团队和卓越品牌\nB. 乙企业拥有专业团队和卓越品牌,创始人显示出的性格和气质却平淡无奇\nC. 丙企业的创始人具有非凡的能力和勇气,但该企业很快就被竞争对手淘汰\nD. 丁企业短时间能够在市场中占有一席之地,与其专业团队的努力密不可分", "choice": "AC", "keypoints": "拆桥;削弱论据", "most_wrong": "B", "human_count": 15194, "human_acc": 14.3938396736, "source": "2020年上半年省考第三十季行测模考大赛(陕西卷)第106题", "difficulty": 7, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"], ["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 5562969, "material": "", "question": "敦煌医学文献研究多是从文献辑录、释读的视角进行文献考证,缺乏多元视域下对文献产生、流变等方面的考察。基于此,应置身于敦煌西域文献的广阔天地中,形成时间与空间双向贯通的研究体系。从空间来看,敦煌西是新疆乌鲁木齐、楼兰古城等地区,东是甘肃兰州、武威等地区,这些地区有丰富的出土医学文献可资考察。从时间来看,甘肃兰州、武威包括河西走廊等地出土的汉简医学文献涉及秦汉及以前医学的一些基本情况,黑水城出土医学文献又反映了宋元医学的基本情况。此外,目前学界对敦煌医学文献的使用还多在汉文文献领域,其他语言文献则因受制于交通悬隔、语言不通等客观条件,使用者还较少。对它们进行比较研究可以找到敦煌地区与其他地区文化交流的“蛛丝马迹”,值得学界大力耕耘。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 应大力拓展敦煌医学文献研究的广度与深度\nB. 敦煌文献研究要注重时间和空间的双向延伸\nC. 敦煌医学文献的研究应立足于西域本土文化\nD. 要积极探索多元视域下敦煌文献研究新路径", "choice": "A", "keypoints": "主题词;关联词-并列;关联词-对策", "most_wrong": "D", "human_count": 55944, "human_acc": 43.8349063349, "source": "2023下半年省考第二季行测模考大赛(北京卷)第32题", "difficulty": 7, "formulas": 0, "history": [{"id": 4703489, "material": "", "question": "实务界和理论界一直重点讨论保证金账户担保,对更一般的保证金担保缺少关注。在保证金账户担保之外,实践中有大量的保证金担保。但有保证金之名的,未必都有保证金之实,应以保证金的要素甄别保证金担保。另外,对包括保证金账户担保在内的所有保证金担保而言,保证金是否归属于给出人、与所担保债务有发生上的牵连性、保证金权益是否发生及其具体数额皆具有不确定性,因此,这些特点又决定了相关规则在实行时的特殊性。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 保证金担保规则 保证金担保甄别 所有保证金担保\nB. 特殊保证金担保 保证金担保要素 保证金担保甄别\nC. 特殊保证金担保 保证金相关规则 保证金担保特点\nD. 保证金担保要素 保证金账户保护 保证金担保规则", "choice": "A", "keypoints": "主题词;关联词-并列;关联词-对策", "most_wrong": "D", "human_count": 11298, "human_acc": 29.5539033457, "source": "2022上半年省考第六季行测模考大赛(江苏卷)第21题", "difficulty": 7, "formulas": 0}, {"id": 5507584, "material": "", "question": "传统学术期刊大部分以纸质媒介作为传播途径,对微博、微信等新型传播媒介的关注度较弱。当前,传统学术期刊的客户群不断被多方新媒体冲击,纸质媒体的发行量不断下滑,这导致学术期刊在融媒体时代发出声音的途径狭窄且易被忽视。学术期刊虽然拥有大量的原创性内容,但由于不擅长新媒体运营,缺乏积极的观念转变和新媒体制作能力,有些虽然启动微信、微博等新的传播形式,但无非是纸质版本的复制再现,这显然无法满足受众对移动阅读和互动分享的需求,导致学术期刊受众群无法扩大甚至逐渐流失。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 与新媒体融合发展是破解传统纸媒困境的关键\nB. 学术期刊亟需加快与新媒体的创新融合发展\nC. 传统纸媒是制约学术期刊快速发展的重要因素\nD. “互联网+原创”才能扩大学术期刊受众群体", "choice": "B", "keypoints": "主题词;关联词-并列;关联词-对策", "most_wrong": "A", "human_count": 41264, "human_acc": 84.6015897635, "source": "2023上半年省考第十季行测模考大赛(四川卷)第22题", "difficulty": 3, "formulas": 0}, {"id": 5271143, "material": "", "question": "跃龙门隧道属于极高风险隧道,不良地质复杂多变,面对“软岩大变形群洞变形效应”的难题,参建人员充分发扬铁道兵精神,将原有中间平导位置进行了外移调整,以减弱“群洞”影响。同时成立隧道通风施工技术研究中心,解决有毒有害气体的排出。在尝试多种方法后,他们又向行业外“借智”,独创“特长型高瓦斯隧道阶段型动态施工通风技术”,彻底解决特长型、复杂型隧道施工通风安全及高瓦斯管控的难题。最后,针对大变形采用“主动控制”,结合跃龙门隧道的机械化配置配套施工体系,首创了软岩大变形两台阶带仰拱(短台阶)快速封闭成环施工工法,确保了跃龙门隧道全线的顺利贯通。\n\n对这段文字概括最恰当的是:", "type": "单选题", "options": "A. 用独创技术解决跃龙门隧道难题\nB. 多举措保障施工隧道的全线贯通\nC. 新施工工法对跃龙门隧道的意义\nD. 如何破解跃龙门隧道的施工难题", "choice": "D", "keypoints": "主题词;关联词-并列;关联词-对策", "most_wrong": "B", "human_count": 135452, "human_acc": 40.4283436199, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第43题", "difficulty": 7, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"]]}, {"id": 4490308, "material": "", "question": "依据经济学的基本原理,一国的产出由人口、资本和生产效率决定。伴随着我国目前劳动人口减少、人口红利边际效应递减,如果人口质量和素质不能得到有效提升,如果生产效率不能因为科技创新而得到提高,就难以适应改革发展的需求,对供给和产出造成消极影响。因此,一方面要提升人力资本水平,拓展人口质量红利和人的全面发展能力,另一方面要依靠科技创新提高生产效率。通过这两个方面来提质增效,能更好对冲人口红利变化的影响,为经济可持续发展奠定更加坚实的基础。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 对冲人口红利变化是适应改革发展的应有之策\nB. 应进一步提高生产效率,促进经济可持续发展\nC. 应提高人力资本水平并以科技创新助力生产\nD. 拓展人口红利和提高生产效率需“双管齐下”", "choice": "C", "keypoints": "关联词-对策;关联词-因果;行文脉络-分总分", "most_wrong": "D", "human_count": 229881, "human_acc": 51.351786359, "source": "2021下半年省考第二十七季行测模考大赛(深圳卷)第81题", "difficulty": 6, "formulas": 0, "history": [{"id": 5445724, "material": "", "question": "生态修复请求分为生态修复的行为请求和费用请求,前者是为了防止生态环境权益损害的发生或扩大,请求责任人停止污染破坏行为;当被破坏的生态环境无法恢复时,请求责任人进行人工修复。如果责任人不具有修复能力或意愿,可请求责任人承担修复费用。因此,修复行为请求应作为首要诉求,在责任人不能或不愿进行修复时,才能提出修复费用请求。在司法实践中,很多公益诉讼人却往往将修复费用请求作为首要诉求,但由于诉求和判决的修复费用数额不易确定,责任主体短期内难以承担修复费用,生态修复工作很难有效开展。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 应该制定生态修复费用的分级标准\nB. 修复费用请求往往很难得到有效落实\nC. 应根据责任人的能力确定生态修复诉求\nD. 生态修复诉讼应当首先提出修复行为请求", "choice": "D", "keypoints": "关联词-对策;关联词-因果;行文脉络-分总分", "most_wrong": "B", "human_count": 1786992, "human_acc": 62.8833816827, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第57题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 43159, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年,美、欧、日来华的发明专利申请量中,美国所占的比重约为:", "type": "单选题", "options": "A. 29.3%\nB. 32.7%\nC. 38.0%\nD. 50.5%", "choice": "A", "keypoints": "现期比重", "most_wrong": "B", "human_count": 48406, "human_acc": 77.2342271619, "source": "2011年上海市公务员录用考试《行测》题(A类)第77题", "difficulty": 4, "formulas": 0, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"]]}, {"id": 5110994, "material": "", "question": "今天,彩陶早已退出了人们的生活,但在中国人的日常生活中,彩陶的影响____________。人们常说华夏文明5000年不断流,纵然是远在数千年前的彩陶,它的流风余韵依然____________。因为有了陶器,我们的上古先民们可以喝开水、吃熟食、饮美酒。饮食烹调,由生存之必需,转变成一种生活美学。而精致的饮食文化,又将中国的文明引向了“礼”的层面。中华优秀传统文化之所以有着____________的魅力,正是因为它与我们的生活、与生命最本质的欲求有着密不可分的联系。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 风流云散 绵延不绝 别具一格\nB. 日渐式微 不绝如缕 历久弥新\nC. 比比皆是 余音绕梁 与众不同\nD. 无处不在 袅袅不断 经久不衰", "choice": "D", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;对应关系-重点词句对应;关联关系-因果关系;成语填空", "most_wrong": "B", "human_count": 9976, "human_acc": 92.9029671211, "source": "2022下半年省考第三季行测模考大赛(通用卷)第38题", "difficulty": 3, "formulas": 0, "history": [{"id": 8187, "material": "", "question": "他并不富裕,但还________照顾比他自己更穷的亲戚。", "type": "单选题", "options": "A. 救济\nB. 周济\nC. 周恤\nD. 赞助", "choice": "B", "keypoints": "关联关系-转折关系;词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 52352, "human_acc": 67.5217756724, "source": "2009年广东省公务员录用考试《行测》题第16题", "difficulty": 5, "formulas": 0}, {"id": 14109, "material": "", "question": "举目眺望,河那边的深林被(    )笼罩着,黄昏降临了。", "type": "单选题", "options": "A. 暮秋\nB. 暮景\nC. 暮霭\nD. 暮气", "choice": "C", "keypoints": "词的辨析-固定搭配;实词填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 41974, "human_acc": 62.986610759, "source": "2009年四川省公务员录用考试《行测》题(上半年)第23题", "difficulty": 5, "formulas": 0}, {"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 4704608, "material": "", "question": "由于环境污染,很多城市饮用水水源地的品质在________。\n\n填入划横线部分最恰当的一项是(    )。", "type": "单选题", "options": "A. 退化\nB. 蜕化\nC. 蜕变\nD. 消解", "choice": "A", "keypoints": "词的辨析-固定搭配;关联关系-因果关系;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 10823, "human_acc": 90.9267301118, "source": "2019年福建省选调生考试《行政职业能力测验》第36题", "difficulty": 4, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "关联关系-转折关系"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-固定搭配"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-因果关系"], ["言语理解与表达", "逻辑填空", "成语填空"]]}, {"id": 5438713, "material": "", "question": "长期以来,我国的医疗健康和养老服务分别由不同类型、不同层级的机构提供,政策制定和监督管理职能分散于卫生、民政等多个部门。推进医养结合,需要把各方面的资源整合起来,协同提供服务。比如,医疗卫生机构可以在养老机构中设立医疗服务站点,提供嵌入式医疗卫生服务;养老机构可以改造和增加护理型床位和设施,增强内设医疗卫生机构服务能力,与医疗卫生机构开展签约合作,为老人提供预约就诊绿色通道等医疗服务。只有推动医疗、康复、护理、养老服务更好实现资源共享、服务衔接,医养结合服务质量才能不断迈上新台阶。\n\n这段文字的关键词是:", "type": "单选题", "options": "A. 医养结合 资源共享 服务衔接\nB. 医疗健康 资源整合 协同服务\nC. 医养结合 养老服务 资源整合\nD. 养老服务 资源共享 服务衔接", "choice": "A", "keypoints": "主题词;关联词-对策;特殊问法", "most_wrong": "C", "human_count": 2997, "human_acc": 73.4734734735, "source": "2023上半年省考第三季行测模考大赛(新疆兵团卷)第49题", "difficulty": 4, "formulas": 0, "history": [{"id": 5414931, "material": "", "question": "随着改革春风吹遍大江南北,新生汉语字词便如雨后春笋般争相迸出。“皮肤衣”“车厘子”······伴随着社会的发展,衣食住行的各个领域都出现了大量的新生汉语字词。从某种意义上讲,这些新生字词甚至可以说是一个反映社会发展状况的晴雨表。对于这些新生字词,我们应该敞开胸怀,但也不要不加分辨、没有原则地全盘照收。对于新文化运动时期部分学者提出的以拉丁字母取代汉字的“拉丁拼音”、本世纪以来一些年轻人出于新奇有趣而捏造的“火星文”等不符合汉语发展规律的新生汉语字词则应该摒弃,否则只会影响到汉语的生命力。\n\n这段文字最适合作为下列哪个观点的论据?", "type": "单选题", "options": "A. 如何让新时代的语言充满活力\nB. 应摒弃影响汉字生命力的字词\nC. 新生汉语字词能反映社会发展情况\nD. 对新生汉语字词我们要批判地接受", "choice": "D", "keypoints": "主题词;关联词-对策;特殊问法", "most_wrong": "B", "human_count": 19264, "human_acc": 84.0479651163, "source": "2022下半年省考第二十二季行测模考大赛(山东卷)第34题", "difficulty": 3, "formulas": 0}, {"id": 5030361, "material": "", "question": "“丰县生育八孩女子”事件引起了社会的广泛关注,一个问题在人们心中始终挥之不去:面对这一悲剧,基层工作人员为何司空见惯、放任不管?其实,追寻这种麻木不仁心态的根源,既有农村熟人社会基于共同利益相互包庇的历史惯性,也有基层法治建设滞后、法律意识淡薄的现实问题,更暴露出相关农村基层党组织、村民自治组织的严重失职。医治这样的病症,加快法治建设是当务之急,要让法律成为农村公共生活不可逾越的底线,在此基础上还必须加强基层组织建设,把党纪政纪挺在前面,让敢管敢干、坚强有力的基层党组织成为乡村治理的核心力量。如此,乡村治理才能迈上新台阶。\n\n这段文字中提取的关键词最恰当的一项是:", "type": "单选题", "options": "A. 法治建设 基层组织建设 乡村治理\nB. 乡村治理 基层组织建设 教育培训\nC. 法治建设 基层组织建设 执法力度\nD. 自治组织 基层组织建设 乡村治理", "choice": "A", "keypoints": "主题词;关联词-对策;特殊问法", "most_wrong": "D", "human_count": 10556, "human_acc": 95.0170519136, "source": "2022上半年省考第二十二季行测模考大赛(江苏卷)第21题", "difficulty": 3, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5221966, "material": "", "question": "现如今一些电视剧创作,让那些人生经历足够丰富、表演技巧打磨成熟、表演艺术本应迈上新台阶的专业演员无用武之地。专业演员年华逝去或生命消逝,他们的艺术就成了绝响。让专业演员能出演专业的作品,观众的这一期待给创作者留下的时间并不宽裕。在网络视频平台合围的传播环境下,电视剧创作不得不考虑作品在线上播出的效果,但因此关注线上点评反馈,忘记线下更广阔的需求,未免得不偿失。创作者坚守专业性,才能不失媒介赋予的关注社会现实、传递公共价值的职责,而专业的创作需要专业的取材来源,这个来源应该是真正的生活。\n\n这段文字着重指出“电视剧创作”存在的哪一问题?", "type": "单选题", "options": "A. 面临“后继无人”的状况\nB. 无法有效传递公共价值\nC. 注重作品线上点评反馈\nD. 取材脱离生活失去专业性", "choice": "D", "keypoints": "关联词-对策;行文脉络-分总;特殊问法", "most_wrong": "C", "human_count": 12178, "human_acc": 84.2420758745, "source": "2022下半年省考第八季行测模考大赛(山东卷)第35题", "difficulty": 3, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5445702, "material": "", "question": "要推动老旧小区的适老化改造和无障碍环境建设,关键是提升整个社会对适老化改造的思想认识,实现适老化改造特别是居家适老化改造“心理无障碍”。要多渠道、全方位宣传引导居家适老化改造的政策与价值,转变老人、子女和社会对居家适老化改造的认知;同时,要通过养老服务中心、居家养老服务中心等载体,打造居家适老化改造样板房,强化直观感受,转变老人的传统观念,让老人逐步形成“为养老服务买单”、让子女形成更加关注父母居家养老环境的社会意识,提升适老化改造的家庭主观能动性。\n\n这段文字强调要:", "type": "单选题", "options": "A. 平衡主体利益,因地制宜推动适老化改造\nB. 统筹各方资源,激活适老化改造的多元力量\nC. 补位标准规范,提升适老化改造的品质与效率\nD. 加强宣传引导,做到适老化改造“心理无障碍”", "choice": "D", "keypoints": "关联词-并列;关联词-对策;行文脉络-总分", "most_wrong": "B", "human_count": 1741584, "human_acc": 65.8490202023, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第54题", "difficulty": 4, "formulas": 0, "history": [{"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5758617, "material": "", "question": "历史是最好的教科书。加强青少年正确历史观教育是加强革命传统教育的重要方法,也是实现中华民族伟大复兴的必然要求。我们要让青少年了解历史、承认历史、感悟历史。只有这样,他们才能更好地认识历史的重要意义,树立正确的历史观和民族观,为中华民族伟大复兴奋斗终身。青少年阶段是人生的“拔节孕穗期”,这一时期心智逐渐健全,思维进入最活跃状态,最需要精心引导和栽培。加强青少年正确历史观教育,就是引导和培养他们激发信仰、获得启发、汲取力量,逐渐成长为国家和民族的合格人才。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 历史 历史观和民族观 革命传统教育\nB. 青少年 合格人才 民族伟大复兴\nC. 正确历史观教育 革命传统教育 民族伟大复兴\nD. 青少年 正确历史观教育 民族伟大复兴", "choice": "D", "keypoints": "主题词;行文脉络-总分;特殊问法", "most_wrong": "C", "human_count": 11467, "human_acc": 90.0061044737, "source": "2023下半年省考第二十二季行测模考大赛(江苏C卷)第30题", "difficulty": 3, "formulas": 0, "history": [{"id": 5638627, "material": "", "question": "办好思政课是教育引导大学生正确认识世界与中国的必然要求。当今时代,百年未有之大变局与中华民族伟大复兴战略全局同步交织、相互激荡,我国同世界的联系更趋紧密、相互影响更趋深刻,这就要求思政课必须充分发挥思想引领和价值导向作用,着力教育引导大学生正确认识当代世界局势和中国未来发展趋势。要教育引导大学生运用马克思主义立场、观点和方法透过现象看本质,对纷繁复杂的社会思潮做出理性分析;要教育引导大学生树立正确的世界观、人生观、价值观,不被腐朽观念冲击和迷惑;要教育引导大学生树立崇高理想信念,追求高尚的人生目标,在为中国特色社会主义事业的奋斗中创造人生价值。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 思政课 大学生 教育引导\nB. 思政课 理性分析 人生目标\nC. 大学生 思想引领 理想信念\nD. 思政课 大学生 马克思主义", "choice": "A", "keypoints": "主题词;行文脉络-总分;特殊问法", "most_wrong": "B", "human_count": 5327, "human_acc": 89.1871597522, "source": "2023下半年省考第十一季行测模考大赛(江苏C卷)第30题", "difficulty": 3, "formulas": 0}, {"id": 5465260, "material": "", "question": "生态文明建设是一场思维方式、价值观念、生产方式、生活方式的颠覆性变革,需要从实际行动上予以彻底改变。全社会、全领域要大力节约、合理利用资源,狠抓水资源节约利用、狠抓节能减排以降低消耗、狠抓矿产资源节约利用、狠抓土地节约集约利用。要大力发展绿色经济、循环经济,促进节能低碳产业的发展。反对奢侈浪费和非理性消费,倡导绿色低碳的生活方式。要加强生态文明教育,全社会形成合力,开展创建绿色机关、绿色家庭、绿色学校、绿色社区以及绿色出行等实际行动。要把生态文明建设纳入法治化轨道,以更大的力度、更实的举措,切实加快推进绿色生产方式、生活方式的落实。\n\n这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 生态文明建设 法治化轨道 实际行动\nB. 生态文明建设 颠覆性变革 战略地位\nC. 生态文明建设 颠覆性变革 实际行动\nD. 生态文明教育 颠覆性革命 生活方式", "choice": "C", "keypoints": "主题词;行文脉络-总分;特殊问法", "most_wrong": "A", "human_count": 4224, "human_acc": 66.571969697, "source": "2023上半年省考终极行测模考大赛(新疆兵团卷)第49题", "difficulty": 4, "formulas": 0}, {"id": 5276839, "material": "", "question": "思政课的本质是讲道理,要注重方式方法,把道理讲深、讲透、讲活,老师要用心教,学生要用心悟,达到沟通心灵、启智润心、激扬斗志的目的。如在《思想道德与法治》课堂上,我们必须讲清楚如何领悟人生真谛、把握人生方向,什么是理想信念、如何放飞青春梦想,什么是中国精神、如何把爱党爱国爱社会主义统一起来,如何扣好人生的扣子,以及社会主义核心价值观的内涵、特征,社会主义道德的核心与原则,社会主义法律的历史、特征、运行,全面依法治国,以及我国根本大法——宪法的形成与发展、实施和监督等,帮助大学生树立正确的世界观、人生观、价值观,提高大学生的思想道德素质和法律素质。\n\n作者引用“《思想道德与法治》课堂”的例子是为了证明:", "type": "单选题", "options": "A. 思政课应从思想道德素质和法律素质出发\nB. 我们必须要搞清楚思政课讲的是什么道理\nC. 思政课教师讲道理所需的技能和历史视野\nD. 大学生的思想观念与其法律知识同等重要", "choice": "B", "keypoints": "主题词;行文脉络-总分;特殊问法", "most_wrong": "A", "human_count": 7310, "human_acc": 54.5554035568, "source": "2022下半年省考第十季行测模考大赛(四川卷)第45题", "difficulty": 6, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 4233375, "material": "", "question": "古代养生名著《寿世宝元》有“诗书悦心,可以延年”之说,这是有道理的。我们练书法、习绘画,必须意力并用,心神集中,杂念尽消,心正气和,神意安稳,荣辱皆忘。“先默静思”以净化心灵,然后,运气于指、腕、臂、腰,以调节全身之力于指端,“下笔点画波撇曲直,皆尽一身之力而送之”,有如“蜻蜓点水”,或似“蛟龙戏海”而妙笔生辉。所以,有人形容书法、绘画,犹如一种在纸上进行的太极拳,同样也可使全身肌肉、筋骨运动,达到舒筋活络作用。也正是由于书画这种保健功能,从古至今书画家长寿的例子不胜枚举。柳公权、欧阳询、文徵明、齐白石等均是八九十岁的高寿。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 书法可以调气养神、舒活筋骨、延年益寿\nB. 老年人可以从琴棋书画中得到益处和乐趣\nC. 诗书可以起到愉悦心身、延缓衰老的作用\nD. 练书法习绘画值得提倡,有益于健康长寿", "choice": "D", "keypoints": "主题词;关联词-并列;关联词-因果", "most_wrong": "A", "human_count": 12622, "human_acc": 69.2124861353, "source": "2021下半年省考第二十二季行测模考大赛(辽宁卷)第58题", "difficulty": 5, "formulas": 0, "history": [{"id": 5110827, "material": "", "question": "清初至新中国成立前的三百年间,关内人口向东北地区的迁移,俗称“闯关东”。“闯关东”移民主要来源于华北地区的山东、河北、河南、山西、陕西等省,其中以山东人最多。来东北的关内移民大都是在家乡无法生存,“死逼梁山下关东”的灾民、难民及赤贫者。因此,早期移民大多从事农业生产,后来逐渐扩大到劳务、工商业等领域,越来越多的移民被工厂、矿山、码头、铁路沿线吸收成为劳工,为东北工矿业的兴起、铁路建设等提供了充足的劳动力。此外,还有一小部分移民在东北经营商业,促进了近代东北商业贸易的兴起与发展。\n\n这段文字重在说明“闯关东”:", "type": "单选题", "options": "A. 促进近代东北铁路建设的兴起与发展\nB. 为近代东北经济的发展带来了劳动力\nC. 带动了东北地区的社会经济健康发展\nD. 促进近代东北沿线地区商业贸易发展", "choice": "B", "keypoints": "主题词;关联词-并列;关联词-因果", "most_wrong": "C", "human_count": 57137, "human_acc": 38.2991756655, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第45题", "difficulty": 7, "formulas": 0}, {"id": 3726003, "material": "", "question": "大学生要从对家庭、学校的依赖中脱离出来,去成为一个更加独立的人,因而心理上希望能够脱离权威的束缚。由于高校青年亚文化没有高低的台阶,个体无须对其心存仰视或敬畏,它在表达的民主性和参与度上与校园中具有变革愿望、求新憧憬的学生群体,具有最大的青春心理契合度。高校青年亚文化中“平权化”对权威的解构、草根化对精英的挑战、个体化对规制的冲击,符合大学生青春期叛逆权威、张扬个性、展现自我的心理特点,也进一步使得高校青年亚文化在当下学生群体中获得了更广泛的共通共识。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 高校青年亚文化受到当下大学生群体广泛认可的原因\nB. 在大学阶段加强对大学生的文化价值引导有其重要性\nC. 高校青年亚文化是大学生摆脱家庭权威束缚的产物\nD. 应扬长避短发挥大学生青春期追求创新变革的特点", "choice": "A", "keypoints": "主题词;关联词-并列;关联词-因果", "most_wrong": "C", "human_count": 103238, "human_acc": 92.1385536334, "source": "2021下半年省考第十一季行测模考大赛(四川卷)第31题", "difficulty": 3, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"]]}, {"id": 13197, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "根据专家推断,2006年内人民币将升值3%左右,按4月5日外汇市场美元兑人民币汇率的中间价推算,人民币兑美元的汇率到2006年年底将跌至多少:", "type": "单选题", "options": "A. 8.0000左右\nB. 7.7713左右\nC. 7.2055左右\nD. 7.0000左右", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "A", "human_count": 20844, "human_acc": 72.4812895797, "source": "2008年安徽省公务员录用考试《行测》题第136题", "difficulty": 5, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 4491484, "material": "", "question": "样板戏是现代舞台对京剧的改造,它改动了京剧太多的元素。首先,样板戏剧作的分幕结构是对传统戏散场结构的革命性改变。这种用西方话剧的幕场结构,被认为是一种“进步”,便于完成现代戏剧要讲情节的功能,这是它创新的一面。但样板戏的影响却太过深远。新编戏自样板戏后,所有创新剧目,几乎清一色地全采取了分幕结构,这种继承限制了我们的创新。其次,伴随着戏剧结构场次的变化,样板戏舞台也出现了重大变化。最重大者莫过于在舞台上搭起了按生活原型结构的实景,把京剧传统美学中最重要的“无中生有”“景随人行”的写意的空间概念整个掀翻。\n\n这段文字旨在强调:", "type": "单选题", "options": "A. 样板戏改造的“功过是非”\nB. 样板戏是源自京剧的现代舞台剧\nC. 京剧改造成样板戏后带来的系列问题\nD. 戏剧改造应当坚持“去粗取精”的原则", "choice": "C", "keypoints": "主题词;关联词-并列;程度词", "most_wrong": "A", "human_count": 265840, "human_acc": 47.0335540175, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第43题", "difficulty": 6, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 4170320, "material": "", "question": "掌握基本的急救知识,意味着能够在关键时刻争取宝贵的生存机会,对每个人都有重要意义。现实中,存在一种认识误区,认为发生意外事件的概率太小,急救知识用不到。然而,急救知识之所以重要,正是因为意外往往突然发生,而急救的机会窗口稍纵即逝。近年来,儿童被食物卡住、面临窒息危险,通过“海姆立克急救法”得到及时救助的新闻不时出现;在公共场合突然晕倒,被熟悉胸外按压急救技术的路人施以援手的新闻也偶见网络。这提示我们,面对突发意外,专业的救援力量抵达往往需要时间,在此之前能否妥善运用相关急救知识至关重要。\n\n这段文字主要介绍的是:", "type": "单选题", "options": "A. 基本的急救知识对人类生存至关重要\nB. 急救知识如何在危急关头救人于水火\nC. 应加大培训力度快速提升专业救援力量\nD. 应学习掌握急救知识妥善应对突发意外", "choice": "D", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 12797, "human_acc": 85.9420176604, "source": "2021下半年省考第二十一季行测模考大赛(辽宁卷)第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5443234, "material": "", "question": "考古学可以通过实物资料实证中华文明的悠久历史和灿烂成就,展示中华先民创造的辉煌灿烂的中华文明和对人类文明的贡献。因此,开展中华文明探源工程研究成果宣传和成果转化传播,具有重大的现实意义和深远的历史意义。要充分应用中华文明探源工程等研究成果,更加完整准确地讲述中国古代史,更好地发挥以史育人的作用,立足中国大地,讲好中华文明故事,向世界展现可信、可爱、可敬的中国形象,展现中华文明的悠久历史和人文底蕴,促使世界读懂中国、读懂中国人民、读懂中国共产党、读懂中华民族。\n\n这段文字主要回答了下列哪一问题?", "type": "单选题", "options": "A. 为何要通过考古学展示中华文明的历史和成就\nB. 为何要展现中国形象,促使世界读懂中国\nC. 为何要宣传中华文明探源工程的研究成果\nD. 为何要讲好中华文明故事,展现中国人文底蕴", "choice": "C", "keypoints": "主题词;关联词-因果;行文脉络-分总分;特殊问法", "most_wrong": "A", "human_count": 108367, "human_acc": 76.0692830843, "source": "2023上半年省考第三季行测模考大赛(天津卷)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 2049582, "material": "根据以下资料,回答下列小题。\n\n        2015年国家自然科学基金委全年共接收173017项各类申请,同比增长约$10\\%$,择优资助各类项目40668项,比上年增加1579项,资助直接费用218.8亿元,平均资助强度(资助直接费用与资助项数的比值)53.8万元,各项工作取得新进展新成效。\n\n        在研究项目系列方面,面上项目资助16709项,比上年增加1709项,占总项数的$41\\%$,直接费用102.41亿元,平均资助率(资助项目占接收申请项目的比重)$22.9\\%$,同比下降2.5个百分点。重点项目资助625项,同比增长约$3.3\\%$,直接费用17.88亿元。重大项目资助20项,直接费用3.18亿元。\n\n        在人才项目系列方面,青年科学基金资助16155项,比上年减少266项,占总项数的$40\\%$,直接费用31.95亿元,平均资助率$24.6\\%$,同比下降0.7个百分点。地区科学基金资助2829项,比上年增加78项,直接费用10.96亿元,有力推进了欠发达区域人才稳定与培养。优秀青年科学基金资助400人,国家杰出青年科学基金资助198人,新资助创新研究群体项目38项,促进了优秀人才和团队成长。", "question": "2014年国家自然科学基金委共接收青年科学基金的申请数约为:", "type": "单选题", "options": "A. 5.1万份\nB. 5.9万份\nC. 6.5万份\nD. 6.9万份", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1130634, "human_acc": 67.5989754421, "source": "2017年422联考《行测》题(新疆卷)第109题", "difficulty": 5, "formulas": 6, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 3593742, "material": "", "question": "一些研究者把虚拟偶像的产生与二次元文化关联起来,从一部分虚拟偶像的粉丝情况来看确实如此,但更多的虚拟偶像可谓是商家煞费苦心的高科技产品,其面对的粉丝群体也不仅是喜爱二次元的年轻人。由于各种最新科技手段的运用,让虚拟偶像拟人化程度得到了极大的提高,它们不仅会唱歌跳舞,而且能够聊天、互动,可以用不同人类表情和动作来表现它们的情绪。这使得虚拟偶像与社会生活中真人交往越来越相似,更为重要的是,按照科技进步的趋势,虚拟偶像迟早可以实现人与人之间社交互动的各种方式,自然也会出现在人们生活的更多领域之中。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 虚拟偶像的拟人化水平将变得越来越高\nB. 先进科技精心打造出了更多的虚拟偶像\nC. 虚拟偶像将参与到人类生活的诸多方面\nD. 与虚拟偶像的互动将会与真人交往无异", "choice": "C", "keypoints": "关联词-转折;行文脉络-分总;程度词", "most_wrong": "A", "human_count": 99510, "human_acc": 81.0762737413, "source": "2021下半年省考第六季行测模考大赛(四川卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 3155, "material": "", "question": "关于中国传统文化将成为21世纪的主导性文化的观点,十分流行。西方一些学者也持有此类观点,对此,我则持怀疑态度。\n\n“我”认为中国传统文化将成为21世纪的主导性文化吗:", "type": "单选题", "options": "A. 无所谓\nB. 不可能\nC. 怀疑\nD. 肯定会", "choice": "C", "keypoints": "行文脉络-分总", "most_wrong": "B", "human_count": 56389, "human_acc": 84.9704729646, "source": "2008年贵州省公务员录用考试《行测》题第20题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5102448, "material": "2020年,由软件产品、信息技术服务、信息安全产品和服务、嵌入式系统软件四大业务形态构成的我国软件和信息技术服务业持续恢复,收入保持较快增长,信息技术服务加快云化发展,软件应用服务化、平台化趋势明显。\n\n        2020年,软件产品实现收入22758亿元,同比增长10.1%,占全行业比重为27.9%。其中,工业软件产品实现收入1974亿元,增长11.2%,为支撑工业领域的自主可控发展发挥重要作用。\n\n        2020年,信息技术服务实现收入49868亿元,同比增长15.2%,增速高出全行业平均水平1.9个百分点,占全行业收入比重为61.1%。其中,电子商务平台技术服务收入9095亿元,同比增长10.5%;云服务、大数据服务共实现收入4116亿元,同比增长11.1%。\n\n        2020年,信息安全产品和服务实现收入1498亿元,同比增长10.0%,增速较上年回落2.4个百分点。\n\n        2020年嵌入式系统软件实现收入7492亿元,同比增长12.0%,增速较上年提高4.2个百分点,占全行业收入比重为9.2%。嵌入式系统软件已成为产品和装备数字化改造、各领域智能化增值的关键性带动技术。", "question": "与2019年相比,2020年占全行业收入比重上升的是:", "type": "单选题", "options": "A. 软件产品\nB. 信息技术服务\nC. 信息安全产品和服务\nD. 嵌入式系统软件", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 731933, "human_acc": 79.2899076828, "source": "2022年内蒙古公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 0, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 4036782, "material": "", "question": "我国《广告法》及相关工商行政法规对部分商品的广告作出了限制性规定,如中央电视台就规定不播香烟广告和行医广告。但如果企业有足够的经济实力,形成多元化发展的企业集团,就可以通过做其他产品的形象广告,合理合法地给不准做广告的主导产品做了间接广告,且受益最大的,仍是其主导产品,我们称这种广告为“边缘广告”。\n\n根据上述定义,以下属于边缘广告的是:", "type": "单选题", "options": "A. 国外烟草公司常在商业街、音乐会等年轻人聚集的地方免费分发香烟样品以达到宣传效果\nB. 安徽卷烟厂的“一品黄山”香烟,曾出巨资在电视台黄金时段做过宣传黄山旅游的电视广告\nC. 杭州卷烟厂“利群”牌香烟广告语“杭州利群永远利群”,通过语境暗示观众“香烟有利群众”\nD. 白沙集团广告结束时打出诸如“文化传播、印刷”之类的字样,但普通民众只知道白沙香烟", "choice": "D", "keypoints": "方式目的;主客体", "most_wrong": "B", "human_count": 152347, "human_acc": 40.8842970324, "source": "2021下半年省考第十九季行测模考大赛(四川卷)第65题", "difficulty": 7, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"], ["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 5248088, "material": "", "question": "同步辐射装置产生的辐射会破坏人体的一些组织结构,公众应尽量少接触或者避免暴露于其中。但大家无需恐慌。一般来说,同步辐射装置均利用重混凝土墙、一定厚度的铅墙等一系列防护措施,来隔离并吸收释放的电磁辐射,所以在同步辐射装置正常运行时,装置产生的辐射剂量对外界环境的影响是微乎其微的,可忽略不计。正常运行情况下,装置附近的居民一年所受的辐射剂量约等于乘坐飞机15分钟的辐射量;而同步辐射装置产生的辐射是瞬发性的,只要加速器一停机,辐射场即消失,住在同步辐射装置附近的居民完全可以放心。\n\n这段文字最适合作为下列哪个观点的论据?", "type": "单选题", "options": "A. 必要的防护措施对隔绝电离辐射至关重要\nB. 电离辐射的危害性取决于辐射剂量和时长\nC. 同步辐射装置一般不会引发辐射安全问题\nD. 同步辐射装置是把双刃剑,应当谨慎使用", "choice": "C", "keypoints": "关联词-转折;主题词;行文脉络-总分;特殊问法", "most_wrong": "B", "human_count": 11889, "human_acc": 93.7168811506, "source": "2022下半年省考第九季行测模考大赛(山东卷)第34题", "difficulty": 3, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 4997755, "material": "", "question": "由于很多普通消费者缺乏相关医学知识,对增高产品不了解,轻信商家的宣传,结果花钱购买使用增高产品后,轻则没有达到商家所宣传的增高效果,重则给身体健康带来危害。所以,面对增高产品乱象,消费者必须擦亮眼睛,避免被商家收割“智商税”。有关方面也应该把增高常识普及作为治理增高产品乱象的一味“药”,使消费者不再轻易相信增高产品宣传,而是在医生指导下进行食疗,或选择适宜的增高产品。更重要的是,应该让“吹牛”商家吃“罚药”。根据《广告法》规定,广告不得含有虚假或者引人误解的内容,不得欺骗、误导消费者等。凡违反规定的,应受到处罚。\n\n该文段意在说明:", "type": "单选题", "options": "A. 消费者应提高对增高产品的防范意识\nB. 滥用增高产品或对身体造成严重损害\nC. 普及医学常识有利于消费者理性消费\nD. 治理增高乱象需对违法商家实施处罚", "choice": "D", "keypoints": "关联词-对策;关联词-因果;程度词", "most_wrong": "A", "human_count": 275459, "human_acc": 82.2205845516, "source": "2022上半年省考第二十季行测模考大赛(陕西卷)第51题", "difficulty": 4, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 4630387, "material": "", "question": "我国天气预报、气候、大气化学等方面的业务主要依靠风云系列气象卫星完成,但高分系列卫星提供的高空间分辨率数据产品起到了很好的补充作用。尤其在应对特殊天气和地表灾害方面,高分卫星的作用更为关键。例如在此前发射的高分系列卫星中,高分一号、二号可以为地震、泥石流、森林火灾等提供高分辨率图像;高分三号的雷达成像模式不受云雾影响,可以实现全天候立体监测;位于地球静止轨道的高分四号,可以观测到台风内部的精细结构,并实现对台风的高精度定位。而在新增的两颗高分卫星中,高分六号可以说是高分一号的“升级版”,而高分五号的高光谱作用更是独一无二。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 高分系列卫星的作用是不可替代的\nB. 高分系列卫星功能强大、用途广泛\nC. 高分系列卫星拍得更清、测得更准\nD. 高分系列卫星是风云系列的重要补充", "choice": "D", "keypoints": "关联词-转折;行文脉络-总分;程度词", "most_wrong": "B", "human_count": 1267671, "human_acc": 61.0215899867, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 219993, "material": "", "question": "所谓知识经济,是指建立在知识和信息的生产、分配和使用上的经济,是以智力资源的占有、配置以及知识的生产、分配和使用为最重要因素的经济。\n\n这段话主要是讲:", "type": "单选题", "options": "A. 知识经济的来源\nB. 知识经济的含义\nC. 知识经济的形式\nD. 知识经济的特点", "choice": "B", "keypoints": "行文脉络-总分", "most_wrong": "D", "human_count": 225916, "human_acc": 91.780130668, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第80题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 4100570, "material": "", "question": "首先,数学促进企业创新不可能“____________”,数学促进企业创新,是一项复杂的系统性工程,需要遵循其自身规律,稳妥制定好长期的策略;其次,企业运用数学创新不能“____________”,每个企业都有各自的业务特点、经营规模、发展阶段等,“蜂拥而上”地向数学要企业发展的答案显然是行不通的。再次,企业创新也不能靠数学“____________”,为推动企业创新发展和产业转型升级,单靠数学学科或数学家的力量是远远不够的,还需要计算机、工程、管理等不同领域的专家共同加入,整合多方力量,更好地帮助企业塑造核心竞争力。\n\n依次填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 一劳永逸 一哄而上 大包大揽\nB. 一挥而就 急于求成 出奇制胜\nC. 一蹴而就 一拥而上 单打独斗\nD. 一步到位 趋之若鹜 单兵突进", "choice": "C", "keypoints": "对应关系-重点词句对应;对应关系-解释类对应;关联关系-并列关系;成语填空;词的辨析-词义侧重", "most_wrong": "D", "human_count": 151561, "human_acc": 85.5602694625, "source": "2021下半年省考第二十季行测模考大赛(陕西卷)第40题", "difficulty": 3, "formulas": 0, "history": [{"id": 2066882, "material": "", "question": "这篇小说的构思既精巧又严密,真是(  )。", "type": "单选题", "options": "A. 无可非议\nB. 无懈可击\nC. 回味无穷\nD. 不可思议", "choice": "B", "keypoints": "对应关系-重点词句对应;成语填空", "most_wrong": "C", "human_count": 67228, "human_acc": 68.2156244422, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第1题", "difficulty": 5, "formulas": 0}, {"id": 10699, "material": "", "question": "我只不过是替他______了几句,说明了事实的真相。", "type": "单选题", "options": "A. 辩护\nB. 辩解\nC. 辩白\nD. 辩证", "choice": "C", "keypoints": "对应关系-解释类对应;实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 41518, "human_acc": 34.4573438027, "source": "2009年湖南省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 5676280, "material": "", "question": "人做错一件事不可怕,可怕的是一错再错、____________。", "type": "单选题", "options": "A. 十恶不赦\nB. 屡教不改\nC. 恶贯满盈\nD. 胡作非为", "choice": "B", "keypoints": "关联关系-并列关系;成语填空", "most_wrong": "C", "human_count": 166, "human_acc": 97.5903614458, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第2题", "difficulty": 3, "formulas": 0}, {"id": 14067, "material": "", "question": "考试对学生来说是(    )的事情。", "type": "单选题", "options": "A. 一如既往\nB. 平平淡淡\nC. 家常便饭\nD. 习以为常", "choice": "D", "keypoints": "成语填空;词的辨析-词义侧重", "most_wrong": "C", "human_count": 50335, "human_acc": 67.8533823383, "source": "2009年四川省公务员录用考试《行测》题(上半年)第21题", "difficulty": 4, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "逻辑填空", "语境分析", "对应关系-重点词句对应"], ["言语理解与表达", "逻辑填空", "语境分析", "对应关系-解释类对应"], ["言语理解与表达", "逻辑填空", "语境分析", "关联关系-并列关系"], ["言语理解与表达", "逻辑填空", "成语填空"], ["言语理解与表达", "逻辑填空", "词的辨析", "词的辨析-词义侧重"]]}, {"id": 5660886, "material": "", "question": "“穷游”是指在自由旅行的同时,最大限度地省钱,花最少的钱寻求最大的精神收获,这种经济实惠的旅行方式受到大学生广泛欢迎。但是大学生若为了一味省钱而频繁“赖”在宾馆大厅过夜,不仅会使宾馆管理者左右为难,还有可能会落人口实,给人留下对大学生的坏印象,打上污名标签。上述情况假如引发了更大规模的跟风,将会给旅游业带来不良影响,长此以往并不利于整个旅游业健康发展。学会换位思考,为自己的行为负责,是大学生应有的担当,毕竟“穷游”不能成为无理的挡箭牌。所以,理性出游才是旅游的正确打开方式,合理规划行程才能收获快乐舒适的旅程。\n\n这段文字针对的主要问题是:", "type": "单选题", "options": "A. 大学生“穷游”中出现的一些无理行为\nB. 大学生“穷游”带给人们一些坏印象\nC. 大学生“穷游”阻碍了旅游业的健康发展\nD. 部分大学生对“穷游”的错误认知", "choice": "A", "keypoints": "关联词-转折;关联词-对策;特殊问法", "most_wrong": "D", "human_count": 67488, "human_acc": 54.7534376482, "source": "2023下半年省考第十三季行测模考大赛(四川卷)第36题", "difficulty": 6, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 3607788, "material": "2020年全国规模以上工业企业实现利润总额64516.1亿元,比上年增长$4.1\\%$;发生营业成本89.04万亿元,增长$0.6\\%$;营业收入利润率为$6.08\\%$,比上年提高0.20个百分点。\n\n        2020年,规模以上工业企业中,国有控股企业实现利润总额14860.8亿元,比上年下降$2.9\\%$;股份制企业实现利润总额45445.3亿元,增长$3.4\\%$;外商及港澳台商投资企业实现利润总额18234.1亿元,增长$7.0\\%$;私营企业实现利润总额20261.8亿元,增长$3.1\\%$。\n\n        2020年,在41个工业大类行业中,26个行业利润总额同比增加,15个行业减少。主要行业利润情况如下:专用设备制造业利润总额为2827.6亿元,比上年增长$24.4\\%$;化学原料和化学制品制造业利润总额为4257.6亿元,增长$20.9\\%$;有色金属冶炼和压延加工业利润总额为1479.5亿元,增长$20.3\\%$;计算机、通信和其他电子设备制造业利润总额为5919.2亿元,增长$17.2\\%$;电力、热力生产和供应业利润总额为4085.8亿元,增长$3.4\\%$;非金属矿物制品业利润总额为4767.4亿元,增长$2.7\\%$;石油和天然气开采业利润总额为257.1亿元,下降$83.2\\%$;石油、煤炭及其他燃料加工业利润总额为868.5亿元,下降$26.5\\%$。\n\n        2020年末,规模以上工业企业资产总计126.76万亿元,比上年末增长$6.7\\%$;其中负债合计71.06万亿元,增长$6.1\\%$;所有者权益合计55.70万亿元。", "question": "2020年末,规模以上工业企业所有者权益的同比增速约为:", "type": "单选题", "options": "A. $7.5\\%$\nB. $8.2\\%$\nC. $6.5\\%$\nD. $5.6\\%$", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 86227, "human_acc": 67.1680564092, "source": "2021下半年省考第六季行测模考大赛(广东县级卷)第94题", "difficulty": 6, "formulas": 351, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 2524781, "material": "", "question": "过度摄入食盐,被明确定义为一种不健康的生活方式,因为它与患慢性炎症、心血管疾病和自身免疫性疾病的高风险有很强的关联性。但最新的研究证据表明,高盐饮食会导致机体免疫系统发生紊乱,促进免疫细胞分泌更多的细胞因子,进而诱导各种组织微环境的炎症反应。因此,高盐饮食有助于抑制肿瘤生长。\n\n以下各项如果为真,能够支持上述结论的有(    )。", "type": "不定项", "options": "A. 高盐饮食可以在肿瘤微环境中刺激骨髓来源的抑制性细胞,使其形成免疫刺激表型,从而抑制肿瘤\nB. 在肿瘤微环境中,刺激多种细胞类型的促炎反应是克服免疫抑制并恢复对肿瘤免疫攻击的重要环节\nC. 高盐饮食通过调节机体的免疫系统来抑制肿瘤生长,但过度摄入盐分仍然是一种不健康的生活方式\nD. 高盐摄入引起的高渗透压是一种典型的、能被细胞感受到的环境刺激,可引起巨噬细胞的免疫反应", "choice": "ABC", "keypoints": "搭桥;补充论据", "most_wrong": "D", "human_count": 9943, "human_acc": 22.5384692749, "source": "2020年上半年省考第二十六季行测模考大赛(陕西卷)第104题", "difficulty": 7, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"], ["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 4576449, "material": "", "question": "从社会治理的角度来看,城市治理重在细节、贵在细节,也难在细节。日新月异的发展质量,既体现在高楼大厦、车水马龙的繁华景象里,也蕴含在日常生活的细枝末节和基层治理的末梢神经之中。除了老年人的“数字需求”,生活中的很多地方都考验着社会治理的“绣花”功夫。比如,对盲人群体来说,盲道是他们行走在城市中不可或缺的通道;对哺乳期的母亲而言,公共场所的母婴室既是关爱也是关照。可以说,不仅要善于运用现代科技手段实现智能化,更要通过绣花般的细心、耐心、巧心提升精细化水平,这样才能满足不同群体多元化、差异化需求,带给他们更多获得感、幸福感和安全感。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 生活细节之处充分彰显城市治理能力\nB. 应该以社会治理的精度提升社会温度\nC. 精细化治理可以有效化解数字化鸿沟\nD. 运用现代科技手段提升社会治理水平", "choice": "B", "keypoints": "主题词;关联词-对策;程度词", "most_wrong": "A", "human_count": 384056, "human_acc": 65.4948757473, "source": "2021下半年省考第三十三季行测模考大赛(广东乡镇卷)第7题", "difficulty": 4, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 5758609, "material": "", "question": "大学生的阅读史描绘出他的精神世界,阅读什么样的书籍对于大学生的影响差别巨大,尤其是在价值观的建立、思想道德的培养上起到至关重要的作用。没有好书的指导,没有坚定的理想信念,精神就会“缺钙”,因此书籍的选择尤为重要。我们提倡阅读经典,经典包括红色经典、中国优秀传统文化经典等。蕴含着几代人艰苦卓绝的奋斗,英勇牺牲的奉献,使得红色经典能够超越时间的羁绊、地域的束缚,深深烙印在每一个中国人心中。中国传统文化经典也是必读的类目,大学生学习蕴含自强不息伟大民族精神的传统文化,不仅能够增加自身对历史和文化的了解,还能增强民族自豪感和文化自信。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 大学生阅读时应重点选择红色经典书籍\nB. 当代的大学生应补足理想信念之“钙”\nC. 大学生可以通过阅读经典坚定理想信念\nD. 中国传统文化经典是大学生必读的类目", "choice": "C", "keypoints": "主题词;关联词-对策;关联词-因果;行文脉络-分总分", "most_wrong": "B", "human_count": 10226, "human_acc": 72.1005280657, "source": "2023下半年省考第二十二季行测模考大赛(四川卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"]]}, {"id": 5144673, "material": "", "question": "能源是攸关国家安全和发展的重点领域,创新是引领能源发展的第一动力。我国已连续多年成为世界上最大的能源生产国和消费国。当前进入新发展阶段,在“碳达峰、碳中和”目标、生态文明建设和“六稳六保”等总体要求下,我国能源发展面临保安全、转方式、调结构、补短板等严峻挑战,对科技创新的需求比以往任何阶段都更为迫切。与此同时,全球新一轮科技革命和产业变革方兴未艾,我国能源科技创新同世界能源科技强国和引领能源革命的内在要求相比还存在明显差距。正因如此,加强对能源科技发展的顶层设计、系统谋划,正当其时、意义深远。\n\n这段文字着重指出我国存在的哪一问题?", "type": "单选题", "options": "A. 智能科技创新能力落后并且缺乏系统化筹划\nB. 智能产业变革起步较晚以至于无法满足需求\nC. 能源科技创新水平与旺盛需求之间存在矛盾\nD. 能源发展创新面临着多重短板以及严峻挑战", "choice": "C", "keypoints": "主题词;关联词-并列;行文脉络-分总;特殊问法", "most_wrong": "D", "human_count": 10545, "human_acc": 41.6405879564, "source": "2022下半年省考第四季行测模考大赛(山东卷)第35题", "difficulty": 7, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5330346, "material": "", "question": "尽管随着教育教学的改革,有越来越多的教师、学生和家长受益于阅读的相关理念,但关于阅读的误区仍然无处不在。在习惯以考试分数的构成来打量教学目标的人眼中,阅读仅仅是语文课堂的教学内容之一,而语文学科又只是诸学科之一。如果只把阅读当作一个学科内部的得分点,阅读在语文学科之内就只有局域性意义,以全学科的视野来看,则只有“局域的局域”的意义。然而,站在人的发展的角度来看,阅读对于一个人的思维发育却具有全域性的意义。一个人是否喜欢读书或喜欢读什么样的书,在很大程度上决定着一个人的精神高度和思想深度。故而语文课堂中的阅读教育看似是局域性的,但意义却是全域性的。\n\n从这段文字中提取的关键词最恰当的是:", "type": "单选题", "options": "A. 语文课堂 局域性 全域性\nB. 思维发展 阅读教育 局域性\nC. 语文课堂 阅读教育 全域性\nD. 思维发展 语文课堂 阅读教育", "choice": "C", "keypoints": "主题词;关联词-因果;特殊问法", "most_wrong": "D", "human_count": 25086, "human_acc": 78.3145977836, "source": "2022下半年省考第十五季行测模考大赛(新疆兵团卷)第49题", "difficulty": 4, "formulas": 0, "history": [{"id": 5276838, "material": "", "question": "当前,为适应新时代健全社会主义市场经济体制新要求,中央提出要不断深化以农村集体产权制度为主要内容的农村改革。为此,农村集体经济组织已被《民法典》确定为特殊法人,明确了农村集体经济组织的市场主体地位。但是,由于其资产边界和产权归属不清晰,农村集体经济组织在市场经济活动中的主体意识、行为能力普遍较弱,农村集体经济组织的市场信誉整体不高,其市场主体地位仍然没有被市场完全认可,从而严重制约了农村经济的高质量发展。大量金融机构涉农信贷资金因缺乏合格的信贷主体而无处投放就是明显例证。因此,必须以农村集体经济组织为依托,从构建独立完善的法人治理结构出发,加快创新农村经济发展模式,重塑乡村经济发展的市场主体。\n\n这段文字回答了下列哪一问题?", "type": "单选题", "options": "A. 怎样使农村经济的市场主体地位获得市场的全面认可\nB. 如何才能构建符合乡村经济发展规律的法人治理结构\nC. 重塑乡村经济市场主体为何离不开农村集体经济组织\nD. 特殊法人对于农村集体经济组织而言具有怎样的意义", "choice": "C", "keypoints": "主题词;关联词-因果;特殊问法", "most_wrong": "A", "human_count": 7384, "human_acc": 36.3217768147, "source": "2022下半年省考第十季行测模考大赛(四川卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5296751, "material": "", "question": "跨省异地就医直接结算,涉及医保基金的统筹问题,要系统解决并不容易。地区之间的经济水平不一样,资金筹措能力不一样,参保地和异地就医备案地的医保待遇也就存在落差,医保报销政策、保障范围和水平自然千差万别。直接结算,需要一个统一的平台和标准。所以,当前发布的《关于进一步做好基本医疗保险跨省异地就医直接结算工作的通知》并没有一步到位。一方面,它明确要求2022年12月底前,各地医保部门要及时调整与本通知不相符的政策措施,进行跨省通办的政策准备;另一方面,它预留了一些缓冲时间,比如在2025年前,住院费用跨省直接结算率提高到70%以上。\n\n这段文字回答了下列哪一问题?", "type": "单选题", "options": "A. 如何建设全国统一的医保基金平台\nB. 如何平衡各地之间医保待遇存在的落差\nC. 如何解决跨省就地医保直接结算的问题\nD. 关于异地就医直接结算的通知为何不彻底", "choice": "D", "keypoints": "关联词-因果;行文脉络-分总分;特殊问法", "most_wrong": "C", "human_count": 6784, "human_acc": 72.4646226415, "source": "2022下半年省考第十二季行测模考大赛(四川卷)第44题", "difficulty": 4, "formulas": 0, "history": [{"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 4619, "material": "", "question": "不要过分地依赖语言。不要总是企图在语言上占上风。语言解不开的,事实可以解开。语言解开了而事实没有解开的话,语言会失去价值,甚至于只能添乱。\n\n这段话的主要观点是:", "type": "单选题", "options": "A. 事实比语言更有力量\nB. 平常不要说太多的话以免惹出是非\nC. 没有事实基础的语言是毫无价值的\nD. 语言是不重要的,事实才是重要的", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "C", "human_count": 39770, "human_acc": 41.7525773196, "source": "2008年河北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 5030327, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n恒星是从巨大、寒冷、黑暗的气体和尘埃云团中诞生的,诞生的过程极其漫长。____________________。____________________。____________________。____________________,这些扰动使恒星环绕星系中心的轨道慢慢变成椭圆,因此,恒星的轨道可以表明它们的大致年龄。\n\n①然而,随着时间的推移,来自巨大气体云、星系旋臂和其他恒星的引力拖拽,会使恒星来回晃动\n\n②恒星诞生后,它会沿着相当于圆的轨道环绕星系中心运行\n\n③在重力的作用下,云团中的物质聚集在一起,其中一部分撞向中心,使其升温\n\n④到了某一时刻,云团的中心变得非常热,开始发光,一颗恒星就这样诞生了", "type": "单选题", "options": "A. ①③④②\nB. ②④③①\nC. ③④②①\nD. ④③②①", "choice": "C", "keypoints": "确定顺序;确定捆绑;中间", "most_wrong": "B", "human_count": 184467, "human_acc": 88.6592181799, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第60题", "difficulty": 3, "formulas": 0, "history": [{"id": 4678603, "material": "", "question": "对下面6个句子语序排列正确的一项是:\n\n①对于任何一个民族文化而言\n\n②人类历史的前进\n\n③方能获得文化补偿\n\n④拥有文化输出与文化接受的健全机制\n\n⑤离不开文化的交流融合\n\n⑥赢得空间上的拓宽和时间上的延展", "type": "单选题", "options": "A. ①④③⑥②⑤\nB. ②⑤①④⑥③\nC. ②⑤①④③⑥\nD. ①④⑥③②⑤", "choice": "C", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 13279, "human_acc": 53.6938022441, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第27题", "difficulty": 4, "formulas": 0}, {"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 19723, "material": "", "question": "①像慈母拍着将睡未睡的婴儿似的,它轻轻地拍着石岸;\n\n②水里小小的鱼儿,还有顽皮的小虾儿,在眼前游来游去;\n\n③盈盈的湖水一直荡漾到脚边,却又缓缓地退回去了;\n\n将以上三句话填在“四周的景色秀丽异常”一句的后面,语序最恰当的一组是:", "type": "单选题", "options": "A. ①③②\nB. ③②①\nC. ①②③\nD. ③①②", "choice": "D", "keypoints": "确定顺序", "most_wrong": "B", "human_count": 217291, "human_acc": 86.3201881348, "source": "2011年安徽省公务员录用考试《行测》题第17题", "difficulty": 4, "formulas": 0}, {"id": 4668891, "material": "", "question": "①现有的公共服务水平和广大人民群众的要求还有较大差距\n\n②公共产品供给总是持续增长\n\n③但由于多种因素的制约\n\n④公共服务总量形势仍然不容忽视\n\n⑤近年来,我国公共服务体系建设不断加强\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②③⑤④①\nB. ⑤②③④①\nC. ②⑤③①④\nD. ⑤③④②①", "choice": "B", "keypoints": "确定捆绑", "most_wrong": "D", "human_count": 1174592, "human_acc": 71.0965169182, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第42题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "确定顺序"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 5218534, "material": "", "question": "导管架平台是世界范围内应用最广泛的海洋油气开发设施,具有甲板面积大、可变载荷大、结构安全可靠等优点。受技术限制,之前我国的导管架平台主要依靠进口。近年来,我国海洋油气勘探开发不断向深水区挺进。中国海洋石油集团有限公司首次尝试300米级深水导管架平台开发模式,自主设计并成功建造了亚洲第一深水导管架——“海基一号”。与同等水深油气田常用的“水下生产系统+浮式生产平台”开发模式相比,“海基一号”大大降低了钻完井、工程以及后续的生产操作成本,提高了开发南海200米至400米中深海海域的油气资源的速度。\n\n这段文字意在说明:", "type": "单选题", "options": "A. “海基一号”填补了我国中深海海域油气开发的空白\nB. 成功建造“海基一号”对我国海洋油气开发意义重大\nC. 我国在深水导管架平台的研究与利用上取得重大突破\nD. “海基一号”有助于降低我国海洋油气开发的成本", "choice": "B", "keypoints": "主题词;关联词-并列;行文脉络-分总分;程度词", "most_wrong": "C", "human_count": 105047, "human_acc": 66.0856568964, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第43题", "difficulty": 5, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 3557024, "material": "", "question": "众所周知,传统的室内定位技术受到覆盖范围、精度、能耗和成本等因素掣肘显得“心余力绌”,而卫星定位又无法穿透建筑,无论是人还是物常常在室内“找不着北”。相对于其他定位技术,已建成5G网络的地方,将从室外宏覆盖,转向室内深度覆盖,具备了高精度定位的能力,不需要再单独建设定位网络,也不需要特定的终端或标签。虽然5G自身可以提供满足大多数场景定位应用的能力,但这一能力不能解决所有的定位问题,需要与不同技术融合定位。因此,基于5G基础设施的室内融合定位方案成为破解室内定位技术的“迷航”难题的重要手段,打开了室内定位市场的“另一扇窗”。\n\n这段话意在说明:", "type": "单选题", "options": "A. 5G能够满足多场景高精度的定位需求\nB. 5G为室内定位产业发展拓展新的应用场景\nC. 室内定位技术随着社会需求的变化不断更新\nD. 5G融合定位方案可以有效破解室内“迷航”问题", "choice": "D", "keypoints": "关联词-转折;关联词-因果;行文脉络-分总", "most_wrong": "B", "human_count": 101339, "human_acc": 82.8624715065, "source": "2021下半年省考第四季行测模考大赛(四川卷)第30题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"]]}, {"id": 4641797, "material": "2020年,全国一般公共预算收入182895亿元,同比下降3.9%,增速比上年降低7.7个百分点;支出245588亿元,同比增长2.8%,增速比上年降低5.3个百分点。其中,中央一般公共预算收入82771亿元,同比下降7.3%,增速比上年降低11.8个百分点,支出35096亿元,同比下降0.1%,增速比上年降低6.1个百分点;地方一般公共预算收入100124亿元,同比下降0.9%,支出210492亿元,同比增长3.3%。\n\n        全国政府性基金预算收入93489亿元,同比增长10.6%;支出117999亿元,同比增长28.8%。分中央和地方看,中央政府性基金预算收入同比下降11.8%,支出2715亿元,同比下降12.8%;地方政府性基金预算收入89927亿元,同比增长11.7%。\n\n        全国国有资本经营预算收入4778亿元,同比增长20.3%;支出2544亿元,同比增长10.8%。分中央和地方看,中央国有资本经营预算收入同比增长9.1%,支出874亿元,同比下降11.4%;地方国有资本经营预算收入2992亿元,同比增长28.1%,支出1670亿元,同比增长27.6%。", "question": "2020年全国一般公共预算收支中,下列各项的同比增长量由低到高排序正确的是:", "type": "单选题", "options": "A. 中央收入、地方收入、中央支出、地方支出\nB. 地方支出、中央支出、地方收入、中央收入\nC. 中央收入、中央支出、地方收入、地方支出\nD. 中央收入、地方支出、地方收入、中央支出", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 200781, "human_acc": 54.2496550968, "source": "2021下半年省考第三十六季行测模考大赛(浙江卷)第109题", "difficulty": 6, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 2036560, "material": "根据下列资料,回答86~90题:    \n\n      城市社区卫生服务中心和农村乡镇卫生院是我国卫生体系的重要组成部分。\n\n      2011年底,我国共有社区卫生服务中心7861家,从业人员328676人,其中,卫生技术人员276252人,占全国卫生人员总数的$4.5\\%$,占城市卫生技术人员总数的$8.8\\%$,城市每千人口卫生技术人员数为7.97人。\n\n  2011年底,乡镇卫生院37295家,从业人员1165996人,其中,卫生技术人员981227人,占全国卫生技术人员总数的$15.8\\%$,占农村卫生技术人员总数的$32.1\\%$。农村每千人口卫生技术人员数为3.18人。", "question": "2011年底,我国社区卫生服务中心从业人员中,不是卫生技术人员的有( )人。", "type": "单选题", "options": "A. 48790\nB. 52424\nC. 57438\nD. 69873", "choice": "B", "keypoints": "简单加减计算", "most_wrong": "C", "human_count": 28285, "human_acc": 96.5140533852, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第88题", "difficulty": 3, "formulas": 4, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"]]}, {"id": 10577, "material": "随着信息技术的迅猛发展和广泛应用,网络已经深入到社会的各个领域。青少年网络成瘾问题已经引起家庭、学校和社会的广泛关注,成为一个普遍关注的社会问题。 \n\n        某市,2006年的统计数据表明,该市青少年网络成瘾人数为30000人,比例达10%。其中,网络游戏成瘾的比例占到60%,同比2005年网络游戏成瘾人数增长了20%,网络游戏成瘾比例提高了5个百分点。网络成瘾表现出显著的性别差异,男性青少年网络成瘾的比例高达20%,女性青少年的这一比例为5%,且女性青少年网络成瘾者中,60%沉溺于网络聊天,网络游戏成瘾的比例只有30%。青少年网络成瘾问题不仅严重阻碍了青少年身心的健康发展,对社会的健康、和谐也造成了极大的危害。", "question": "该市2006年男性青少年网络游戏成瘾在网络成瘾中所占的比例为:", "type": "单选题", "options": "A. 60%\nB. 65%\nC. 70%\nD. 75%", "choice": "D", "keypoints": "混合比重;文字资料", "most_wrong": "C", "human_count": 14338, "human_acc": 28.7208815734, "source": "2009年河南省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "比重问题", "混合比重"], ["资料分析", "文字资料"]]}, {"id": 3689252, "material": "“十三五”期间,N市服务业增加值由2015年的2836.3亿元增加至2020年的4811.8亿元,年均增长$8.2\\%$,占GDP的比重由2015年的$43.6\\%$提升至2020年的$47.9\\%$。“十三五”期间全市新开工的亿元以上服务业重大项目971个,比“十二五”增加171个。\n\n2020年,全市金融业实现增加值681.2亿元,是2015年1.8倍。“十三五”期间,金融机构存贷款余额均突破万亿元。2020年末,全市本外币存款12154.9亿元,是2015年末的1.2倍;本外币贷款余额15535.3亿元,是2015年末的2.6倍。\n\n2020年,全市房地产业实现增加值850.1亿元,是2015年的2.1倍。“十三五”期间,全市商品房销售面积年均增长$16.4\\%$,2020年商品房月均销售面积达166.6万平方米,是2015年月均销售面积的2.1倍。\n\n2020年,营利性服务业实现增加值884.7亿元,是2015年的1.8倍。其中,信息传输、软件和信息技术服务业占服务业增加值的比重为$3.7\\%$,较2015年提升1.2个百分点;居民服务、修理和其他服务业占比$3.8\\%$,较2015年提升3.1个百分点。", "question": "2015年末,N市本外币存款与本外币贷款余额相差约:", "type": "单选题", "options": "A. 1210亿元\nB. 2781亿元\nC. 3380亿元\nD. 4154亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 114744, "human_acc": 85.5025099352, "source": "2021下半年省考第九季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 6, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 3707595, "material": "", "question": "科技发展一日千里,金融机构运用新技术提升服务效率、改进服务方式无可厚非,也是提高金融机构科技水平的必然选择。近两年来,商业银行关闭营业网点超过6000家,即使是已经具备智能化服务功能的银行ATM机,也在去年减少8万多台。疫情防控期间,网上银行、手机银行的“非接触”式服务更让人们进一步体会到金融业创新发展的魅力。虽然金融服务数字化、科技化发展是大势所趋,但不能因此而降低老年人的服务体验。金融机构的服务对象是包括老年人在内的所有客户群体,不管科技怎样进步、时代如何发展,金融服务都要坚持以人为本。金融服务智能化与数字化,不仅不能牺牲便利化,更不能以牺牲部分服务对象的利益为代价。\n\n通过这段文字,作者意在说明:", "type": "单选题", "options": "A. 金融服务创新要兼顾适老化需求\nB. 金融服务应继续提升包容性普适性\nC. 科技化发展不应回避老龄化问题\nD. 银行应着力建设老年人服务渠道", "choice": "A", "keypoints": "关联词-对策;行文脉络-分总分;程度词", "most_wrong": "B", "human_count": 114939, "human_acc": 81.1143302099, "source": "2021下半年省考第十季行测模考大赛(广东县级卷)第7题", "difficulty": 4, "formulas": 0, "history": [{"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 10257, "material": "", "question": "书是读不尽的,即使读尽也没有用,许多书都没有读的价值,多读一本没有价值的书,便丧失了读一本有价值的书的时间和精力。\n\n作者想要表达的观点是(  )。", "type": "单选题", "options": "A. 读书要少而精\nB. 读书要慎加选择\nC. 读书多了无益处\nD. 读书常会觉得得不偿失", "choice": "B", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 24841, "human_acc": 73.0968962602, "source": "2009年甘肃省公务员录用考试《行测》题第22题", "difficulty": 4, "formulas": 0}, {"id": 4619, "material": "", "question": "不要过分地依赖语言。不要总是企图在语言上占上风。语言解不开的,事实可以解开。语言解开了而事实没有解开的话,语言会失去价值,甚至于只能添乱。\n\n这段话的主要观点是:", "type": "单选题", "options": "A. 事实比语言更有力量\nB. 平常不要说太多的话以免惹出是非\nC. 没有事实基础的语言是毫无价值的\nD. 语言是不重要的,事实才是重要的", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "C", "human_count": 39770, "human_acc": 41.7525773196, "source": "2008年河北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 2051224, "material": "", "question": "“选举”一词早已见诸古代文献,古人常用以描述人才选拔入仕,其含义完全不同于现代。中国古代选举制度,经历了从西汉到晚清,从察举到科举两千多年的发展,使得政治权利、经济财富和社会地位与名望、主要社会资源的分配,得以通过选拔来实现。中国社会从而由西周至春秋的“世袭社会”转变为一种“选举社会”,即从一种封闭的等级社会转变为一种流动的等级社会。宋以后,“士大夫多出草野”,统治阶级的再生产发生了转变,对个人和家族谋求上升的途径选择产生深刻影响,用“选举社会”的概念来解释从秦汉到晚清的社会结构的演变,比其他解释这一历史时期的概念,如侧重整治上层的“官僚帝国社会”的概念,更能显示中国历史文明的特色。\n\n下列最适合做这段文字关键词的是:", "type": "单选题", "options": "A. 选举 选举社会 社会结构\nB. 选举 人才选拔 统治阶级\nC. 选举制度 世袭社会 选举社会\nD. 选举制度 社会资源分配 等级社会", "choice": "A", "keypoints": "主题词;程度词;特殊问法", "most_wrong": "C", "human_count": 934929, "human_acc": 51.3940630786, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第44题", "difficulty": 6, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 28483, "material": "", "question": "中华民族的强国梦一直是百年来国人的追求,实力之强与道德之强是通往强国之路的必经之途。道德是软实力,失去道德之强,绝无实力之强。\n\n本段阐述的主要观点是:", "type": "单选题", "options": "A. 道德是软实力\nB. 实力之强与道德之强同样重要\nC. 实力之强比道德之强重要\nD. 道德之强是实力之强的必要保障", "choice": "D", "keypoints": "程度词", "most_wrong": "B", "human_count": 23716, "human_acc": 85.2673300725, "source": "2008年江苏省公务员录用考试《行测》题(B类)第127题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 4906937, "material": "", "question": "我国《合同法》第117条规定,因不可抗力不能履行合同的,根据不可抗力的影响,部分或者全部免除责任,但法律另有规定的除外。可见,面对新冠肺炎疫情背景下的不可抗力,企业在法律允许的范围内,为避免合同的履行不能而免除自身部分或全部责任,是于法有据的,并无不妥。但这并不意味着企业可以随意行使不可抗力条款赋予的免责权利。尤其是在事关劳动者权益的保护方面,因企业员工与企业是从属关系,相互之间的地位并不平等,不可抗力条款按规定不能适用于劳动合同。我国《劳动法》没有在劳动合同中引入不可抗力条款,企业以不可抗力为由随意对员工减薪调薪或解除劳动合同,显然于法无据,是对员工劳动权益的粗暴侵犯。\n\n这段文字意在强调:", "type": "单选题", "options": "A. 《合同法》和《劳动法》的维护对象不同\nB. 企业对员工随意调薪或解除合同于法无据\nC. 企业不能以不可抗力为由侵犯劳动者权益\nD. 企业必须严格按照法律规定行使免责权利", "choice": "C", "keypoints": "关联词-转折;主题词;行文脉络-分总;程度词", "most_wrong": "D", "human_count": 290384, "human_acc": 87.1969530002, "source": "2022上半年省考第十五季行测模考大赛(陕西卷)第50题", "difficulty": 3, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11173, "material": "", "question": "科学理性有一个特点:可以理解的事物就可以被接受,不能理解的事物就不可以接受并且排斥。这是人智的特点也正是人智的局限所在。这句话想说明:", "type": "单选题", "options": "A. 科学的合理性\nB. 科学的作用\nC. 科学的局限性\nD. 科学的客观性", "choice": "D", "keypoints": "行文脉络-分总", "most_wrong": "C", "human_count": 27188, "human_acc": 21.6419008386, "source": "2008年湖北省公务员录用考试《行测》题(B类)第16题", "difficulty": 7, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 2137500, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "2016年上半年,S市以加工贸易方式出口手机数量约是以海关特殊监管方式出口的____倍。", "type": "单选题", "options": "A. 2.1\nB. 2.6\nC. 2.9\nD. 3.5", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 423973, "human_acc": 69.0121776623, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第87题", "difficulty": 5, "formulas": 38, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 5317409, "material": "", "question": "如果说,这些实际而持不可知论的官僚会对什么未见势力感到害怕的话,那就是暴民的狂怒易变和君主的反复无常,这两者都对让他们感到自在的现存体制构成了威胁。他们试图通过恐吓那些提出妖术指控的人来击败前者,通过对君主封锁消息来挫败后者。没有人会哀悼旧中国的官僚制度。即使按照当时的标准,它所造成的社会伤害也已超出了仅仅压碎几个无依无助的游民踝骨的程度。但不论是好事还是坏事,它的特性却可以阻挡任何一种狂热。没有这样一个应急的锚碇,中国就会在风暴中急剧偏航。在缺乏一种可行的替代制度的情况下,统治者就可以利用操纵民众的恐惧,将之转变为可怕的力量。生活于我们时代的那些异见人士和因社会背景或怪异信仰而易受指控的替罪羊,便会成为这种力量的攻击目标,没有什么能够伫立其间,以阻挡这种疯狂。\n\n根据这段文字,作者对旧中国官僚制度的态度是:", "type": "单选题", "options": "A. 大力表扬\nB. 严谨批判\nC. 谨慎喝彩\nD. 十分轻蔑", "choice": "C", "keypoints": "关联词-转折;行文脉络-分总分;特殊问法", "most_wrong": "B", "human_count": 262669, "human_acc": 27.0869421211, "source": "2022下半年省考第十四季行测模考大赛(深圳卷)第79题", "difficulty": 7, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 4619, "material": "", "question": "不要过分地依赖语言。不要总是企图在语言上占上风。语言解不开的,事实可以解开。语言解开了而事实没有解开的话,语言会失去价值,甚至于只能添乱。\n\n这段话的主要观点是:", "type": "单选题", "options": "A. 事实比语言更有力量\nB. 平常不要说太多的话以免惹出是非\nC. 没有事实基础的语言是毫无价值的\nD. 语言是不重要的,事实才是重要的", "choice": "A", "keypoints": "行文脉络-分总分", "most_wrong": "C", "human_count": 39770, "human_acc": 41.7525773196, "source": "2008年河北省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 43951, "material": "截至2011年4月21日22时,沪深两市已有534家上市公司公布第一季度财报。这534家公司实现营业总收入4572.78亿元,同比增长30.74%;实现净利润336.7亿元,同比增长30.52%。不过,一季度销售收入和净利润环比则有所下降,其中营业总收入环比下降12%,净利润环比下降25%,这534家公司2011年一季度存货6167.68亿元,较上年年末增长10%。\n\n        已公布一季报的创业板公司有71家,实现营业收入80.08亿元,同比增长73.60%;实现净利润13.16亿元,同比增长80%。已公布一季报的中小企业板公司有202家,实现营业收入789.97亿元,同比增长36%;实现净利润73.25亿元,同比增长25%。25家已公布一季报的房地产公司一季度实现营业收入193.68亿元,同比增长9%;实现净利润29.97亿元,同比增长31%;存货2892.18亿元,同比增长10%。\n\n        已公布一季报的6家钢铁板块公司一季度存货为322亿元,实现营业收入493.39亿元,同比略有降低,环比下降20%;实现净利润12.65亿元,同比增长62%,环比表现更好,这6家公司2010年四季度净亏损3.77亿元。\n\n        建筑机械类公司持续了之前的景气度,有4家公司公布一季报,实现营业总收入15.90亿元,同比增长39%;实现净利润1.18亿元,同比增长47.5%。", "question": "已公布一季报的534家公司,平均每家在2010年第四季度实现营业收入约多少亿元:", "type": "单选题", "options": "A. 0.63\nB. 7.54\nC. 8.56\nD. 9.73", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 970929, "human_acc": 57.1299240212, "source": "2013年国家公务员录用考试《行测》题第126题", "difficulty": 6, "formulas": 0, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 5105875, "material": "", "question": "在传统领域公益诉讼检察的基础上,为满足近年来人民群众对美好生活和公平正义向往的需要,英烈权益保护、未成年人保护、个人信息保护、特殊群体保护等先后成为公益诉讼检察的法定责任。2021年6月,最高检和退役军人事务部联合发布红色资源保护公益诉讼典型案例,贵州省人民检察院督促保护刀靶水红色遗址案入选。2021年,检察机关办理个人信息保护领域公益诉讼2000余件。最高检积极推进行政执法与公益诉讼检察衔接,重点监督App违规收集个人信息,银行保险、教育医疗等行业非法处理个人信息。此外,最高检高度重视特殊群体权益保障,在全国部署常态化专项监督,帮助老年群体消除“数字鸿沟”,还携手中国残联切实加强残疾人司法保护,全面推开无障碍环境建设公益诉讼。\n\n这段文字意在说明:", "type": "单选题", "options": "A. 最高检延伸法治覆盖面卓有成效\nB. 公益诉讼保障特殊群体合法权益\nC. 公益诉讼检察涉及领域持续拓展\nD. 维护公民个人信息安全刻不容缓", "choice": "C", "keypoints": "主题词;关联词-并列;行文脉络-总分", "most_wrong": "B", "human_count": 55106, "human_acc": 75.2295575799, "source": "2022下半年省考第二季行测模考大赛(新疆卷)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 5311, "material": "", "question": "古往今来,没有一场真正的根本性变革,不是大大推动社会生产力发展的。\n\n“真正的根本性变革”对“社会生产力发展”是否有推动作用:", "type": "单选题", "options": "A. 怎能会有\nB. 怎能没有\nC. 可能会有\nD. 可能没有", "choice": "B", "keypoints": "关联词-并列", "most_wrong": "C", "human_count": 37570, "human_acc": 93.0183657173, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第37题", "difficulty": 5, "formulas": 0}, {"id": 250121, "material": "", "question": "老师曾因我某段时期在写作中过于拘泥于语法规范而向我表示过不满,以为这样太琐细,太刻板,太学究气了。\n\n这段话主要支持了这样一种观点:", "type": "单选题", "options": "A. 老师认为拘泥于语法规范太刻板\nB. 老师对我不满\nC. 老师向我抱怨\nD. 老师拘泥于语法规范", "choice": "A", "keypoints": "行文脉络-总分", "most_wrong": "B", "human_count": 14563, "human_acc": 90.2286616769, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第37题", "difficulty": 3, "formulas": 0}, {"id": 769219, "material": "", "question": "思维是借助语言材料并以语言为载体而进行的。\n\n这句话主要支持了这样一种观点,即:", "type": "单选题", "options": "A. 只有借助语言才能实现文化传承\nB. 有了语言才能进行完整的思维活动\nC. 语言是社会群体意识的引导工具\nD. 语言是人类文明的重要标志之一", "choice": "B", "keypoints": "主题词", "most_wrong": "C", "human_count": 102605, "human_acc": 80.4064129428, "source": "2011年广东省公务员录用考试《行测》题第33题", "difficulty": 4, "formulas": 0}, {"id": 9173, "material": "", "question": "跳舞、唱歌别在意是否有他人关注;做事不要计较别人议论;参加竞聘面试别担心强手的对抗。\n\n这句话的意思是:", "type": "单选题", "options": "A. 只要自己痛快就行\nB. 做自己喜欢做的事情\nC. 成功全靠自己,不要靠别人\nD. 做事要独立,自信", "choice": "D", "keypoints": "关联词-并列", "most_wrong": "B", "human_count": 31219, "human_acc": 90.5538293988, "source": "2009年安徽省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "主题词"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-并列"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-总分"]]}, {"id": 5276845, "material": "", "question": "现阶段,中国中小企业不仅面临着全球同类企业数字化转型赛道上的直接挑战与全面竞争,还直接承受着国内大型企业数字化转型的比较优势与超前压力。中国中小企业大多数为私营企业和家族企业,企业发展往往取决于管理者自身经验与能力。一部分中小企业的管理者满足于现状,或存在二代接班意愿不足等问题,对企业创新突破发展的意愿不强。因此,部分中小企业并未听说,也不会主动了解数字化这一新鲜事物,更不会将数字化转型纳入到企业发展战略或规划中。而较多的对于数字化技术的应用大部分仅仅停留在自动化办公、员工管理、财务管理等方面电子替代化的初步探索阶段,或者出于对网络安全的不信任而未推动企业数字化的应用实践或深度应用。\n\n这段文字着重指出我国中小企业存在的哪一问题?", "type": "单选题", "options": "A. 部分中小企业的管理者自身能力不足\nB. 中小企业接触数字化转型较少\nC. 中小企业数字化转型面临着国内国际双重压力\nD. 部分中小企业在数字化转型意愿方面存在对抗情绪", "choice": "B", "keypoints": "关联词-因果;程度词;特殊问法", "most_wrong": "D", "human_count": 13091, "human_acc": 38.919868612, "source": "2022下半年省考第十季行测模考大赛(山东卷)第35题", "difficulty": 7, "formulas": 0, "history": [{"id": 12083, "material": "", "question": "世界上许多民族正面临着在世界舞台上丧失母语的话语权,不得不依附于西方弥补语言文字,从而使本民族的文化被逐渐弱化。这段话可以被用来论证下面的哪一种观点:", "type": "单选题", "options": "A. 保护本民族母语的重要性\nB. 语言文字也有强势弱势之分\nC. 民族的文化被逐渐弱化的原因\nD. 我们不能在语言文字上依附于西方", "choice": "C", "keypoints": "关联词-因果", "most_wrong": "A", "human_count": 26789, "human_acc": 40.9944380156, "source": "2008年湖北省公务员录用考试《行测》题(B类)第25题", "difficulty": 5, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 2703187, "material": "", "question": "能量转换是指能量形态上的转换,能量从一种形式转换成另一种形式。动能是指物体由于机械运动所具有的能量;热能就是分子热运动的能量。\n\n根据上述定义,下列没有主要体现“动能转化成热能”的是:", "type": "单选题", "options": "A. 电钻工作时的火花\nB. 取暖器\nC. 钻木取火\nD. 摩擦生热", "choice": "B", "keypoints": "特殊问法", "most_wrong": "A", "human_count": 265290, "human_acc": 86.0971012854, "source": "2021年国考终极行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2011454, "material": "", "question": "过去几十年,中国社会淡化了民族民俗。随着人们生活富裕,需要用一个个节日掀起娱乐高潮,这时发现我们的传统节日“贫乏”,难以满足人们的精神文化需求,于是,那些富于人情味的洋节便顺理成章地钻入了中国人的生活。 \n\n这段话对洋节进入中国人生活的态度是:", "type": "单选题", "options": "A. 理解\nB. 赞成\nC. 反对\nD. 无所谓", "choice": "A", "keypoints": "关联词-因果", "most_wrong": "C", "human_count": 7643, "human_acc": 73.6360068036, "source": "2010年安徽省公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0}, {"id": 28483, "material": "", "question": "中华民族的强国梦一直是百年来国人的追求,实力之强与道德之强是通往强国之路的必经之途。道德是软实力,失去道德之强,绝无实力之强。\n\n本段阐述的主要观点是:", "type": "单选题", "options": "A. 道德是软实力\nB. 实力之强与道德之强同样重要\nC. 实力之强比道德之强重要\nD. 道德之强是实力之强的必要保障", "choice": "D", "keypoints": "程度词", "most_wrong": "B", "human_count": 23716, "human_acc": 85.2673300725, "source": "2008年江苏省公务员录用考试《行测》题(B类)第127题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-因果"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"], ["言语理解与表达", "阅读理解", "中心理解题", "特殊问法"]]}, {"id": 2524788, "material": "", "question": "传统观念一直教育我们,多喝热水,忌冰凉(一般把$50^{\\circ}C$左右的水定义为热水,$25^{\\circ}C$左右的水定义为温水,$5^{\\circ}C$以下高于$0^{\\circ}C$的水则定义为冷水)。科学家找来15个健康志愿者,让他们通过吸管分别喝热水、热鸡汤和冷水,然后测量他们鼻腔粘液的流速和鼻腔气流阻力。结果发现,喝冷水会使鼻腔黏液变厚,空气更难通过呼吸道,相比之下,喝热鸡汤和热水都有助于志愿者轻松地呼吸。由此可见,喝冷水不利于身体健康。\n\n以下哪项如果为真,能够支持上述观点?", "type": "不定项", "options": "A. 15个健康志愿者在观察期间,除了喝水不同外,其余饮食、运动、睡眠质量基本一致\nB. 人体饮用冰凉液体时,会降低喉部温度,为病毒提供了更好的繁殖环境,让人感染疾病\nC. 对于贲门失弛缓症患者而言,饮用冷水会延长食管收缩时间,加重贲门失弛缓症状\nD. 有过偏头痛发作史的女性,因饮用冷水而头痛的可能性是未饮用冷水的女性的2倍", "choice": "ABCD", "keypoints": "补充论据;必要条件", "most_wrong": "", "human_count": 9772, "human_acc": 41.8133442489, "source": "2020年上半年省考第二十六季行测模考大赛(陕西卷)第107题", "difficulty": 7, "formulas": 4, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"], ["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 4882174, "material": "", "question": "依次填入文中画横线处的语句,顺序恰当的一项是:\n\n政务新媒体飞速发展的同时,也存在良莠不齐的问题。____________________。____________________。____________________。____________________。唯有如此,才能探索政民互动新方式,让政务新媒体利企便民、亮点纷呈,赢得更多认可。\n\n①政务新媒体在发展中变形走样,既有人员、经费不足的原因,也有考核指标和导向出现偏差的因素,亟待加强规范管理\n\n②政务新媒体账号的运营主体也应在打造优质内容上下功夫,努力创作广大人民群众喜闻乐见的内容\n\n③有的地方“一哄而上”,后期却因为运营不善留下一批“睡眠”账号;有的功能定位不清晰,一味追求下载量、阅读量、点赞量,偏离了主业\n\n④管理机构要肩负起监管职责,防止“唯流量”的做法,加大对功能相近、用户关注度和利用率低的政务新媒体的整合力度", "type": "单选题", "options": "A. ④②①③\nB. ③①④②\nC. ③②①④\nD. ④①②③", "choice": "B", "keypoints": "尾句特征;确定捆绑;中间", "most_wrong": "C", "human_count": 142968, "human_acc": 83.3515192211, "source": "2022上半年省考第十四季行测模考大赛(陕西卷)第60题", "difficulty": 3, "formulas": 0, "history": [{"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}, {"id": 4668891, "material": "", "question": "①现有的公共服务水平和广大人民群众的要求还有较大差距\n\n②公共产品供给总是持续增长\n\n③但由于多种因素的制约\n\n④公共服务总量形势仍然不容忽视\n\n⑤近年来,我国公共服务体系建设不断加强\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②③⑤④①\nB. ⑤②③④①\nC. ②⑤③①④\nD. ⑤③④②①", "choice": "B", "keypoints": "确定捆绑", "most_wrong": "D", "human_count": 1174592, "human_acc": 71.0965169182, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第42题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"], ["言语理解与表达", "语句表达", "语句排序题", "确定捆绑"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 4673123, "material": "2020年,全国职工基本医疗保险(以下简称职工医保)参保人数持续增加,基金收支规模基本稳定。参加职工医保34455万人,比上年同比增加1530万人。其中在职职工25429万人,比上年增长5.0%;退休职工9026万人,比上年增长3.7%。企业、机关事业、灵活就业等其他人员三类参保人员(包括在职职工和退休人员)分别为23317万人、6387万人、4751万人,分别比上年增加1050万人、155万人、325万人。\n\n        受新冠肺炎疫情影响,2020年2-7月全国多地实施阶段性减半征收职工医保单位缴费,累计减征约1649亿元,全年职工医保基金(含生育保险)收入15732亿元,比上年减少0.7%;支出12867亿元,比上年增长1.6%。2020年,职工医保统筹基金(含生育保险)收入9145亿元,比上年减少8.6%;支出7931亿元,比上年减少0.1%;当期结存1214亿元,累计结存15327亿元。\n\n        2020年,职工医保个人账户收入6587亿元,比上年增长12.8%;支出4936亿元,比上年增长4.5%;当期结存1650亿元,累计结存10096亿元。\n\n        2020年就诊量同比有所减少。参加职工医保人员享受待遇17.9亿人次,比上年减少15.6%。职工医保参保人员住院率15.9%,比上年下降2.8个百分点。其中:在职职工住院率为8.6%,比上年下降1.5个百分点;退休职工住院率为36.0%,比上年下降6.5个百分点。", "question": "2020年,下列指标的同比增长率从高到低排列正确的是(    )。", "type": "单选题", "options": "A. 职工医保基金(含生育保险)收入>职工医保个人账户收入>职工医保统筹基金(含生育保险)收入\nB. 职工医保个人账户支出>职工医保个人账户收入>职工医保统筹基金(含生育保险)收入\nC. 职工医保个人账户收入>职工医保基金(含生育保险)收入>职工医保基金(含生育保险)支出\nD. 职工医保基金(含生育保险)支出>职工医保统筹基金(含生育保险)支出>职工医保基金(含生育保险)收入", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 1083552, "human_acc": 61.6885945483, "source": "2022年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第89题", "difficulty": 4, "formulas": 0, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 43165, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "下列关于我国知识产权的描述中,不正确的是:", "type": "单选题", "options": "A. 2010年上半年,美国专利商标局受理的发明专利申请量的增长速度是欧洲专利局的3倍多\nB. 目前我国创新主体的创新能力和知识产权的国际竞争力与发达国家差距较大\nC. 目前,在向发达国家申请发明专利的过程中,我国向日本的申请量相对最少,其增长速度也相对最慢\nD. 2010年上半年,欧洲来华的发明专利申请数量是我国向其提交数量的33倍", "choice": "D", "keypoints": "综合分析", "most_wrong": "A", "human_count": 47643, "human_acc": 67.3845055937, "source": "2011年上海市公务员录用考试《行测》题(A类)第80题", "difficulty": 5, "formulas": 0, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"]]}, {"id": 2393640, "material": "", "question": "伦敦是世界上最拥挤的城市之一,在拥挤程度最甚的街道上,车速甚至在12英里/小时之下。面对这种状况,伦敦政府开始对机动车收取拥堵费,当天或者之前交费,每辆8英镑。开始的一段时间,伦敦街道拥堵的状况有所好转,可是随着时间的推移,拥堵又出现反弹。不久,拥堵达到了最大化,伦敦行车速度只能在8英里/小时以下。原来,在收取拥堵费之前,许多私家车主觉得城市的拥堵也有自己的责任,不自觉地产生了一种“负罪感”,从而有意无意地减少驾车出行的时间。可是当他们交了8英镑的拥堵费之后,就认为自己为“错误”付出了代价,驾车出行理直气壮,没有了“负罪感”。很多时候,面对别人犯下的错误,我们总想让对方付出代价。可是,有时候,最好的方式就是宽容甚至“放任”他的错误。只有这样,他才会产生内疚感,从而能长时间地记住这个错误,永远不犯同样的错误。\n\n这段文字主要说明了:", "type": "单选题", "options": "A. 只从制定规则考虑没有从道德去考虑易适得其反\nB. 面对伦敦的交通拥堵最好的方式就是宽容\nC. 伦敦的交通政策不完善\nD. 人们不遵守交通规则", "choice": "B", "keypoints": "关联词-转折;关联词-对策;行文脉络-分总分;程度词", "most_wrong": "A", "human_count": 823, "human_acc": 30.9842041312, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 3973, "material": "", "question": "生物质能是一种新能源。但由于目前其利用受到土地资源等多方面限制,发展前景还不是很广阔。\n\n这段话主要支持了这样一种论点,即生物质能:", "type": "单选题", "options": "A. 是一种新能源\nB. 利用受到限制\nC. 发展前景并不广阔\nD. 利用面很窄", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "B", "human_count": 21417, "human_acc": 46.855301863, "source": "2008年内蒙古自治区公务员录用考试《行测》题第19题", "difficulty": 5, "formulas": 0}, {"id": 826691, "material": "", "question": "法国作家雨果说:“人有了物质才能生存,有了理想才谈得上生活。”\n\n雨果这句话意在强调:", "type": "单选题", "options": "A. 理想源于现实又高于现实\nB. 理想受生活存在的制约\nC. 人要有物质生活,又要有精神生活\nD. 人的存在由高到低可以分出不同层次", "choice": "C", "keypoints": "关联词-对策", "most_wrong": "A", "human_count": 157370, "human_acc": 62.5049246998, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第1题", "difficulty": 5, "formulas": 0}, {"id": 16413, "material": "", "question": "“腹有诗书气自华”。学富五车不是为了谈话时引经据典卖弄才学,也不是为了换得一纸文凭做利禄捷径,而是看重其对个人心灵的陶冶,正如朱熹所说,“问渠那得清如许?为有源头活水来”。这段文字意在说明:", "type": "单选题", "options": "A. 读书观念的演变\nB. 古人读书的态度\nC. 对读书价值的正确认识\nD. 读书的内在和外在动机", "choice": "C", "keypoints": "行文脉络-分总分", "most_wrong": "D", "human_count": 249999, "human_acc": 92.8479713919, "source": "2010年贵州省公务员录用考试《行测》题第27题", "difficulty": 3, "formulas": 0}, {"id": 7865, "material": "", "question": "社情不等同于民意,但社情包含着民意;民意不等同于社情,但民意是最重要的社情。了解和反映社情民意,最主要的是了解和反映民情民意。\n这段话表达的主要观点是:", "type": "单选题", "options": "A. 社情包括民情\nB. 民意不包括社情\nC. 一般说,社情就是民情\nD. 反映民情就是社情", "choice": "D", "keypoints": "行文脉络-分总;程度词", "most_wrong": "A", "human_count": 30195, "human_acc": 45.3022023514, "source": "2009年江西省公务员录用考试《行测》题第15题", "difficulty": 5, "formulas": 0}, {"id": 4343, "material": "", "question": "某些病毒毫无疑问能引起癌症。可是,有一些儿童期的癌症却可能是由于在生命早期接触感染过少而引起的。\n\n作者想要表述的观点是:", "type": "单选题", "options": "A. 儿童期接触病毒可能引发癌症\nB. 生命早期接触病毒会引发成年时癌症\nC. 儿童期适当接触病毒可能增强免疫力\nD. 某些病毒能够引起癌症", "choice": "C", "keypoints": "关联词-转折", "most_wrong": "A", "human_count": 39790, "human_acc": 90.6308117617, "source": "2008年福建省公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题", "关联词-转折"], ["言语理解与表达", "阅读理解", "中心理解题", "关联词-对策"], ["言语理解与表达", "阅读理解", "中心理解题", "行文脉络-分总分"], ["言语理解与表达", "阅读理解", "中心理解题", "程度词"]]}, {"id": 4737723, "material": "2014年我国快递服务企业业务量完成139.6亿件,同比增长51.9%;快递业务收入完成2045.4亿元,同比增长41.9%。快递业务收入占邮政行业总收入的比重为63.9%,比上年提高7.3个百分点。\n\n        全年同城快递业务量完成35.5亿件,同比增长55.1%;实现业务收入265.9亿元,同比增长59.8%。异地快递业务快速增长。全年异地快递业务量完成100.9亿件,同比增长52.0%;实现业务收入1130.6亿元,同比增长36.4%。国际及港澳台快递业务稳定增长。全年国际及港澳台快递业务量完成3.3亿件,同比增长24.7%;实现业务收入315.9亿元,同比增长16.7%。同城快递业务占比上升。同城、异地、国际及港澳台快递业务量占全部比例分别为25.4%、72.3%和2.3%,业务收入占全部比例分别为13.0%、55.3%和15.4%。\n\n        全年东部地区完成快递业务量114.5亿件,同比增53.2%;实现业务收入1694.3亿元,同比增长41.3%。中部地区完成快递业务量14.8亿件,同比增长49.2%;实现业务收入191.6亿元,同比增长44.3%。西部地区完成快递业务量10.3亿件,同比增长42.4%;实现业务收入159.5亿元,同比增长45.3%。东、中、西部地区快递业务量比重分别为82.0%、10.6%和7.4%,快递业务收入比重分别为82.8%、9.4%和7.8%。\n\n        民营快递企业持续快速发展。全年国有快递企业业务量完成18.7亿件,实现业务收入300亿元;民营快递企业业务量完成119.5亿件,实现业务收入1541亿元;外资快递企业业务量完成1.4亿件,实现业务收入204.2亿元。国有、民营、外资快递企业业务量市场份额分别为13.4%、85.6%和1.0%,业务收入市场份额分别为14.7%、75.3%和10.0%。", "question": "2014年,平均每件快递业务收入较上年增长最快的是:", "type": "单选题", "options": "A. 同城\nB. 异地\nC. 国际及港澳台\nD. 无法确定", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 3635, "human_acc": 80.3301237964, "source": "2017年福建省选调生考试《行政职业能力测验》第97题", "difficulty": 4, "formulas": 0, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 23343, "material": "根据所给资料,完成各题。\n\n        2009年7月,全国粗钢产量同比增长$12.6\\%$,增速比上个月提高6.6个百分点;钢材产量同比增长$19.4\\%$,增速比上个月提高5.4个百分点;焦炭产量同比增长$6.3\\%$;铁合金产量同比增长$15.1\\%$。钢材出口181万吨,比上月增加38万吨;进口174万吨,比上月增加11万吨。钢坯进口57万吨,比上月增加19万吨。焦炭出口5万吨,比上月增加2万吨。\n\n        1—7月,全国粗钢产量31731万吨,同比增长$2.9\\%$,增速同比下降6.4个百分点。钢材产量37784万吨,同比下降$7.6\\%$,增速同比下降4.1个百分点。焦炭产量19048万吨,同比下降$3.5\\%$,上年同期的同比增长率为$11.3\\%$。铁合金产量1124万吨,同比增长$0.8\\%$,增速同比下降16.8个百分点。钢坯进口323万吨,同比增长27.9倍。钢材出口1116万吨,同比下降$67.3\\%$;进口988万吨,同比增长$1.6\\%$。铁矿砂进口35525万吨,同比增长$31.8\\%$。焦炭出口28万吨,同比下降$96.6\\%$。", "question": "2007年,1-7月,全国粗钢产量约为多少亿吨?", "type": "单选题", "options": "A. 2.0\nB. 2.4\nC. 2.8\nD. 3.2", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 178357, "human_acc": 63.5618450636, "source": "2012年安徽省公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 13, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 5301684, "material": "国家统计局公布的全国粮食生产数据显示,2021年,全国粮食总产量13657亿斤,比上年增长2.0%,全年粮食产量再创新高,连续7年保持在1.3万亿斤以上。其中,秋粮产量10178亿斤,比上年增长1.9%。全国粮食播种面积17.64亿亩,比上年增长0.7%,连续两年实现增长。\n\n        玉米、小麦播种面积增加,稻谷略有减少。2021年,全国谷物播种面积15.03亿亩,比上年增长2.3%。去年以来,玉米价格大幅上涨,种植效益提高,农民种植玉米意愿增强,全国玉米播种面积达6.50亿亩,比上年增长5.0%。受播期土壤墒情适宜和种植效益趋好等有利因素影响,小麦播种面积3.54亿亩,比上年增长0.8%,扭转了面积连续4年下滑的势头。稻谷播种面积4.49亿亩,比上年下降0.5%。\n\n        2021年,全国谷物单产421公斤/亩,每亩产量比上年增长0.3%。其中,稻谷单产474公斤/亩,增长1.0%;小麦单产387公斤/亩,增长1.2%。受河南等黄淮海地区洪涝灾害影响,全国玉米单产419公斤/亩,下降0.4%。", "question": "2021年我国稻谷、小麦、玉米中,产量的同比增速高于播种面积的同比增速的有几类?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "两期平均数比较;文字资料", "most_wrong": "C", "human_count": 202916, "human_acc": 75.9112144927, "source": "2022下半年省考第十二季行测模考大赛(深圳卷)第100题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "两期平均数比较"], ["资料分析", "文字资料"]]}, {"id": 4004873, "material": "2018年共进口木材11194.4万立方米(原木锯材合计,原木材积)金额210.9亿美元,同比分别增长3.2%和5.6%。数量增幅比上年同期下降了12.9个百分点,金额增幅下降了17.6个百分点。\n\n        2018年进口木材及木制品总金额245.89亿美元(不含纸及纸制品),增长6.3%。出口总金额362.53亿美元,增长2%。2018年进口原木5974.9万立方米,金额101.08亿美元,分别增长7.9%和10.7%;进口锯材3674万立方米,金额101.08亿美元,分别下降1.7%和增长0.4%。\n\n        2018年木家具进口金额9.24亿美元,增长3.6%,木框架坐具进口金额3.32亿美元,增长13.8%。刨花板2016年进口增幅41%,2017年增幅21%,2018年进口69.2万吨,为负增长(-2.7%)。2018年木制品出口金额仅增长2%。2018年木家具出口数量增长5.68%,金额负增长1.6%,木地板出口26.6万吨,3.85亿美元,分别下降24.8%和下降25.9%。胶合板出口1137.8万立方米,55.56亿美元,数量增长5%,金额增长9%,纤维板出口179万吨,38.35亿美元,数量下降14.9%,金额增长6.2%。木制品出口企业普遍效益下降。2018年进口针叶原木4159.7万立方米,金额57.86亿美元,同比分别增长8.8%和12.6%。\n\n        针叶原木从新西兰进口1729.4万立方米,增长23.2%,俄罗斯795.3万立方米,下降10.1%。美国502.8万立方米,增长2.3%,澳大利亚413.4万立方米,下降3.7%。乌拉圭209万立方米,同比增长175.4%,从日本进口针叶原木92.3万立方米,同比增长23%。2018年进口针叶锯材2488万立方米,金额49.91亿美元,分别下降0.7%和增长2.3%。其中来自俄罗斯针叶锯材1567.4万立方米,增长9.7%,占进口针叶锯材63%,从加拿大进口417.4万立方米,大幅下降18.2%,占进口针叶锯材的17%。", "question": "2017年,针叶原木进口量排第四的是哪个国家?", "type": "单选题", "options": "A. 俄罗斯\nB. 美国\nC. 澳大利亚\nD. 乌拉圭", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 535712, "human_acc": 66.0548951676, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第101题", "difficulty": 5, "formulas": 0, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 163513, "material": "2012年,建材工业增加值同比增长$11.5\\%$,增速回落8个百分点,占全国工业增加值的$6.6\\%$。全年水泥产量21.8亿吨、同比增长$7.4\\%$,陶瓷砖92亿平方米、同比增长$9.4\\%$,天然花岗岩石材4.1亿平方米、同比增长$27.2\\%$,平板玻璃7.1亿重量箱、同比下降$3.2\\%$,卫生陶瓷产量1.6亿件、同比下降$13.1\\%$。\n\n        2012年底规模以上企业3.4万家,全年完成主营业务收入5.3万亿元,同比增长$13.4\\%$。尽管水泥、平板玻璃等行业利润总额同比分别下降$32.8\\%$、$66.6\\%$,但由于水泥制品、轻质建筑材料、建筑陶瓷、耐火材料制品、金属门窗和玻纤增强塑料材料等行业利润总额同比分别增长$22.5\\%$、$21.8\\%$、$33.8\\%$、$10.5\\%$、$26.9\\%$和$30.6\\%$,全行业利润总额仍创3750亿元新高,同比增长$3.5\\%$。\n\n        大宗产品产销率呈下降态势,水泥产销率$97.3\\%$、同比下降0.6个百分点,平板玻璃产销率$95.6\\%$、同比下降0.1个百分点。截至12月份,水泥制造业存货790亿元,同比增加$1.8\\%$;砖瓦、石材等建筑材料制造业存货590亿元,同比增加$15.7\\%$;玻璃制品制造业存货319亿元,同比增加$15.8\\%$。\n\n        2012年行业出口交货值约2250亿元,同比增长$7.9\\%$,出口商品离岸价格上涨$9.3\\%$。其中,建筑卫生陶瓷、建筑和技术玻璃、玻璃纤维及制品出口额同比分别增长$31.5\\%$、$10\\%$、$5.7\\%$。", "question": "如2012年建材行业无新增规模以上企业,则当年平均每家规模以上企业完成主营业务收入约比上年增长多少亿元:", "type": "单选题", "options": "A. 0.07\nB. 0.18\nC. 0.63\nD. 1.56", "choice": "B", "keypoints": "平均数的增长量;文字资料", "most_wrong": "D", "human_count": 223033, "human_acc": 73.4918151126, "source": "2014年北京市公务员录用考试《行测》题第122题", "difficulty": 5, "formulas": 27, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 2742320, "material": "2016年全国女性就业人员占全社会就业人员的比重为$43.1\\%$,其中城镇单位女性就业人员6518万人,比2010年增加1656万人。\n\n        2016年公有制企事业单位中女性专业技术人员1480万人,比2010年增加211万人,所占比重达$47.8\\%$,提高2.8个百分点;其中女性高级专业技术人员161万人,比2010年增加59.3万人,所占比重$38.3\\%$,提高3个百分点。\n\n        2016年企业董事会中女职工董事占职工董事的比重为$39.9\\%$,企业监事会中女职工监事占职工监事的比重为$40.1\\%$,比2010年分别提高7.2和4.9个百分点;企业职工代表大会中女性代表比重为$28.7\\%$,略低于2010年0.3个百分点。\n\n        2016年女性参加生育保险的人数达8020万人,比2010年增长$49\\%$。2016年,参加城镇职工基本医疗保险的女性1.4亿人,比2011年增长$21.5\\%$;参加城镇居民基本医疗保险的女性1.9亿人,比2011年增长了1.5倍。\n\n        2016年全国参加城镇职工基本养老保险人数3.8亿人,其中女性1.8亿人,占比比2010年提高3个百分点;2016年,参加城乡居民基本养老保险人数5.1亿人,其中女性超过1.7亿人。\n\n        2016年全国参加失业保险的人数超过1.8亿人,其中女性7551万人,分别比2010年增加4713万人和2402万人,增长约$35\\%$和$47\\%$;参加工伤保险人数2.2亿人,其中女性8129万人,分别比2010年增加5728万人和2429万人,增长约$35\\%$和$43\\%$。", "question": "如2017年及以后年份同比增量保持不变,同比增量按照2011-2016年间同比增量的平均值计算,全国参加失业保险的女性将在哪年超过1.2亿人?", "type": "单选题", "options": "A. 2024\nB. 2026\nC. 2028\nD. 2030", "choice": "C", "keypoints": "现期追赶;文字资料", "most_wrong": "B", "human_count": 675513, "human_acc": 49.0026098684, "source": "2021年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第134题", "difficulty": 4, "formulas": 12, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 5721922, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2020年1-9月我国黄金首饰、金条及金币、工业及其他领域黄金消费量的结构比例约为:", "type": "单选题", "options": "A. 51.3:32.3:16.4\nB. 26.3:65.0:8.7\nC. 67.6:26.7:5.7\nD. 62.6:26.0:11.4", "choice": "D", "keypoints": "基期比重;比值计算;文字资料", "most_wrong": "C", "human_count": 111521, "human_acc": 63.3118426126, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第92题", "difficulty": 5, "formulas": 0, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 2578804, "material": "2017年,S市服务业小微样本企业总体实现营业收入105.39亿元,同比增长$3.1\\%$ ,比2016年回落了15.7个百分点,户均实现营业收入510.63万元。\n\n        2017年,S市服务业小微样本企业总体资产938.58亿元,同比增长$4.2\\%$ ,增速比2016年下降0.9个百分点,户均资产4547.40万元。分门类看,除房地产业,交通运输、仓储和邮政业,教育业资产总计比2016年分别下降$3.1\\%$、$5.4\\%$和$6.8\\%$外,其他行业资产总计同比均有不同程度的增长。\n\n        2017年,S市服务业小微样本企业总体营业税金及附加为1.09亿元,同比下降$29.5\\%$;缴纳增值税2.30亿元,同比增长$11.6\\%$,户均缴纳增值税11.16万元。\n\n        2017年,S市服务业小微样本企业总体应付职工薪酬19.28亿元,比2016年增长$9.3\\%$。户均应付职工薪酬93.50万元。从业人员人数29028人,人均年薪酬6.64万元,比2016年增加0.60万元。", "question": "2017年,S市服务业小微样本企业平均每万元资产实现营业收入比2015年:", "type": "单选题", "options": "A. 增长了不到$5\\%$\nB. 增长了$5\\%$以上\nC. 下降了不到$5\\%$\nD. 下降了$5\\%$以上", "choice": "B", "keypoints": "平均数的增长率;间隔增长率;文字资料", "most_wrong": "C", "human_count": 794932, "human_acc": 46.3195594089, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第97题", "difficulty": 6, "formulas": 343, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 4652175, "material": "2019年A市专利密集型产业实现增加值6918.8亿元,比上年增长9.6%,分别高于战略性新兴产业、高技术产业增加值增速2.3个和1.7个百分点;专利密集型产业增加值占GDP的比重为19.5%,比上年提高0.4个百分点。\n\n        2019年专利密集型产业发明专利申请量占专利申请总量的比重为66%,比规模以上重点企业高5.1个百分点。专利密集型产业每亿元R&D经费产生的发明专利申请量为73.1件,比规模以上重点企业高3.6件;企业户均拥有有效发明专利15.6件,是规模以上重点企业的2.2倍。从成果转化看,已被成功实施的发明专利数为5.2万件,占有效发明专利数的58.4%。\n\n        在专利密集型产业中,2019年信息通信技术服务业实现营业收入10198.5亿元,增速达41.3%;实现利润197.6亿元,比上年增长1倍;单位企业实现营业收入12亿元,是专利密集型产业平均水平的3.3倍。\n\n        在专利密集型产业中,2019年医药医疗产业营业收入、利润分别增长13.7%和5%;收入利润率达到17%,高于专利密集型产业平均水平4.1个百分点;单位企业营业收入、利润分别为4.5亿元和0.76亿元。", "question": "现已知2019年A市①专利密集型产业专利申请总量、②专利密集型产业R&D经费占专利密集型产业实现增加值的比重。如果想得到当年A市专利密集型产业发明专利申请量的数值,下列说法正确的是:", "type": "单选题", "options": "A. 补充①可以得到,补充②不可以得到\nB. 补充①不可以得到,补充②可以得到\nC. 补充①和②中任一条可以得到\nD. ①和②两条相加才可以得到", "choice": "C", "keypoints": "现期比重;现期平均数;文字资料", "most_wrong": "A", "human_count": 553394, "human_acc": 48.7957946779, "source": "2022年北京市公务员录用考试《行测》题(网友回忆版)第127题", "difficulty": 4, "formulas": 0, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 2742310, "material": "2016年全国女性就业人员占全社会就业人员的比重为$43.1\\%$,其中城镇单位女性就业人员6518万人,比2010年增加1656万人。\n\n        2016年公有制企事业单位中女性专业技术人员1480万人,比2010年增加211万人,所占比重达$47.8\\%$,提高2.8个百分点;其中女性高级专业技术人员161万人,比2010年增加59.3万人,所占比重$38.3\\%$,提高3个百分点。\n\n        2016年企业董事会中女职工董事占职工董事的比重为$39.9\\%$,企业监事会中女职工监事占职工监事的比重为$40.1\\%$,比2010年分别提高7.2和4.9个百分点;企业职工代表大会中女性代表比重为$28.7\\%$,略低于2010年0.3个百分点。\n\n        2016年女性参加生育保险的人数达8020万人,比2010年增长$49\\%$。2016年,参加城镇职工基本医疗保险的女性1.4亿人,比2011年增长$21.5\\%$;参加城镇居民基本医疗保险的女性1.9亿人,比2011年增长了1.5倍。\n\n        2016年全国参加城镇职工基本养老保险人数3.8亿人,其中女性1.8亿人,占比比2010年提高3个百分点;2016年,参加城乡居民基本养老保险人数5.1亿人,其中女性超过1.7亿人。\n\n        2016年全国参加失业保险的人数超过1.8亿人,其中女性7551万人,分别比2010年增加4713万人和2402万人,增长约$35\\%$和$47\\%$;参加工伤保险人数2.2亿人,其中女性8129万人,分别比2010年增加5728万人和2429万人,增长约$35\\%$和$43\\%$。", "question": "2010-2016年全国城镇单位女性就业人员年均增加约多少万人?", "type": "单选题", "options": "A. 207\nB. 237\nC. 276\nD. 331", "choice": "C", "keypoints": "年均增长量;文字资料", "most_wrong": "B", "human_count": 610073, "human_acc": 87.8935799486, "source": "2021年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第131题", "difficulty": 3, "formulas": 12, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长量", "年均增长量"], ["资料分析", "文字资料"]]}, {"id": 2067078, "material": "根据中华人民共和国2016年国民经济和社会发展统计公报公布的数据显示,2016年末全部金融机构本外币各项存款余额155.5万亿元,比年初增加15.7万亿元,其中人民币各项存款余额150.6万亿元,增加14.9万亿元。全部金融机构本外币各项贷款余额112.1万亿元,增加12.7万亿元,其中人民币各项贷款余额106.6万亿元,增加12.6万亿元。\n\n        金融机构境内住户人民币消费贷款余额250472亿元,增加60998亿元。其中,短期消费贷款余额49313亿元,增加8347亿元;中长期消费贷款余额201159亿元,增加52651亿元。\n\n        全年保险公司$原保险保费收入 ^{[1]}$30959亿元,比上年增加$27.5\\%$。其中,寿险业务原保险保费收入17442亿元,健康险和意外伤害险业务原保险保费收入4792亿元,财产险业务原保险保费收入8725亿元。支付各类赔款及给付10513亿元。其中寿险业务给付4603亿元,健康险和意外伤害险赔款及给付1184亿元,财产险业务赔款4726亿元。\n\n注:[1]原保险保费收入是指保险企业确认的原保险合同保费收入。", "question": "2016全年保险公司寿险业务原保险保费,健康险和意外伤害险业务原保险保费,财产险业务原保险保费的收付比最高的是(  )。", "type": "单选题", "options": "A. 寿险业务原保险保费\nB. 健康险和意外伤害险业务原保险保费\nC. 财产险业务原保险保费\nD. 无法判断", "choice": "B", "keypoints": "比值比较;文字资料", "most_wrong": "A", "human_count": 83354, "human_acc": 61.7282913837, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第104题", "difficulty": 5, "formulas": 2, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "倍数与比值相关", "比值比较"], ["资料分析", "文字资料"]]}, {"id": 3716223, "material": "2017年,我国专利申请量369.8万件,比上年增长$6.7\\%$,增速较上年同期低17.1个百分点,其中国内专利申请量总数达353.6万件。专利授权量183.6万件,比上年增长$4.7\\%$,增速较上年同期高2.6个百分点,其中国内专利授权量达172.1万件。\n\n        截至2017年底,我国的有效专利总量为714.8万件。其中,国内有效专利和国外有效专利分别为632.4万件和82.4万件,分别比上年增长$14.4\\%$和$8.6\\%$。在国内有效专利中,国内有效发明专利为141.1万件,占比$22.3\\%$,比上年提高1.4个百分点。\n\n        2017年,中国在“一带一路”沿线国家(不含中国)专利申请公开量为5608件,较2016年增长$16.0\\%$。其中,在印度申请2724件专利,申请公开量持续居所有目的国之首;在俄罗斯专利申请公开量为1354件,同比增长$71.6\\%$,居第二位;新加坡、越南和波兰位居第三至第五位,专利申请公开量分别为643件、279件和144件。中国在前五个目的国的专利申请公开量共计5144件,占比达$91.7\\%$,专利申请布局持续呈现高度集中的态势。2017年,“一带一路”沿线国家在华申请专利4319件,较2016年增长$16.8\\%$;在华申请专利的国家数达到41个,较2016年增加4个。", "question": "2017年,我国专利申请量较2015年约增长多少万件?", "type": "单选题", "options": "A. 280\nB. 74\nC. 12\nD. 90", "choice": "D", "keypoints": "间隔增长量;文字资料", "most_wrong": "B", "human_count": 101826, "human_acc": 68.106377546, "source": "2021下半年省考第十季行测模考大赛(广东县级卷)第96题", "difficulty": 6, "formulas": 9, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长量", "间隔增长量"], ["资料分析", "文字资料"]]}, {"id": 5696681, "material": "2021年上半年,全国新办涉税市场主体累计达624.3万户,较2020年同期增长27.3%,较2019年同期增长22.8%。其中1-5月全国新办涉税市场主体累计达522.25万户,较2020年同期增长40.19%;1-4月全国新办涉税市场主体累计达413万户,同比增长58.5%。\n\n        2021年上半年,分类型看,新办企业332.3万户,新办个体工商户284.2万户,新办其他类型市场主体(如事业单位、民办非企业单位等)7.8万户,同比分别增长26.8%、28.3%和18%。其中1-5月新办企业278.41万户,新办个体工商户237.04万户,同比分别增长37.14%、45.37%。\n\n        2021年上半年,分所有制看,新办民营经济涉税市场主体较2020年同期增长27.4%,占比98.9%,较2020年、2019年同期分别提高0.05、0.47个百分点。其中1-5月新办民营涉税市场主体共计516.32万户,占比持续攀升,较2020年、2019年同期分别提高0.09、0.53个百分点。\n\n        2021年1-5月,分行业看,批发零售业、商务服务业、建筑业3个行业新办涉税市场主体合计292.74万户,占全部新办涉税市场主体的56.05%。信息技术服务业、科学研究和技术服务业等现代服务业新办涉税市场主体数量占比持续提高,分别从2020年的3.81%、5.49%提高至2021年的5.19%和6.08%。", "question": "2020年上半年,全国新办涉税市场主体累计户数较2019年同期约增长了:", "type": "单选题", "options": "A. 3.5%\nB. 11%\nC. -11%\nD. -3.5%", "choice": "D", "keypoints": "间隔增长率;文字资料;一般增长率", "most_wrong": "A", "human_count": 101177, "human_acc": 70.260039337, "source": "2023下半年省考第十六季行测模考大赛(广东县级卷)第92题", "difficulty": 4, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 5408630, "material": "2020年末,全国共有艺术表演团体17581个,比上年末减少214个;从业人员43.69万人,增加2.44万人。其中各级文化和旅游部门所属艺术表演团体2060个,占11.7%,从业人员10.75万人,占24.6%。\n\n        2020年,全国艺术表演团体共演出225.61万场,比上年下降24.0%;国内观众8.93亿人次,下降27.4%;演出收入86.63亿元,下降31.7%。\n\n        2020年,全国文化和旅游部门所属艺术表演团体共组织政府采购公益演出13.38万场,比上年下降14.9%;观众0.86亿人次,下降27.9%。\n\n        2020年末,全国公共图书馆实际使用房屋建筑面积1785.77万平方米,比上年末增长12.2%;全国图书总藏量117929.99万册,增长6.1%;阅览室坐席数126.47万个,增长6.2%;计算机226234台,增加419台;其中供读者使用的电子阅览终端143714台,减少2022台。\n\n        2020年末,全国共有群众文化机构43687个,比上年末减少386个。其中乡镇综合文化站32825个,减少705个。年末全国群众文化机构从业人员185076人,比上年末减少4992人。其中具有高级职称的人员7075人,具有中级职称人员17969人。", "question": "2020年末,平均每个各级文化和旅游部门所属艺术表演团体的从业人数约是全国所有艺术表演团体的多少倍?", "type": "单选题", "options": "A. 0.5\nB. 0.8\nC. 1.3\nD. 2.1", "choice": "D", "keypoints": "现期平均数;现期倍数;文字资料", "most_wrong": "A", "human_count": 630850, "human_acc": 68.4934612031, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第96题", "difficulty": 4, "formulas": 0, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 4698209, "material": "2020年,G市公路、水路运输客货周转量1207487.36万吨公里,同比增长0.1%。公路运输客货周转量“十三五”期间(2016-2020年累计)8333958.40万吨公里,比“十二五”期间(2011-2015年累计)增加了497707.78万吨公里,占公路、水路运输客货周转量的99.3%。\n\n        2020年,全市民用汽车拥有量76.17万辆,比2015年增加34.18万辆。其中,全市私人汽车拥有量70.50万辆,比2015年增加33.76万辆。\n\n        全市接待游客人数,从2015年的4469.95万人增长到2020年的10241.20万人。其中,接待国内游客人数,从2015年的4253.61万人增加到2020年的10231.37万人。全市旅游收入,从2015年的517.59亿元增加到2020年的1233.54亿元。其中,国内旅游收入,从2015年的453.51亿元增加到2020年的1231.09亿元;剔除新冠肺炎疫情影响,全市入境旅游收入稳步提升,从2015年的64.08亿元增加到2019年的142.50亿元。\n\n        全市邮电业务总量由2015年的67.83亿元增长到2020年的510.54亿元。其中,邮政业务总量从2015年的4.24亿元增长到2020年的13.54亿元,快递业务量由2015年的1182.20万件增长到2020年的4079.10万件;电信业务总量从2015年的63.59亿元增长到2020年的497.00亿元;互联网宽带接入户数由2015年的85.16万户增长到2020年的174.70万户。", "question": "2015-2020年,G市邮电业务相关指标年均增长最快的是:", "type": "单选题", "options": "A. 邮政业务总量\nB. 快递业务量\nC. 电信业务总量\nD. 邮电业务总量", "choice": "C", "keypoints": "年均增长率;文字资料", "most_wrong": "B", "human_count": 162007, "human_acc": 76.8182856296, "source": "2022上半年省考第五季行测模考大赛(陕西卷)第118题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长率", "年均增长率"], ["资料分析", "文字资料"]]}, {"id": 5574174, "material": "2020年全年,全国国有建设用地供应总量65.8万公顷,比上年增长5.5%。其中,工矿仓储用地16.7万公顷,增长13.6%;房地产用地15.5万公顷,增长9.3%;基础设施用地33.7万公顷,增长0.3%。\n\n        初步核算,全年能源消费总量49.8亿吨标准煤,比上年增长2.2%。其中,煤炭消费量增长0.6%,原油消费量增长3.3%,天然气消费量增长7.2%,电力消费量增长3.1%。煤炭消费量占能源消费总量的56.8%,比上年下降0.9个百分点;天然气、水电、核电、风电等清洁能源消费量占能源消费总量的24.3%,上升1.0个百分点。重点耗能工业企业单位电石综合能耗下降2.1%,单位合成氨综合能耗上升0.3%,吨钢综合能耗下降0.3%,单位电解铝综合能耗下降1.0%,每千瓦时火力发电标准煤耗下降0.6%。全国万元国内生产总值二氧化碳排放下降1.0%。\n\n        全年完成造林面积677万公顷,其中,人工造林面积289万公顷,种草改良面积283万公顷。截至年末,国家级自然保护区474个。新增水土流失治理面积6.0万平方公里。\n\n        全年农作物受灾面积1996万公顷,其中,绝收271万公顷。全年因洪涝和地质灾害造成直接经济损失2686亿元,因旱灾造成直接经济损失249亿元,因低温冷冻和雪灾造成直接经济损失154亿元,因海洋灾害造成直接经济损失8亿元。全年大陆地区共发生5.0级以上地震20次,成灾5次,造成直接经济损失约18亿元。全年共发生森林火灾1153起,受害森林面积约0.9万公顷。", "question": "2020年,我国天然气、水电、核电、风电等清洁能源消费量同比增长约:", "type": "单选题", "options": "A. 0.8%\nB. 1.2%\nC. 2.1%\nD. 6.6%", "choice": "D", "keypoints": "两期比重;文字资料;一般增长率", "most_wrong": "B", "human_count": 42405, "human_acc": 64.7730220493, "source": "2023下半年省考第三季行测模考大赛(广东县级卷)第93题", "difficulty": 6, "formulas": 0, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 2676514, "material": "2017年,我国文化产品和服务进出口总额1265.1亿美元,同比增长$11.1\\%$。其中,文化产品进出口总额971.2亿美元,同比增长$10.2\\%$。文化服务进出口总额293.9亿美元,同比增长$14.4\\%$。\n\n        文化产品方面,出口881.9亿美元,同比增长$12.4\\%$;进口89.3亿美元,同比下降$7.6\\%$。出口的技术含量有所提升,具有较高附加值的游艺器材和娱乐用品、广播电影电视设备出口同比增长$19.4\\%$,占比提升2个百分点至$34.5\\%$。美国、中国香港、荷兰、英国和日本为中国文化产品进出口前五大市场,进出口额合计占比为$55.9\\%$。这样比较上年下降1.8个百分点。我国与“一带一路”沿线国家进出口额达到176.2亿美元,同比增长$18.5\\%$,占比提高1.2个百分点至$18.1\\%$;与金砖国家进出口额43亿美元,同比增长$48\\%$。\n\n        文化服务方面,进口232.2亿美元,同比增长$20.5\\%$。其中视听及相关产品许可费、著作权等研发成果使用费进口分别同比增长$52.1\\%$和$18.9\\%$。出口61.7亿美元,同比下降$3.9\\%$;其中处于核心层的文化和娱乐服务、研发成果、使用费、视听及相关产品许可费等三项服务出口15.4亿美元,同比增长$25\\%$,占比增提升5.7个百分点至$24.9\\%$。", "question": "根据所给资料,下列表述错误的是:", "type": "单选题", "options": "A. 2017年我国文化产品出口国际市场呈多元格局\nB. 2017年我国文化产品出口结构更趋优化\nC. 2016年我国文化服务进出口出现顺差\nD. 2017年我国文化服务进口增势明显", "choice": "C", "keypoints": "综合资料;文字资料", "most_wrong": "D", "human_count": 2769, "human_acc": 81.6901408451, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第120题", "difficulty": 5, "formulas": 17, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "综合资料"], ["资料分析", "文字资料"]]}, {"id": 2394008, "material": "2018年我国国内生产总值900309亿元,比上年增长$6.6\\%$,全国居民人均可支配收入28228元,比上年增长$8.7\\%$,全国居民恩格尔系数为$28.4\\%$。2018年我国总人口139538万人,比上年增加530万人,其中城镇常住人口83137万人,全年出生人口1523万人,死亡人口993万人。\n\n        2018年我国货物进出口总额305050亿元,比上年增长$9.7\\%$。其中,出口164177亿元,增长$7.1\\%$;进口140873亿元,增长$12.9\\%$。货物进出口顺差23304亿元,比上年减少5217亿元。对“一带一路”沿线国家进出口总额83657亿元,比上年增长$13.3\\%$。其中,出口46478亿元,增长$7.9\\%$;进口37179亿元,增长$20.9\\%$。\n\n        2018年社会消费品零售总额380987亿元,比上年增长$9\\%$。全年实物商品网上零售额70198亿元,比上年增长$25.4\\%$。按经营地统计,城镇消费品零售额325637亿元,增长$8.8\\%$;乡村消费品零售额55350亿元,增长$10.1\\%$。按消费类型统计,商品零售额338271亿元,增长$8.9\\%$;餐饮收入额42716亿元,增长$9.5\\%$。\n\n注释:$出生率=$$(年内出生人数/年内人口数)\\times$$1000‰$\n\n$死亡率=$$(年内死亡人数/年内人口数)$$\\times1000‰$\n\n$常住人口城镇化率=$$年内城镇常住人口数/年内人口数$", "question": "2018年我国货物进出口顺差总额和出口总额较上一年分别(    )。", "type": "单选题", "options": "A. 减少$22\\%$,增加10684亿元\nB. 减少$18\\%$,增加10884亿元\nC. 增加$18\\%$,增加10874亿元\nD. 增加$18\\%$,增加10654亿元", "choice": "B", "keypoints": "增长量计算;文字资料;一般增长率", "most_wrong": "A", "human_count": 506777, "human_acc": 69.5011809928, "source": "2019年青海省公务员录用考试《行测》题省市州级(A类)(网友回忆版)第108题", "difficulty": 5, "formulas": 358, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 5647277, "material": "2022年1-10月,A省外贸进出口总额7182.8亿元,比上年同期增长15.9%,较2020年同期增长55.8%。其中,出口4427.1亿元,同比增长17.5%;进口2755.7亿元,同比增长13.4%;贸易顺差1671.4亿元,同比增长25.0%。1-10月,A省外贸进出口同比增速比全国外贸进出口同比增速高6.4个百分点。\n\n        2022年10月,A省外贸进出口额985.6亿元,同比增长41.7%,环比下降4.8%。其中,出口591.3亿元,同比增长42.3%,环比下降10.8%;进口394.3亿元,同比增长40.7%,环比增长5.7%。10月当月A省外贸进出口同比增速比全国外贸进出口同比增速高34.8个百分点。\n\n        2022年1-10月,A省加工贸易进出口4343.3亿元,同比增长15.6%;一般贸易进出口2481.4亿元,同比增长13.7%;保税物流进出口312.9亿元,同比增长46.1%。\n\n        2022年1-10月,A省对美国进出口1526.1亿元,同比增长11.3%;对东盟进出口967.6亿元,同比增长39.7%;对欧盟进出口786.8亿元,同比增长20.6%;对韩国进出口686.4亿元,同比增长26.2%。\n\n        2022年1-10月,A省机电产品出口2827.6亿元,同比增长15.9%,其中,手机出口2224.2亿元,同比增长11.8%;汽车出口93.9亿元,同比增长169.6%。劳动密集型产品出口287.7亿元,同比增长16.4%,其中,纺织品出口75.4亿元,同比增长17.4%;家具出口67.9亿元,同比下降0.8%;服装出口62.1亿元,同比增长18.6%。农产品出口161.1亿元,同比增长48.5%,其中,罐头出口63.5亿元,同比增长117.8%。", "question": "2021年1-10月,A省外贸出口额比外贸进口额约多多少亿元?", "type": "单选题", "options": "A. 1150\nB. 1340\nC. 1670\nD. 1870", "choice": "B", "keypoints": "基期和差;基期计算;文字资料", "most_wrong": "A", "human_count": 57494, "human_acc": 84.690576408, "source": "2023下半年省考第十二季行测模考大赛(广东县级卷)第87题", "difficulty": 4, "formulas": 0, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 3667917, "material": "2019年,广东省共投入$R\\&D$经费3098.49亿元,比上年增长$14.6\\%$;$R\\&D$经费投入强度(与全省地区生产总值之比)为$2.88\\%$,比上年提高0.17个百分点。按$R\\&D$人员全时工作量计算的人均经费为38.58万元,比上年增加3.12万元。按资金来源分,政府资金投入397.26亿元,比上年增长$38.09\\%$;企业资金投入2649.95亿元,增长$11.87\\%$;境外及其它资金投入51.28亿元,增长$6.91\\%$。\n\n        按活动类型分,全省用于基础研究的经费投入为141.86亿元,比上年增长$23.2\\%$;应用研究经费247.28亿元,增长$7.3\\%$;试验发展经费2709.36亿元,增长$14.9\\%$。\n\n        按活动主体分,工业企业$R\\&D$经费支出2374.63亿元,增长$12.7\\%$;重点建筑业和服务业企业$R\\&D$经费支出364.24亿元,增长$19.7\\%$;政府属科研机构经费支出112.16亿元,增长$37.2\\%$;高等院校经费支出185.78亿元,增长$21.3\\%$;其他企事业单位经费支出59.77亿元,增长$5.8\\%$。\n\n        2019年,全省地方财政科技拨款额为1168.79亿元,同比增长$13.0\\%$,占当年全省财政支出的比重为$6.76\\%$。按区域分,珠三角地区1047.40亿元,增长$11.2\\%$;东翼13.46亿元,减少$10.7\\%$;西翼12.05亿元,增长$32.1\\%$;山区32.59亿元,增长$12.3\\%$。从支出科目分,技术研究与开发支出384.53亿元,增长$11.2\\%$;基础研究支出52.30亿元,比上年增加47.65亿元;科技重大项目支出42.18亿元,增加21.38亿元;科学技术普及支出7.63亿元,增长$10.0\\%$;社会科学支出5.09亿元,减少11.67亿元。", "question": "2019年,广东省$R\\&D$人员数量同比约增长了:", "type": "单选题", "options": "A. $11.7\\%$\nB. $8.8\\%$\nC. $7.0\\%$\nD. $5.3\\%$", "choice": "D", "keypoints": "平均数的增长率;文字资料;一般增长率", "most_wrong": "B", "human_count": 89269, "human_acc": 56.3555097514, "source": "2021下半年省考第八季行测模考大赛(甘肃卷)第106题", "difficulty": 7, "formulas": 362, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 2060618, "material": "2015年5月,全国医疗卫生机构诊疗人次达6.4亿人次,同比提高$1.9\\%$,环比提高$0.3\\%$。其中,医院2.6亿人次,同比提高$4.0\\%$,环比降低$1.2\\%$;基层医疗卫生机构诊疗人次为3.6亿人次,同比提高$0.7\\%$,环比降低$0.4\\%$;其他机构0.2亿人次。医院中:公立医院2.3亿人次,同比提高$3.3\\%$,环比提高$1.0\\%$;民营医院0.3亿人次,同比提高$10.3\\%$,环比提高$2.9\\%$。基层医疗卫生机构中:社区卫生服务中心(站)0.6亿人次,同比提高$3.2\\%$,环比降低$1.3\\%$;乡镇卫生院0.8亿人次,同比提高$1.3\\%$,环比降低$1.3\\%$。\n\n        2015年1-5月,全国医疗卫生机构总诊疗人次达31.1亿人次,同比提高$3.0\\%$。其中:医院12.2亿人次,同比提高$5.4\\%$;基层医疗卫生机构18.0亿人次,同比提高$1.6\\%$;其他机构10.1亿人次。医院中:公立医院10.8亿人次,同比提高$4.9\\%$;民营医院1.3亿人次,同比提高$9.9\\%$。基层医疗卫生机构中:社区卫生服务中心(站)2.7亿人次,同比提高$4.7\\%$;乡镇卫生院4.1亿人次,同比提高$0.5\\%$;村卫生室诊疗人次8.4亿人次。\n\n        2015年5月份,全国医疗卫生机构出院人数达1738.4万人,同比提高$3.0\\%$,环比降低$1.1\\%$。其中:医院1330.2万人,同比提高$4.6\\%$,环比降低$1.1\\%$;基层医疗卫生机构出院人数为333.4万人,同比降低$0.7\\%$,环比降低$4.4\\%$;其他机构74.8万人。医院中:公立医院1156.5万人,同比提高$3.4\\%$,环比降低$1.4\\%$;民营医院173.7万人,同比提高$13.7\\%$,环比提高$0.7\\%$。\n\n        2015年1-5月,全国三级公立医院次均门诊费用为276.5元,与去年同期比较,按当年价格上涨$4.4\\%$,按可比价格上涨$3.0\\%$;二级公立医院次均门诊费用为182.7元,按当年价格同比上涨$4.6\\%$,按可比价格同比上涨$3.3\\%$。\n\n        2015年1-5月,全国三级公立医院人均住院费用为12536.8元,与去年同期比较,按当年价格上涨$4.3\\%$,按可比价格上涨$2.9\\%$;二级公立医院人均住院费用为5320.6元,按当年价格同比上涨$3.5\\%$,按可比价格同比上涨$2.2\\%$。", "question": "按可比价格,2014年1-5月全国三级公立医院次均门诊费比二级公立医院门诊费用(    )。", "type": "单选题", "options": "A. 高$49.2\\%$\nB. 高$53.2\\%$\nC. 高91.5元\nD. 高94.6元", "choice": "C", "keypoints": "基期和差", "most_wrong": "B", "human_count": 210470, "human_acc": 52.353304509, "source": "2017年深圳市公务员录用考试《行测》题第87题", "difficulty": 6, "formulas": 206, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"]]}, {"id": 4690777, "material": "截至2020年12月31日,全国体育场地371.34万个,比上年(截至2019年12月31日)增加16.9万个;体育场地面积30.99亿平方米,比上年增加1.82亿平方米;人均体育场地面积由上年的2.08平方米增加至2.20平方米。\n\n一、基础大项场地\n\n        全国田径场地17.95万个,场地面积9.46亿平方米,分别比上年增加0.56万个、0.30亿平方米。其中,设有400米环形跑道的田径场地3.72万个,占20.72%;其他田径场地14.23万个,占79.28%。\n\n        全国游泳场地2.92万个,场地面积0.64亿平方米,分别比上年增加0.13万个、0.06亿平方米。其中,室外游泳池1.67万个,占57.19%;室内游泳馆1.20万个,占41.10%;天然游泳场548个,占1.71%。\n\n二、球类运动场地\n\n        全国球类运动场地233.54万个,比上年增加9.18万个。\n\n        全国足球场地11.73万个,场地面积3.20亿平方米。其中,十一人制足球场地数量占22.92%,七人制足球场地数量占32.39%,五人制足球场地数量占44.59%,沙滩足球场地数量占0.10%。\n\n        全国篮球场地100.58万个,场地面积5.95亿平方米,是数量最多的体育场地。其中,室外篮球场数量占91.37%,室外三人篮球场数量占6.26%;室内篮球馆数量占2.37%。\n\n        全国排球场地9.13万个,场地面积0.29亿平方米。其中,室外排球场数量占96.28%,室内排球馆数量占3.72%。\n\n        全国乒乓球场地83.50万个,场地面积0.51亿平方米。其中,室外乒乓球场数量占88.37%;室内乒乓球馆数量占11.63%。\n\n        全国羽毛球场地20.24万个,场地面积0.40亿平方米。其中,室外羽毛球场数量占84.83%;室内羽毛球馆数量占15.17%。\n\n三、冰雪运动场地\n\n        全国冰雪运动场地1888个,场地面积0.67亿平方米,分别比上年增加368个、0.06亿平方米。其中,滑冰场地1187个,占62.87%;滑雪场地701个,占37.13%。\n\n四、体育健身场地\n\n        全国全民健身路径87.12万个,比上年增加4.77万个。全国健身房11.48万个,场地面积0.50亿平方米,分别比上年增加0.66万个、0.03亿平方米。全国健身步道8.94万个,长度20.93万公里,场地面积6.04亿平方米,分别比上年增加1.26万个、3.00万公里、0.78亿平方米。", "question": "2020年末,全国排球和羽毛球场地中室内球馆数量的占比约为:", "type": "单选题", "options": "A. 3.72%\nB. 9.1%\nC. 11.6%\nD. 18.89%", "choice": "C", "keypoints": "现期比重;混合比重;文字资料", "most_wrong": "D", "human_count": 216604, "human_acc": 72.1196284464, "source": "2022上半年省考第四季行测模考大赛(广东县级卷)第93题", "difficulty": 5, "formulas": 0, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "比重问题", "混合比重"], ["资料分析", "文字资料"]]}, {"id": 5745509, "material": "最早烧造的瓷器是从陶器延续而来的。古人一开始学会烧造的是陶器,目前全世界范围内都可以找到古时候当地人自行制作陶器的痕迹。在最初阶段,只要有黏性比较足的土,以水和之,人们就能用手工捏塑成器形,经过火烧就形成了陶器。初期的陶器是中国原始先民在生产实践中自行烧制的。出土实物证明,中国最早的陶器距今有15000年甚至更早。我国长江流域、黄河流域是烧造陶器的源头,仰韶文化、半坡文化遗址出土的彩陶都非常精美。\n\n        大家都知道中国古代有四大发明,实际上,瓷器也是中国的伟大发明,它也是由中国人自己创造发明出来的。然而,它不像四大发明那样,有一个比较明确的创造发明的时间,瓷器的烧造至少经历了3000多年的漫长历史。\n\n        ①新石器晚期到商代早期,瓷器的前身——一种被称为原始青瓷的物品就出现了。②所谓原始青瓷,就是还不成熟的瓷器。它是用瓷土烧的,不是用陶土烧的。由于这种器物制作相对较粗,带有一种不成熟的原始感,所以称为原始青瓷。③以浙江上虞为中心的地区以其得天独厚的条件成为中国成熟青瓷的主要产地。当时烧造的成熟青瓷数量很大,而且质量很高。④\n\n        西晋的时候出现了彩绘瓷器。彩绘瓷器就是在瓷器上面加以画彩,瓷画就这样出现了。其实彩绘陶器很早就有了,但是彩绘瓷器是三国到西晋时期才开始出现的。到北朝时开始出现白瓷。白瓷的出现意义重大,有了白瓷以后,瓷器变得更加丰富多彩。在唐代,中国瓷器的烧造形成了“南青北白”的局面。也就是说,南方地区主要烧造青釉瓷器,表面全部是青色的;而北方地区则以烧白瓷为主。但是这个局面很快就被打破了,到宋代的时候呈现出百花齐放的局面。各地瓷窑纷纷崛起,其中以汝窑、官窑、哥窑、定窑等名窑最为著名,当然还有龙泉窑、耀州窑、磁州窑等瓷窑都是重要的瓷器产地。\n\n        公元12世纪,中国瓷器烧造技法传到朝鲜半岛后,第一次出现了中国以外的国家烧造瓷器的情况。很可能是中国的窑工直接过去传授技法,所以当时烧造出来的高丽青瓷水平也相当高。\n\n        到了元朝,原来百花齐放的局面逐渐开始转变,很多地方的瓷窑走向衰落,而景德镇瓷器开始崛起。景德镇在宋代开始烧造青白瓷,宋代的青白瓷以景德镇为最精美。元朝皇帝建国不久,就在景德镇设立了“浮梁瓷局”,规划并管理官瓷的烧造,这个瓷局由正九品官员主持,是全国唯一一所为皇室服务的瓷局。在元代中晚期,景德镇创造出了成熟的青花瓷,这标志着中国的制瓷业进入了一个新的时代。\n\n        明清两代,景德镇成为中国瓷器的烧造中心。明洪武二年,朱元璋命令在景德镇设立瓷厂,烧造瓷器进贡皇家。那时,朝廷刚刚建立,需要大量瓷器用于祭祀和宫廷装饰及实用,宣德以后,越来越多的民窑开始烧造瓷器,补充官窑烧造的不足,同时也活跃了国内市场。在明清两代,景德镇的陶瓷业空前繁荣,官窑持续烧造不断,民窑也取得了重要的发展。\n\n        至17世纪,中国瓷器大量外销欧洲,此后逐渐走向全世界。中国瓷器的对外传播,大大促进了中外经济文化的交流,是中国人民同世界各国人民友好往来的历史见证。", "question": "根据文章,下列情景不可能出现的是:", "type": "单选题", "options": "A. 考古学家在周代墓穴中发现白瓷\nB. 博物馆展出三国时期的彩绘瓷器\nC. 在元代沉船中打捞出大量青白瓷\nD. 17世纪法国油画中出现青花瓷碗", "choice": "A", "keypoints": "", "most_wrong": "B", "human_count": 20511, "human_acc": 85.6662278777, "source": "2023下半年省考第二十一季行测模考大赛(吉林卷)第48题", "difficulty": 3, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 2271304, "material": "", "question": "成语是中华民族语言文化的精华,我们不仅能从中读到生动的故事,更能学到许多前人总结的为人处世、治学谋事的人生大智慧。\n\n按故事发生时间的先后,下列成语排序正确的是(  )。", "type": "单选题", "options": "A. 约法三章 闻鸡起舞 三顾茅庐 徙木立信\nB. 约法三章 闻鸡起舞 徙木立信 三顾茅庐\nC. 约法三章 徙木立信 闻鸡起舞 三顾茅庐\nD. 徙木立信 约法三章 三顾茅庐 闻鸡起舞", "choice": "D", "keypoints": "文化常识", "most_wrong": "B", "human_count": 17235, "human_acc": 36.6579634465, "source": "广西2019年定向招录选调生笔试第15题", "difficulty": 6, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 4687759, "material": "", "question": "下列地理常识,说法正确的是(    )。", "type": "单选题", "options": "A. 塔里木盆地位于我国地势的第一级阶梯\nB. 阿富汗、不丹与我国接壤\nC. 我国不存在高原山地气候的地区\nD. 长江发源于唐古拉山脉,为亚洲第二长河", "choice": "B", "keypoints": "自然常识", "most_wrong": "A", "human_count": 125246, "human_acc": 29.7933666544, "source": "2022上半年省考第四季行测模考大赛(四川卷)第9题", "difficulty": 7, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 5680024, "material": "", "question": "有机磷农药可用于防治蔬菜病、虫、草害。部分农业生产者为提高蔬菜产值,增加了有机磷农药的使用量,导致蔬菜中残留了较多农药。去除蔬菜中有机磷农药最好的方法是________。", "type": "单选题", "options": "A. 高温烫洗\nB. 清水浸泡\nC. 太阳照射\nD. 碱水冲洗", "choice": "D", "keypoints": "化学常识", "most_wrong": "B", "human_count": 210, "human_acc": 60.4761904762, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第77题", "difficulty": 4, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 5038109, "material": "", "question": "下列关于深圳的说法错误的是(    )。", "type": "单选题", "options": "A. 内伶仃岛是深圳市最大的岛屿\nB. 深圳河发源于羊台山,是深圳最长的河流\nC. 大沙河纵贯深圳市南山区,下游汇入深圳湾\nD. 龙岗河发源于梧桐山,为深圳与惠州的界河", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1728, "human_acc": 27.1990740741, "source": "2022上半年省考第二十三季行测模考大赛(深圳卷)第23题", "difficulty": 7, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 4579030, "material": "", "question": "下列物理常识,说法有误的是(    )。", "type": "单选题", "options": "A. 潜水艇通过改变自身重力实现上浮、下潜\nB. 孔明灯利用空气热胀原理上升\nC. 润滑油能提高机械效率,防止机件损坏卡死\nD. 加工爆米花时,玉米粒主要通过互相碰撞将壳撞破", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 284817, "human_acc": 68.8003173968, "source": "2021下半年省考第三十三季行测模考大赛(北京区级以上卷)第13题", "difficulty": 4, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 2271282, "material": "", "question": "习近平在中共中央政治局集体学习时强调,新形势下,各级干部要坚持在实践中深化学习、在学习中深化实践,学会正确运用“看不见的手”和“看得见的手”,成为善于驾驭政府和市场关系的行家里手。\n\n关于“看不见的手”和“看得见的手”,下列说法正确的是(  )。", "type": "单选题", "options": "A. 某市政府出台限价措施抑制了房价过快上涨,这是“看不见的手”在发挥作用\nB. 某市政府出台限购措施抑制了房价过快上涨,这是“看不见的手”在发挥作用\nC. 全国汽油价格每隔一段时间便会调整,这主要是“看不见的手”在发挥作用\nD. 全国汽油价格每隔一段时间便会调整,这主要是“看得见的手”在发挥作用", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 14128, "human_acc": 38.5900339751, "source": "广西2019年定向招录选调生笔试第3题", "difficulty": 6, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 2271016, "material": "", "question": "促进个人与社会和谐的关键是:", "type": "单选题", "options": "A. 正确认识个人在社会中的定位\nB. 正确认识个体性与社会性的统一关系\nC. 正确认识享受个人权利与承担社会责任的统一关系\nD. 正确认识个人利益与社会整体利益的统一关系", "choice": "A", "keypoints": "时政", "most_wrong": "D", "human_count": 3285, "human_acc": 4.3835616438, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第71题", "difficulty": 5, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 5519654, "material": "", "question": "习近平总书记对新时代推进农村土地制度改革、做好农村承包地管理工作作出重要指示强调,新时代推进农村土地制度改革,要坚持把____________________作为出发点和落脚点,坚持农村土地农民集体所有制不动摇,坚持家庭承包经营基础性地位不动摇。", "type": "单选题", "options": "A. 农村集体土地入市\nB. 依法维护农民权益\nC. 农村承包地确权登记颁证工作\nD. 保持农村土地承包关系稳定", "choice": "B", "keypoints": "中国特色社会主义建设", "most_wrong": "D", "human_count": 213, "human_acc": 50.7042253521, "source": "2021年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第20题", "difficulty": 4, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 10849, "material": "", "question": "王某和张某分别出资5000元和7000元合开一个饭馆,后因经营不善欠债2000元,对该债务双方应承担(    )。", "type": "单选题", "options": "A. 无限连带责任\nB. 无限按份责任\nC. 有限连带责任\nD. 有限按份责任", "choice": "A", "keypoints": "经济法", "most_wrong": "D", "human_count": 127574, "human_acc": 39.3128693935, "source": "2009年甘肃省公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 2139458, "material": "", "question": "某纸箱中原来有5个乒乓球,从纸箱中取出1个乒乓球,再放入5个乒乓球;又取出1个乒乓球,放入5个乒乓球;不断重复上述过程,到某一时刻停止,纸箱中乒乓球的总数可为:", "type": "单选题", "options": "A. 2015\nB. 2019\nC. 2017\nD. 2022", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 30728, "human_acc": 68.4717521479, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 4857401, "material": "", "question": "下列选项符合法律规定的是(    )。", "type": "单选题", "options": "A. 甲周末休息时参加滑雪比赛不慎将腿摔断,不能继续从事原来的工作,公司与其解除劳动关系\nB. 乙休完产假后去公司上班,但是仍需哺乳自己未满一周岁的孩子,公司安排乙加班\nC. 由于家中贫困,十六周岁初中毕业的丙放弃进入高中学习的机会,县城的电子厂与丙订立劳动合同\nD. 丁在当地一家互联网公司工作,公司要求员工每天的工作时间不少于九小时,每月休息两天", "choice": "C", "keypoints": "劳动法", "most_wrong": "A", "human_count": 24993, "human_acc": 51.1143120074, "source": "2022上半年省考第十三季行测模考大赛(内蒙古卷)第10题", "difficulty": 6, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 4655674, "material": "", "question": "希望自己购买的物品是全年最低价的人都会选择在“双11”当天购物,小杨在“双11”当天购物,因此,小杨购买的物品是全年最低价。\n\n以下选项存在与题干最为相似的逻辑错误的是:", "type": "单选题", "options": "A. 解决上网难问题将改善老年人日常生活,因此,小王研发了银发触网APP\nB. 喜欢《红楼梦》的人都是张爱玲的粉丝,小张是张爱玲的粉丝,因此,小张喜欢《红楼梦》\nC. 城乡融合是城乡协调发展的重要内容,梅汕铁路开通,粤东北融入广深“3小时经济圈”\nD. 希望改变命运的大学生都会刻苦学习,小李无法坚持刻苦学习,所以,他没有改变命运", "choice": "B", "keypoints": "推理形式", "most_wrong": "D", "human_count": 60688, "human_acc": 86.4437780121, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第68题", "difficulty": 3, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 4668746, "material": "", "question": "分量,由数字和英文字母组成的一串字符,1、对于数字来说,右面的数字大于左面的数字。2、当数字与字母相邻时,下一个出现的数字是偶数。3、字母与数字,个数相等。\n\n下列属于分量的是:\n\n①24661kh\n\n②sd34b6x8\n\n③axx124d\n\n④n2b4689gha\n\n⑤53hgfk76f8\n\n⑥3p56gd\n\n⑦2345abcde6\n\n⑧ddf24k68", "type": "单选题", "options": "A. ②⑥⑦⑧\nB. ②④⑦⑧\nC. ①③④⑥\nD. ②③⑤⑦", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 927627, "human_acc": 85.6232084663, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第81题", "difficulty": 5, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 4999712, "material": "", "question": "某视频网站针对用户喜欢观看的视频类型,抽样调查了400多人。其中85%的人喜欢观看科技类视频,$\\frac{21}{23}$的人喜欢观看美食类视频,387人喜欢观看游戏类视频。问科技类、美食类、游戏类视频都喜欢观看的至少有多少人?", "type": "单选题", "options": "A. 139\nB. 182\nC. 278\nD. 321", "choice": "C", "keypoints": "多集合反向构造", "most_wrong": "B", "human_count": 274465, "human_acc": 46.5975625307, "source": "2022上半年省考第二十季行测模考大赛(北京卷)第79题", "difficulty": 6, "formulas": 1, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 2036646, "material": "", "question": "二十四节气是中国古代订立的一种用来指导农事的补充历法。二十四节中,“立夏”之后的下一个节气是( )。", "type": "单选题", "options": "A. 芒种\nB. 小满\nC. 夏至\nD. 小暑", "choice": "B", "keypoints": "人文常识", "most_wrong": "D", "human_count": 138180, "human_acc": 57.5980605008, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第85题", "difficulty": 6, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识"]]}, {"id": 5745179, "material": "", "question": "日前,江西省教育厅公布了2021年江西专升本考试作弊事件处理结果:涉事的两所高校共14名教师被判刑,118名相关人员被处以党纪政纪处分。虽然针对的是时隔近两年的旧案,但因涉及招考公平,这则消息仍在舆论场溅起不小的水花。不容否认的是,这样不加掩饰的考试舞弊,也是“____”下的选择。正是专升本考试不够严密的预防舞弊细节设计、不够严苛的相关政策安排,给了考试舞弊操作的空间,也给了舞弊者本不该有的底气,让他们误以为会万无一失。\n\n对文中画横线处“条件反射”理解正确的一项是:", "type": "单选题", "options": "A. 因信号刺激而发生的反应\nB. 专升本招考秩序不够规范\nC. 相关考试制度不够完善细致\nD. 专升本考试中存在舞弊行为", "choice": "B", "keypoints": "实词", "most_wrong": "C", "human_count": 98454, "human_acc": 51.5052714973, "source": "2023下半年省考第二十一季行测模考大赛(河南卷)第26题", "difficulty": 6, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2033236, "material": "", "question": "煤炭采掘业发言人提出建议:为了维持国产煤炭的价格,必须限制较便宜的国外煤炭的进口,否则,我国的煤炭采掘业将难以经营。有色金属冶炼业发言人对上述建议的回应:我国有色金属冶炼业购买的煤炭$75\\%$都是国产的。如果煤炭的价格不是按国际价格支付,那么,由于成本的提高,国产的有色金属就会卖不出去,这样对国产煤炭的需求就会下跌。\n\n以下(    ),是对有色金属冶炼业发言人的论证的最恰当评价。", "type": "单选题", "options": "A. 该论证无的放矢,和煤炭采掘业发言人的建议无关\nB. 该论证是循环论证,它预先假设了为了评论煤炭采掘业发言人的建议而需要证明的东西\nC. 该论证说明煤炭采掘业发言人的建议如果实施的话将会对其自身产生负面影响\nD. 该论证没有给出理由说明为什么上述建议的实施并不能减轻煤炭采掘业难以经营的担心", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 184338, "human_acc": 51.6111707841, "source": "2015年上海市公务员录用考试《行测》题(B类)第57题", "difficulty": 6, "formulas": 1, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 2255671, "material": "", "question": "逆向思维方法,是指一个人在认识事物过程中采用的方法与通常大多数人采用的方法往往相反或截然不同。属于逆向思维方法的是:", "type": "单选题", "options": "A. 小王学习成绩优异,小李也模仿小王的学习方法\nB. 面对素数猜想问题,张教授采取与众不同的崭新方式,最终取得了重大突破\nC. 小王性格古怪乖张,交往中经常与别人格格不入\nD. 大多数工程师在设计时采用归纳与实验方法,李工程师在设计时采用了演绎与抽象方法", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 8648, "human_acc": 51.9888991674, "source": "2016年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 4688967, "material": "", "question": "被负面情绪掌控时,吃一点甜的会开心起来,因为甜味可以促进多巴胺的合成。而中枢神经系统中的多巴胺可以传递兴奋、开心的情绪。但这个甜味打造的“开心骗局”终究会被揭穿。因为这份快乐是多巴胺的奖赏机制产生的,并非真正的快乐感受。当一个人食用糖时,它会激活舌头味觉受体向大脑传递信号,点亮脑中的奖赏系统,吃的糖越多,释放的多巴胺就越多,会体验到强烈的兴奋感。身体聪明地记下了第一次吃到甜食后的积极情绪,所以每次心情低落的时候,大脑就会提醒你“吃点甜的吧”。如果对糖形成依赖,便很难离开它。\n\n下列说法与原文相符的一项是:", "type": "单选题", "options": "A. 情绪低落时吃糖就能消除很多烦恼\nB. 多巴胺是控制情绪的脑内分泌物质\nC. 多巴胺奖赏机制或使人们体验快乐\nD. 保持乐观的情绪是戒糖的有效手段", "choice": "C", "keypoints": "细节判断题", "most_wrong": "B", "human_count": 221784, "human_acc": 72.6211088266, "source": "2022上半年省考第四季行测模考大赛(广东县级卷)第7题", "difficulty": 4, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 5317379, "material": "", "question": "“____________________。”立法应当从实际出发,适应当前经济社会发展需要。立法从实际出发,就是要充分尊重和准确反映法所调整的社会关系的客观规律,回应当时的经济社会发展诉求。在不同时期,经济社会发展对立法有不同的要求,不同地域的自然地理环境、经济社会发展也对地方立法有不同的要求。立法者要扎实细致做好调查研究工作,准确把握不同时期、不同地域经济社会发展需要,研判立法需求,区分轻重缓急,突出重点,使每一项立法都符合客观实际要求。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 治大国而数变法,则民苦之\nB. 立法不可不严,行法不可不恕\nC. 天下有定理而无定法\nD. 当时而立法,因事而制礼", "choice": "D", "keypoints": "开头", "most_wrong": "C", "human_count": 226054, "human_acc": 72.5286878356, "source": "2022下半年省考第十四季行测模考大赛(浙江C卷)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 5045838, "material": "", "question": "智库国际研究要高度重视即时信息研判,做到未雨绸缪、以小见大、有的放矢。智库的咨政建言作用与学术研究不同,需要面对现状问题深入分析研判,提出前瞻性、科学性和可操作性的解决方案。在国际事务中,“黑天鹅”“灰犀牛”等事件会交织发生,这些突发性事件如果应对不当,就有可能影响全局。智库国际研究要有“一叶知秋”的敏锐性,坚持主动作为、精耕细作,在事端肇始时发挥即时跟踪功能,做到科学预判,提出即时策略。_就要求新型智库的信息收集和使用必须及时高效,信息数据分析功能务必先进强大,如此,研究成果才能在系统内即时共享、交流论证和直达决策层,有效发挥新型智库国际研究的即时性作用。\n\n文中画横线的“这”指的是:", "type": "单选题", "options": "A. 智库需要提供前瞻性的解决方案\nB. 智库国际研究必须要具备即时性\nC. 新型智库拥有强大的信息收集功能\nD. 智库的收集成果要能做到即时共享", "choice": "B", "keypoints": "代词", "most_wrong": "A", "human_count": 61015, "human_acc": 55.660083586, "source": "2022上半年省考终极行测模考大赛(陕西卷)第58题", "difficulty": 6, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2263048, "material": "", "question": "人们相互交换商品,看起来是物与物之间的交换关系,实际上是:", "type": "多选题", "options": "A. 商品生产者相互比较和交换各自劳动的关系\nB. 具体劳动化为抽象劳动的关系\nC. 复杂劳动化为简单劳动的关系\nD. 个别劳动时间化为社会必要劳动时间的关系", "choice": "ABCD", "keypoints": "经济常识", "most_wrong": "", "human_count": 1881, "human_acc": 8.8250930356, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第97题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "经济常识"]]}, {"id": 5389940, "material": "", "question": "据统计,地球上沙漠面积1535万平方公里,占陆地面积的10.3%,我国沙漠面积116万平方公里,占国土面积的12.1%,而且我国的沙漠面积还在不断增大。那么,面积如此之大的沙漠究竟是怎样形成的呢?传统的观念认为,沙漠是地球上干旱气候的产物。北非的撒哈拉大沙漠、澳大利亚的维多利亚大沙漠、南亚的塔尔沙漠、阿拉伯半岛的鲁卡哈里沙漠都集中在赤道南北纬$15^{\\circ}-35^{\\circ}$间,这是因为地球自转使得这些地带长期笼罩在大气环流的下沉气流之中,气流下沉破坏了成雨的过程,造成了干旱的气候,形成了茫茫的大沙漠,然而,这一理论并不能解释地球上所有沙漠的成因。\n\n这段文字接下来最有可能讲述的是:", "type": "单选题", "options": "A. 沙漠面积扩大给人类生活带来的影响\nB. 干旱提供了哪些适宜沙漠形成的条件\nC. 对沙漠究竟是怎样形成的进一步探索\nD. 干旱的气候并非沙漠形成的真正原因", "choice": "C", "keypoints": "接语选择题", "most_wrong": "D", "human_count": 318800, "human_acc": 82.5570890841, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第80题", "difficulty": 3, "formulas": 1, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 2575972, "material": "", "question": "定量调查和定性调查是两种相辅相成的调查方法。定量调查指对一定数量有代表性的样本进行封闭式问卷访问,然后对调查的数据进行计算机的录入、整理和分析,并撰写报告的方法。定性调查是指从定性的角度,对所研究的对象进行科学抽象、理论分析、概念认识等,而不对研究对象进行量的测定。\n\n根据上述定义,下列属于定性调查的是:", "type": "单选题", "options": "A. 家政公司制作了一份服务满意度调查问卷,通过快递将调查问卷及相关资料寄给本公司的所有服务对象,被调查的家庭根据实际情况填写问卷后按要求寄回\nB. 调查员按照调查设计所规定的随机拨号的方法拨通电话,遵照问卷和培训的要求筛选被访问对象,然后对合格的调查对象对照问卷逐题逐字提问并将答案记录下来\nC. 访问员在事先选定的小区公园,每隔10分钟随机拦截一位住户作为访问对象,在征得对方同意后,现场按问卷进行简短的调查\nD. 公司选取8至12个具有代表性的消费者和客户,在一个装有录音录像设备的房间里,在主持人的组织下,就某个专题进行讨论,从而获得消费者的消费需求、心理和行为等重要特征", "choice": "D", "keypoints": "常规问法", "most_wrong": "B", "human_count": 208718, "human_acc": 57.3232782989, "source": "2021年国考第八季行测模考大赛(副省级)第95题", "difficulty": 5, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 2185092, "material": "", "question": "近年来,某公司生产的汽车发生了几起严重的交通事故,有人认为这是因为该汽车在设计上存在缺陷导致的。对此,该公司坚决否认设计上存在缺陷,理由是根据这几起交通事故的分析报告,发生事故时,司机都存在酒后驾驶或疲劳驾驶的情况。\n\n以下哪项为真,最不能支持该公司的观点?", "type": "单选题", "options": "A. 该公司一直宣称自己的产品安全性能良好\nB. 该公司所依据的交通事故分析报告真实可靠\nC. 喝酒和疲劳都会严重影响司机驾驶时的判断力\nD. 经过对事故车辆的检测,并没有发现存在设计缺陷", "choice": "A", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 1006338, "human_acc": 88.9228072477, "source": "2018年广东省公务员录用考试《行测》题(县级、乡镇统一卷)(网友回忆版)第53题", "difficulty": 4, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 4963486, "material": "", "question": "某电视剧刚刚拍摄完成,进行了大面积的宣传推广,尤其是针对出演的各路明星进行了宣传,但是上映后收视率却没有达到预期效果。\n\n下面哪个选项最能解释上述现象?", "type": "单选题", "options": "A. 虽然众星云集,事实上,该电视剧题材太过小众,导致收视率较低\nB. 虽然该电视剧对出演的各路明星进行了宣传,但有个别明星不受人喜欢\nC. 其他同期电视剧也进行了大规模的宣传报道,而且采取了多种宣传形式\nD. 电视剧更新太慢,追剧周期过长,人们更喜欢看相对简短的电影", "choice": "A", "keypoints": "原因解释", "most_wrong": "C", "human_count": 6914, "human_acc": 73.0691350882, "source": "2022上半年省考第十八季行测模考大赛(江苏卷)第95题", "difficulty": 4, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 43909, "material": "", "question": "有研究表明,要成为男性至少需要拥有一条Y染色体。3亿年前,男性特有的Y染色体在产生之际含有1438个基因,但现在只剩下45个。按照这种速度,Y染色体将在大约1000万年内消失殆尽。因此,随着Y染色体的消亡,人类也将走向消亡。\n\n如果以下各项为真,最不能质疑上述论证的是:", "type": "单选题", "options": "A. 恒河猴Y染色体基因确实经历过早期高速的丧失过程,但在过去的2500万年内则未丢失任何一个基因\nB. 男性即使失去Y染色体也有可能继续生存下去,因为其他染色体有类似基因可以分担Y染色体的功能\nC. 人类进化过程中,可以找到单性繁殖或无性繁殖后代的方法,从而避免因基因缺失引发的繁殖风险\nD. Y染色体存在独特的回文结构,该结构具有自我修复功能,可以保持丢失基因的信息,实现基因再生", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 1484770, "human_acc": 57.4798790385, "source": "2013年国家公务员录用考试《行测》题第108题", "difficulty": 5, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 2575904, "material": "某地举办了美食文化厨艺大赛,决赛中,每人需在规定时间内制作一道主题菜品,最后,甲、乙、丙、丁、戊五名参赛选手获得了最佳创意奖,菜品名字分别为锦绣鱼球、黄花夫子肉、萱草蒸鱼丸、祁东双拼和柴火腊味,已知:\n\n(1)萱草蒸鱼丸或祁东双拼为乙的作品;\n\n(2)若丙的作品是萱草蒸鱼丸,那么戊的作品是黄花夫子肉;\n\n(3)若丙的作品不是萱草蒸鱼丸,那么丁的作品就是黄花夫子肉或者祁东双拼。", "question": "若乙的作品是祁东双拼,丙的作品是锦绣鱼球,以下结论正确的是:", "type": "单选题", "options": "A. 戊的作品是黄花夫子肉\nB. 丁的作品是黄花夫子肉\nC. 甲的作品是柴火腊味\nD. 戊的作品是萱草蒸鱼丸", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 41354, "human_acc": 83.8830584708, "source": "2021年国考第八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 25177, "material": "", "question": "目前,IBM公司研发的电脑沃森战胜了美国电视智力节目《危险边缘》的两名人类常胜将军。一时间,很多网友担心,电脑越来越像人了,将会超越人类智慧。从深蓝到沃森,人工智能又向前跨越了一大步。电脑会代替人脑吗?近几年,每当有电脑战胜人脑的事发生,都会有“终结者”之类的担忧。甚至有人认为,电脑的计算速度正变得越来越快,不久的将来电脑将能够模拟人脑,产生意识,并最终替代人类。\n\n作者对于“电脑替代人脑”这种观点的态度是:", "type": "单选题", "options": "A. 作者认为人工智能技术有可能实现电脑模拟人脑\nB. 看不出作者是否认同“电脑替代人脑”这种观点\nC. 认同这种观点,因为人工智能技术不断超越人类智慧\nD. 不认同这种观点,因为人类是人工智能技术的主宰者", "choice": "B", "keypoints": "中心理解题", "most_wrong": "D", "human_count": 802747, "human_acc": 72.2039447049, "source": "2012年国家公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题"]]}, {"id": 3727977, "material": "", "question": "某机构的一项研究中,研究人员对功能性消化不良的患者进行焦虑和抑郁评分,发现功能性消化不良的患者中焦虑、抑郁的发生率高达$54.2\\%$,他们由此认为,焦虑和抑郁是导致功能性消化不良的主要因素。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 有研究证明,功能性消化不良的患者对压力的敏感度更高,在心理方面的问题更突出\nB. 长期的功能性消化不良会使人的心理变得更脆弱和多疑,从而更容易导致抑郁与焦虑\nC. 当人的情绪低落时,大脑边缘系统会传递信息给主管消化的中枢神经,使人食欲不振\nD. 研究人员会尽快明确心理因素与肠胃疾病之间的影响机制,从而揭开这层神秘的面纱", "choice": "B", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 50868, "human_acc": 85.8181961154, "source": "2021下半年省考第十一季行测模考大赛(四川卷)第81题", "difficulty": 4, "formulas": 1, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 2387725, "material": "", "question": "研究人员发现,与现生树木相比,古老的枝蕨类植物的茎干结构和生长方式明显不同。现生常见树木中,起到支撑和运输作用的组织维管束往往呈一个单一的整体。它通过不断的次生生长,让树木茎干加粗,并产生年轮。而在泥盆纪的枝蕨类植物中,至少存在数十个互相独立、交织成网状的维管束系统。它们总体呈圆柱形,与其他疏导组织构成立体化的网格系统,在这套维管束构成的网格系统中,每个单一的维管束均可以加粗生长,产生生长轮,同时又通过彼此分裂、增生,不断扩大维管束系统,从而实现植物整体的加粗。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 揭秘古老植物如何生长\nB. 树木的漫长进化过程\nC. 教你如何看年轮知树龄\nD. 一眼识别枝蕨类植物", "choice": "A", "keypoints": "标题填入题", "most_wrong": "D", "human_count": 1573546, "human_acc": 60.5810062114, "source": "2019年浙江省公务员录用考试《行测》题(A类)(网友回忆版)第53题", "difficulty": 5, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 2730798, "material": "", "question": "全球气候变暖使自燃野火的风险增加,但研究人员发现,全球经历火烧的土地面积正在减少,他们以卫星数据为基础计算出,从1988年到2015年,全球每年火烧土地面积缩小$24\\%$,其中包括热浪、雷电等导致的自燃野火,也包括烧荒等人类行为的影响。最明显的是草原地区,原本习惯防火烧荒的游牧居民的定居化,使非洲的热带稀树草原每年火烧土地面积缩小了约79万平方公里。\n\n上述发现最能支持的论断是(    )。", "type": "单选题", "options": "A. 全球气候变化与全球火烧土地面积没有关联\nB. 全球火烧土地面积的减少有助于缓解气候变暖\nC. 随着草原地区人类生活方式的改变,全球火烧土地面积会继续减少\nD. 防火烧荒等人类行为比自燃野火导致的火烧土地面积大得多", "choice": "C", "keypoints": "加强-其他", "most_wrong": "D", "human_count": 396015, "human_acc": 43.3741146169, "source": "2020年深圳市考公务员录用考试《思维能力测验》试题(网友回忆版)第75题", "difficulty": 5, "formulas": 1, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 3523501, "material": "", "question": "1901年在伊朗苏萨城废墟中出土的罐子上发现了一种古老语言,被称为埃兰语,考古学家最近破译了它。考证发现:埃兰语与美索不达米亚原始楔形文字一样久远,但不是起源于美索不达米亚,而是在古波斯一带使用。与表音并表意的美索不达米亚楔形文字不同,埃兰语是表音语言。考古学家由此推测:埃兰语是古波斯一带人们独立使用的语言。\n\n上述推测如果为真,最能质疑下列哪项观点?", "type": "单选题", "options": "A. 埃兰语由表示音节、辅音和元音的符号构成,遵循由左向右的书写规则\nB. 埃兰语大约4000年前在现今西亚一带使用,使用时间可能超过1400年\nC. 埃兰语与美索不达米亚原始楔形文字、古埃及的圣书体等语言同时产生\nD. 埃兰语源于美索不达米亚原始楔形文字,与楔形文字是母体和子体关系", "choice": "D", "keypoints": "削弱-其他", "most_wrong": "B", "human_count": 1086940, "human_acc": 79.0838500745, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第98题", "difficulty": 5, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱-其他"]]}, {"id": 4562002, "material": "古旧村落蕴含独特的自然文化遗产和物质文化遗产价值,具备丰富的非物质文化遗产价值,被称为“活着的文物、有生命的历史”。据统计,目前有近7000个古旧村落被列入我国传统村落名录。①\n\n        随着我国经济社会发展,古旧村落蕴含的独特价值日益凸显。与此同时,古旧村落保护还存在着一定的不足。比如,一些地方忽视古旧村落的原生态系统保护,热衷于在原址上“拆旧建新”“弃旧建新”;一些传统村落基础设施建设不够完善,民俗文化面临改变或消失的风险。更好激活古旧村落的内在价值,需要在推进乡村振兴的背景下,统筹好保护、利用和传承的关系,构建美丽和谐的古旧村落生态系统。②\n\n        推动古旧村落“活”起来,需要协调好古旧村落周边自然环境与人文环境的关系,确保在承受能力范围内合理利用。在修缮和维护好生态原貌的基础上,依托古旧村落自身的地域文化、传统技艺、民风民俗等文化资源,适度开发文创、旅游等,能够确保古旧村落的生态价值和经济文化价值共同实现。③\n\n        盘活古旧村落,需要依据不同地区古旧村落的具体情况因地制宜,灵活确定发展思路。不同地域的实践表明,针对“空心化”较为突出的古旧村落,可由政府主导开发或合理引入社会资本;针对旅游资源较为丰富、常住人口较多的村落,可根据情况采用农民、社区或企业开发的模式等等。④\n\n        每个古旧村落都有自己的独特之处。在盘活古旧村落的过程中,应努力找到每个村落的独特定位。为村落和自然环境注入民风民俗、传统手工技艺等文化内涵,为每个村庄找到差异化发展路径。", "question": "下列例证最适合放在原文的哪个位置?\n\n比如江西一些古旧村落注重生态保护,采取保护性开发的策略,同时依托当地“晒秋”等民风民俗、手工技艺等地域文化,打造文旅产业,实现了生态、文化和经济发展的良性循环。", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "C", "keypoints": "", "most_wrong": "D", "human_count": 25724, "human_acc": 78.5647644223, "source": "2022年国考第三十八季行测模考大赛(副省级)第51题", "difficulty": 4, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 1758746, "material": "", "question": "“近朱者赤,近墨者黑”典出晋代傅玄《太子少傅箴》,原文是“故近朱者赤,近墨者黑;声和则响清,形正则影直”。“近朱者赤,近墨者黑”所蕴含的道理与(  )相近。", "type": "不定项", "options": "A. 青出于蓝而胜于蓝\nB. 蓬生麻中,不扶自直\nC. 皮之不存,毛将焉附\nD. 山河易改,本性难移", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 33611, "human_acc": 69.3255184315, "source": "2016年上海市公务员录用考试《行测》题(B类)第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 820159, "material": "", "question": "下列哪一诗句描写的季节与其他三项不同:", "type": "单选题", "options": "A. 梅子金黄杏子肥,麦花雪白菜花稀\nB. 蒌蒿满地芦芽短,正是河豚欲上时\nC. 夜来风雨声,花落知多少\nD. 随风潜入夜,润物细无声", "choice": "A", "keypoints": "文学常识", "most_wrong": "D", "human_count": 395704, "human_acc": 57.3135475002, "source": "2014年黑龙江省政法干警考试《行政职业能力测验》试卷(专科)第19题", "difficulty": 5, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 2136918, "material": "", "question": "下列属于20世纪人类科技成就的是\n\n①电话的发明\n\n②发电机的问世\n\n③世界上第一架飞机试飞成功\n\n④电报的发明\n\n⑤因特网的发明\n\n⑥卫星的发明", "type": "单选题", "options": "A. ①②③\nB. ①③⑥\nC. ④⑤⑥\nD. ③⑤⑥", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 572561, "human_acc": 55.225382099, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第23题", "difficulty": 5, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 5014885, "material": "", "question": "世界四大洋中跨经度和跨纬度最广的分别是(    )。", "type": "单选题", "options": "A. 太平洋、大西洋\nB. 大西洋、太平洋\nC. 北冰洋、大西洋\nD. 北冰洋、太平洋", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 30760, "human_acc": 24.3693107932, "source": "2022上半年省考第二十一季行测模考大赛(湖南卷)第11题", "difficulty": 7, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 2187677, "material": "", "question": "下列关于铁矿的说法正确的是:", "type": "单选题", "options": "A. 赤铁矿与铁锈的主要成分相同\nB. 磁铁矿一般呈黄褐色\nC. “千锤百炼”是指铁矿石的开采过程\nD. 我国的铁矿开采始于西汉时期", "choice": "A", "keypoints": "化学常识", "most_wrong": "B", "human_count": 739931, "human_acc": 31.5302372789, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第48题", "difficulty": 7, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 5070179, "material": "", "question": "下列成语描述的动物中,其发育过程不属于完全变态发育的是(    )。", "type": "单选题", "options": "A. 聚蚊成雷\nB. 井底之蛙\nC. 春蚕自缚\nD. 蜂拥而至", "choice": "B", "keypoints": "生物常识", "most_wrong": "A", "human_count": 91428, "human_acc": 25.6890668067, "source": "2022上半年省考终极行测模考大赛(云南卷)第5题", "difficulty": 7, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 1657, "material": "", "question": "“十五”期间,我国经济发展的各项指标大多超额完成,但环境保护的指标没有完成,主要是二氧化硫排放量与化学需氧量两个指标没完成。环境污染严重。导致这一现象的主要原因是:", "type": "单选题", "options": "A. 环境污染物过多\nB. 对环境保护重视不够\nC. 产业结构不合理,经济增长方式粗放\nD. 环境保护执法不严,监管不力", "choice": "C", "keypoints": "国情社情", "most_wrong": "B", "human_count": 85913, "human_acc": 86.686531724, "source": "2008年湖南省公务员录用考试《行测》题第84题", "difficulty": 4, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 1385279, "material": "", "question": "下列情形符合法律规定的是:", "type": "单选题", "options": "A. 甲、乙二人自由恋爱,因两人均年满20周岁,经双方父母同意,两人可以结婚\nB. 丙12岁,玩火酿成火灾造成重大财产损失,但丙不承担失火罪的刑事责任\nC. 丁6岁,春节收到红包若干,其母认为丁尚年幼,红包里的钱应归监护人所有\nD. 19岁的大学生戊,认为父母有义务支付他的教育费及生活费至其独立工作为止", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 1011315, "human_acc": 69.5714984945, "source": "2015年425联考《行测》题(贵州卷)第1题", "difficulty": 5, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 3764156, "material": "", "question": "小龙是一名吃货,经常烹制美食,下列关于食物的说法不正确的是(    )。", "type": "单选题", "options": "A. 炸油条时,油沸腾后继续加热温度不变\nB. 蒸包子时,锅边冒的“白气”是液化现象\nC. 下汤圆时,漂浮在水面上的汤圆受到的重力小于浮力\nD. 下水饺时,水饺鼓起来是因为温度升高,分子间隔变大", "choice": "C", "keypoints": "物理常识", "most_wrong": "B", "human_count": 33763, "human_acc": 36.6969759796, "source": "2021下半年省考第十三季行测模考大赛(陕西卷)第13题", "difficulty": 7, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 1796326, "material": "", "question": "下列哪项与英国无关?", "type": "单选题", "options": "A. ​光荣革命\nB. 第一次工业革命\nC. 普利茅斯\nD. 雾月政变", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 1157103, "human_acc": 47.7896090495, "source": "2016年河南省选调生招录考试 《行政职业能力测验》试卷(精选)第6题", "difficulty": 6, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 5333016, "material": "从2021年4月,根据全国人大常委会领导同志的指示安排,法工委着手启动研究反电信网络诈骗立法工作。在时间紧、任务重的情况下,抓紧开展相关工作。\n\n        为了让立法能“治住”花样翻新的电信网络诈骗犯罪,快速掌握电信网络诈骗的特点、趋势、作案方法等,立法初期,法工委到涉及打击治理电信网络诈骗的部门逐个进行调研,了解情况,围绕一些技术问题展开探讨,委托科研机构梳理并提供国外反电信网络诈骗相关立法和治理情况。与此同时,法工委也深入企业、地方进行调研,多次到北京、浙江、江苏、云南、湖北、福建等地通过召开专题座谈会、书面征求意见等方式,听取金融、电信、互联网企业及相关监管部门、司法部门等建议,先后两次专门召开互联网企业座谈会。并且在立法过程中,就一些重要问题和制度专题研讨,充分听取不同类型、不同规模的互联网企业意见,统筹发展和安全。在3个月时间内完成了法律案初稿,做好提请常委会审议准备工作。\n\n        为保证反电信网络诈骗立法全面贯彻落实全过程人民民主,在审议后,相关法律草案曾两次公开征求地方、高校、社会公众意见,让立法过程既问需于民也问计于民。\n\n        此外,立法机关还听取了相关行业一线工作人员、群众代表、专家学者、人大代表的意见建议,邀请提出相关反诈建议的代表参加座谈会,当面听取他们对草案的修改意见。", "question": "《中华人民共和国反电信网络诈骗法》的立法过程既问需于民也问计于民,同时听取了相关监管部门、司法部门等建议,这说明(    )。", "type": "不定项", "options": "A. 相关机关提交法律案前应举行听证,听取民众意见\nB. 法治建设的出发点和落脚点是保障人民根本权益\nC. 法律草案征求、采纳公众意见是科学立法、民主立法的要求\nD. 国家立法权掌握在人民手中", "choice": "BC", "keypoints": "宪法", "most_wrong": "A", "human_count": 850, "human_acc": 14.9411764706, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第124题", "difficulty": 7, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 3974539, "material": "", "question": "下列关于经济学常识的说法正确的是(    )。", "type": "单选题", "options": "A. 消费者收入的变化会导致需求量的变动\nB. 无差异曲线上某一点切线的斜率表示物品价格的比率\nC. 科斯定理揭示了交易费用与产权安排的关系\nD. 劳动的供给量会随着工资上涨而一直增加", "choice": "C", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 114652, "human_acc": 19.5260440289, "source": "2021下半年省考第十八季行测模考大赛(陕西卷)第7题", "difficulty": 7, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 5418380, "material": "", "question": "广告是目前较为主流的推广宣传方式,下列情形不符合《中华人民共和国广告法》规定的是(    )。", "type": "多选题", "options": "A. 甲企业在广告中称自己的产品采用国家级铝合金打造,其原材料确实有国家认证\nB. 乙企业在产品的外包装上标注该产品属于专利产品,该专利申请已经提交专利局审查\nC. 丙药企的部分麻醉药品在报纸上进行了广告宣传\nD. 丁企业找某流量明星为其推广青少年保健食品", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 1244, "human_acc": 13.5852090032, "source": "2022下半年省考第二十三季行测模考大赛(北京卷)第29题", "difficulty": 7, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 2646330, "material": "", "question": "2020年中国国际服务贸易交易会全球服务贸易峰会于9月4日在北京举行,国家主席习近平在峰会上致辞。下列说法不正确的是(    )。", "type": "单选题", "options": "A. 服贸会是目前全球唯一涵盖服务贸易12大领域的综合型服务贸易交易会\nB. 2020年届中国国际服务贸易交易会以“共融·共建·共赢”为主题\nC. 中国国际服务贸易交易会的前身为京交会\nD. 习近平强调,要支持北京打造国家服务业扩大开放综合示范区", "choice": "B", "keypoints": "时政", "most_wrong": "C", "human_count": 5636, "human_acc": 25.5500354862, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第24题", "difficulty": 7, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 4706431, "material": "", "question": "以下按照时间节点,排序正确的是:", "type": "单选题", "options": "A. 从实行家庭联产承包$\\rightarrow $农村承包地“三权”分置$\\rightarrow $乡镇企业异军突起$\\rightarrow $取消农业税牧业税和特产税$\\rightarrow $打赢脱贫攻坚战$\\rightarrow $实施乡村振兴战略\nB. 从实行家庭联产承包$\\rightarrow $乡镇企业异军突起$\\rightarrow $取消农业税牧业税和特产税$\\rightarrow $农村承包地“三权”分置$\\rightarrow $打赢脱贫攻坚战$\\rightarrow $实施乡村振兴战略\nC. 从实行家庭联产承包$\\rightarrow $取消农业税牧业税和特产税$\\rightarrow $乡镇企业异军突起$\\rightarrow $农村承包地“三权”分置$\\rightarrow $打赢脱贫攻坚战$\\rightarrow $实施乡村振兴战略\nD. 从实行家庭联产承包$\\rightarrow $乡镇企业异军突起$\\rightarrow $农村承包地“三权”分置$\\rightarrow $取消农业税牧业税和特产税$\\rightarrow $实施乡村振兴战略$\\rightarrow $打赢脱贫攻坚战", "choice": "B", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 8235, "human_acc": 22.4286581664, "source": "2019年福建省选调生考试《行政职业能力测验》第19题", "difficulty": 4, "formulas": 2099, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 10987, "material": "", "question": "某企业2008年收入总额为5000万,为“5·12”汶川地震灾区先后捐款共计1000万,那么下列说法正确的是(  )。", "type": "单选题", "options": "A. 捐赠的1000万应当从纳税所得额中全部扣除\nB. 捐赠在年度利润总额12%以内的部分,准予在计算应纳税所得额时扣除\nC. 为了避免企业以捐赠方式逃税,捐赠部分不得从应纳税所得额中扣除\nD. 捐赠部分是否从应纳税中扣除,以及如何扣除,要看该企业是中资企业还是外资企业", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 43592, "human_acc": 52.0301890255, "source": "2009年四川省公务员录用考试《行测》题(下半年)第77题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 2443994, "material": "", "question": "从下列四个选项中选取一项填入括号中,使数列1,3,5,11,21,(  ),85形成一定的规律。", "type": "单选题", "options": "A. 38\nB. 40\nC. 42\nD. 43", "choice": "D", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 36989, "human_acc": 69.4882262294, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第70题", "difficulty": 4, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 3727440, "material": "", "question": "有一个九宫格,依次标有数字1~9,小红和小强随机各站到一个格子中,则二人共有多少种不相邻的站法?(斜线不算相邻)", "type": "单选题", "options": "A. 36\nB. 40\nC. 44\nD. 48", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 80484, "human_acc": 28.1074499279, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 2452867, "material": "", "question": "黄某是一家建筑设计公司经理。该公司设计师赵某于本月5日提出离职,6日起就不再来公司上班,黄经理用多种方式都没有联系上赵某。赵某的突然离开导致公司几个项目工作延期,给客户造成了损失,现在客户要求公司赔偿。对此,根据相关法律规定,下列说法不正确的是:", "type": "单选题", "options": "A. 黄经理公司可建议客户直接找赵某赔偿损失\nB. 赵某提前1天通知用人单位解除劳动合同的做法不合法\nC. 因赵某离职给黄经理公司带来的经济损失的举证责任在建筑设计公司\nD. 赵某未履行相关义务,给公司造成经济损失,该公司可以向赵某索赔", "choice": "A", "keypoints": "劳动法", "most_wrong": "C", "human_count": 102525, "human_acc": 78.3711289929, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第102题", "difficulty": 5, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 2440250, "material": "", "question": "如今的自媒体都是标题党,张姓微博大V肯定会被警告要注意标题的准确性。\n\n下列选项中的逻辑与上述推理最接近的是:", "type": "单选题", "options": "A. 北方人不喜欢甜食,小张不是北方人,所以小张不会不喜欢甜食\nB. 性格叛逆的孩子有出息,小刘有出息,所以小刘性格叛逆\nC. 发达国家都是不遵守国际法的,有些美洲国家不遵守国际法,所以有些国家不是发达国家\nD. 现在的年轻演员普遍长得好看,小蔡是年轻演员,所以小蔡长得好看", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 223669, "human_acc": 78.023776205, "source": "2019年青海省法院、检察院录用考试《行测》题第107题", "difficulty": 5, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 1797424, "material": "", "question": "一支车队共有20辆大拖车,每辆车的车身长20米,两辆车之间的距离是10米,行进的速度是54千米/小时。这支车队需要通过长760米的桥梁(从第一辆车头上桥到最后一辆车尾离开桥面计时),以双列队通过与以单列队通过花费的时间比是:", "type": "单选题", "options": "A. 7 : 9\nB. 29 :59\nC. 3 : 5\nD. 1 : 2", "choice": "A", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 460740, "human_acc": 43.1870469245, "source": "2016年山东省公务员录用考试《行测》题第56题", "difficulty": 6, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 22807, "material": "", "question": "敌意性归因偏差是指在情景不明的情况下,会将对方的动机或意图视为有敌意的倾向。\n\n根据上述定义,下列属于敌意性归因偏差的是:", "type": "单选题", "options": "A. 小刘在社团主席竞选中败得很惨,当小王劝他再参加学生会将要进行的主席选举时,他觉得小王是故意来挖苦他的\nB. 领导看到小张在晋升前的民主评议中得票很低,就断定他人品不好,打消了提升他的念头\nC. 王老师班上的学生陈强一向表现平平,却在最近的学科竞赛上获得了全校最好成绩,王老师觉得陈强在竞赛中存在作弊行为\nD. 某公司赵总一直不同意李总提出的年底奖金分配方案,李总多次与之沟通收效甚微,李总认为赵总过于维护自己部门的利益", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 370881, "human_acc": 79.2003364961, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第67题", "difficulty": 4, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 4760012, "material": "", "question": "某县宣传部门在单位内网上传了20份材料,甲乡镇阅读了75%,乙乡镇比甲乡镇多阅读2份,丙乡镇阅读份数正好是甲、乙两乡镇阅读份数的平均数,则甲、乙、丙三个乡镇均阅读过的材料至少有多少份?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 404077, "human_acc": 48.196754579, "source": "2022上半年省考第九季行测模考大赛(四川卷)第55题", "difficulty": 6, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 4670425, "material": "", "question": "科技协会在上午举办的研讨会上,安排赵、钱、孙、李、周、吴、郑、王8位教授按顺序坐在环绕圆桌的1-8号座位。在下午的研讨会上,主办方重新安排了座位。已知只有3位教授的座位没有改变,且这3位教授互不相邻,则下午一共有多少种不同的座位安排方式?", "type": "单选题", "options": "A. 144\nB. 704\nC. 384\nD. 1056", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 90967, "human_acc": 38.2919080546, "source": "2022上半年省考第一季行测模考大赛(河南卷)第64题", "difficulty": 7, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 5637669, "material": "", "question": "向海里投放大量磁铁,如果有那么几块“幸运”地吸附在敌方潜艇壳体上,就可以破坏其流体外形,增大其潜航时的噪声,也就更容易发现敌方潜艇。这种做法有一定成效但弊端明显,磁铁反潜因此很快宣告退场。但潜艇与磁场的“纠葛”才刚刚开始。建造潜艇时,不可避免地会使用一些磁性材料。在地磁作用下,艇体的磁性会逐渐变强,直至变成一块“大磁铁”。磁异探测仪可以精确捕捉到潜艇这种因磁性引发的磁场异常,进而发现潜艇。因此,设计者不得不绞尽脑汁解决这一问题,如试用新型建造材料、在艇上安装消磁设备、定期靠岸进行消磁作业等,以便堵上这个“大漏洞”。\n\n根据文意,“大漏洞”指的是:", "type": "单选题", "options": "A. 磁铁在距离潜艇较远时无法有效吸附\nB. 潜艇使用的磁性材料容易暴露位置\nC. 磁场的存在使得设备难以隐蔽航行\nD. 潜艇产生的磁性会增大潜航时的噪声", "choice": "B", "keypoints": "实词", "most_wrong": "C", "human_count": 42954, "human_acc": 78.6771895516, "source": "2023下半年省考第十一季行测模考大赛(河南卷)第27题", "difficulty": 4, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 13481, "material": "", "question": "某公司所有的销售人员都是男性,所有的文秘都是女性,所有的已婚者都是文秘,公司的总经理尚未结婚。\n\n据此,我们可以知道:", "type": "单选题", "options": "A. 总经理是男性\nB. 已婚者中有男性\nC. 女员工中可能有未婚者\nD. 销售人员中有的已经结婚", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 193921, "human_acc": 63.4485176954, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第43题", "difficulty": 5, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 4863433, "material": "", "question": "小明是个水族爱好者,他近期饲养了很多观赏鱼,但他始终都秉持一个观点,那就是光照并不影响鱼的发色,因为那些长期生活在无光环境下的观赏鱼颜色也很艳丽。\n\n以下选项与题干的逻辑最为相近的是:", "type": "单选题", "options": "A. 小灰认为考研并不能减小就业难度,因为现在很多毕业的研究生也很难找到工作\nB. 社区工作者小赵认为,棋牌室并不能丰富老年人的生活,因为老年人更喜欢户外的运动\nC. 某领导认为,绩效并不会影响员工工作的积极性,因为很多工作不积极的员工对绩效不感兴趣\nD. 某位制片人提到,剧情好不会提升观众对电影的评价,因为观众对很多剧情很差的电影的评价极高", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 7082, "human_acc": 64.3179892686, "source": "2022上半年省考第十四季行测模考大赛(广东县级卷)第75题", "difficulty": 6, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 7079, "material": "", "question": "行政纠纷:指国家行政机关之间或国家行政机关同企事业单位、社会团体以及公民之间由于行政管理而引起的纠纷,包括行政争议和行政案件两种形式。\n\n下列选项中,不属于行政纠纷的是:", "type": "单选题", "options": "A. 原告是一家经卫生行政主管部门依法批准开办的卫生室,由于不服卫生局就其无证推销保健产品作出的处罚,因而状告卫生局\nB. 原告因工伤未能获得保险赔偿,将工厂告上法院\nC. 原告为个体工商户,因在旅游景点设摊被该地工商管理局征收摊点费,原告认为此项收费为乱收费,遂状告该工商管理局\nD. 原告对消防局火灾事故责任认定不服,申请重新认定", "choice": "B", "keypoints": "拆词", "most_wrong": "D", "human_count": 12152, "human_acc": 84.6774193548, "source": "2009年上海市公务员录用考试《行测》题第57题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 4648929, "material": "", "question": "在3号“祭祀坑”新出土的文物中,一张薄如蝶翼的金面具引人注目。金面具宽37.2厘米、高16.5厘米,重约100克,眉眼镂空,两耳轮廓圆润,鼻梁高挺,嘴形大而微张,造型威严神圣,是目前三星堆考古发掘中出土最完整的一件金面具。研究人员推测这件金面具是覆盖在青铜人头像面部的一部分,而不是一件独立使用的器物。2021年1月,三星堆曾出土重约286克的金面具残件,虽然只有“半张脸”,但它仍保持着三星堆出土最重金面具的纪录。随着发掘工作进入收尾阶段,坑内堆积由晚到早的形成顺序也渐渐揭开,分别是:填土层、坑北部灰烬层、象牙层、象牙及人工制品混合层。\n\n下列说法正确的是:", "type": "单选题", "options": "A. 重100克的“半张脸”面具是目前三星堆出土最重的金属面具\nB. 考古发现“祭祀坑”金面具是独立覆盖在青铜人头像上的器物\nC. “祭祀坑”新出土的金面具刷新了三星堆最完整的金面具记录\nD. “祭祀坑”的坑北部灰烬层形成在象牙层之前,在填土层之后", "choice": "C", "keypoints": "细节判断题", "most_wrong": "D", "human_count": 100366, "human_acc": 74.0031484766, "source": "2021下半年省考第三十七季行测模考大赛(四川卷)第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 2184691, "material": "", "question": "____________________________。20世纪建筑材料与修建技术往往不同于古代传统技艺,必须研究和开发符合不同修建类型的专门修复手段,不仅要保存有代表性的原材料,也要重视针对20世纪材料老化的详细调查。马德里文件强调:重建一个完全消失的遗产地或者某个部分并不是保护的行为。作为历史的见证,一个遗产地的文化价值主要基于它原真的或重要的材料特征。在可持续予以重视的当下,文化价值不能因采用节能措施、智能等新技术而遭受负面冲击。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 20世纪建筑遗产有其真实性与完整性\nB. 20世纪建筑遗产保护离不开技术层面及文化层面的综合把控\nC. 保护20世纪遗产与保护古代遗产有同等重要的价值\nD. 建筑遗产的价值不仅存在于物质层面还在于其文化意义", "choice": "B", "keypoints": "开头", "most_wrong": "D", "human_count": 915360, "human_acc": 62.0706607236, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第43题", "difficulty": 5, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 2577953, "material": "", "question": "VR技术是Virtual Reality(虚拟现实技术)的英文缩写,近年来,我国的VR技术不断发展,并在医疗、教育、智能制造等行业中得到广泛的运用。5G网络会大大提升虚拟现实体验的仿真度、沉浸感和交互性,_将促进虚拟现实产业的进一步发展。\n\n文末划横线的“这”指的是:", "type": "单选题", "options": "A. 中国VR技术的不断发展\nB. VR技术在各行各业中的运用\nC. 5G网络所带来的更完美感受\nD. 5G网络商用范围的扩大", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 1321103, "human_acc": 92.3200537732, "source": "2020年湖南公务员考试《行测》试题(网友回忆版)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2536812, "material": "", "question": "近几个月来,我国大学的博物馆可谓悲喜交加,既有大学博物馆藏品卷入真赝之争,也有大学博物馆备受瞩目、风光尽占,而其背后折射的不仅仅只是大学举办博物馆的不同理念,更反映出了大学博物馆的诸多困局。纵观当今中国的博物馆领域,处境最为艰难的当属非国有博物馆,而地位最为尴尬的则属大学博物馆,其边缘性的尴尬境地造就了诸多困局,而且这些困局在短时间内几乎难以撼动与破解。\n\n这段文字接下来最可能讲的是:", "type": "单选题", "options": "A. 不同大学博物馆的发展理念\nB. 我国大学博物馆面临的困境\nC. 大学博物馆在博物馆领域的地位\nD. 大学博物馆出现困境的原因", "choice": "B", "keypoints": "接语选择题", "most_wrong": "D", "human_count": 19502, "human_acc": 53.307353092, "source": "2020年上半年省考第二十八季行测模考大赛(青海卷)第50题", "difficulty": 6, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 1439, "material": "", "question": "法律援助是指在国家设立的法律授助机构的指导和协调下,律师、公证人员、基层法律工作者等法律服务人员依法为经济困难或特殊案件的当事人给予减、免收费提供法律帮助的一项法律制度。它有一般对象和特殊对象,前者是要审查其是否是具备援助条件的中国公民;后者是指符合刑事诉讼法和司法部、最高人民法院关于开展刑事法律援助的联合通知规定的刑事被告人。\n\n根据上述定义,下列属于法律援助对象的是:", "type": "单选题", "options": "A. 在中国犯抢劫罪的外国人\nB. 确因经济困难,无能力或无完全能力支付法律服务费用的人\nC. 因经济困难无能力聘请律师的作为残疾人的刑事嫌疑人\nD. 在刑事案件中,委托了辩护人的外国籍被告人", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 92741, "human_acc": 47.6951941428, "source": "2008年山西省公务员录用考试《行测》题第63题", "difficulty": 5, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 2671157, "material": "", "question": "今年五月下旬,在博茨瓦纳的国家公园,不到一个月的时间陆陆续续死了300头大象,因为没有枪伤,象牙也没丢,所以排除了猎杀的可能性。直到最近,博茨瓦纳政府给出了官方答案,大象是因为喝了大量含蓝藻毒素的水死亡的。博茨瓦纳官方之所以称蓝藻是杀死大象的真凶,是因为大象死于神经毒素,且在大象的饮水区检测出了有毒的蓝藻。\n\n如果以下各项为真,最不能加强上述论断的是:", "type": "单选题", "options": "A. 今年的8月份,在津巴布韦边境的万基国家公园附近,又出现了20头大象的尸体,且它们的饮用水中蓝藻大量繁殖\nB. 有毒的蓝藻细胞破裂后会产生神经毒素,与受体结合后会导致神经传导出现问题,引起呼吸困难,窒息死亡\nC. 蓝藻在温暖的水域生长得最快,今年天气异常温暖,博茨瓦纳国家公园大象的饮水区出现了比往年多的蓝藻,甚至覆盖了全部水面形成了水华现象\nD. 在1996年,巴西一个血液透析中心由于使用被蓝藻污染的水而导致60多人死亡,这也是人类历史上最严重的一次和蓝藻有关的死亡事件", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 78379, "human_acc": 67.7209456615, "source": "2020年下半年省考第十季行测模考大赛(广东卷)第63题", "difficulty": 5, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 5447358, "material": "", "question": "2021年,我国新能源汽车销量超过350万辆,这意味着每卖出8辆新车其中就有一辆是新能源汽车。但是在新车销量不断攀高的同时,二手车市场却出现买卖难的现象。一辆新能源汽车,在行驶了5万公里后,即使没有发生过任何事故,在二手车市场也很难以超过原车价10%的价格出售,并且很多二手车商都明确表示不会回购二手新能源汽车。\n\n下列选项如果为真,最不能解释这一现象的是(    )。", "type": "单选题", "options": "A. 电池在新能源汽车的整车成本中占比最高,被使用后其衰减状况和价值难以评估\nB. 新能源汽车成为二手车后,车主无法再享受官方提供的多项首任车主福利\nC. 与新能源汽车配套的充电桩等设施滞后,导致新能源汽车充电不便,且充电耗时较长\nD. 绝大多数二手新能源汽车需要更换电池,电池价格高于购买新车", "choice": "C", "keypoints": "原因解释", "most_wrong": "B", "human_count": 34435, "human_acc": 82.6571801946, "source": "2023上半年省考第四季行测模考大赛(北京卷)第105题", "difficulty": 4, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 2114644, "material": "", "question": "红叶子理论认为,一个人职业的成功不在于红叶子数目的多少,而在于他是否具备一片特别硕大的红叶子,这片特别硕大的红叶子不是与生俱来的,需要根据个人优势不断努力才能获得。\n\n根据上述定义,下列哪项能用红叶子理论解释?", "type": "单选题", "options": "A. 小刘虽然偶尔迟到,但对工作尽职尽责、富有团队精神\nB. 小张本科学习数学专业,但是他觉得数学专业比较枯燥,所以他选择攻读经济学硕士\nC. 小李的销售能力和财务水平一般,但对市场特别敏感,他努力发展这方面优势,最后成了一名企业家\nD. 小文是英语系学生,但口语不太好,她辅修了国际法方面的课程,最后成了一名出色的律师", "choice": "C", "keypoints": "故事类", "most_wrong": "D", "human_count": 923813, "human_acc": 89.0705153532, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第90题", "difficulty": 4, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 2187838, "material": "", "question": "目前,人们通过在河流上筑坝建造水电站获得电能,但是地球上适合筑坝的地方为数不多,筑坝也会破坏生态环境。相比之下,海洋覆盖$70\\%$的地球表面。海面上波涛滚滚,昼夜不息,蕴藏着巨大的能量,收集波浪能适合的海域广,生态环境破坏小。因此,收集波浪能用于发电将比在河流上筑坝发电更有优势。\n\n以下哪项如果为真,不能质疑上述结论?", "type": "单选题", "options": "A. 据估计,全世界可开发利用的波浪能达2.5TW,目前一些小功率的波浪能设备已经推广应用于导航浮标、灯塔等\nB. 河流的流向较为稳定,而波浪是海水的缓慢运动,方向并不固定,在此条件下设立的发电机效率非常低\nC. 不管是在海床上建塔来支撑发电,还是把发电机固定在海床上都要耗费巨资,成本比河流电站要昂贵得多\nD. 河水的水能易于收集,而深海地区及开阔洋面中的波浪能难以提取,可供利用的波浪能仅局限于靠近海岸的地方", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "B", "human_count": 1034753, "human_acc": 91.4396962367, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第98题", "difficulty": 3, "formulas": 1, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 1511089, "material": "", "question": "历史的经验告诉我们穷则思变,这里的穷就是人们生活饥寒交迫,艰难困苦,就是民生问题没有保障,没有改善。历史上的改朝换代从根本上说都是人民群众为保障和改善民生而奋争的结果。90多年来,无论是新民主主义革命的胜利,还是社会主义革命的胜利;不论是社会主义建设取得的成就,还是改革开放取得的成功,都是我们党员团结和依靠人民群众而取得的,都是因为人民群众相信只有跟党走,才能够使他们生活得更好,才支持我们党的,因此,_______________。\n\n填入横线处最恰当的一项是:", "type": "单选题", "options": "A. 维护人民群众根本利益,改善群众的生活条件是我们党开展一切工作的根本目的\nB. 密切联系群众,解决民生问题是我们加强社会建设各项工作的出发点和落脚点\nC. 解决群众的生产生活困难,走共同富裕的道路是我们党重视民生的充分体现\nD. 不断解放和发展社会生产力,保持党同人民群众的血肉联系是我们党前进的重要法宝", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 757927, "human_acc": 42.1833501116, "source": "2015年四川省公务员录用考试《行测》题(上半年)第32题", "difficulty": 5, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 2900720, "material": "某单位要从刘明、丁红、赵丽、孙小、张亮、李帅、周平7人中选出4人参加文艺演出,需要满足以下条件:\n\n(1)赵丽、周平、张亮中有2人参加演出;\n\n(2)孙小、刘明2人中最少有1人参加演出;\n\n(3)赵丽、张亮2人不会同时参加演出;\n\n(4)如果刘明被选中,那么周平不会参加演出;\n\n(5)丁红、赵丽中最多有1人参加演出。", "question": "根据上述条件,以下哪项可能为参加文艺演出的人员名单?", "type": "单选题", "options": "A. 孙小、周平、丁红、赵丽\nB. 赵丽、刘明、张亮、丁红\nC. 孙小、周平、丁红、张亮\nD. 周平、张亮、刘明、丁红", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 27952, "human_acc": 92.4728105323, "source": "2022年国考第四季行测模考大赛(地市级)第106题", "difficulty": 4, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 2270954, "material": "", "question": "真正的好文章,一定要鲜明而有力地拥护那应当拥护的东西,同时也一定要鲜明而有力地反对那应当反对的东西。这才会是生气勃勃的好文章。\n\n这段话直接支持了这样一种观点:", "type": "单选题", "options": "A. 真正的好文章有两条衡量标准\nB. 真正的好文章应爱憎分明\nC. 写好文章的人应该知道每件事的好坏标准\nD. 真正的好文章应有鲜明而正确的观点", "choice": "D", "keypoints": "中心理解题", "most_wrong": "B", "human_count": 4019, "human_acc": 63.2993281911, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题"]]}, {"id": 2452568, "material": "", "question": "一项对某企业基层工作人员的研究报告显示,使用社交软件的基层工作人员罹患糖尿病、精神疾病、缺血性心脏疾病的概率均显著低于不使用社交软件的。据此,该企业管理人员认为,社交软件的使用有利于基层工作人员的健康。\n\n以下哪项如果为真,最能削弱上述管理人员的结论?", "type": "单选题", "options": "A. 长时间使用电脑或者手机会引发包括精神疾病在内的多种健康问题\nB. 该企业基层工作人员没有足够多的时间和精力锻炼身体\nC. 该企业基层工作人员压力大,身心健康的人才在工作之余使用社交软件\nD. 该企业基层工作人员普遍在四十岁以上,相当一部分人不使用社交软件", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 1166093, "human_acc": 69.6825210339, "source": "2020年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第96题", "difficulty": 5, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 4630408, "material": "", "question": "为加强对青少年的健康监测,科学家分析了4257名青少年的数据,这些孩子在12岁、14岁和16岁的时候,戴着加速计,在至少3天的时间里跟踪他们至少10个小时并随访6年。加速计客观记录佩戴者是否正在进行轻度活动,是否正在进行中度体力活动,或者是否久坐。研究发现,在12岁、14岁和16岁时,每天每增加1个小时的久坐时间,到18岁时抑郁评分分别增加11.1%、8%、10.5%。科学家据此得出结论,青少年久坐,不运动会增加抑郁症风险。\n\n以下哪项如果为真,最能质疑上述结论?", "type": "单选题", "options": "A. 这些久坐的青少年大多数沉迷恐怖类游戏,对他们精神造成严重影响\nB. 这些孩子中,家境不好、长期奔波兼职的青少年也会患上抑郁症\nC. 这些孩子中,长期久坐的青少年最终学习成绩普遍好于同龄学生\nD. 与成年人相比,经常久坐不运动的青少年所占比例事实上很低", "choice": "A", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 817689, "human_acc": 56.2339715956, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第83题", "difficulty": 5, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 584281, "material": "", "question": "在今日10时的家属沟通会上,马航工作人员向家属表示,目前马来西亚外交部已向南北走廊上所有国家发出外交照会,并请求这些国家提供支持和协助,包括雷达和卫星信息、海陆空搜救行动、相关国家的搜救行动计划及马来西亚请求提供的信息等。目前已有26个国家参与搜救,几乎涵盖南北走廊的所有国家。\n\n为这段新闻拟写标题,恰当的一项是:", "type": "单选题", "options": "A. 马航组织家属沟通会\nB. 马来西亚请求援助搜救工作\nC. 马航与家属协商搜救工作\nD. 马方已向多国发出外交照会", "choice": "D", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 589739, "human_acc": 22.849090869, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 45839, "material": "", "question": "高中毕业以后,人们很少再做数学题或谈论历史,但人们每天都要面临与家庭经济有关的决策。然而,当数学和历史是高中课程中的必修课时,家庭经济学仅仅是一门选修课,并且很少有学生选这门课。\n\n下列哪项观点能最好地被以上的论述所支持:", "type": "单选题", "options": "A. 除非高中把更多的重心放在像家庭经济学这样的非专业学科上,从高中毕业的人们永远不会轻松地做出日常生活中面临的决策\nB. 虽然家庭经济学对于面临日常生活中必须做出决策的人们是最有用的学科,但通常数学和历史也能帮助人们做出这些决策\nC. 数学、历史和其他不是直接与一个人的日常生活有关的学科不应该成为高中课程表中的必修部分\nD. 如果向高中学生传授与他们以后在日常生活中会面临的决策相关的学科是重要的,那么家庭经济学就应该成为高中课程表中重要的一部分", "choice": "D", "keypoints": "加强-其他", "most_wrong": "B", "human_count": 208671, "human_acc": 49.1246986884, "source": "2013年上海市公务员录用考试《行测》题(B类)第53题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 748835, "material": "", "question": "在对待异地高考问题上,甲方认为,异地高考能够有效促进教育公平,突破户籍制度的桎梏;乙方认为,异地高考将导致大城市人口恶性膨胀。\n\n如果以下各项为真,不能作为上述双方观点论据的是:", "type": "单选题", "options": "A. 教育资源分配不均和招生制度不合理是教育不公的根源\nB. 一旦放开异地高考,无法避免“高考移民”泛滥的问题\nC. 各省高考实行自主命题,要求学生回原籍高考并不公平\nD. 异地高考操作难度很大,牵扯到方方面面的利益和事情", "choice": "D", "keypoints": "削弱-其他", "most_wrong": "A", "human_count": 271783, "human_acc": 56.4130206819, "source": "2014年青海省公务员录用考试《行测》题第102题", "difficulty": 6, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱-其他"]]}, {"id": 2036564, "material": "根据下列资料,回答86~90题:    \n\n      城市社区卫生服务中心和农村乡镇卫生院是我国卫生体系的重要组成部分。\n\n      2011年底,我国共有社区卫生服务中心7861家,从业人员328676人,其中,卫生技术人员276252人,占全国卫生人员总数的$4.5\\%$,占城市卫生技术人员总数的$8.8\\%$,城市每千人口卫生技术人员数为7.97人。\n\n  2011年底,乡镇卫生院37295家,从业人员1165996人,其中,卫生技术人员981227人,占全国卫生技术人员总数的$15.8\\%$,占农村卫生技术人员总数的$32.1\\%$。农村每千人口卫生技术人员数为3.18人。", "question": "2011年底,城市每千人口卫生技术人员数比农村每千人口卫生技术人员数( )人。", "type": "单选题", "options": "A. 多 4.79\nB. 少 4.79\nC. 多 3.87\nD. 少 3.87", "choice": "A", "keypoints": "简单加减计算", "most_wrong": "B", "human_count": 28182, "human_acc": 94.6597118728, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第90题", "difficulty": 3, "formulas": 4, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"]]}, {"id": 7433, "material": "(一)根据所给文字资料完成以下各题:\n\n        截至2006年12月31日,我国各系统、各行业、各种所有制形式的公司和企业(不含港澳台地区)共有符合第五次全国体育场地普查要求的各类体育场地850080个,占地面积为22.5亿平方米,建筑面积为7527.2万平方米,场地面积为13.3亿平方米。历年累计投入体育场地建设资金中包括财政拨款为667.7亿元,其余为单位自筹资金。以2003年底全国总人口129227万人(不含港澳台地区)计算,平均每万人拥有体育场地6.58个,人均体育场地面积为1.03平方米,人均投入体育场地建设资金为148.15元。同第四次全国体育场地普查(截至1995年12月31日)数据相比,全国体育场地占地面积共增加了11.8亿平方米,场地面积共增加了5.5亿平方米,人均体育场地面积增加了0.38平方米,人均投入体育场地建设资金增加了117.09元,每万人拥有体育场地数增加了1.58个。\n\n        现有的850080个体育场地中,标准体育场地有547178个,非标准体育场地302902个。标准体育场地占地面积15.3亿平方米,建筑面积6416.3万平方米,场地面积11.1亿平方米,历年累计投入标准体育场地的建设资金为1642.8亿元。", "question": "根据上述文字资料,下列说法正确的是:", "type": "单选题", "options": "A. 单位自筹资金约占历年累计投入体育场地建设资金总额的46.1%\nB. 标准体育场在我国体育场地中的作用远高于非标准体育场\nC. 第五次普查的人均投入体育场地建设资金大约是第四次普查数据的4.8倍\nD. 人均体育场地面积年平均增长率为5.92%", "choice": "C", "keypoints": "综合分析", "most_wrong": "D", "human_count": 9337, "human_acc": 48.2917425297, "source": "2008年云南省公务员录用考试《行测》题第115题", "difficulty": 5, "formulas": 0, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"]]}, {"id": 455041, "material": "", "question": "下列有关国防基础知识的表述中,不正确的是:", "type": "单选题", "options": "A. 我国的第一任国防部长是彭德怀\nB. 我国的领海宽度为12海里\nC. 我国的现役部队由海军、陆军、空军三个军种组成\nD. 我国义务兵服现役的期限为2年", "choice": "C", "keypoints": "", "most_wrong": "B", "human_count": 453466, "human_acc": 39.0417363154, "source": "2014年浙江省公务员录用考试《行测》题(B类)第99题", "difficulty": 5, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 5102146, "material": "", "question": "中华民族在历史上多次战胜疫病,下列说法错误的是:", "type": "单选题", "options": "A. 《汉书》载:“民疾疫者,舍空邸第,为置医药”,表明“隔离”是一种防疫措施\nB. 1910年东北爆发鼠疫,伍连德博士在抗击鼠疫的过程中,发明了中国第一款口罩\nC. 宋代时各地建立了“安济坊”用于救治被瘟疫困扰的百姓,政府定期派官员下坊巡视\nD. 中国近代才开始用“种痘”之法抵御“天花”", "choice": "D", "keypoints": "文化常识", "most_wrong": "B", "human_count": 982246, "human_acc": 58.2109776981, "source": "2022年陕西省公务员录用考试《行测》题(网友回忆版)第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 2385111, "material": "", "question": "有清代学者在讨论唐诗时写道:“唐人作诗,惟适己意,不索人知其意。”在讨论宋诗时写道:“宋人作诗,欲人人知其意,故多直达。”下列诗句为唐朝人所作的是(  )。", "type": "单选题", "options": "A. 独怜幽草涧边生,上有黄鹂深树鸣。春潮带雨晚来急,野渡无人舟自横\nB. 莫言下岭便无难,赚得行人空喜欢。正入万山圈子里,一山放过一山拦\nC. 半亩方塘一鉴开,天光云影共徘徊。问渠那得清如许,为有源头活水来\nD. 飞来山上千寻塔,闻说鸡鸣见日升。不畏浮云遮望眼,自缘身在最高层", "choice": "A", "keypoints": "文学常识", "most_wrong": "D", "human_count": 118296, "human_acc": 42.9727125178, "source": "2019深圳市公务员录用考试《行测》题(网友回忆版)第5题", "difficulty": 5, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 826087, "material": "", "question": "下列与抗日战争相关的事件,按发生时间先后排列的是:", "type": "单选题", "options": "A. 重庆大轰炸 南京大屠杀 湘西会战 鄂西会战\nB. 九一八事变 七七事变 百团大战 湘西会战\nC. 七七事变 重庆大轰炸 湘西会战 百团大战\nD. 重庆大轰炸 七七事变 鄂西会战 湘西会战", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 477668, "human_acc": 56.1203597478, "source": "2014年四川省公务员录用考试《行测》题(下半年)第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 5741367, "material": "", "question": "“人享其行、物畅其流”,交通运输的快速发展给人们生活带来了巨大的便利。近年来,我国交通运输领域取得了诸多成就。对此,下列说法错误的是(    )。", "type": "单选题", "options": "A. 我国已建成了一条由西江干流向南入海的江海联运大通道——平陆运河\nB. 国内首创重载铁路基础设施采用智能运维技术能有效弥补传统运维模式的不足\nC. 位于湖北的鄂州花湖机场是我国首个专业货运枢纽机场\nD. 我国自主研制的高温超导电动悬浮交通系统采用了被动悬浮方式", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 29051, "human_acc": 15.3316581185, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第13题", "difficulty": 7, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 4652148, "material": "", "question": "根据板块学说,喜马拉雅山脉是由下列哪些板块碰撞造成的?", "type": "多选题", "options": "A. 欧亚板块\nB. 非洲板块\nC. 太平洋板块\nD. 印度洋板块", "choice": "AD", "keypoints": "自然常识", "most_wrong": "C", "human_count": 80529, "human_acc": 41.0609842417, "source": "2022年北京市公务员录用考试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 2656432, "material": "", "question": "关于化肥,下列说法正确的是(    )。", "type": "单选题", "options": "A. 尿素是含氮量最高的固体氮肥\nB. 钾肥是造成水华的最主要因素\nC. 草木灰是一种天然复合肥\nD. 磷肥的主要作用是使农作物枝叶茂盛", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 57875, "human_acc": 21.2371490281, "source": "2021年国考第十八季行测模考大赛(副省级)第9题", "difficulty": 7, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 2786052, "material": "", "question": "关于人的指纹,下列说法错误的是(    )。", "type": "单选题", "options": "A. 指纹的形成也受环境的影响\nB. 现代指纹识别技术可以用于开锁\nC. 把手指放到普通光学显微镜下,可以看到手指的指纹\nD. 控制指纹信息的遗传物质储存在细胞的细胞核中", "choice": "C", "keypoints": "生物常识", "most_wrong": "A", "human_count": 160589, "human_acc": 30.9112081151, "source": "2021上半年省考第七季行测模考大赛(四川卷)第8题", "difficulty": 7, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 4982184, "material": "", "question": "关于陕西省内的河流,下列说法错误的是(    )。", "type": "单选题", "options": "A. 陕西境内绝大部分河流为外流河\nB. 境内大部分河流分属黄河、长江两大水系\nC. 汉江在陕西省延安市汇入长江\nD. 嘉陵江为古时货物从江南入陕的主要水路之一", "choice": "C", "keypoints": "国情社情", "most_wrong": "B", "human_count": 12609, "human_acc": 61.2261083353, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第17题", "difficulty": 4, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 5562539, "material": "", "question": "下列行为不能用“无犯意则无犯人”解释的是(    )。", "type": "单选题", "options": "A. 小张在荒无人烟的深山打猎,误把小王射死\nB. 小偷深夜在小李家盗窃,小李大喝一声,小偷被吓死\nC. 完全没有辨认能力的精神病人小强殴打邻居致轻伤\nD. 严重醉酒的小郑开车将路人撞死", "choice": "D", "keypoints": "刑法", "most_wrong": "C", "human_count": 20110, "human_acc": 61.1337642964, "source": "2023下半年省考第一季行测模考大赛(新疆区考卷)第10题", "difficulty": 6, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 4696762, "material": "", "question": "关于游泳,下列表述不正确的是(    )。", "type": "单选题", "options": "A. 游泳时佩戴泳帽是为了减小摩擦力\nB. 仰泳前进的过程中力改变了游泳者的运动状态\nC. 自由泳用手划水可以使人前进,推动人前进的施力物体是手\nD. 蝶泳者全部浸入水中后下沉的过程中受到的浮力不变", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 215773, "human_acc": 51.7335347796, "source": "2022上半年省考第五季行测模考大赛(陕西卷)第13题", "difficulty": 6, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 2662087, "material": "", "question": "下列生活常识说法正确的是(    )。", "type": "单选题", "options": "A. 日常生活中空气开关跳闸以后应立即合上\nB. 肢体被毒蛇咬伤以后应立即在近心端结扎\nC. 油锅着火要迅速用冷水浇灭防止引起火灾\nD. 把冰块放在海鲜的下方更能起到保鲜效果", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 139469, "human_acc": 56.8169270591, "source": "2021年国考第十九季行测模考大赛(副省级)第15题", "difficulty": 6, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 5055128, "material": "", "question": "李某执行任务期间不幸牺牲,其母张某得知消息后悲痛欲绝,重病卧床数年,期间一直都由李某妻子照料。根据我国法律的规定,在张某死后,下列人员中属于张某的第一顺序法定继承人的是(    )。", "type": "单选题", "options": "A. 张某哥哥\nB. 李某妻子\nC. 张某孙子\nD. 张某祖母", "choice": "B", "keypoints": "民法", "most_wrong": "C", "human_count": 279569, "human_acc": 69.5763836477, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第49题", "difficulty": 4, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 17685, "material": "", "question": "下列标志性建筑中,不属于世博会会场展馆的是:", "type": "单选题", "options": "A. 法国巴黎埃菲尔铁塔\nB. 比利时布鲁塞尔原子球博物馆\nC. 意大利比萨城比萨斜塔\nD. 美国西雅图太空针塔", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 343168, "human_acc": 30.2408732749, "source": "2010年四川省公务员录用考试《行测》题(下半年)第82题", "difficulty": 5, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 18285, "material": "", "question": "根据《中华人民共和国宪法》,我国的政权组织形式是:", "type": "单选题", "options": "A. 人民民主专政\nB. 人民代表大会制度\nC. 统一的多民族国家\nD. 中国共产党领导的多党合作和政治协商制度", "choice": "B", "keypoints": "宪法", "most_wrong": "D", "human_count": 238460, "human_acc": 43.5951522268, "source": "2011年内蒙古自治区公务员录用考试《行测》题第1题", "difficulty": 6, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 2033194, "material": "", "question": "混合所有制改革是国企改革的重头戏。今年年初中石化通过《启动中国石化销售业务重组、引入社会和民营资本实现混合所有制经营的议案》,率先揭开央企混合所有制改革序幕;中石油随后也表示已搭建六个合作合资平台,将采用产品分成的模式引入民资,打破一体化经营模式以推进混合所有制。目前已经有多家央企开启了混合所有制的改革和试点工作。这样做________。", "type": "不定项", "options": "A. 减少了政府对市场主体经济活动的干预\nB. 把发展混合所有制经济作为基本经济制度的实现形式\nC. 进一步激活国有经济活力,增强了国有经济主体地位\nD. 推动了国有企业产权的流动和重组,改善了企业产权结构", "choice": "ACD", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 22600, "human_acc": 25.4778761062, "source": "2015年上海市公务员录用考试《行测》题(B类)第109题", "difficulty": 5, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 2461712, "material": "", "question": "下列属于行政立法主体的是:", "type": "单选题", "options": "A. 天津市人大常委会\nB. 天津市高级人民法院\nC. 天津市人民检察院\nD. 天津市和平区政府", "choice": "D", "keypoints": "行政法", "most_wrong": "A", "human_count": 773, "human_acc": 26.0025873221, "source": "天津市2020年度定向34所重点高校招录选调生《综合能力测试》第39题", "difficulty": 5, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 5696960, "material": "", "question": "下列关于我国残疾人的说法,不符合法律规定的是(    )。", "type": "单选题", "options": "A. 残疾人有平等接受教育的权利\nB. 残疾人持有效证件免费乘坐公共交通工具\nC. 从事个体经营的残疾人依法可以享受税收优惠\nD. 政府采购,在同等条件下应当优先购买残疾人福利性单位的产品", "choice": "B", "keypoints": "其他法律法规", "most_wrong": "D", "human_count": 72305, "human_acc": 22.1879538068, "source": "2023下半年省考第十六季行测模考大赛(广东乡镇卷)第20题", "difficulty": 7, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 5446593, "material": "", "question": "2022年10月,国家林业和草原局、自然资源部联合印发《全国湿地保护规划(2022—2030年)》。下列相关表述不正确的是(    )。", "type": "多选题", "options": "A. 到2025年,湿地保护高质量发展新格局初步建立\nB. 该规划以“三区四带”为总体布局,华北森林带是“四带”之一\nC. 我国第一个国家级湿地公园是红河哈尼梯田国家湿地公园\nD. 到2030年,我国成为全球湿地保护修复的重要参与者、贡献者和引领者", "choice": "ABC", "keypoints": "时政", "most_wrong": "D", "human_count": 3369, "human_acc": 5.7583852775, "source": "2023上半年省考第四季行测模考大赛(北京卷)第28题", "difficulty": 7, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 5403963, "material": "", "question": "党的十九大作出中国特色社会主义进入新时代这个重大政治论断,我们必须认识到,这个新时代是中国特色社会主义新时代,而不是别的什么新时代。党要在新的历史方位上实现新时代党的历史使命,最根本的就是要(    )。", "type": "单选题", "options": "A. 坚持和完善中国特色社会主义理论体系\nB. 坚持中国共产党的领导\nC. 高举中国特色社会主义伟大旗帜\nD. 将马克思主义与中国改革开放实际相结合", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 300895, "human_acc": 19.7391116502, "source": "2023年国考第四十七季行测模考大赛(副省级)第1题", "difficulty": 7, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 2297, "material": "", "question": "税务机关依照法定的税种、税率对某企业征税,这一行为是:", "type": "单选题", "options": "A. 自由裁量行政行为\nB. 不要式行政行为\nC. 双方行政行为\nD. 羁束行政行为", "choice": "D", "keypoints": "经济法", "most_wrong": "C", "human_count": 70706, "human_acc": 53.6036545696, "source": "2008年江西省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 3747517, "material": "", "question": "幼儿园老师给小朋友们讲了一个故事:某日,小明在天桥下遇到一位魔法师,魔法师对他说:“你只要走过这座天桥再回来,身上的钱就会增加一倍,但作为报酬,你每走一个来回要给我32元钱。”小明感觉很划算,欣然答应。他走过天桥后又走回来,身上的钱果然增加了一倍,他很高兴地给了魔法师32元钱。这样走完5个来回,小明仅剩的32元钱都给了魔法师。请你帮小朋友们算一算,小明原来有多少元钱?", "type": "单选题", "options": "A. 30\nB. 31\nC. 32\nD. 33", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 89613, "human_acc": 48.0499481102, "source": "2021下半年省考第十二季行测模考大赛(广东县级卷)第31题", "difficulty": 6, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 4277140, "material": "", "question": "根据《民事诉讼法》,下列关于特别程序的说法,错误的是(    )。", "type": "单选题", "options": "A. 人民法院受理选民资格案件后,必须在选举日前审结\nB. 公民下落不明满二年,利害关系人申请宣告其失踪的,向下落不明人工作地基层人民法院提出\nC. 申请认定财产无主,由公民、法人或者其他组织向财产所在地基层人民法院提出\nD. 当事人对已经发生法律效力的判决、裁定,认为有错误的,可以向上一级人民法院申请再审", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 85377, "human_acc": 43.7963385924, "source": "2021下半年省考第二十二季行测模考大赛(广东县级卷)第19题", "difficulty": 6, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 1679700, "material": "", "question": "某高校学生处要在大一新生中组织篮球比赛,赛制为单循环形式,即每两个队之间都赛一场,如果学生处计划安排21场比赛,则应邀请多少支球队参加比赛?", "type": "单选题", "options": "A. 5\nB. 8\nC. 7\nD. 6", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "D", "human_count": 208113, "human_acc": 71.1574961679, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第87题", "difficulty": 4, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 1757, "material": "", "question": "下列关于劳动合同期限的说法不正确的是:", "type": "单选题", "options": "A. 劳动合同期限三个月以上不满一年的试用期不得超过一个月\nB. 劳动合同期限一年以上不满三年的,试用期不得超过三个月\nC. 三年以上固定期限和无固定期限的劳动合同,试用期不得超过六个月\nD. 以完成一定工作任务为期限的劳动合同或者劳动合同期限不满三个月的,不得约定试用期", "choice": "B", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80708, "human_acc": 24.1884323735, "source": "2008年山西省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 4689736, "material": "", "question": "将9个优秀员工名额分给3个部门,若每个部门至少分配2个,至多分配5个,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 28\nB. 20\nC. 10\nD. 7", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 15384, "human_acc": 55.3887155486, "source": "2022上半年省考第四季行测模考大赛(浙江卷)第72题", "difficulty": 6, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 5673591, "material": "", "question": "甲、乙、丙、丁四人一起讨论聚餐的事宜,对于菜品的选择有如下要求:\n\n甲:如果选择糖醋排骨,那么一定要选择凉拌黄瓜;\n\n乙:凉拌黄瓜和干锅花菜之中只选择一个;\n\n丙:点干锅花菜或者不点水煮鱼;\n\n丁:只有选择糖醋排骨,才会选择干锅花菜。\n\n最终菜品的选择符合所有人的要求,由此可以推出:", "type": "单选题", "options": "A. 选择了水煮鱼和干锅花菜\nB. 没有选择糖醋排骨和水煮鱼\nC. 选择了凉拌黄瓜,没有选择水煮鱼\nD. 选择了糖醋排骨,没有选择干锅花菜", "choice": "C", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 34705, "human_acc": 50.37314508, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第41题", "difficulty": 6, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 2613046, "material": "", "question": "鱼和熊掌不可兼得。如果你没有得到鱼,那么你一定会得到熊掌。\n\n以下哪项的推理方式与上述最为相似?", "type": "单选题", "options": "A. 一山不能容二虎。如果山里出现了一只老虎,那么就不能再有一只老虎\nB. 忠孝不能两全。如果你没有为国效忠,那么你一定会为父母尽孝\nC. 生命诚可贵,爱情价更高。若为自由故,二者皆可抛。如果你想得到自由,那么你必须舍弃生命和爱情\nD. 将欲取之,必先予之。如果你没有付出,那么你也得不到回报", "choice": "B", "keypoints": "推理形式", "most_wrong": "A", "human_count": 24720, "human_acc": 93.3009708738, "source": "2020年下半年省考第一季行测模考大赛(江苏卷)第95题", "difficulty": 3, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 5451646, "material": "", "question": "一列火车以90千米/小时的速度匀速行驶,临近隧道时开始均匀减速,车头驶入隧道时再匀速行驶。已知匀减速期间火车的平均速度为72千米/小时,从车头驶入隧道到火车完全驶出隧道的时间是120秒,整列火车完全在隧道内的时间是80秒,则火车的长度是:", "type": "单选题", "options": "A. 300米\nB. 400米\nC. 500米\nD. 600米", "choice": "A", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 99665, "human_acc": 9.8229067376, "source": "2023上半年省考第五季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 4212068, "material": "", "question": "维持性期望效应指的是老师认为学生将维持以前的发展模式,而对学生特别是差生的改变视而不见,甚至否认的现象。开展对于维持性期望效应的研究对教师观念的改变和学生的健康发展均有重要意义。\n\n根据上述定义,下列属于维持性期望效应的是:", "type": "单选题", "options": "A. 王蒙考试发挥失常,因害怕父母责怪于是请求老师不要将自己的真实成绩告诉家长\nB. 以前一直考得特别差的学生在一次考试中考得很好,老师怀疑他的成绩是作弊得来的\nC. 孙可患有儿童自闭症,老师经常关心他并建议家长及时带他治疗,但他并没有明显好转\nD. 张老师经常让成绩进步较大的同学分享学习经验,一段时间后班里的平均成绩普遍提高", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 145508, "human_acc": 97.0950050856, "source": "2021下半年省考第二十一季行测模考大赛(陕西卷)第74题", "difficulty": 3, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 6793, "material": "", "question": "A、B两山村之间的路不是上坡就是下坡,相距60千米。邮递员骑车从A村到B村,用了3.5小时;再沿原路返回,用了4.5小时。已知上坡时邮递员车速是12千米/小时,则下坡时邮递员的车速是:", "type": "单选题", "options": "A. 10千米/小时\nB. 12千米/小时\nC. 14千米/小时\nD. 20千米/小时", "choice": "D", "keypoints": "平均速度", "most_wrong": "C", "human_count": 23521, "human_acc": 58.2628289614, "source": "2009年江苏省公务员录用考试《行测》题(A类)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 2661850, "material": "", "question": "误导广告是指由于广告主、广告经营者、广告发布者的故意或过失,使广告内容不明确,令广告对象对商品的真实情况产生错误的联想,从而影响其购买决策的广告。\n\n根据上述定义,下列不属于误导广告的是:", "type": "单选题", "options": "A. 某商店在促销中声称“买一送一”,但是送的却是别的价值非常低的商品\nB. 某商店在宣传时称“本店商品打5折”,但实际上只在周六日才打5折\nC. 广告客户和广告经营者在广告宣传中恶意贬低竞争对手的产品,影响十分恶劣\nD. 科学界对钙的吸收问题尚无定论,某企业宣称其钙产品比传统的钙产品吸收效果好", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 26965, "human_acc": 88.0919710736, "source": "2020年下半年省考第九季行测模考大赛(江苏卷)第111题", "difficulty": 3, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 23685, "material": "", "question": "某社团共有46人,其中35人爱好戏剧,30人爱好体育,38人爱好写作,40人爱好收藏,这个社团至少有多少人以上四项活动都喜欢:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "B", "human_count": 286296, "human_acc": 56.8097353788, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第40题", "difficulty": 6, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 827303, "material": "", "question": "某班期中考试和期末考试有四个人两次成绩都排前4名,已知有一名同学两次排名都一样,则这四个人期末排名有几种可能:", "type": "单选题", "options": "A. 4\nB. 6\nC. 8\nD. 10", "choice": "C", "keypoints": "错位排列", "most_wrong": "B", "human_count": 88352, "human_acc": 40.0013582035, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第60题", "difficulty": 6, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 20567, "material": "", "question": "“煎饼人”是“门门通、门门松”的万金油式的“知识分子”,他们不是将精力专注于某一个感兴趣的领域,而是力求在各个领域都至少获得一些基本知识。他们爱好浅阅读,极度依赖搜索引擎,缺乏思辨力和想象力。他们的涉猎面铺地薄而大,像煎饼一样,但没有厚而重的知识积累。在信息时代,能够在短时间内获得稀缺信息的能力有其积极的一面,但同时也容易出现使人不愿意深究某一主题的倾向。\n\n关于“煎饼人”,下列说法正确的是:", "type": "单选题", "options": "A. 善于学习新知识\nB. 具有触类旁通的能力\nC. 热衷涉猎却不求甚解\nD. 占有大量稀缺的信息资源", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 641559, "human_acc": 92.4967150332, "source": "2012年山东省公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2133746, "material": "", "question": "某公司30岁以下的年轻员工中有一部分报名参加了公司在周末举办的外语培训班。该公司的部门经理一致同意在本周末开展野外拓展训练。所有报名参加外语培训班的员工都反对在本周末开展拓展训练。\n\n由此可以推出:", "type": "单选题", "options": "A. 所有部门经理年龄都在30岁以上\nB. 该公司部门经理中有人报名参加了周末的外语培训班\nC. 报名参加周末外语培训班的员工都是30岁以下的年轻人\nD. 有些30岁以下的年轻员工不是部门经理", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 1776716, "human_acc": 65.7057177399, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第110题", "difficulty": 5, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 2002500, "material": "", "question": "不可能所有的江西人都喜欢辣椒。以下哪项判断的含义与上述判断最为接近?", "type": "单选题", "options": "A. 必然有的江西人不喜欢吃辣椒\nB. 可能所有的江西人都喜欢吃辣椒\nC. 必然所有的江西人都喜欢吃辣椒\nD. 可能有的江西人会吃辣椒", "choice": "A", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 6066, "human_acc": 92.5321463897, "source": "2010年江西省公务员录用考试《行测》题第84题", "difficulty": 5, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 2575, "material": "", "question": "民族共同语是指同一个民族的人们在生产、生活中,彼此之间交流思想感情和交往联系所共同使用的语言。\n\n下列语言不属于民族共同语言的是:", "type": "单选题", "options": "A. 藏语\nB. 朝鲜语\nC. 英语\nD. 世界语", "choice": "D", "keypoints": "拆词", "most_wrong": "C", "human_count": 20513, "human_acc": 93.1214351874, "source": "2008年陕西省公务员录用考试《行测》题第73题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 2613881, "material": "", "question": "甲、乙两人进行三局两胜制的下棋比赛,同一人在每局的获胜概率相同且不会出现打平的情况。经计算,甲连胜两局的概率比乙高20个百分点。则一场比赛乙最终获胜的概率为多少?", "type": "单选题", "options": "A. $19.2\\%$\nB. $28.8\\%$\nC. $35.2\\%$\nD. $38.4\\%$", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 75521, "human_acc": 50.0311171727, "source": "2020年下半年省考第二季行测模考大赛(新疆卷)第61题", "difficulty": 6, "formulas": 334, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 2796470, "material": "", "question": "物证是以物质的存在形式证明案件事实的,与其他证据相比较,特别是与各种人证相比较,具有较强的客观性。物证一般为连接两个事实要素的桥梁,而且往往一方面连接已知案件事实,一方面连接嫌疑客体。物证的证明价值往往要借助一定的科学技术手段才能实现,许多物证的发现和提取都需要专门的科学技术手段,如潜在手印的显现技术和粉尘足迹的提取技术,很多物证中储存的与案件事实有关的信息也需要一定的科学技术来解读。物证也不能自己直接向法庭证明案件事实。\n\n下列哪项不是文中提到的物证的特点?", "type": "单选题", "options": "A. 关联性\nB. 客观性\nC. 唯一性\nD. 依赖性", "choice": "C", "keypoints": "细节判断题", "most_wrong": "D", "human_count": 184903, "human_acc": 94.801057852, "source": "2022年国考第一季行测模考大赛(地市级)第55题", "difficulty": 3, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 1746632, "material": "", "question": "下列哪种情形可能发生?", "type": "单选题", "options": "A. 辛亥革命发生时,希腊人在体育场观看世界杯足球赛\nB. 五四运动发生时,中国大学生利用半导体收音机收听广播\nC. 冷战时期,苏联某地电影院放映彩色电影\nD. 越战期间,美国人在家里用计算机访问互联网", "choice": "C", "keypoints": "世界历史;中国历史", "most_wrong": "B", "human_count": 2599340, "human_acc": 34.969530727, "source": "2016年国家公务员录用考试《行测》题(副省级)第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"], ["常识判断", "人文常识", "中国历史"]]}, {"id": 3522649, "material": "", "question": "专家发现,传播疟疾的蚊子被人的气味分子吸引,抗击疟疾的设备负责消除空气中的人体气味,在人体周围制造一个范围为2平方米的电场,让气味分子掉落在地上。这样,传播疟疾的蚊子就找不到它们的猎物了,因为它们在没有气味的空间中会迷失方向。\n\n以下哪项如果为真,最能支持上述观点?", "type": "单选题", "options": "A. 科学家已成功研发出吸引疟疾蚊子的芳香物质,可直接引诱和杀死这些蚊子\nB. 现有实验已证实,传播疟疾的蚊子对疟疾患者散发出的人体气味特别感兴趣\nC. 传播疟疾的蚊子必须长时间大量吸食血液才能获得繁殖的能量\nD. 带疟疾病毒的蚊子无法嗅到人体气味,就会拒绝进食直至死亡", "choice": "D", "keypoints": "补充论据", "most_wrong": "B", "human_count": 1157343, "human_acc": 60.2360752171, "source": "2021年甘肃公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 2448445, "material": "", "question": "作为世界上最成功的室内栽培植物之一,绿萝几乎就是盆栽的代名词,______。绿萝这个物种早在1880年就被确认了,但是你很难想象,直到2004年,它的原产地才被确定为法属波利尼西亚社会群岛的莫雷阿岛。更为神秘的是,绿萝是一种过分矜持的植物,虽然它已经扩散到了全世界的热带地区,却只在1962年有过一次确切的开花记录,直到2016年,人们才发现了它开花的秘密。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 唯一的遗憾就是绿萝从来不开花\nB. 因为它非常适合人类的居住环境\nC. 但它却也是我们最熟悉的陌生人\nD. 是一种不可多得的室内观叶植物", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 3265906, "human_acc": 79.4517662174, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第53题", "difficulty": 5, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 18641, "material": "", "question": "定窑白瓷是继唐代的邢窑白瓷之后兴起的一大瓷窑体系。主要产地在今河北省曲阳县的涧磁村及东燕川村、西燕川村一带。定窑所烧制的白瓷,其胎釉呈现出精、白、薄的特征,有些器物的白度甚至超过了邢窑的细白瓷器。定窑白瓷花纹千姿百态,有用刀刻成的划花,用针剔成的绣花,特技制成的“竹丝刷纹”、“泪痕纹”等等。在出土的定窑瓷片中,发现刻有“官”、“尚食局”等字样,这说明定窑中一部分产品专为官府和宫廷烧造,但更多的是为民间需求而生产的。\n\n为使上述论证成立,以下假设必须为真的一项是:", "type": "单选题", "options": "A. 在当时的历史条下,只有官府和宫廷用品,才会刻有“官”、“尚食局”等字样\nB. 刻有“官”、“尚食局”等字样的定窑瓷片,只占出土瓷片的一小部分\nC. 史料中关于定窑原为民窑,自宋中后期开始烧造官府和宫廷用瓷的记载是真实的\nD. 官府和宫廷对定窑白瓷的需求量远远小于民间", "choice": "B", "keypoints": "必要条件", "most_wrong": "A", "human_count": 53046, "human_acc": 31.8025864344, "source": "2010年吉林省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0, "history": [{"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2133678, "material": "", "question": "扶贫必扶智。让贫困地区的孩子们接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n以上观点的前提是:", "type": "单选题", "options": "A. 贫困的代际传递导致教育的落后\nB. 富有阶层大都受过良好教育\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就财富", "choice": "D", "keypoints": "必要条件", "most_wrong": "A", "human_count": 2721802, "human_acc": 71.5025927676, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 4, "formulas": 0}, {"id": 2271348, "material": "", "question": "扶贫先扶智,让贫困地区的孩子接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n上述观点最恰当的前提是(  )。", "type": "单选题", "options": "A. 贫困地区与非贫困地区教育发展不均衡\nB. 贫困代际传递导致教育落后\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就未来", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 21632, "human_acc": 63.6094674556, "source": "广西2019年定向招录选调生笔试第32题", "difficulty": 5, "formulas": 0}, {"id": 47687, "material": "", "question": "西双版纳傣族的竹楼都用方形柱子将房子架空来防止潮湿及蚊虫骚扰,之所以用方形柱子而不是圆形柱子,是为了防止蛇攀爬进入竹楼。\n\n下列哪项最有可能是上述陈述的假设:", "type": "单选题", "options": "A. 傣族人喜欢把东西做成方形的\nB. 蛇喜欢攀爬圆形的柱子\nC. 西双版纳热带雨林中有很多蛇\nD. 蛇不能缠绕着方形的柱子爬行", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 372360, "human_acc": 84.9487055538, "source": "2013年浙江省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 5248164, "material": "", "question": "目前,在我国科技创新领域,关键核心技术受制于人的局面没有得到根本性改变,多个领域如高端芯片、基础元器件等存在“卡脖子”问题。关键核心技术是国之重器,是要不来、买不来、讨不来的。只有把核心技术掌握在自己手中,才能真正掌握竞争和发展的主动权,才能从根本上保障国家经济安全、国防安全和其他安全。_就要求我们加强技术研发攻关,掌握更多具有自主知识产权的核心技术,坚决打赢关键核心技术攻坚战,不断提升我国发展安全性。\n\n文中画横线处的“这”最可能指代的是:", "type": "单选题", "options": "A. 掌握竞争主动权,保障国家安全\nB. 加强关键核心技术研发攻关\nC. 实现关键核心技术自主可控\nD. 我国科技创新存在“卡脖子”问题", "choice": "C", "keypoints": "代词", "most_wrong": "A", "human_count": 3360, "human_acc": 75.3273809524, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第50题", "difficulty": 4, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 1791544, "material": "", "question": "中国钢琴音乐经过百年的探索和积淀,已经形成蔚为大观的自身传统,其中确乎涌现出无愧于时代和民族的杰作,向世界乐坛发出中国的独特声音。但略显遗憾的是,某些出色的作品还没能得到更广泛的认可和传播,不仅公开演出率过低,而且在教学运用、批评研究、宣传出版等方面尚未得到应有的关注与重视。\n\n这段文字接下来最可能讨论的话题是:", "type": "单选题", "options": "A. 中国钢琴音乐发展的百年历史\nB. 中国钢琴音乐与世界音乐的关系\nC. 中国钢琴音乐的既有成就与影响\nD. 中国钢琴音乐发展中存在的问题", "choice": "D", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 788588, "human_acc": 84.412519592, "source": "2016年江苏省公务员录用考试《行测》题(B类)第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 5445856, "material": "", "question": "植物病害分为侵染性病害和非侵染性病害。侵染性病害是由病原物引起的,可以在植物个体间互相传染的病害;非侵染性病害是由于环境不良、营养元素不足等非生物因素造成的病害,由于没有病原物的侵袭,所以不会在植物间相互传染。\n\n根据上述定义,下列属于非侵染性病害的是:\n\n①需要微酸性生长环境的杜鹃花,种植在偏碱性土壤中,叶片会黄化\n\n②植株浇水过多,盆土积水后,由于植株根系缺氧,会导致植株萎蔫\n\n③除草剂使用不当会引起西瓜苗嫩叶黄化,叶片枯焦,植株萎缩\n\n④灰葡萄孢真菌会引起番茄灰霉病,发病后造成番茄大量烂果", "type": "单选题", "options": "A. 仅①④\nB. 仅①②\nC. 仅①②③\nD. 仅②③④", "choice": "C", "keypoints": "常规问法", "most_wrong": "B", "human_count": 1008704, "human_acc": 75.4338239959, "source": "2023年国家公务员录用考试《行测》题(副省级网友回忆版)第89题", "difficulty": 5, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 5318256, "material": "", "question": "某水生生物研究所的研究团队研究了杂食性的拉萨裸裂尻鱼和肉食性的尖裸鲤对青藏高原气候变化的响应。虽然这两种鱼类在雅鲁藏布江中占据不同营养生态位,但是研究结果表明,它们的生长对气候变化的响应呈现出高度的同步性。\n\n以下不能加强上述结论的有几项?\n\n①气候因子变量可以解释尖裸鲤64.6%的生长变异,但只能解释拉萨裸裂尻鱼46.4%的生长变异\n\n②在雅鲁藏布江这条冰川补给占比大的河流中,两种鱼类的生长状况与年平均气温均呈显著的负相关关系\n\n③研究表明,处于河流中高营养级的鱼类尖裸鲤比低营养级的鱼类拉萨裸裂尻鱼对气候变化更为敏感\n\n④构建鱼类生长指数年表研究气候变化对青藏高原不同流域水生生态系统的影响,这一举措具有很高的可行性", "type": "单选题", "options": "A. 4\nB. 3\nC. 2\nD. 1", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 96099, "human_acc": 52.5676645959, "source": "2022下半年省考第十四季行测模考大赛(深圳卷)第43题", "difficulty": 6, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 27235, "material": "", "question": "每一种食物都有特殊的营养成分,食物搭配得当既美味又有利于营养吸收,促进健康,搭配不当则不仅不能吸收原有的营养成分,反而在一定程度上会损害人体的健康。下列食物搭配得当的是:", "type": "单选题", "options": "A. 虾与维生素C\nB. 鸭肉与山药\nC. 螃蟹与茄子\nD. 红糖与皮蛋", "choice": "B", "keypoints": "生物常识;生活常识", "most_wrong": "A", "human_count": 378339, "human_acc": 60.7748606409, "source": "2012年河北省公务员录用考试《行测》题第121题", "difficulty": 6, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"], ["常识判断", "科技常识", "生活常识"]]}, {"id": 21981, "material": "", "question": "根据我国有关法律的规定,下列哪一种行为是不合法的:", "type": "单选题", "options": "A. 某乡人民代表大会选举产生乡长、副乡长\nB. 国务院某部门制定规章设定行政许可\nC. 国务院发布《关于加强市县政府依法行政的决定》\nD. 全国人民代表大会常务委员会批准2008年中央预算调整方案", "choice": "B", "keypoints": "行政法;宪法", "most_wrong": "A", "human_count": 166570, "human_acc": 33.9592963919, "source": "2009年国家公务员录用考试《行测》题第20题", "difficulty": 6, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"], ["常识判断", "法律常识", "宪法"]]}, {"id": 5203825, "material": "", "question": "在越来越多的城市,轻食餐厅如雨后春笋般开了起来。轻食以蔬菜和水果为主,只有少量的肉和海鲜,按市场情况来看,只买蔬菜水果的话,轻食餐的价格应该不高,但是,很多轻食餐的售价却高达四五十元。\n\n以下哪项最不能解释上述现象?", "type": "单选题", "options": "A. 许多轻食餐厅使用的是进口肉类、海鲜和有机蔬菜水果,成本非常高\nB. 轻食餐厅的顾客主要是中高收入人群,他们愿意为健康的食物支付高价\nC. 如今的日常生活中油腻的食物太多,人们需要一些清淡食物来改善口味\nD. 价格受市场供需影响,很多城市的轻食餐厅供给量无法满足当地的需求", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 16697, "human_acc": 91.9147152183, "source": "2022下半年省考第六季行测模考大赛(北京卷)第101题", "difficulty": 3, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 2003218, "material": "", "question": "边际效应:消费者在逐次增加一个单位消费品的时候,带来的单位效用是逐渐递减的。根据上述定义,下列属于边际效应的是(    )。", "type": "单选题", "options": "A. 洪某下海创业,第一年赚了六十万,第二年赚了二十万,第三年赔了钱\nB. 程某第一次带孩子逛博物馆时孩子非常好奇,第二次去的时候孩子还是很开心,但是第五、第六次去的时候,孩子就有点厌倦的感觉了\nC. 郭某是资深集邮爱好者,前天终于集齐了他那套宝贝邮票的最后一张,那兴奋劲儿简直比抱孙子还要开心\nD. 范某请朋友吃饭,酒一瓶一瓶下去,越喝越高兴,越喝越香", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 16468, "human_acc": 93.7272285645, "source": "2011年浙江省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 5432671, "material": "", "question": "随着健身理念深入人心,越来越多的人开始有意识地锻炼身体,想让自己变得更健康。比如,有些年轻人喜欢在熬夜加班之后,去健身房进行高强度的跑步、撸铁等运动,他们认为运动可以消除熬夜加班带来的身心疲劳,做到“劳逸结合”。\n\n以下哪项如果为真,最不能削弱年轻人的做法?", "type": "单选题", "options": "A. 高强度的运动本身就会带来一定的身体负担,而熬夜后再运动,只会加重身体负担\nB. 熬夜会使心血管系统超负荷运转,高强度的运动会使心跳加速和血压升高,容易诱发心血管疾病\nC. 熬夜后很难集中注意力,会导致运动动作不规范,大大增加了运动损伤发生的可能性\nD. 研究表明,经常熬夜会导致免疫力下降、健忘、失眠等,对身心健康有百害而无一利", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 161965, "human_acc": 86.4742382614, "source": "2023上半年省考第一季行测模考大赛(北京卷)第100题", "difficulty": 4, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 4495941, "material": "", "question": "研究人员在实验室使用小鼠进行测试,他们发现小鼠长时间暴露在高盐浓度环境中,其免疫细胞产生的能量就会减少。研究人员因此认为,食用过量的盐会增加患免疫性疾病的风险。\n\n以下哪项如果为真,最能削弱研究人员的观点?", "type": "单选题", "options": "A. 免疫反应的增强可预防出现各类免疫性疾病,但这也会增加患心脏病的风险\nB. 暴露在高盐浓度的环境中8小时后,小鼠免疫细胞的能量产生功能恢复正常\nC. 免疫细胞可进行自我调控,其产生的能量减少不会影响免疫系统的正常运转\nD. 一项科学研究表明,长期食用重口味的食物并不会增加患免疫性疾病的风险", "choice": "C", "keypoints": "拆桥", "most_wrong": "B", "human_count": 246618, "human_acc": 53.9287481044, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第101题", "difficulty": 6, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}, {"id": 1324947, "material": "", "question": "有甲、乙两家公司,甲公司售后服务部门接到的产品投诉电话是乙公司的3倍。因此,甲公司产品的质量没有乙公司的好。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙公司的产品操作相对来说更为简单\nB. 甲公司接到电话大多数是咨询电话\nC. 甲公司的咨询电话机数量比乙公司多\nD. 甲公司产品的市场占有率达到$76\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 793211, "human_acc": 70.0645855895, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第58题", "difficulty": 5, "formulas": 83}, {"id": 22459, "material": "", "question": "由于在乐业天坑中最大的天坑——大石围的底部的原始森林中发现了与恐龙同时代的植物桫椤,有人据此推测,大石围应形成于恐龙时代,即6500万年前。\n\n如果下列各项为真,哪项最能反驳上述推测:", "type": "单选题", "options": "A. 桫椤至今仍然存在\nB. 在其他乐业天坑中未发现桫椤\nC. 恐龙无法进入这个极深的天坑\nD. 没有在大石围中发现恐龙化石", "choice": "A", "keypoints": "拆桥", "most_wrong": "D", "human_count": 423565, "human_acc": 53.8413230555, "source": "2012年安徽省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"]]}, {"id": 2564026, "material": "", "question": "很多人都认为甜和甘是一回事,但实际上,甜和甘还是有区别的。甜,是指像糖或蜜的味道,与苦相对,而甘的本意则是美味,从象形字的角度来看,就是口中含的美味食物。这个美味,不仅仅只是甜。如《周礼·疡医》说的“以甘养肉”,就是说用美味来滋润肉,而不是甜食来滋养肉。两者相比,甜更纯粹,在甜的范畴里说的都是甜的程度,从一点点甜到很甜,都只是浓淡的程度不同。而甘则更有层次感,不仅仅只是形容甜的程度,更多用来形容甜的变化过程和口感。而且,甜是静态的,甘则是动态的。所以,____________________。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 甘要比甜更丰富,更饱满\nB. 人生不止要甜,更要有甘\nC. 幸福似甘甜,各有各滋味\nD. 甘甜不同,不能等同视之", "choice": "A", "keypoints": "结尾", "most_wrong": "D", "human_count": 427207, "human_acc": 33.4556783948, "source": "2021年国考第七季行测模考大赛(副省级)第42题", "difficulty": 7, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 4670704, "material": "根据所给材料,回答下列问题:\n\n某小学举办了一场经典诗文诵读大赛,主题为“诵读国学经典,弘扬传统文化”,共有7个节目参赛,分别为《木兰诗》《友善之花》《诚信诗歌》《和谐校园》《种子的梦》《放飞梦想》和《生命之美》,已知这7个节目的上场顺序符合以下条件:\n\n(1)《和谐校园》和《种子的梦》不相邻;\n\n(2)《木兰诗》在《友善之花》的下一场;\n\n(3)《诚信诗歌》在《友善之花》之前且在《种子的梦》之后;\n\n(4)《生命之美》在第六个或第七个出场。", "question": "若《木兰诗》和《种子的梦》之间有四个节目,且《诚信诗歌》不在第二个出场,那么第二个出场的是哪个节目?", "type": "单选题", "options": "A. 《和谐校园》\nB. 《种子的梦》\nC. 《放飞梦想》\nD. 《友善之花》", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 25961, "human_acc": 70.5288702284, "source": "2023年国考第三季行测模考大赛(地市级)第109题", "difficulty": 6, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 2188621, "material": "", "question": "近年来,一种儿童天赋基因检测在家长圈里流行起来。提供这种检测的公司声称,他们通过唾液获取儿童的基因,就能分析出儿童具有哪些“特长”,如音乐天赋、数学天赋、交际能力、长跑能力、抗压能力等,不少家长纷纷花高价为孩子做了这种检测,他们认为通过这种检测,可以有的放矢地去开发儿童的天赋和潜能,不再需要通过尝试过多的兴趣班来挖掘儿童的特长。\n\n以下哪项如果为真,最能削弱上述家长的观点?", "type": "单选题", "options": "A. 有些教师也可以根据自身的经验有的放矢地开发儿童的天赋和潜能\nB. 相比于儿童天赋基因检测,肥胖基因、癌症基因检测具有更强的科学依据\nC. 天赋是多基因共同调控的结果,目前很难准确地界定哪些基因对哪些天赋有影响\nD. 有的商家按全基因组检测收费,但只做单一或者某几个基因的检测,家长们很难区分出来", "choice": "C", "keypoints": "削弱论据", "most_wrong": "D", "human_count": 1094389, "human_acc": 90.3533387123, "source": "2018年黑龙江省公务员考试(公检法)题(网友回忆版)第98题", "difficulty": 4, "formulas": 0, "history": [{"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 4004840, "material": "", "question": "某公司发生失窃案,公安机关经过调查锁定了犯罪嫌疑人是该公司会计张某。办案民警小王说:“一定不是他”,办案民警小李发表了反对观点:“当其他可能性被排除了,剩下的不管看起来多么不可能,但一定是事情的真相。”\n\n以下哪项如果为真,最能削弱小李的说法?", "type": "单选题", "options": "A. 追究违法行为最重要的是用证据说话\nB. 办案民警无法极尽所有可能性\nC. 办案民警小王比小李更了解案件经过\nD. 公司职员评价张某平时为人老实诚恳", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 178912, "human_acc": 76.9590636738, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第91题", "difficulty": 5, "formulas": 0}, {"id": 4658543, "material": "", "question": "德国的一项研究显示,长期居住在天寒地冻、杳无人烟的南极洲,人的大脑平均会缩小7%,学习、记忆以及与人交往能力随之减弱。因此,生活在炎热地区的人比生活在寒冷地区的人更聪明。\n\n以下哪项如果为真,最能削弱上述论证?", "type": "单选题", "options": "A. 该项研究成果尚未公开发表\nB. 气候会对人的智力产生巨大的影响\nC. 寒冷令人们为保存更多能量,倾向于减少学习及社交活动\nD. 该研究结果是可逆的,离开南极洲一段时间后人的大脑基本恢复正常水平", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 1126762, "human_acc": 52.4565968678, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第78题", "difficulty": 5, "formulas": 0}, {"id": 1679314, "material": "", "question": "一项民意调查结果显示,在1000多名参与投票的网友中,六成网友支持延长女性产假至三年,以便更好地照顾宝宝;四成网友表示反对,认为产假太长,会增加企业负担,进而增加女性就业难度,不可行。\n\n以下哪项如果为真,最能质疑上述反对者的观点?", "type": "单选题", "options": "A. 企业除了追求利润之外,也应当承担社会责任\nB. 女性产假延长的成本,由财政或社保基金来承担\nC. 这份调查样本量不够大,不足以代表真正的民意\nD. 法律应强制规定企业必须招聘一定比例的女性", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 485630, "human_acc": 84.9737454441, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第79题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 2009252, "material": "", "question": "从晋代一直到唐代,嘲笑一个人土气缺乏良好教养,不懂得上流社会的卫生习惯,往往就会说此人“不识澡豆”。澡豆是魏晋南北朝时发明的高档卫生清洁用品。此前人们盥洗的时候,去除油污的手段基本上只有米汤、面汤以及天然的皂角。澡豆则是以各种豆子研成的细末作为主料,利用豆角天然具有的去除油污的性能来清洁皮肤。\n\n根据这段文字,可以得出结论的是:", "type": "单选题", "options": "A. 澡豆是上流社会发明的\nB. 澡豆的出现是因为生活水平的提高\nC. 普通百姓很少使用澡豆\nD. 澡豆的除污能力是米汤、面汤和皂角所远远不及的", "choice": "C", "keypoints": "中心理解题", "most_wrong": "B", "human_count": 5725, "human_acc": 80.1397379913, "source": "2010年福建省公务员录用考试《行测》题(春季)第54题", "difficulty": 4, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题"]]}, {"id": 4493273, "material": "", "question": "毛囊是不断长出新毛发的微小器官,新毛发的生长基于毛囊干细胞的正常功能。通过研究年轻和老年小鼠毛囊干细胞的分裂,研究人员发现,年轻小鼠体内毛囊再生能力很强,然而老年小鼠毛囊再生能力比较弱,常有脱毛现象。因此,研究人员称,衰老导致了毛发稀疏和脱落。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 老年小鼠到了实验中的新环境,产生了焦虑和紧张的情绪\nB. 毛发脱落的同时会流失胶原蛋白从而导致动物机体衰老\nC. 食物种类发生剧烈变化的时候也会导致毛囊干细胞丧失功能\nD. 为了保证自身正常的组织功能,毛囊干细胞分裂必须保持平衡", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 207378, "human_acc": 73.0357125635, "source": "2021下半年省考第二十七季行测模考大赛(北京乡镇卷)第95题", "difficulty": 4, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 5487095, "material": "", "question": "分析机构Canalys发布的报告显示,2021年中国大陆市场共售出320万辆电动汽车,占全球电动汽车销量的一半,比2020年的电动汽车销量多出200万辆。与此同时,2021年国际原油价格“动荡”,国内油价出现15次上涨。因此有研究者认为,油价的大幅上涨让开燃油车的成本上升,才造成了短时间内电动汽车销量大幅增长的现象。\n\n以下哪项如果为真,最能削弱上述研究者的观点?", "type": "单选题", "options": "A. 2021年我国推出的加快充电桩建设等举措,缓解了“充电难”这个限制电动汽车销量的状况\nB. 我国长期为电动汽车销售提供的各种优惠政策,包括车价补贴和免交税费等,从2023年开始会逐渐减少\nC. 小部分高收入人群对油价的涨跌并不敏感,豪华电动汽车起步快和噪音小等优点才是吸引他们购买的主要因素\nD. 电动汽车销量的大幅增长可以减少对石油能源的消耗,长远来看有利于国际油价的平稳", "choice": "A", "keypoints": "他因削弱", "most_wrong": "C", "human_count": 31599, "human_acc": 58.5999556948, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第39题", "difficulty": 6, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 5539954, "material": "", "question": "在新时代,城市更新不再仅仅是物理空间层面的建设、改造,还应关注对区域历史文化的挖掘。文创纪念品设计逐渐成为城市品牌建设和城市文化传播的重要助力。以历史文化街区为背景的文创纪念品设计,立足于街区日常生活的微观细节,不仅在建筑、环境等宏观设计之中增添了诗意的空间氛围和细腻的情感叙事,更丰富了街区的文化维度,为城市更新提供了艺术与人文的视角,在原汁原味保留街区记忆的同时,以创新的方式实现城市文化的传承。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 以文创设计浸润大众生活\nB. 让历史街区拥有新的“打开方式”\nC. 从文化维度出发丰富历史街区\nD. 文创设计点亮城市文化之光", "choice": "D", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 39103, "human_acc": 74.4623174692, "source": "2023上半年省考第十三季行测模考大赛(四川卷)第21题", "difficulty": 4, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 2264185, "material": "", "question": "地球两极地区所有的冰都是由降雪形成的。特别冷的空气不能保持很多的湿气,所以不能产生大量降雪。近年来,两极地区的空气无一例外的特别冷。\n\n以上信息能够最有力地支持以下哪一个结论?", "type": "单选题", "options": "A. 在两极地区,为了使雪转化成冰,空气必须特别冷\nB. 如果现在两极地区的冰有任何增加和扩张,它的速度也是非常缓慢的\nC. 两极地区较厚的冰层与较冷的空气是相互冲突的\nD. 如果两极地区的空气不断变暖,大量的极地冰将会融化", "choice": "B", "keypoints": "加强-其他", "most_wrong": "C", "human_count": 5586, "human_acc": 42.8034371643, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第80题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 5496104, "material": "", "question": "远古巨型食草动物灭绝是否影响了植物的进化历程?为了回答这个问题,一个德国研究团队分析了远古巨型食草动物化石和棕榈树,他们发现即使在恐龙这样的巨型食草动物灭绝之后,大果实棕榈树也很普遍,这说明体型较小的食草动物也可能吃较大果实,并通过它们的排泄物传播种子。研究人员认为,这个研究结果可以反驳之前关于植物和食草动物关系的科学假设。\n\n之前的科学假设最有可能是:", "type": "单选题", "options": "A. 在巨型食草动物灭绝之后,大果实棕榈树显著减少\nB. 体型较小的食草动物只会吃小果实棕榈树的小果实\nC. 大果实棕榈树完全依赖巨型食草动物进行种子传播\nD. 小果实棕榈树在巨型食草动物灭绝之后迅速繁衍", "choice": "C", "keypoints": "削弱-其他", "most_wrong": "A", "human_count": 8289, "human_acc": 68.6331282422, "source": "2023年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第86题", "difficulty": 5, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱-其他"]]}, {"id": 2137322, "material": "", "question": "H市在公共场所中的每一块绿地都配备了垃圾桶。这些垃圾桶或者标有“可回收垃圾”或者标有“不可回收垃圾”。\n\n如果上述陈述为真,则下列________项一定为真。\n\nⅠH市配备的垃圾桶上有的标有“可回收垃圾”\n\nⅡ如果H市有一块绿地没有配备垃圾桶,那么该绿地不属于公共场所\n\nⅢ如果H市有块绿地配备了标有“不可回收垃圾”的垃圾桶,那么它属于公共场所", "type": "单选题", "options": "A. 只有Ⅰ\nB. 只有Ⅱ\nC. 只有Ⅲ\nD. Ⅰ和Ⅱ", "choice": "B", "keypoints": "常规翻译;集合推理", "most_wrong": "D", "human_count": 276280, "human_acc": 41.5618213407, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第55题", "difficulty": 6, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"], ["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 2036558, "material": "根据下列资料,回答86~90题:    \n\n      城市社区卫生服务中心和农村乡镇卫生院是我国卫生体系的重要组成部分。\n\n      2011年底,我国共有社区卫生服务中心7861家,从业人员328676人,其中,卫生技术人员276252人,占全国卫生人员总数的$4.5\\%$,占城市卫生技术人员总数的$8.8\\%$,城市每千人口卫生技术人员数为7.97人。\n\n  2011年底,乡镇卫生院37295家,从业人员1165996人,其中,卫生技术人员981227人,占全国卫生技术人员总数的$15.8\\%$,占农村卫生技术人员总数的$32.1\\%$。农村每千人口卫生技术人员数为3.18人。", "question": "2011年底,乡镇卫生院从业人员约为社区卫生服务中心从业人员的( )倍。", "type": "单选题", "options": "A. 1.5\nB. 2.5\nC. 3.5\nD. 4.5", "choice": "C", "keypoints": "现期倍数", "most_wrong": "B", "human_count": 28789, "human_acc": 93.4975164125, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第87题", "difficulty": 3, "formulas": 4, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"]]}, {"id": 13201, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "2006年4月5日人民币兑美元外汇的收盘价是_________创汇改以来的新高:", "type": "单选题", "options": "A. 8.0000\nB. 8.0073\nC. 8.0116\nD. 8.0194", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "C", "human_count": 20978, "human_acc": 71.7608923634, "source": "2008年安徽省公务员录用考试《行测》题第137题", "difficulty": 5, "formulas": 0, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 20617, "material": "根据以下资料,完成各题。\n\n        2009年,中国农业生产在国家继续加大支农政策力度的作用下,克服不利气候条件的影响,实现了稳步的增长。\n\n        据国家统计局公布的统计数据显示,2009年第一产业增加值35477亿元(包括农林牧渔服务业),比上年实际增长4.2%。第一产业增加值占国内生产总值的比重为10.6%,比上年下降0.1个百分点。在农、林、牧、渔业增加值中,农业增加值19699亿元,实际增长3.1%;林业增加值1581亿元,实际增长6.0%;畜牧业增加值达到9640亿元,实际增长5.5%;渔业增加值达到3431亿元,实际增长5.5%。第一产业内部,农业比重比上年提高1.6个百分点;林业比重为4.5%,渔业比重为7.9%,均比上年略有提高;畜牧业比重为27.2%,比上年下降2.4个百分点。", "question": "如果按2009年的增长率,第一产业在2010年可实现增加值多少亿元:", "type": "单选题", "options": "A. 36967\nB. 37605\nC. 40514\nD. 50377", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 40795, "human_acc": 77.8551293051, "source": "2010年湖北省公务员录用考试《行测》题第95题", "difficulty": 4, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 4654323, "material": "2020年,民航全行业运输航空公司完成运输飞行小时876.22万小时,比上年下降28.8%。国内航线完成运输飞行小时788.22万小时,比上年下降20.5%,其中,港澳台航线完成3.55万小时,比上年下降82.3%。\n\n        2020年,全行业运输航空公司完成运输起飞架次371.09万架次,比上年下降25.3%。国内航线完成运输起飞架次357.29万架次,比上年下降20.2%,其中,港澳台航线完成1.65万架次,比上年下降80.3%。\n\n        2020年,全行业完成通用航空生产飞行98.40万小时,比上年下降7.6%。其中,载客类作业完成8.96万小时,比上年下降10.0%;作业类作业完成15.06万小时,比上年下降6.2%;培训类作业完成36.94万小时,比上年下降4.4%;其他类作业完成4.22万小时,比上年下降20.7%;非经营性完成33.21万小时,比上年下降9.0%。\n\n        2020年,全行业累计实现营业收入6246.91亿元,比上年下降41.1%;利润总额-974.32亿元,比上年减少1519.43亿元。其中,航空公司实现营业收入3755.02亿元,比上年下降41.9%;利润总额-794.46亿元,比上年减少1051.93亿元。机场实现营业收入882.97亿元,比上年下降28.1%;利润总额-232.98亿元,比上年减少400.03亿元。保障企业实现营业收入1608.92亿元,比上年下降44.8%;利润总额53.11亿元,比上年减少67.47亿元。", "question": "2020年民航全行业运输航空公司国际航线完成运输飞行小时约比2019年:", "type": "单选题", "options": "A. 上升46%\nB. 下降19%\nC. 下降30%\nD. 下降63%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 209441, "human_acc": 67.061368118, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第86题", "difficulty": 6, "formulas": 0, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 2440288, "material": "2018年1-10月份,全国房地产开发投资99325亿元,同比增长$9.7\\%$,增速比1-9月份回落0.2个百分点。其中,住宅投资70370亿元,增长$13.7\\%$,增速回落0.3个百分点。住宅投资占房地产开发投资的比重为$70.8\\%$。\n\n        1-10月份,东部地区房地产开发投资53136亿元,同比增长$10.8\\%$,增速比1-9月份回落0.2个百分点;中部地区投资20755亿元,增长$7.1\\%$,增速回落1.3个百分点;西部地区投资21254亿元,增长$8.4\\%$,增速提高0.9个百分点;东北地区投资4180亿元,增长$15.6\\%$,增速回落0.9个百分点。\n\n        1-10月份,商品房销售面积133117万平方米,同比增长$2.2\\%$,增速比1-9月份回落0.7个百分点。其中,住宅销售面积增长$2.8\\%$,办公楼销售面积下降$10.5\\%$,商业营业用房销售面积下降$2.8\\%$。商品房销售额115913亿元,增长$12.5\\%$,增速回落0.8个百分点。其中,住宅销售额增长$15.0\\%$,办公楼销售额下降$6.5\\%$,商业营业用房销售额增长$1.7\\%$。\n\n        1-10月份,东部地区商品房销售面积53545万平方米,同比下降$4.7\\%$,降幅比1-9月份扩大0.4个百分点;销售额61680亿元,增长$5.4\\%$,增速回落0.6个百分点。中部地区商品房销售面积37733万平方米,增长$8.7\\%$,增速回落1.5个百分点;销售额25380亿元,增长$21.1\\%$,增速回落1.6个百分点。西部地区商品房销售面积35430万平方米,增长$21.1\\%$,增速回落0.3个百分点;销售额24165亿元,增长$26.0\\%$,增速回落0.6个百分点。东北地区商品房销售面积6409万平方米,下降$4.7\\%$,降幅扩大1.2个百分点;销售额4688亿元,增长$7.2\\%$,增速回落2.5个百分点。\n\n        10月末,商品房待售面积52789万平方米,比9月末减少401万平方米。其中,住宅待售面积减少321万平方米,办公楼待售面积减少19万平方米,商业营业用房待售面积减少46万平方米。", "question": "2018年1-10月,在东部、中部、西部、东北四个地区中,按商品房销售额同比增长量的排序正确的是哪一项?", "type": "单选题", "options": "A. $东部地区\\gt中部地区\\gt西部地区\\gt东北地区$\nB. $西部地区\\gt中部地区\\gt东部地区\\gt东北地区$\nC. $东北地区\\gt西部地区\\gt中部地区\\gt东部地区$\nD. $中部地区\\gt西部地区\\gt东部地区\\gt东北地区$", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 173068, "human_acc": 79.2168396237, "source": "2019年青海省法院、检察院录用考试《行测》题第119题", "difficulty": 5, "formulas": 613, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 2659376, "material": "2018年,F省规模以上工业企业实现利润总额3537.14亿元,同比增长$16.1\\%$,增幅比上年回落4.1个百分点。\n\n        2018年,在规模以上工业企业中,国有企业实现利润总额1.44亿元,增长13.4倍;集体企业实现利润总额2.56亿元,下降$7.2\\%$;股份制企业实现利润总额2263.37亿元,增长$19.2\\%$;外商及港澳台商投资企业实现利润总额1231.28亿元,增长$10.9\\%$。采矿业实现利润总额38.36亿元,增长$9.1\\%$;制造业实现利润总额3348.94亿元,增长$16.4\\%$;电力、热力、燃气及水生产和供应业实现利润总额149.85亿元,增长$11.1\\%$。\n\n        2018年,规模以上工业企业实现主营业务收入51297.99亿元,增长$13.4\\%$。\n\n        12月末,规模以上工业企业应收账款4898.58亿元,同比增长$9.4\\%$;产成品存货1742.81亿元,增长$11.8\\%$。\n\n        2018年,规模以上工业企业主营业务收入利润率为$6.90\\%$,同比提高0.17个百分点;每百元主营业务收入中的成本为86.17元,同比增加0.12元;每百元资产实现的主营业务收入149.23元,同比增加6.70元;从业人员人均主营业务收入128.10万元,同比增加16.70万元;产成品存货周转天数为12.7天,同比减少0.5天;应收账款平均回收期为31.8天,同比减少0.6天。", "question": "2017年,F省集体企业实现利润总额约是国有企业的多少倍?", "type": "单选题", "options": "A. 27.6\nB. 23.8\nC. 2.2\nD. 1.8", "choice": "A", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 178990, "human_acc": 55.3997430024, "source": "2021年国考第十九季行测模考大赛(副省级)第128题", "difficulty": 6, "formulas": 11, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 5473142, "material": "截至2017年底,Y区生产总值较1997年的27.30亿元增长20.4倍,财政收入较1997年的2.32亿元增长13.5倍。2018年上半年,全区生产总值同比增长7.5%。其中,第二产业比重略有上升,比去年同期上升0.67个百分点;第三产业比重略有下降,比去年同期降低0.62个百分点。\n\n        2018年上半年,全区社会消费品零售总额37.77亿元,同比增长8.4%,增速较一季度、去年同期分别降低0.2个、1.0个百分点。67家限额以上批零企业实现商品零售额10.99亿元,下降2.8%,比一季度下降14.1个百分点。30家限额以上住宿餐饮企业实现餐饮收入2.80亿元,下降0.5%。餐费收入前十企业中,实现七升三降。\n\n        2018年上半年,港区集装箱吞吐量581.13万标箱,同比增长10.28万标箱;万元GDP电耗159.11千瓦时,增长4.3%;万元GDP水耗5.25立方米,增长8.2%。全区新增商事主体2217户,增长7%,认缴投资总额94.5亿元。国内专利申请量101件,增长53.0%,国内发明专利授权量47件,增长46.9%。\n\n        2018年上半年,全区主要景点接待游客666.17万人次,同比增长7.4%,增速比去年同期提高14.9个百分点。其中,收费景点接待人数246.75万人次,下降8.9%。过夜游客162.33万人次,下降4.9%。", "question": "若2018年一季度Y区67家限额以上批零企业的数量较去年同期不变且实现商品零售额5.68亿元,则2017年一季度Y区平均每家限额以上批零企业实现商品零售额约多少万元?", "type": "单选题", "options": "A. 762\nB. 848\nC. 1020\nD. 1474", "choice": "A", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 161259, "human_acc": 41.3886976851, "source": "2023上半年省考终极行测模考大赛(陕西卷)第117题", "difficulty": 7, "formulas": 0, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 2571737, "material": "2017年全国海洋生产总值77611亿元,比上年增长$6.9\\%$,海洋生产总值占国内生产总值的$9.4\\%$。\n\n        2017年,J省海洋生产总值为7217亿元,比上年增长$9.2\\%$,海洋生产总值占地区生产总值的$8.4\\%$,2017年,全省沿海沿江港口完成货物吞吐量20.4亿吨,同比增长$8.3\\%$;集装箱吞吐量1698.8万标箱,同比增长$5.5\\%$。\n\n        2017年,J省造船完工量为1412.4万载重吨,同比下降$5.4\\%$;新承订单量为1393.4万载重吨,同比增长$228.5\\%$;手持订单量为3662.3万载重吨,同比下降$6.4\\%$,分别占全国份额的$33.1\\%$、$41.3\\%$和$42.0\\%$。\n\n        2017年,J省沿海三市接待国内游客10558.01万人次,同比增长$12.6\\%$;接待入境过夜旅游者27.65万人次,同比增长$8.1\\%$。\n\n        2017年,J省实现海水养殖产量93.1万吨,同比增长$3\\%$;海洋捕捞产量53万吨,同比下降$3.4\\%$;远洋渔业产量2.9万吨,同比增长$43.3\\%$。\n\n        2017年,J省海工装备产值同比增长$6.9\\%$。全省沿海地区风电装机容量达到589.7万千瓦,同比增长$16.6\\%$;海上风电装机容量达到162.5万千瓦,同比增长$46.3\\%$。2017年,全省完成海水淡化产量1.31万吨,同比增长$7.4\\%$。", "question": "2017年J省海洋经济中,以下产业增速由高到低排序正确的是:", "type": "单选题", "options": "A. 沿海沿江港口完成货物吞吐量、造船业新承订单量、海上风电装机容量\nB. 海上风电装机容量、沿海沿江港口完成货物吞吐量、沿海三市接待国内游客数量\nC. 海水养殖产量、海上风电装机容量、远洋渔业产量\nD. 海上风电装机容量、远洋渔业产量、沿海沿江港口完成货物吞吐量", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 1184671, "human_acc": 85.2496600322, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第88题", "difficulty": 4, "formulas": 21, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 6633, "material": "一、根据所给文字资料完成下列各题。\n\n        2008年初步核算,全年国内生产总值300670亿元,比上年增长$9.0\\%$。分季度看,一季度增长$10.6\\%$,二季度增长$10.1\\%$,三季度增长$9.0\\%$,四季度增长$6.8\\%$。分产业看,第一产业增加值34000亿元,增长$5.5\\%$;第二产业增加值146183亿元,增长$9.3\\%$;第三产业增加值120487亿元,增长$9.5\\%$。\n\n        全年规模以上工业增加值比上年增长$12.9\\%$,增速比上年回落5.6个百分点,东、中、西部地区分别增长$11.6\\%$、$15.8\\%$和$15.0\\%$。\n\n        全年全社会固定资产投资172291亿元,比上年增加$25.5\\%$,增速比上年加快0.7个百分点。其中,城镇固定资产投资148167亿元,增长$26.1\\%$,加快0.3个百分点;农村固定资产投资24124亿元,增长$21.5\\%$。在城镇投资中,第一产业投资2256亿元,增长$54.5\\%$;第二产业投资65036亿元,增长$28.0\\%$;第三产业投资80875亿元,增长$24.1\\%$。分地区看,东、中、西部地区城镇投资分别增长$21.3\\%$、$33.5\\%$和$26.7\\%$。全年房地产开发投资30580亿元,比上年增长$20.9\\%$。\n\n        全年社会消费品零售总额108488亿元,比上年增长$21.6\\%$,增速比上年加快4.8个百分点。分城乡看,城市消费品零售额73735亿元,增长$22.1\\%$,加快4.9个百分点;县及县以下消费品零售额34753亿元,增长$20.7\\%$,加快4.9个百分点。分行业看,批发和零售业消费品零售额91199亿元,增长$21.5\\%$;住宿和餐饮业消费品零售额15404亿元,增长$24.7\\%$。", "question": "2006年,全年社会消费品零售总额为:", "type": "单选题", "options": "A. 76384.5亿元\nB. 89217.1亿元\nC. 92883.6亿元\nD. 131872.8亿元", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 10620, "human_acc": 76.9397363465, "source": "2009年北京市公务员录用考试《行测》题(社招)第116题", "difficulty": 4, "formulas": 27, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 5742956, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市蔬菜与水果亩产量较上年:", "type": "单选题", "options": "A. 均提高\nB. 均降低\nC. 前者提高,后者降低\nD. 前者降低,后者提高", "choice": "A", "keypoints": "两期平均数比较;文字资料", "most_wrong": "C", "human_count": 124662, "human_acc": 70.9879514206, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第98题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "两期平均数比较"], ["资料分析", "文字资料"]]}, {"id": 1787276, "material": "根据海关统计,2014年,我国共出口铁路设备267.7亿元,比上年(下同)增长22.6%。统计显示,2014年我国铁路设备出口呈现5个特点:\n\n        一是出口呈现快速增长态势。2014年,我国铁路设备出口整体呈现快速增长态势,其中,有9个月同比增速保持在20%以上。12月当月出口铁路设备28.1亿元,同比增长42.3%,环比增长22%。\n\n        二是主要出口东盟、阿根廷、澳大利亚和美国。2014年,我国对东盟出口铁路设备38.4亿元,增长1.2倍;对阿根廷出口34.5亿元,增长45.9%;对澳大利亚出口33.5亿元,减少40%;对美国出口31.7亿元,增长47.2%;对上述四者出口合计占同期我国铁路设备出口总值的(下同)51.6%。此外,在其他前10大市场中,对巴西、南非和埃塞俄比亚出口倍增。\n\n        三是主要出口品种为铁道及电车道机车、车辆。2014年,我国出口铁道及电车道机车、车辆154.5亿元,增长13.3%,占57.7%,其中,出口铁道及电车道机动客、货、敞车77.7亿元,增长47%。同期,出口铁道及电车道机车、车辆零件66.8亿元,增长34.2%,占24.9%;出口钢轨25.8亿元,增长61.8%;出口轨道固定装置和机械交通管理等设备及零附件8.3亿元,增长13.3%。\n\n        四是加工贸易方式出口占比过半,一般贸易方式出口大幅增长。2014年,加工贸易方式出口铁路设备146.2亿元,增长12.9%,占54.6%;以一般贸易方式出口111.3亿元,增长35.8%,占41.6%。此外,以对外承包工程出口货物方式出口8.1亿元,增长30.4%。\n\n        五是以国有企业出口为主,外商投资企业出口大幅增长。2014年,我国国有企业出口铁路设备187.5亿元,增长18.2%,占70.1%;外商投资企业出口41亿元,增长46.6%,占15.3%;民营企业出口39.2亿元,增长23.3%,占14.6%。", "question": "2013年,我国铁路设备对东盟、阿根廷、澳大利亚和美国四者中出口值最高的是(    )。", "type": "单选题", "options": "A. 东盟\nB. 阿根廷\nC. 澳大利亚\nD. 美国", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "A", "human_count": 164283, "human_acc": 88.4759835162, "source": "2015年广州市公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 50635, "material": "2012年,某省加大扶持贫困残疾人力度,财政投入扶贫资金3816.3万元,比上年大幅增长$18\\%$,扶持贫困残疾人员56561人,脱贫35110人,享受优惠政策的贫困残疾人117727人,比上年增加$3\\%$。\n\n        截止2012年底,城镇残疾人员安排就业人数共227192人,其中,集中就业25135人,按比例就业合计91384人,个体及其他形式就业110673人。农村残疾人实际就业630900人,其中,从事农业生产活动515278人,从事其他形式就业115622人。\n\n        2012年城镇残疾职工参加社会保险133546人,城镇残疾居民参加社会保险235584人。2012年有14个区县确定为中央新农保的试点县,试点地区参保新农保22717人,参保率为$34.5\\%$;其中重度残疾人参保占$19.9\\%$。\n\n        城镇纳入各类生活保障的残疾人共计147438人。其中,已经纳入最低生活保障范围87922人,集中供养3758人,临时救济22423人,定期补助33335人。农村纳入各类生活保障的残疾人共计339075人。其中,已纳入最低生活保障的残疾人共有221132人,五保供养18146人,临时救济32719人,定期补助67078人。\n\n        截止2012年底,省、市、县、乡级残联实有人员5591人,比上年增加$11.8\\%$,全省21个地级市中的3个地级市与121个县(市、区)中的61个县(市、区)配备了残疾人领导干部,全省1589个乡镇街道中已建残联1547个;全省19435个村(社区)中已建残协10537个。", "question": "该省每年投入的残疾人财政扶贫资金如果可以均分到每位享受优惠政策的贫困残疾人身上,则2012年享受优惠政策的贫困残疾人的人均扶贫金额要比2011年增长约(    )元。", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "B", "keypoints": "平均数的增长量;文字资料", "most_wrong": "A", "human_count": 312305, "human_acc": 45.8855926098, "source": "2013年广东省公务员录用考试《行测》题(三)第97题", "difficulty": 5, "formulas": 5, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 4490859, "material": "2020年,天津市全年批发和零售业增加值1246.22亿元,比上年下降2.0%;交通运输、仓储和邮政业增加值815.55亿元,下降1.0%;住宿和餐饮业增加值132.04亿元,下降24.2%;金融业增加值2056.73亿元,增长5.1%,占全市生产总值的比重为14.6%;房地产业增加值1302.51亿元,下降0.3%。\n\n        2020年,天津市全年全市货运量53566.39万吨。其中,铁路11123.81万吨,水运9133.99万吨,公路32261.07万吨。货物周转量2370.73亿吨公里。其中,铁路284.52亿吨公里,水运1442.01亿吨公里,公路640.12亿吨公里。全年客运量1.16亿人次,旅客周转量278.82亿人公里。港口货物吞吐量5.03亿吨,增长2.2%;集装箱吞吐量1835.31万标准箱,比上年多105万标准箱。机场旅客吞吐量1328.55万人次,货邮吞吐量18.50万吨。截至年末,全市民用汽车保有量329.03万辆,比上年增加22.06万辆,其中私人汽车279.20万辆,比上年增加20.39万辆。民用轿车205.94万辆,比上年增加10.84万辆,其中私人轿车188.20万辆,比上年增加11.31万辆。\n\n        2020年,天津市全年邮电业务总量1779.54亿元,增长32.4%。其中,电信业务总量1584.94亿元,增长32.6%;邮政行业业务总量194.60亿元,增长30.8%。全年快递业务量9.28亿件,增长33.0%。年末固定电话用户325.81万户,移动电话用户1711.01万户,固定互联网宽带接入用户534.60万户,移动宽带、固定宽带下载速率均跃居全国第3位。", "question": "若此后每年均保持2020年的同比增速不变,到哪一年天津市集装箱吞吐量将首次突破2300万标准箱?", "type": "单选题", "options": "A. 2023\nB. 2024\nC. 2025\nD. 2026", "choice": "B", "keypoints": "现期追赶;文字资料", "most_wrong": "C", "human_count": 206755, "human_acc": 50.7325094919, "source": "2021下半年省考第二十七季行测模考大赛(深圳卷)第88题", "difficulty": 6, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 3689261, "material": "“十三五”期间,N市服务业增加值由2015年的2836.3亿元增加至2020年的4811.8亿元,年均增长$8.2\\%$,占GDP的比重由2015年的$43.6\\%$提升至2020年的$47.9\\%$。“十三五”期间全市新开工的亿元以上服务业重大项目971个,比“十二五”增加171个。\n\n2020年,全市金融业实现增加值681.2亿元,是2015年1.8倍。“十三五”期间,金融机构存贷款余额均突破万亿元。2020年末,全市本外币存款12154.9亿元,是2015年末的1.2倍;本外币贷款余额15535.3亿元,是2015年末的2.6倍。\n\n2020年,全市房地产业实现增加值850.1亿元,是2015年的2.1倍。“十三五”期间,全市商品房销售面积年均增长$16.4\\%$,2020年商品房月均销售面积达166.6万平方米,是2015年月均销售面积的2.1倍。\n\n2020年,营利性服务业实现增加值884.7亿元,是2015年的1.8倍。其中,信息传输、软件和信息技术服务业占服务业增加值的比重为$3.7\\%$,较2015年提升1.2个百分点;居民服务、修理和其他服务业占比$3.8\\%$,较2015年提升3.1个百分点。", "question": "“十三五”期间,N市房地产业实现增加值年均增长约:", "type": "单选题", "options": "A. 89.1亿元\nB. 81.0亿元\nC. 72.3亿元\nD. 65.5亿元", "choice": "A", "keypoints": "年均增长量;文字资料", "most_wrong": "B", "human_count": 112331, "human_acc": 64.7746392358, "source": "2021下半年省考第九季行测模考大赛(广东乡镇卷)第94题", "difficulty": 6, "formulas": 6, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长量", "年均增长量"], ["资料分析", "文字资料"]]}, {"id": 820419, "material": "据中国汽车工业协会统计分析,2013年上半年,中国品牌乘用车共销售356.67万辆,同比增长$13.19\\%$,结束上年下降趋势,占乘用车销售总量的$41.16\\%$,占有率较上年同期下降0.23个百分点。上半年,德系、日系、美系、韩系和法系乘用车分别销售167.66万辆、128.10万辆、105.23万辆、79.13万辆和27.69万辆。\n\n        2013年上半年,中国品牌轿车共销售161.53万辆,同比增长$13.49\\%$,上年同期为负增长,占轿车销售总量的$27.65\\%$,占有率比上年同期增长0.44个百分点。上半年,德系、日系、美系、韩系和法系轿车分别销售146.31万辆、97.95万辆、91.55万辆、59.53万辆和25.23万辆。\n\n        上半年,基本型乘用车(轿车)产、销量分别为583.39万辆和584.13万辆,同比增长$11.81\\%$和$11.69\\%$,增幅高于上年同期5.79个百分点和6.15个百分点;运动型多用途乘用车(SUV)产、销量分别为134.52万辆和132.98万辆,同比增长$41.64\\%$和$41.56\\%$,增幅高于上年同期7.08个百分点和9.54个百分点;多功能乘用车(MPV)产、销量分别为57.29万辆和56.75万辆,同比均增长了$130\\%$;交叉型乘用车产、销量分别为91.25万辆和92.65万辆,同比下降$23.01\\%$和$22.49\\%$。\n\n        在五大类商用车品种中,2013年上半年,客车产、销量分别为22.73万辆和22.72万辆,同比增长$14.82\\%$和$14.88\\%$,增幅高于上年同期5.40个百分点和11.32个百分点;货车产、销量分别为143.75万辆和146.06万辆,同比增长$6.96\\%$和$5.48\\%$;半挂牵引车产、销量分别为12.32万辆和12.22万辆,同比增长$17.75\\%$和$13.35\\%$;客车非完整车辆产、销量分别为4万辆和4.03万辆,同比增长$5.03\\%$和$1.77\\%$;货车非完整车辆产、销量分别为25.92万辆和26.68万辆,同比增长$5.70\\%$和$4.76\\%$。", "question": "与2011年上半年相比,2013年上半年基本型乘用车产量约增加了多少万辆:", "type": "单选题", "options": "A. 30\nB. 60\nC. 90\nD. 120", "choice": "C", "keypoints": "间隔增长量;文字资料", "most_wrong": "B", "human_count": 146391, "human_acc": 60.5781776202, "source": "2014年黑龙江省政法干警考试《行政职业能力测验》试卷(专科)第118题", "difficulty": 5, "formulas": 21, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长量", "间隔增长量"], ["资料分析", "文字资料"]]}, {"id": 4251, "material": "我国奶业发展已经得到政府的高度重视,国务院办公厅《“十五”营养发展纲要》提出了中国奶品消费的目标:到2005年,人均年消费量达到10公斤;到2010年,人均年消费量达到16公斤;到2015年,人均年消费量达到23公斤。\n\n        资料显示,1975年到1990年,是日本乳品消费高速增长的15年,人均消费量从9公斤增长到54公斤,年增长率近13%。在韩国,乳品消费从1975年至1990年也高速增长了15年,人均年消费量从4.6公斤增长到43.8公斤,年均增幅达16%。由此推断,未来10年,我国乳品行业将保持每年12%-14%的稳定增长。\n\n        巨大的潜在市场吸引着国内外的资本纷纷进入。巨大的资本介入在加速国内乳业发展的同时,也将促进国内乳业市场的全面洗牌。\n\n        按照中国奶业协会的估计,我国现有乳品企业1500家,但日加工能力超过百吨的企业只占5%,50吨-100吨的占40%,其余绝大部分日加工能力在20吨以下。大部分企业处于低产量、低质量、低效益的“三低”状态。根据中国加入WTO的有关协议,乳制品的进口关税减让幅度从目前的平均50%左右下降到12%,将对我国乳品行业造成一定的冲击。", "question": "按照《“十五”营养发展纲要》提出的中国奶品消费的目标,2005-2010年我国奶品人均消费量的年增长速度将为(假设每年以相同速度增长):", "type": "单选题", "options": "A. $\\sqrt[5]{1.6}$\nB. $\\sqrt[5]{1.6}-1$\nC. $\\sqrt[6]{1.6}$\nD. $\\sqrt[4]{1.6}-1$", "choice": "B", "keypoints": "年均增长率;文字资料", "most_wrong": "A", "human_count": 9892, "human_acc": 75.4650222402, "source": "2008年辽宁省公务员录用考试《行测》题第106题", "difficulty": 5, "formulas": 417, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长率", "年均增长率"], ["资料分析", "文字资料"]]}, {"id": 5317191, "material": "", "question": "$2\\sqrt{3}$,$\\sqrt{54}$,12,$5\\sqrt{12}$,$\\sqrt{540}$,(    )", "type": "单选题", "options": "A. $2\\sqrt{21}$\nB. $18\\sqrt{7}$\nC. $\\sqrt{882}$\nD. $\\sqrt{916}$", "choice": "C", "keypoints": "", "most_wrong": "B", "human_count": 18146, "human_acc": 78.061280723, "source": "2022下半年省考第十四季行测模考大赛(浙江C卷)第52题", "difficulty": 4, "formulas": 338, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 5763261, "material": "", "question": "下列古诗不是描写中国古代四大美女的是(    )。", "type": "单选题", "options": "A. 吴王亡国为倾城,越女如花受重名\nB. 名花倾国两相欢,常得君王带笑看\nC. 汉月还从东海出,明妃西嫁无来日\nD. 掌中舞罢箫声绝,三十六宫秋夜长", "choice": "D", "keypoints": "文化常识", "most_wrong": "A", "human_count": 42224, "human_acc": 43.8613111027, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第21题", "difficulty": 6, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 11513, "material": "", "question": "下列四句诗句中描写重阳节的是:", "type": "单选题", "options": "A. 月上柳梢头,人约黄昏后\nB. 清明时节雨纷纷,路上行人欲断魂\nC. 遥知兄弟登高处,遍插茱萸少一人\nD. 海上生明月,天涯共此时", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 53617, "human_acc": 94.9959900778, "source": "2009年山西省公务员录用考试《行测》题第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 1451, "material": "", "question": "2007年10月24日,(    )卫星在西昌卫星发射中心发射成功并进入预定地球轨道。11月7日该卫星顺利进入工作轨道,将进行绕月探测活动。", "type": "单选题", "options": "A. 神舟七号\nB. 月亮女神\nC. 嫦娥一号\nD. 探月者一号", "choice": "C", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 85643, "human_acc": 65.7893815023, "source": "2008年北京市公务员录用考试《行测》题(应届)第71题", "difficulty": 5, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 4104057, "material": "", "question": "关于洋流,下列表述错误的是(    )。", "type": "单选题", "options": "A. 墨西哥湾暖流是世界上最大的暖流\nB. 直布罗陀海峡的洋流是典型密度流\nC. 南、北赤道暖流的形成与信风有关\nD. 补偿流可分为上升流和下降流两类", "choice": "D", "keypoints": "自然常识", "most_wrong": "B", "human_count": 39849, "human_acc": 13.729328214, "source": "2021下半年省考第二十季行测模考大赛(四川卷)第9题", "difficulty": 7, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 5055014, "material": "", "question": "下列化学常识,说法有误的是(    )。", "type": "单选题", "options": "A. 氮气很不活泼,可作填充保护气\nB. 臭氧层可以吸收短波紫外线,保护地球\nC. 高浓度二氧化碳具有麻醉作用\nD. 一氧化碳是光化学烟雾的代表性污染物", "choice": "D", "keypoints": "化学常识", "most_wrong": "C", "human_count": 268329, "human_acc": 39.1333027738, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第51题", "difficulty": 6, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 4181864, "material": "", "question": "下列关于长江沿江地带的说法正确的是(    )。", "type": "单选题", "options": "A. 长江沿江地带形成了分别以重庆、武汉、上海为中心的三大城市密集区\nB. 由苏锡常等城市形成的工业带是我国最大的综合性工业基地\nC. 长江上游地区是长江流域洪涝灾害最集中、最严重、最频繁的地区\nD. 长江沿江地带属于亚热带季风气候,夏季高温多雨,冬季温和少雨", "choice": "D", "keypoints": "国情社情", "most_wrong": "A", "human_count": 17418, "human_acc": 35.5149844988, "source": "2021下半年省考第二十一季行测模考大赛(四川卷)第10题", "difficulty": 7, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 2842423, "material": "", "question": "张某被判处管制六个月,并剥夺政治权利,下列说法正确的是(    )。", "type": "单选题", "options": "A. 张某在服刑期间有参加选举人大代表的权利\nB. 剥夺政治权利从张某管制执行完毕后开始执行\nC. 张某进行日常生产活动时可以酌量发给其报酬\nD. 由社区矫正机关来对张某实行管制", "choice": "D", "keypoints": "刑法", "most_wrong": "C", "human_count": 157404, "human_acc": 32.6510126807, "source": "2022年国考第四季行测模考大赛(地市级)第10题", "difficulty": 7, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 2547743, "material": "", "question": "有经验的人在用暖水瓶接热水时,不用看,听声音就能判断暖瓶接的水量的多少,这是因为随着水位的升高,空气柱长度减小,(    )。", "type": "单选题", "options": "A. 振动频率增大,音调升高\nB. 振动频率减小,音调升高\nC. 振动频率增大,响度升高\nD. 振动频率减小,响度降低", "choice": "A", "keypoints": "物理常识", "most_wrong": "D", "human_count": 387813, "human_acc": 44.1171389304, "source": "2021年国考第五季行测模考大赛(副省级)第12题", "difficulty": 6, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 4181486, "material": "", "question": "关于《中华人民共和国民法典》,下列说法错误的是(    )。", "type": "单选题", "options": "A. 被称为“社会生活的百科全书”\nB. 重在限制公权力\nC. 几乎所有民事活动都能在民法典中找到依据\nD. 自2021年1月1日起施行", "choice": "B", "keypoints": "民法", "most_wrong": "C", "human_count": 78338, "human_acc": 72.3659016059, "source": "2021下半年省考第二十一季行测模考大赛(广东乡镇卷)第22题", "difficulty": 4, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 2530702, "material": "", "question": "随着2016年、2017年两年“去产能”工作的超额完成,煤炭、钢铁价格上涨,企业效益提升,“去产能”让众多传统能源企业度过了前些年的困难时期。下列有关产能过剩的说法,错误的是(    )。", "type": "单选题", "options": "A. 产能过剩是指生产能力总和大于消费能力总和\nB. 化解产能过剩最有效的方法是减少产能过剩商品的供给\nC. 除了煤炭和钢铁,汽车制造、水泥也是我国产能过剩的行业\nD. 政府实施财政赤字,扩大产能过剩商品的需求能有效解决产能过剩问题", "choice": "B", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 343636, "human_acc": 37.7972622193, "source": "2021年国考第四季行测模考大赛(副省级)第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 1702364, "material": "", "question": "绘画:壁画:山水画", "type": "单选题", "options": "A. 游泳:蝶泳:蛙泳\nB. 银河系:太阳系:水星\nC. 美术:雕塑:彩雕\nD. 税:所得税:地方税", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 504329, "human_acc": 41.3587162348, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第74题", "difficulty": 5, "formulas": 0, "history": [{"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}, {"id": 5585651, "material": "", "question": "主食:甜食", "type": "单选题", "options": "A. 剧团:戏班\nB. 商品:零食\nC. 戏剧:小说\nD. 动物:芍药", "choice": "B", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 43627, "human_acc": 49.1484631077, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 2034140, "material": "", "question": "律师:教授", "type": "单选题", "options": "A. 专家:吉林人\nB. 钢筋:房屋\nC. 歌手:乐队\nD. 人:社会", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 569161, "human_acc": 87.4676936754, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0}, {"id": 2021824, "material": "", "question": "流行:高尚", "type": "单选题", "options": "A. 专家:学者\nB. 勇敢:品德\nC. 树根:树叶\nD. 闰月:春季", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 532077, "human_acc": 52.6615508658, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第65题", "difficulty": 5, "formulas": 0}, {"id": 5289672, "material": "", "question": "陶器:酒器", "type": "单选题", "options": "A. 童鞋:凉鞋\nB. 主食:副食\nC. 卧椅:躺椅\nD. 官窑:哥窑", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 215948, "human_acc": 90.1254005594, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第91题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"]]}, {"id": 5079320, "material": "", "question": "《中华人民共和国职业教育法》自2022年5月1日起施行。下列表述不正确的是(    )。", "type": "单选题", "options": "A. 职业学校不得以介绍工作、安排实习实训等名义违法收取费用\nB. 高等职业学校可以采取单独考试办法,专门招收职业学校毕业生\nC. 职业学校以实习实训为目的举办企业取得的收入不得用于支付教师的劳动报酬\nD. 企业与职业学校联合招收学生,以工学结合的方式进行学徒培养的,应当签订学徒培养协议", "choice": "C", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 79016, "human_acc": 43.3254024501, "source": "2022下半年省考第一季行测模考大赛(广东乡镇卷)第23题", "difficulty": 6, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 5218883, "material": "", "question": "2022年5月,中共中央办公厅、国务院办公厅印发了《乡村建设行动实施方案》,关于乡村建设的总体要求,下列说法错误的是(    )。", "type": "单选题", "options": "A. 坚持先建机制、后建工程,统筹推进农村公共基础设施建设与管护\nB. 以普惠性、基础性、兜底性民生建设为重点\nC. 打造各具特色的现代版“清明上河图”\nD. 到2025年,乡村建设取得实质性进展", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 17655, "human_acc": 36.9243840272, "source": "2022下半年省考第七季行测模考大赛(浙江C卷)第8题", "difficulty": 7, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 5690677, "material": "", "question": "《习近平著作选读》是全党全国各族人民深入学习贯彻习近平新时代中国特色社会主义思想的权威教材,其第一卷、第二卷已经出版发行。根据中共中央发出的关于学习《习近平著作选读》第一卷、第二卷的通知,下列说法错误的是(    )。", "type": "单选题", "options": "A. 习近平新时代中国特色社会主义思想为丰富发展马克思主义作出了创新性贡献,为传承发展中华优秀传统文化作出了历史性贡献,为推动全球和谐稳定作出了世界性贡献\nB. 习近平新时代中国特色社会主义思想是一个逻辑严密、内涵丰富、系统全面、博大精深的科学体系\nC. 学习《习近平著作选读》,要着力在武装头脑、指导实践、推动工作上下功夫\nD. 学习《习近平著作选读》,要做到学思用贯通、知信行统一。要强化问题导向、实践导向、需求导向", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 94683, "human_acc": 20.9984896972, "source": "2023下半年省考第十五季行测模考大赛(广东县级卷)第1题", "difficulty": 7, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 12539, "material": "", "question": "社会主义市场经济倡导正当竞争,反对不正当竞争。下列企业行为中,属于不正当竞争的是:", "type": "多选题", "options": "A. 甲企业为了扩大销售,加大广告宣传力度,影响消费者购买行为\nB. 乙企业为了扩大市场份额,进行抽奖式有奖销售,最高奖励现金10万元\nC. 丙企业通过捐建希望小学,提高了知名度,扩大了市场份额\nD. 丁企业为了稳定市场份额,联合行业内的其他企业达成价格协议", "choice": "BD", "keypoints": "经济法", "most_wrong": "A", "human_count": 24190, "human_acc": 57.1558495246, "source": "2011年北京市公务员录用考试《行测》题第28题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 2261554, "material": "", "question": "某金店用一杆不标准的天平(两边臂不等长)称黄金,顾客购买10g黄金,售货员先将5g砝码放在左盘,将黄金放于右盘使之平衡后给顾客,然后又将5g砝码放于右盘,将另一黄金放于左盘使之平衡后又给顾客,则顾客实际所得黄金重量:", "type": "单选题", "options": "A. 大于10g\nB. 大于等于10g\nC. 小于10g\nD. 小于等于10g", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 12632, "human_acc": 22.5617479417, "source": "2017年重庆市选调优秀大学生到基层工作考试《行测》题第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 2137256, "material": "根据《中华人民共和国人民调解法》,人民调解是指人民调解委员会通过说服、疏导等方法,促使当事人在平等协商基础上自愿达成调解协议,解决民间纠纷的活动。开展行业性、专业性人民调解工作,是新时期人民调解工作的创新发展,是人民调解制度的丰富和完善。\n\n        自2011年国务院颁布《国有土地上房屋征收与补偿条例》,旧区改造工作开始适用房屋征收新政。新政以政府实施、公众参与、补偿透明、程序规范等特点加之有效的技术手段,有效遏制了拆迁旧政中存在的前紧后松、暗箱操作、暴力强拆等问题,公正、公开、公平的制度得到了较为广泛的社会认可,旧区改造速度得以加快,居民满意度得以提升。为积极应对近年来房屋征收矛盾多发、频发的现状,为推动人民调解工作优势向矛盾纠纷积聚领域进一步延伸,A市各区逐步在房屋征收实践中引入人民调解工作,并不断完善。\n\n        在A市的房屋征收实践中,近年来产生的房屋征收民间纠纷主要有三类:一是家庭内部矛盾,包括房产确权、补偿款分割、补偿方式不一致、财产分割后的履行保障纠纷,以及连带产生的老年人赡养、未成年人抚养、无民事行为能力人抚养等纠纷;二是被征收房屋房东与租客之间的租赁纠纷,主要涉及用以经营的店铺或门面房;三是对一些建筑物、附属物、混合物的认定引起的邻里纠纷。其中第一、第二类纠纷属于人民调解的可调范围,第三种需由专业部门依据事实认定,实践中第一类纠纷占绝大多数。\n\n        例如,B区在旧区改造任务最繁重的S街道和J街道,采取由街道办事处牵头,在房屋征收基地设立由分管综合司法工作的街道党工委副书记任组长的人民调解组,街道司法所全体成员、街道人民调解委员会的人民调解员、居委调解干部、律师、民警、退休法官等任组员,在征收基地区域设立专门的接待场所,回答居民的法律咨询、受理调解申请并开展具体的调解工作。户籍在J街道72街坊某号的王某,因诈骗罪被判刑13年,已服刑8年。由于该户目前由其前妻姚某承租,王某非常担心其安置权益被忽略,出狱后无家可归,故向司法所帮教人员提出希望通过征收补偿得到一套住房。司法所立即联系征收事务所了解情况。之后,司法所会同调解工作室,牵头征收事务所和居委会,主动与姚某接触,开展矛盾化解工作。通过数次与姚某的沟通,及进监做王某的工作,双方终于就调解方案达成一致。姚某将价值59万的安置房登记在王某名下,并表示给予王某适当的装修费。王某的旧改权益,在多方努力下得到了维护,他出狱后的生活也获得了保障。", "question": "下列有关人民调解的说法,正确的是________。", "type": "不定项", "options": "A. 人民调解属于司法调解和行政调解的范畴\nB. 人民调解尊重当事人的权利\nC. 人民调解采用一定的强制手段\nD. 人民调解的内容包含了家庭内部矛盾和租赁纠纷", "choice": "BD", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 37778, "human_acc": 47.0723701625, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第125题", "difficulty": 5, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 2443068, "material": "", "question": "中秋假期,小王请同在一个城市的9位大学同学聚餐。10人围坐一桌,敬酒前小王提出一个建议:每个人要同不相邻的同学喝一杯。如果小王的提议被通过,那么一共要准备________杯酒。", "type": "单选题", "options": "A. 70\nB. 90\nC. 140\nD. 210", "choice": "A", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 233327, "human_acc": 43.0961697532, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第63题", "difficulty": 5, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 2443955, "material": "", "question": "假设赵某每日工资300元,2017年10月1日至7日连续上班且未补休,10月4日为中秋节。那么,这七天赵某可得的工资收入为:", "type": "单选题", "options": "A. 6300元\nB. 5100元\nC. 4500元\nD. 4800元", "choice": "A", "keypoints": "劳动法", "most_wrong": "C", "human_count": 84145, "human_acc": 45.3693029889, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第41题", "difficulty": 5, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 5487519, "material": "", "question": "某基金会募集到16套教学投影设备,计划捐赠给4所希望小学。若想要每所小学均能分到设备且最多有2所小学分得的数量相同,则共有多少种不同的捐赠方式?", "type": "单选题", "options": "A. 455\nB. 454\nC. 439\nD. 438", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 5894, "human_acc": 13.9803189684, "source": "2023上半年省考第八季行测模考大赛(浙江B卷)第47题", "difficulty": 7, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 5292985, "material": "", "question": "活泼的孩子喜欢嬉戏打闹,活泼的孩子很聪明,所以喜欢嬉戏打闹的孩子很聪明。\n\n以下选项与上述推理在结构上最为相似的一项是:", "type": "单选题", "options": "A. 爱运动的人身体素质很好,身体素质很好的人学习很好,所以爱运动的人身体素质不错\nB. 党员很无私,党员很有能力,所以学习好的是党员\nC. 砗磲是漂亮的海洋生物,砗磲是国家保护动物,所以漂亮的海洋生物都是国家保护动物\nD. 下雨的时候会打雷,打雷的时候会有闪电,所以有闪电的时候会下雨", "choice": "C", "keypoints": "推理形式", "most_wrong": "D", "human_count": 11983, "human_acc": 96.4866894768, "source": "2022下半年省考第十一季行测模考大赛(广东县级卷)第74题", "difficulty": 3, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 13983, "material": "", "question": "一列长90米的火车以每秒30米的速度匀速通过一座长1200米的桥,所需时间多少秒:", "type": "单选题", "options": "A. 37\nB. 40\nC. 43\nD. 46", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 18969, "human_acc": 83.4255891191, "source": "2009年湖南省公务员录用考试《行测》题第111题", "difficulty": 3, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 8453, "material": "", "question": "公共关系危机管理是指社会组织有组织、有计划和有措施地预防公共关系危机和在公共关系危机来临时有效化解危机的活动。公共关系危机管理有四个基本要素:预防第一、公众第一、公开第一、实践第一。\n\n根据上述定义,下列各项中属于成功的公共关系危机管理的是:", "type": "单选题", "options": "A. 11月下旬,某国外知名运动品牌的广告在全国各地电视台播出后,涉嫌侮辱中国人的形象,引起全国观众的强烈反对。11月30日,该公司发表声明,称该广告无意伤害中国消费者的感情。该广告被禁播后,该公司正式向中国观众道歉,但全球其他地方的播出计划照旧进行\nB. 国庆节期间,某商场举行“满200,送300”促销活动,但当消费者以返券消费时发现,91个品牌商品专柜拒收返券,而可凭返券购买的商品中疑有大量库存商品,消费者不满致使事态扩大,引来众多媒体采访,该商场为保持企业形象,拒绝记者进入商场采访,尽量缩小该事件的曝光率\nC. 6月,在一次会议上,一台笔记本电脑突然着火。后经调查发现,某公司生产的笔记本电脑电池是引起多宗火灾发生的原因。10月24日,该公司执行副总裁在新闻发布会上向消费者道歉,并开始召回所生产的电池,至10月止,该公司为大约1000万块笔记本电脑电池支付了4.11亿美元\nD. 11月30日,某数码控股公司董事局主席及执行董事因涉嫌盗取公司4800万元资金而被起诉,该公司股票也被停牌。第二天,该公司董事局七名董事召开媒体见面会通报事件情况,表明公司运转正常;同日,四家家电连锁企业以及所有供应商及国内七家银行的分支机构发出声明表示支持该公司。不久之后,该公司在证券交易所获得发布公告的机会,这被业内人士看作是能够复牌的关键一步", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 15642, "human_acc": 64.8062907557, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第50题", "difficulty": 5, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 4651916, "material": "", "question": "车辆行驶过程中会造成轮胎磨损,某款汽车后轮行驶满4万公里需要更换;前轮磨损较大,行驶满3万公里就需要更换。若前后轮使用的轮胎相同,那么大约行驶(    )万公里后将前后轮胎交换,可以实现同一时间更换前后轮胎。", "type": "单选题", "options": "A. 1.5\nB. 1.7\nC. 2\nD. 2.2", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 13496, "human_acc": 48.5328986366, "source": "2022年上海市公务员录用考试《行测》题(B类)(网友回忆版)第39题", "difficulty": 4, "formulas": 0, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 22463, "material": "", "question": "一条环形赛道前半段为上坡,后段为下坡,上坡和下坡的长度相等,两辆车同时从赛道起点出发同向行驶,其中A车上、下坡时速相等,而B车上坡时速比A车慢20%,下坡时速比A车快20%,问A车跑到第几圈时两车再次齐头并进:", "type": "单选题", "options": "A. 23\nB. 22\nC. 24\nD. 25", "choice": "D", "keypoints": "平均速度", "most_wrong": "C", "human_count": 318784, "human_acc": 23.8217727364, "source": "2011年424联考《行测》题(贵州/四川/福建/黑龙江/湖北/山西/重庆/辽宁/海南/江西/天津/陕西/云南/广西/山东/湖南)第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 2445471, "material": "", "question": "政策性收益是指由于某些政策、法规的变动而导致的个体收益,这种收益不会导致整个社会财富的增长,只会导致整个社会财富的重新分配。\n\n根据上述定义,以下涉及政策性收益的是:", "type": "单选题", "options": "A. 某市优化了营商环境,使得该市外贸企业进出口额与利润均大幅增加\nB. 小王挺身而出,制服歹徒,获得市政府见义勇为奖金5万元\nC. 出于增强执法力量的考虑,某公安局获得了上级1000万元的财政拨款\nD. 由于个人所得税新政策的实施,小李现在每月可以少缴纳个税216元", "choice": "D", "keypoints": "原因结果", "most_wrong": "A", "human_count": 765405, "human_acc": 86.2177539995, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第72题", "difficulty": 5, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 16719, "material": "", "question": "某数学竞赛共160人进入决赛,决赛共4题,做对第一题的有136人,做对第二题的有125人,做对第三题的有118人,做对第四题的有104人。那么,在这次决赛中至少有几人得满分:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "B", "human_count": 168644, "human_acc": 61.1554517208, "source": "2010年安徽省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 15287, "material": "", "question": "公文是指国家机构及其他社会组织在公务活动中为行使职权、实施管理而制作的具有法定效用和规范体式的文件。\n\n下列不属于公文的是:", "type": "单选题", "options": "A. ××市人民政府关于提请审议《城市综合执法办法》的议案\nB. ××市召开消防安全检查会议的通知\nC. 国家文物局关于审批第三批国家历史文化名城和加强保护管理的请示\nD. 官某与银行签订的购房贷款按揭合同", "choice": "D", "keypoints": "主客体", "most_wrong": "B", "human_count": 18221, "human_acc": 88.3595850941, "source": "2009年四川省公务员录用考试《行测》题(上半年)第51题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5543, "material": "", "question": "行为罚亦称能力罚,是行政主体对违反行政法律规范的行政相对方所采取的限制或剥夺其特定行为能力或资格的一种处罚措施。\n\n下列属于行为罚的是:", "type": "单选题", "options": "A. 行政拘留\nB. 没收财物\nC. 吊销营业执照\nD. 劳动教养", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 14256, "human_acc": 70.8543771044, "source": "2009年北京市公务员录用考试《行测》题(应届)第54题", "difficulty": 5, "formulas": 0}, {"id": 1163, "material": "", "question": "产权是指主体对物的排他性权利,它的本质是人们在社会中发生的对劳动成果的权利。\n\n根据以上定义,下列不属于产权的是:", "type": "单选题", "options": "A. 所有权、占有权\nB. 收益权、转让权\nC. 劳动选择权、劳动交换转让权\nD. 支配权、使用权", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 32630, "human_acc": 82.7152926755, "source": "2008年山东省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2452831, "material": "", "question": "应激性是指生物对外来刺激(如温度、声音)在短时间内所做出的反应。\n\n根据上述定义,以下属于应激性的是:", "type": "单选题", "options": "A. 篮球触地后高高弹起\nB. 含羞草被碰触后叶子收缩\nC. 鲜牛奶常温放置24小时后发酸\nD. 纸张遇到明火燃烧", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 107843, "human_acc": 94.2314290218, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 2573756, "material": "", "question": "某幼儿园老师让5名小朋友分别将自己的玩具放入相同的纸箱中,打乱位置后,老师再将纸箱随机分发给他们,那么,有超过3名小朋友分到的箱子中不是自己的玩具的情况有多少种?", "type": "单选题", "options": "A. 53\nB. 89\nC. 91\nD. 109", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 92498, "human_acc": 34.6677766006, "source": "2021年国考第八季行测模考大赛(副省级)第75题", "difficulty": 7, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 5665267, "material": "", "question": "我们要走向世界级,现在我们缺思想家和战略家,只停留在将军层面。如果我们都只会英勇善战,思想错了,方向错了,我们越厉害就越有问题。\n\n这段话对“将军”的理解是________。", "type": "单选题", "options": "A. 将军必须有战略眼光\nB. 将军不可能百战百胜\nC. 将军只会英勇作战\nD. 将军越厉害祸害越大", "choice": "C", "keypoints": "实词", "most_wrong": "A", "human_count": 247, "human_acc": 70.8502024291, "source": "2019年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第16题", "difficulty": 3, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2261741, "material": "", "question": "第48题短文第一第二自然段中,包含有复合型的逻辑推理,找出正确的选项:\n\n①直言三段论推理    ②充分条件假言推理\n\n③必要条件假言推理  ④选言推理", "type": "单选题", "options": "A. ①④\nB. ①②\nC. ①③\nD. ②④", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "C", "human_count": 11649, "human_acc": 33.8312301485, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第49题", "difficulty": 5, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 2703192, "material": "", "question": "矛盾修辞法是一种修辞手段,它是用两种不相调和,甚至截然相反的词语来形容一件事物,起到一种强烈的修辞效果,使得所表达的语义更强烈。由于这种修辞格往往能造成一种“出人意外的,引人入胜的”效果。因此,它的使用频率,特别在文学作品中是相当高的。\n\n根据上述定义,以下没有应用矛盾修辞法的是:", "type": "单选题", "options": "A. 像一朵水莲花不胜凉风的娇羞,道一声珍重,那一声珍重里有甜蜜的忧愁\nB. 他那来源于不名誉的名誉依然如故,而那并不诚实的诚实保持虚伪的忠诚\nC. 我始终不敢相信,不敢相信那真实的谎言是从我最敬爱的王老师口中说出\nD. 大学四年转瞬而过,带给毕业生们的除了痛苦的别离,还有对未来的迷茫", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 240731, "human_acc": 73.0774183632, "source": "2021年国考终极行测模考大赛(副省级)第92题", "difficulty": 4, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 4641771, "material": "", "question": "某球赛决赛原定采用三局两胜赛制,参赛双方甲、乙两支球队每场比赛获胜的概率分别为60%、40%。但受疫情影响,赛制调整为一局定胜负。则调整赛制后,甲球队夺冠的概率较原定赛制约:", "type": "单选题", "options": "A. 提高10个百分点\nB. 降低10个百分点\nC. 提高5个百分点\nD. 降低5个百分点", "choice": "D", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 50950, "human_acc": 19.5171736997, "source": "2021下半年省考第三十六季行测模考大赛(浙江卷)第69题", "difficulty": 7, "formulas": 0, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 1746860, "material": "", "question": "有研究者认为,有些人罹患哮喘病是由于情绪问题。焦虑、抑郁和愤怒等消极情绪,可促使机体释放组织胺等物质,从而引发哮喘病。但是,反对者认为,迷走神经兴奋性的提高和交感神经反应性的降低才是引发哮喘病的原因,与患者的情绪问题无关。\n\n以下哪项如果为真,最能削弱反对者的观点?", "type": "单选题", "options": "A. 现代医学已经证实,消极情绪也可诱发身体疾病\nB. 哮喘病发作会造成患者情绪焦虑、抑郁和愤怒等\nC. 焦虑、抑郁和愤怒等消极情绪是现代人的普遍问题\nD. 消极情绪会提高患者迷走神经的兴奋性并降低交感神经的反应性", "choice": "D", "keypoints": "削弱论点", "most_wrong": "A", "human_count": 2422341, "human_acc": 87.5765220504, "source": "2016年国家公务员录用考试《行测》题(副省级)第113题", "difficulty": 5, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 586205, "material": "", "question": "一个老人告诉医生,说他的右腿疼,医生说:“这是上了年纪的缘故。”\n\n以下最能反驳医生说法的是:", "type": "单选题", "options": "A. 老人年轻的时候右腿也疼\nB. 比老人年纪小的人腿也疼\nC. 比老人年纪大的人腿不疼\nD. 老人现在左腿不疼", "choice": "A", "keypoints": "削弱论点", "most_wrong": "C", "human_count": 304321, "human_acc": 75.76210646, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第85题", "difficulty": 5, "formulas": 0}, {"id": 1324939, "material": "", "question": "海水经过海水淡化技术的处理可变成淡水,而海水的量是极其巨大的。因此,无须节约使用淡水资源。最能质疑上述结论的是:", "type": "单选题", "options": "A. 近海海水的污染比较严重\nB. 海水淡化成本高昂\nC. 冰川水储量巨大,可替代海水淡化\nD. 地球上的水资源总量是恒定的", "choice": "B", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 642943, "human_acc": 59.8899124806, "source": "2015年广东省公务员录用考试《行测》题(县级以上)第58题", "difficulty": 5, "formulas": 0}, {"id": 1324965, "material": "", "question": "据统计,和去年相比,今年1月以来流感患者的数量有明显的下降。这得益于新型特效药的发明和投入使用。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 2月份为流感的高发期\nB. 流感患者很少到医院去治疗\nC. 流感病毒具有抗药性\nD. 新型特效药定价高,患者使用少", "choice": "D", "keypoints": "削弱论点", "most_wrong": "A", "human_count": 712250, "human_acc": 66.1293085293, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第56题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 2613876, "material": "", "question": "扶梯自下向上匀速运行,小王从扶梯底部向顶部行走,若每秒钟走2级,20秒后到达顶部;若每秒钟走3级,16秒后达到顶部。若小王每秒钟走3级,从扶梯顶部逆行至底部,逆行过程中共走了多少级?", "type": "单选题", "options": "A. 320\nB. 240\nC. 160\nD. 80", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 76734, "human_acc": 45.9300961764, "source": "2020年下半年省考第二季行测模考大赛(新疆卷)第59题", "difficulty": 6, "formulas": 0, "history": [{"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1679372, "material": "", "question": "两艘船相对划行,一船从A到B顺水,一船从B到A逆水,结果所用时间相同(假设水流速、行船速恒定,快船速是慢船速2倍)。则慢船速是水流速的几倍?", "type": "单选题", "options": "A. 1\nB. 4\nC. 3\nD. 2​", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 307203, "human_acc": 65.1679833856, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第92题", "difficulty": 5, "formulas": 0}, {"id": 44089, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要几天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 93842, "human_acc": 76.8600413461, "source": "2012年上海市公务员录用考试《行测》题(A类)第60题", "difficulty": 5, "formulas": 0}, {"id": 43449, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要多少天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 73831, "human_acc": 77.2223049938, "source": "2012年上海市公务员录用考试《行测》题(B类)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 14045, "material": "", "question": "10个完全一样的杯子,其中6个杯子各装有10克纯酒精,4个杯子装有10克纯水。如果从中随机地拿出4个杯子并将其中的液体进行混合,问最终得到50%酒精溶液的可能性是得到75%酒精溶液的可能性的多少倍?", "type": "单选题", "options": "A. $\\frac{3}{2}$\nB. $\\frac{4}{3}$\nC. $\\frac{6}{5}$\nD. $\\frac{9}{8}$", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 47845, "human_acc": 46.978785662, "source": "2011年北京市公务员录用考试《行测》题第76题", "difficulty": 6, "formulas": 419, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 4985820, "material": "", "question": "价值共创是指由消费者与企业共同创造价值的理论。消费者不再是消极的购买者,而已经转变为积极的参与者,消费者积极参与企业的研发、设计和生产、服务,以及在消费领域贡献自己的知识技能创造更好的消费体验,价值来源于消费者与企业或其他相关利益者的共同创造。\n\n根据上述定义,下列属于价值共创的是:", "type": "单选题", "options": "A. 某健身中心推行会员制,只有办理会员卡才能获得优惠,经理认为大力宣传会员优惠,办卡的人就会越来越多\nB. 某加油站公开征求消费者意见,请消费者对加油站的现场管理提出意见,但是加油站管理者最终并未采纳这些意见\nC. 班主任和同学们共同探讨班级值日轮班的问题,班主任听取了两个同学的合理建议,所以这次班会开得非常成功\nD. 某运动鞋品牌推出“定制服务”,顾客可以自行给鞋子配色,且在售后会定期回访顾客,并根据建议调整配色色板", "choice": "D", "keypoints": "方式目的", "most_wrong": "B", "human_count": 291077, "human_acc": 96.6957196893, "source": "2022上半年省考第十九季行测模考大赛(陕西卷)第66题", "difficulty": 3, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 5548423, "material": "", "question": "编钟是我国古代大型打击乐器,多用于皇家重大典仪场合。故宫博物院藏金编钟,由16个外形尺寸完全相同的椭圆形金钟组成,于乾隆五十五年铸成。各编钟顶部为两条蟠龙状纽纹,中部雕刻有云龙纹,下部有6个凸起的圆唇,敲击圆唇可发出声音。不同编钟的音程大小变化,通过调整钟体厚度实现。钟体越薄,则发音越低。\n\n下列说法与文意不符的是:", "type": "单选题", "options": "A. 乾隆年间已经能够铸造编钟\nB. 可通过调整钟体厚度实现音程大小变化\nC. 编钟是用于皇家重大典仪场合的乐器\nD. 钟体的厚薄与发音的高低成正比", "choice": "C", "keypoints": "细节判断题", "most_wrong": "D", "human_count": 2959, "human_acc": 59.4119635012, "source": "2023下半年省考第一季行测模考大赛(内蒙古卷)第52题", "difficulty": 6, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 4708141, "material": "", "question": "某人住在t市,在s市工作,每天下班后乘火车到达t市,然后于下午6时到t市地铁站,他的妻子驾车准时到地铁站接他回家。一日他提前下班,搭早一班车于下午5:30到t市地铁站,随即步行回家,他的妻子像往常一样驾车前来,在地铁站与家的中点B点遇到他,接回家时,发现比往常提前了10分钟,问他步行了多长时间?", "type": "单选题", "options": "A. 10\nB. 25\nC. 30\nD. 40", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 8104, "human_acc": 44.558242843, "source": "2019年福建省选调生考试《行政职业能力测验》第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 5102668, "material": "", "question": "全球变暖带来的气候变化日益显著,成为影响人类发展前景的决定性因素之一。从观测和古气候重建的资料来看,人类活动对地球气候系统的影响已经非常深刻。数据显示,最近50年来的温升速率都不超过$0.2^{\\circ}C$/10年。即便从最近的20年来看,2011~2020年相对于1850~1900年平均值的温度变化是$1.09^{\\circ}C$,2001~2010年相对于1850~1900年平均值的温度变化是$0.9^{\\circ}C$,10年的温升速率不超过$0.2^{\\circ}C$。根据上述数据来看,全球变暖的步调并没有加速。\n\n以下哪项为真,最能证明上述观点?", "type": "单选题", "options": "A. 最近20年相对于1980~1999年平均值的温度变化是$0.58^{\\circ}C$,相对于1961~1990年平均值的温度变化是$0.36^{\\circ}C$\nB. 目前多国出台政策强化降低GDP能源强度和二氧化碳强度的力度和幅度,按照现在人类控制排放的力度,全球气温升幅加快的可能性不大\nC. 不同区域受到全球气候变暖带来的影响存在差异,比如1951~2019年中国的增温速度高于同期全球平均水平\nD. 当前大气中的二氧化碳浓度高于200万年以来的任何时候,1900年以来的全球平均海平面上升速度比过去300年中任何一个世纪都快", "choice": "B", "keypoints": "补充论据", "most_wrong": "A", "human_count": 952058, "human_acc": 51.6632390043, "source": "2022年天津市公务员录用考试《行测》试题(网友回忆版)第66题", "difficulty": 5, "formulas": 213, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 2730969, "material": "", "question": "某些错绘国界线的地图是严重违法违规的,这是因为有损我国领土和主权完整的地图是严重违法违规的。\n\n若使上述论证有效,则必须要补充的前提是(    )。", "type": "单选题", "options": "A. 错绘国界线极有可能导致我国领土和主权完整受损\nB. 某些严重违法违规的地图有损我国领土和主权完整\nC. 所有错绘国界线的地图都有损我国领土和主权完整\nD. 某些错绘国界线的地图有损我国领土和主权完整", "choice": "D", "keypoints": "搭桥", "most_wrong": "C", "human_count": 389326, "human_acc": 39.4974905349, "source": "2020年深圳市考公务员录用考试《思维能力测验》试题(网友回忆版)第70题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2377142, "material": "", "question": "假设“如果张楠和林枫不是志愿者,那么杨梅是志愿者”是前提,“林枫是志愿者”为结论。\n\n那么,下列各项中,是其必要前提的是:", "type": "单选题", "options": "A. 张楠是志愿者\nB. 杨梅不是志愿者\nC. 杨梅和张楠都是志愿者\nD. 杨梅和张楠都不是志愿者", "choice": "D", "keypoints": "搭桥", "most_wrong": "B", "human_count": 1547257, "human_acc": 57.6758095132, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2387377, "material": "", "question": "有报道称,已婚者一般比独身者寿命长,所以独身的压力一定对健康有损耗。\n\n以下哪项如果为真,最能支持上述论证?", "type": "单选题", "options": "A. 独身者寿命短于同龄已婚者\nB. 独身者会比已婚者的压力更大\nC. 已婚者寿命不尽相同\nD. 人的寿命受多种因素影响", "choice": "B", "keypoints": "搭桥", "most_wrong": "A", "human_count": 31582, "human_acc": 63.0739028561, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第99题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"]]}, {"id": 5480597, "material": "", "question": "____________________。古往今来,优秀文艺作品必然是思想内容和艺术表达的有机统一。诗人屈原感楚国国运之变,将忧国忧民之思倾注笔端,写下《离骚》;北宋画家王希孟叹山河之美,把“可游可居”的人与自然和谐共生理念融入《千里江山图》;鲁迅先生关切民族命运,在思想文化战线上发出时代的“呐喊”。新时代的文艺工作者要把创作生产优秀作品作为文艺工作的中心环节,以孜孜以求、精益求精的精神搞创作,把提高质量作为文艺作品的生命线,不断提升作品的精神能量、文化内涵、艺术价值,努力创作更多传播当代中国价值观念、体现中华文化精神、反映中国人当代审美追求的优秀作品。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 诗文随世运,无日不趋新\nB. 文章千古事,得失寸心知\nC. 芳林新叶催陈叶,流水前波让后波\nD. 暮归冲雨寒无睡,自把新诗百遍开", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 34210, "human_acc": 59.6638409822, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第76题", "difficulty": 4, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 2622528, "material": "", "question": "研究人员将大肠杆菌、酵母菌两种微生物的活培养基放在几个不同的烧瓶里,用其他气体来代替普通空气。一组烧瓶中充满了纯氢气,另一组则充满纯氦气,第三组烧瓶作为对照,装的是正常空气。实验发现这两种微生物在不同的气体中都能生存,而在空气中的存活状态最好。因此,研究人员认为系外行星上,可能存在着呼吸氦和氢的外星生命。\n\n要得到上述结论,需要补充的最重要前提是:", "type": "单选题", "options": "A. 宇宙中存在氢气和氦气\nB. 天体生物学家把被氢气包围的行星列入探索名单\nC. 这两种微生物来源于地球,所以在空气中存活状态最好\nD. 天体生物学领域是一个推测性的领域,不受任何数据约束", "choice": "A", "keypoints": "必要条件", "most_wrong": "C", "human_count": 34888, "human_acc": 84.4645723458, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第103题", "difficulty": 4, "formulas": 0, "history": [{"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2133678, "material": "", "question": "扶贫必扶智。让贫困地区的孩子们接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n以上观点的前提是:", "type": "单选题", "options": "A. 贫困的代际传递导致教育的落后\nB. 富有阶层大都受过良好教育\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就财富", "choice": "D", "keypoints": "必要条件", "most_wrong": "A", "human_count": 2721802, "human_acc": 71.5025927676, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 4, "formulas": 0}, {"id": 2271348, "material": "", "question": "扶贫先扶智,让贫困地区的孩子接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n上述观点最恰当的前提是(  )。", "type": "单选题", "options": "A. 贫困地区与非贫困地区教育发展不均衡\nB. 贫困代际传递导致教育落后\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就未来", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 21632, "human_acc": 63.6094674556, "source": "广西2019年定向招录选调生笔试第32题", "difficulty": 5, "formulas": 0}, {"id": 47687, "material": "", "question": "西双版纳傣族的竹楼都用方形柱子将房子架空来防止潮湿及蚊虫骚扰,之所以用方形柱子而不是圆形柱子,是为了防止蛇攀爬进入竹楼。\n\n下列哪项最有可能是上述陈述的假设:", "type": "单选题", "options": "A. 傣族人喜欢把东西做成方形的\nB. 蛇喜欢攀爬圆形的柱子\nC. 西双版纳热带雨林中有很多蛇\nD. 蛇不能缠绕着方形的柱子爬行", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 372360, "human_acc": 84.9487055538, "source": "2013年浙江省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 2281037, "material": "", "question": "瑕疵担保责任是指依法律规定,在交易活动中当事人一方移转财产(或权利)给另一方时,应担保该财产(或权利)无瑕疵,若移转的财产(或权利)有瑕疵,则应向对方当事人承担相应的责任。\n\n根据上述定义,下列选项中乙公司不需要承担瑕疵担保责任的是:", "type": "单选题", "options": "A. 甲公司从乙公司购买了四台不锈钢水箱,后一台水箱发生爆裂,经鉴定水箱钢板厚度偏薄,焊接质量较差,与国家标准要求不符\nB. 甲公司与乙公司签订协议,甲支付50万元获得乙公司旗下6个专利产品,后甲在使用过程中发现其中一个产品版权属于丙公司所有\nC. 甲公司与乙公司签订《股权转让协议》,约定甲公司将名下的股权全额转让给乙公司,协议签订不久,乙公司资金发生问题,申请破产\nD. 甲公司租赁乙公司的厂房开办化工厂,后房屋漏雨,甲公司安排工人杨某到屋顶更换石棉瓦,结果杨某在更换过程中因房屋大梁突然断裂从高处坠落受伤", "choice": "C", "keypoints": "大前提", "most_wrong": "D", "human_count": 175455, "human_acc": 71.636032031, "source": "2018年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第72题", "difficulty": 4, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}, {"id": 9009, "material": "", "question": "体液是指人体体内含有的大量以水为基础的液体,包括细胞内液和细胞外液,其中除含有大量的水外,还有许多离子和化合物。\n以下不属于体液的是:", "type": "单选题", "options": "A. 炎热环境中排出的汗液\nB. 血管中流动的血浆\nC. 组织细胞间隙的组织液\nD. 淋巴管内流动的淋巴", "choice": "A", "keypoints": "大前提", "most_wrong": "D", "human_count": 18888, "human_acc": 42.095510377, "source": "2009年江西省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 2440235, "material": "", "question": "注意分配是指在同一时间内,把注意指向不同的对象,同时从事几种不同活动的现象。\n\n根据上述定义,下列不属于注意分配的是:", "type": "单选题", "options": "A. 学生边听讲边做笔记\nB. 歌手自拉自唱\nC. 工人边观察仪表边控制调节\nD. 运动员一鼓作气完成了躲避、转身、投篮的动作", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 198157, "human_acc": 86.5591424981, "source": "2019年青海省法院、检察院录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 410525, "material": "", "question": "为什么不逃跑的麋鹿反而容易在与狼的对决中生存下来?_其实是一种勇气和习惯的较量。麋鹿身体强壮,长着长角,在力量对比上讲,如果狭路相逢,麋鹿能与狼僵持好几个小时,再加上长角,它们同样能威胁到狼的生命。所以,在面对不逃跑的麋鹿时,狼是充满戒心的。此外,还有一个更重要的原因,追赶正在奔跑的动物,是狼在生存过程中形成的本能。_仿佛是一种诱惑,让它们难以抗拒。所以,奔跑的麋鹿永远是它们的目标。\n\n对这段文字中的两个划线的“这”,理解正确的是:", "type": "单选题", "options": "A. 前一个“这”指“为什么不逃跑的麋鹿反而容易在与狼的对决中生存下来”,后一个“这”指“追赶正在奔跑的动物,是狼在生存过程中形成的本能”。\nB. 前一个“这”指“逃跑的麋鹿反而容易在与狼的对决中生存下来”,后一个“这”指“狼在生存过程中形成的本能”。\nC. 前一个“这”指“麋鹿与狼的对决”,后一个“这”指“奔跑的动物”。\nD. 前一个“这”指“不逃跑的麋鹿”,后一个“这”指“奔跑的麋鹿”。", "choice": "C", "keypoints": "代词", "most_wrong": "A", "human_count": 276744, "human_acc": 34.9167461625, "source": "2014年上海市公务员录用考试《行测》题(B类)第11题", "difficulty": 6, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2641750, "material": "", "question": "A、B两港口分别位于河流的上游和下游,之间相距60千米。某日甲、乙两船分别以25千米/小时、20千米/小时的速度从A、B两港口出发前往中点位置的C港口取货。两船在C港口取货用时均为30分钟,取完货立即返回各自港口。已知甲船整个过程共用时3小时,则乙船整个过程用了几个小时?", "type": "单选题", "options": "A. 3.2\nB. 3.7\nC. 4.2\nD. 4.7", "choice": "B", "keypoints": "平均速度;流水行船", "most_wrong": "C", "human_count": 93813, "human_acc": 46.0117467728, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第59题", "difficulty": 6, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"], ["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 2693107, "material": "", "question": "燃料电池的工作原理是阳极燃料氢气失去电子成为质子,而后穿过质子交换膜到达阴极与氧气、电子结合生成水,质子在电池内部传输与外电路的电子构成电流回路,因此质子传导性能对于燃料电池能量转化效率非常关键。目前商用全氟磺酸质子传导膜厚度至少在5微米以上,需要在$100^{\\circ}C$以下处于水合状态才能发挥作用,此时对氢气的纯度要求较高。若开发出$100^{\\circ}C$以上可以高效传导质子的膜材料,将有助于提高燃料电池效率,降低对氢气纯度的要求,简化水管理系统,达到降低成本、减少污染的目的,对燃料电池汽车的商业发展具有重要意义。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 多次试验找寻高效的高温质子传导膜材料\nB. 当前提高燃料电池效率所遇到的主要问题\nC. 高效传导质子膜材料在多领域的应用前景\nD. 高效传导质子膜在电池领域已发挥的作用", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 19659, "human_acc": 72.4146701256, "source": "2020年下半年省考第十三季行测模考大赛(天津卷)第41题", "difficulty": 4, "formulas": 2, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 1004079, "material": "", "question": "疑罪是指司法机关对被告人是否犯罪或罪行轻重难以确证的情况。疑罪从无原则是现代刑法“有利被告”思想的体现,是无罪推定原则的具体内容之一,即在既不能证明被告人有罪又不能证明被告人无罪的情况下,推定被告人无罪。\n\n根据上述定义,下列采用了疑罪从无原则的是:", "type": "单选题", "options": "A. 赵六因盗窃他人网络密码被起诉,但由于赵六被证明从来不使用网络,法院判其无罪\nB. 史某和汤某打架,两人都受了伤,因无法确定谁先动手,法庭建议庭外和解\nC. 钱某因涉嫌投毒被起诉,后因证据不足,法院判决钱某无罪\nD. 张三起诉李四侵权,但因拿不出任何证据,结果败诉", "choice": "C", "keypoints": "常规问法", "most_wrong": "D", "human_count": 2049832, "human_acc": 80.8670661791, "source": "2015年国家公务员录用考试《行测》题(省部级)第90题", "difficulty": 5, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 4655976, "material": "", "question": "一项实验中,研究人员比较了小鼠、非人灵长类动物和人类在整个生命周期中的空腹血糖浓度、体重和脂肪量三个指标的纵向轨迹。他们发现,相比之下,空腹血糖浓度在小鼠的生命晚期有所下降,而该指标在非人灵长类动物及人类的生命晚期却有所上升,且二者上升的幅度并不一致。因此,研究人员认为空腹血糖浓度可以作为动物死亡率的预测因素。\n\n以下哪项如果为真,最不能支持上述结论?", "type": "单选题", "options": "A. 实验中,三个物种的体重和脂肪量的变化轨迹一致\nB. 低血糖经常容易出现手抖、出冷汗、烦躁等症状\nC. 猎豹的空腹血糖浓度一旦过高,其死亡的概率就会激增\nD. 空腹血糖浓度越波动,动物身体机能越差、代谢越紊乱", "choice": "B", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 161890, "human_acc": 51.1977268516, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第65题", "difficulty": 6, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 218379, "material": "", "question": "对A市居民参加体育锻炼的情况进行的调查表明,经常参加体育锻炼的居民数近两年来不断上升,而某健身中心的顾客数略有下降。\n\n以下各项除了哪一项,都有助于解释上述矛盾?", "type": "单选题", "options": "A. 该健身中心对顾客的统计不仔细,统计的准确性值得怀疑\nB. 为节省开支,许多居民改为到公园参加锻炼\nC. A市调查中抽取的样本较多,所以调查具有较高的准确性\nD. 近两年A市新开办了许多健身中心", "choice": "C", "keypoints": "原因解释", "most_wrong": "B", "human_count": 173505, "human_acc": 51.2411746059, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 17853, "material": "", "question": "过去,我们在道德宣传上有很多不切实际的高调,以至于不少人口头说一套,背后做一套,发生人格分裂现象,通过对此种现象的思考,有的学者提出,我们只要求普通人遵守“底线伦理”。\n\n根据你的理解,以下哪一选项作为“底线伦理”的定义最合适:", "type": "单选题", "options": "A. 底线伦理就是不偷盗、不杀人\nB. 底线伦理不是要求人无私奉献的伦理\nC. 如果把人的道德比作一座大厦,底线伦理就是该大厦的基础部分\nD. 底线伦理是作为一个社会普通人所应遵守的一些最起码、最基本的行为规范和准则", "choice": "D", "keypoints": "故事类", "most_wrong": "C", "human_count": 13192, "human_acc": 92.7683444512, "source": "2009年山西省党群机关录用考试《行测》题第72题", "difficulty": 5, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 2661706, "material": "", "question": "美国《科学》期刊网页近日发表文章显示,美国斯坦福大学的科学家在调查研究中初步发现季节性呼吸道病毒与新冠病毒之间存在相互影响关系,两者之一的存在还可能抑制另一者的出现,感染季流感病毒的出现或将抑制新冠病毒的传播,从而缓解疫情。\n\n以下哪项如果为真,最不能削弱上述观点?", "type": "单选题", "options": "A. 某国在抽样检测的一些新冠患者的体内发现了呼吸道病毒\nB. 研究表明新冠病毒与呼吸道病毒共同感染的比例很高\nC. 中外多位专家已形成共识新冠肺炎疫情在秋冬季节容易反复\nD. 新冠病毒与流感病毒的共同传播可能引起新冠病毒感染的加剧", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 87130, "human_acc": 71.0949156433, "source": "2021年国考第十九季行测模考大赛(副省级)第111题", "difficulty": 4, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 24991, "material": "", "question": "新型平板电脑比传统平板电脑更快捷,它安装了新型操作系统,因此,新型平板电脑的销售情况比传统平板电脑好。\n\n下列最能削弱上述观点的是:", "type": "单选题", "options": "A. 某些平板电脑使用者的使用环境和平常人不同\nB. 传统平板电脑最常用的功能在新型平板电脑中找不到\nC. 新型平板电脑的操作系统是全新的\nD. 无论平板电脑使用何种操作系统,使用习惯都因人而异", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 72363, "human_acc": 54.947970648, "source": "2010年福建省公务员录用考试《行测》题(春季)第90题", "difficulty": 6, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}, {"id": 1324947, "material": "", "question": "有甲、乙两家公司,甲公司售后服务部门接到的产品投诉电话是乙公司的3倍。因此,甲公司产品的质量没有乙公司的好。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙公司的产品操作相对来说更为简单\nB. 甲公司接到电话大多数是咨询电话\nC. 甲公司的咨询电话机数量比乙公司多\nD. 甲公司产品的市场占有率达到$76\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 793211, "human_acc": 70.0645855895, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第58题", "difficulty": 5, "formulas": 83}, {"id": 22459, "material": "", "question": "由于在乐业天坑中最大的天坑——大石围的底部的原始森林中发现了与恐龙同时代的植物桫椤,有人据此推测,大石围应形成于恐龙时代,即6500万年前。\n\n如果下列各项为真,哪项最能反驳上述推测:", "type": "单选题", "options": "A. 桫椤至今仍然存在\nB. 在其他乐业天坑中未发现桫椤\nC. 恐龙无法进入这个极深的天坑\nD. 没有在大石围中发现恐龙化石", "choice": "A", "keypoints": "拆桥", "most_wrong": "D", "human_count": 423565, "human_acc": 53.8413230555, "source": "2012年安徽省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"]]}, {"id": 4661705, "material": "", "question": "一件艺术作品因时间和空间的限制只能保持其唯一性并在较小的范围内传播,而复制技术则让传播媒介突破了艺术作品的唯一性和传播的时空限制,让传播效益发生质的飞跃。从本质上而言,复制技术是让事物“由一变多”的技术,而这种“由一变多”让艺术获得便捷的传播通道。一件兽骨可以刻画一件原始雕刻作品,复制技术可让同一幅原始绘画刻出众多的雕刻作品,从而使一幅雕刻作品通过众多的兽骨传播开来。同样的道理,其他传播媒介也可以通过复制技术使一件艺术作品变成多件艺术作品。因此,____________________。\n\n填入画横线处最恰当的一项是:", "type": "单选题", "options": "A. 复制技术的实现需依赖特定的传播媒介\nB. “由一变多”是复制技术的核心所在\nC. 艺术作品的广为传播几乎再也不成问题\nD. 复制技术是推动艺术作品传播的关键技术", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 181259, "human_acc": 76.3018663901, "source": "2021下半年省考第三十九季行测模考大赛(广东乡镇卷)第10题", "difficulty": 4, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 3950095, "material": "某中学举办数学竞赛初选,共有七名学生入围,分别是:张红、王丽、李明、赵强、钱兰、孙刚、周伟。老师根据这七人的成绩从高至低进行排名,已知信息如下:\n\n(1)没有人的分数一样,女生的排名均不相邻;\n\n(2)孙刚的排名在王丽和赵强的前面;\n\n(3)排在孙刚前面的人中,有两名女生;\n\n(4)张红的成绩在七人中排名倒数第二;\n\n(5)周伟的成绩比李明高。", "question": "如果钱兰排名第三,则以下哪项一定是男生?", "type": "单选题", "options": "A. 张红\nB. 王丽\nC. 李明\nD. 赵强", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 56099, "human_acc": 60.4128415836, "source": "2022年国考第二十三季行测模考大赛(地市级)第110题", "difficulty": 5, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 5102601, "material": "", "question": "44名大学生自愿参加一项羽毛球运动对大脑影响的实验,并被随机分成实验组和对照组两组。本实验包括3个流程:前测、羽毛球训练、后测。前测和后测的内容一样,均为脑结构扫描。只有实验组参加连续12周的羽毛球训练,对照组在此期间不进行任何有规律的体育运动。结果显示实验组训练后左侧下枕叶、颞中回灰质体积增加;而对照组颞中回灰质体积减小。研究人员表示,实验组被试的这种脑结构变化是羽毛球运动训练的特异性结果。\n\n以下哪项如果为真,能够削弱上述观点?", "type": "单选题", "options": "A. 灰质与知觉相关,羽毛球运动员的知觉敏感性显著高于普通成人\nB. 实验中观察到的对照组颞中回灰质体积减小属于大脑毕生发展的正常现象\nC. 他动训练对大脑中灰质的影响进行研究\nD. 本实验的干预时间较短,对以接受过十几年运动训练经历的被试为研究对象的实验来说,结果可比性较差", "choice": "D", "keypoints": "削弱论据", "most_wrong": "B", "human_count": 914769, "human_acc": 46.718242529, "source": "2022年天津市公务员录用考试《行测》试题(网友回忆版)第70题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 4004840, "material": "", "question": "某公司发生失窃案,公安机关经过调查锁定了犯罪嫌疑人是该公司会计张某。办案民警小王说:“一定不是他”,办案民警小李发表了反对观点:“当其他可能性被排除了,剩下的不管看起来多么不可能,但一定是事情的真相。”\n\n以下哪项如果为真,最能削弱小李的说法?", "type": "单选题", "options": "A. 追究违法行为最重要的是用证据说话\nB. 办案民警无法极尽所有可能性\nC. 办案民警小王比小李更了解案件经过\nD. 公司职员评价张某平时为人老实诚恳", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 178912, "human_acc": 76.9590636738, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第91题", "difficulty": 5, "formulas": 0}, {"id": 4658543, "material": "", "question": "德国的一项研究显示,长期居住在天寒地冻、杳无人烟的南极洲,人的大脑平均会缩小7%,学习、记忆以及与人交往能力随之减弱。因此,生活在炎热地区的人比生活在寒冷地区的人更聪明。\n\n以下哪项如果为真,最能削弱上述论证?", "type": "单选题", "options": "A. 该项研究成果尚未公开发表\nB. 气候会对人的智力产生巨大的影响\nC. 寒冷令人们为保存更多能量,倾向于减少学习及社交活动\nD. 该研究结果是可逆的,离开南极洲一段时间后人的大脑基本恢复正常水平", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 1126762, "human_acc": 52.4565968678, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第78题", "difficulty": 5, "formulas": 0}, {"id": 1679314, "material": "", "question": "一项民意调查结果显示,在1000多名参与投票的网友中,六成网友支持延长女性产假至三年,以便更好地照顾宝宝;四成网友表示反对,认为产假太长,会增加企业负担,进而增加女性就业难度,不可行。\n\n以下哪项如果为真,最能质疑上述反对者的观点?", "type": "单选题", "options": "A. 企业除了追求利润之外,也应当承担社会责任\nB. 女性产假延长的成本,由财政或社保基金来承担\nC. 这份调查样本量不够大,不足以代表真正的民意\nD. 法律应强制规定企业必须招聘一定比例的女性", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 485630, "human_acc": 84.9737454441, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第79题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 1679610, "material": "", "question": "美国3M公司有一位研究员,有一次,他想发明一种粘合力非常强的胶水,但因为种种原因,他失败了,实验得到的只是一种粘合力很差的液体,根本无法用作胶水。但一段时间后,他发现人们有这样一种需求:把便条或书签贴到桌上或墙上,在需要时可以随时揭下来。他此前发现的粘合力差的液体正好可以派上用场。就这样,一种险遭废弃的技术促成了“即时贴”的发明。\n\n“即时贴”的发明给我们的最大启发是:", "type": "单选题", "options": "A. 遇到问题时试着从不同的角度来思考\nB. 一种成功的发明可能是无心插柳的结果\nC. 要善于从生活中寻找技术创新的灵感\nD. 成功的技术发明来自锲而不舍的努力", "choice": "A", "keypoints": "中心理解题", "most_wrong": "B", "human_count": 519455, "human_acc": 56.7171362293, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题"]]}, {"id": 2759205, "material": "", "question": "在追踪了202名志愿者一个月的睡眠,并分析了他们的每日日记,日记中记录了睡眠、每日应激(压力)源和愤怒情绪。初步结果显示,人在睡眠不足时表现出了更多的愤怒情绪。\n\n以下哪项如果为真,最能反驳上述结论?", "type": "单选题", "options": "A. 睡眠不足会影响人对糟糕环境的适应能力\nB. 睡眠干扰可能不会让人表现出愤怒情绪\nC. 愤怒容易使人清醒,并扰乱睡眠,造成缺觉\nD. 睡眠较少的人在失恋时更容易产生愤怒的情绪", "choice": "C", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 177589, "human_acc": 83.3362426727, "source": "2021上半年省考第四季行测模考大赛(广东卷)第64题", "difficulty": 4, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 16163, "material": "", "question": "在世界市场上,中国生产的汽车比其他国家生产的汽车要便宜得多,因此其他国家的汽车工业将失去一部分汽车市场,而这些市场将被中国汽车占据。\n\n以下哪一项是上述论述所要假设的:\n\nⅠ.中国汽车的油耗比其他国家汽车的油耗更低\n\nⅡ.价格是汽车购买者考虑的重要因素\n\nⅢ.中国的汽车和其他国家的汽车耐用性基本相同\n\nⅣ.汽车购买者具有较高的品牌忠诚度", "type": "单选题", "options": "A. Ⅰ和Ⅱ\nB. Ⅰ、Ⅱ和Ⅲ\nC. Ⅱ、Ⅲ和Ⅳ\nD. Ⅱ和Ⅲ", "choice": "D", "keypoints": "搭桥;必要条件", "most_wrong": "B", "human_count": 82169, "human_acc": 63.0821842787, "source": "2010年浙江省公务员录用考试《行测》题(A类)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"], ["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 5042699, "material": "", "question": "社交媒体已成为我们生活中不可或缺的一部分。一项针对毕业后职场人士的研究显示,每天浏览社交媒体平台超过3小时的人,情绪低落的概率要比非职场人士高出60%,由此专家认为过多浏览社交媒体会使他们变得沮丧。\n\n以下选项如果为真,最能反驳上述观点的是:", "type": "单选题", "options": "A. 刚步入大学校园的年轻人也会长时间浏览社交媒体,但他们并没有出现沮丧的情绪\nB. 偶尔在社交媒体上积极地与人沟通、交谈,有助于人们更好地放松自己的心情\nC. 调查中的这些职场人士还面临着巨大的工作压力\nD. 有调查显示,在心情愉悦时浏览社交媒体确实会影响人们的情绪", "choice": "C", "keypoints": "他因削弱", "most_wrong": "A", "human_count": 364239, "human_acc": 73.5355082789, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第82题", "difficulty": 4, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 2823118, "material": "", "question": "实践反复告诉我们,一般技术可以引进,关键核心技术却是要不来、买不来的。小到芯片、新材料,大到数控机床、发动机,中国成为制造强国的“刚需”,往往就是一些国家“出口管制清单”上的“常客”。如果这些核心部件,我们全面依赖进口,无异于将“命门”双手奉上,“就好比在别人的墙基上砌房子,再大再漂亮也可能经不起风雨,甚至会不堪一击”。今天,华为遭遇的“极限施压”再一次证明,中国不可能买来一个现代化,我们只有把关键技术、核心装备牢牢掌握在自己手中,才能从根本上保障国家经济安全,迈出高质量发展的铿锵步伐。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 技术强,国家强\nB. 科技自立,时不我待\nC. 科技核心,大国命门\nD. 核心技术,经济安全", "choice": "B", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 333558, "human_acc": 20.0396932468, "source": "2021上半年省考第十季行测模考大赛(重庆卷)第45题", "difficulty": 7, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 2133684, "material": "", "question": "有调查显示,部分学生缺乏创造力。研究者认为,具有创造力的孩子在幼年时都比较淘气,而在一些家庭,小孩如果淘气就会被家长严厉呵斥,这导致他们只能乖乖听话,创造力就有所下降。\n\n这项调查最能支持的论断是:", "type": "单选题", "options": "A. 幼年是创造力发展的关键时期\nB. 教育方式会影响孩子创造力的发展\nC. 幼年听话的孩子长大之后可能缺乏创造力\nD. 有些家长对小孩淘气倾向于采取比较严厉的态度", "choice": "B", "keypoints": "加强-其他", "most_wrong": "C", "human_count": 1581877, "human_acc": 45.7227711131, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第108题", "difficulty": 6, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 4695853, "material": "", "question": "这是一段专家关于人工智能和人类的对话:\n\n雷·科兹威尔:当下仍然不知道机器能否思考,虽然人工智能能够执行程序非常复杂的任务,其精确度和速度都超过了人类,但它缺少人类智力的灵活特征。\n\n尼古拉斯·汤普森:人类不需要更复杂的人工智能来知道机器能否思考,因为人类是机器,我们自己思考。\n\n尼古拉斯·汤普森对雷·科兹威尔的反驳是基于哪个词语的重新理解?", "type": "单选题", "options": "A. 人工智能\nB. 思考\nC. 机器\nD. 复杂", "choice": "C", "keypoints": "削弱-其他", "most_wrong": "B", "human_count": 9331, "human_acc": 50.3375843961, "source": "2019年重庆市选调优秀大学生到基层工作考试《行测》题第76题", "difficulty": 5, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱-其他"]]}, {"id": 2524790, "material": "", "question": "晚餐前20分钟喝水或吃水果,一定程度上会降低食欲,有些水果起到抑制淀粉酶和蛋白酶的分泌的作用,降低食物胃排空的速度,有利于晚餐减少进食。因此,晚餐吃水果能减肥。\n\n以下各项如果为真,能够削弱上述观点的有(   )。", "type": "不定项", "options": "A. 水果因其甘甜可口的特点,会让人摄入过多而体重增加\nB. 水果中的蛋白质很少,而且几乎没有人体必需的脂肪酸\nC. 晚餐前吃水果以减少餐中进食与以水果为晚餐不能等同\nD. 人体所需的营养素有几十种,这需要从多种食物中获得", "choice": "AC", "keypoints": "拆桥;削弱论点", "most_wrong": "B", "human_count": 9451, "human_acc": 60.4803724474, "source": "2020年上半年省考第二十六季行测模考大赛(陕西卷)第108题", "difficulty": 5, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"], ["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 5394336, "material": "", "question": "就目前养猫现状来看,大部分养猫的家庭会给猫咪做绝育,因为大部分猫咪如果不绝育,会变得难以饲养,引发很多问题,而这些问题通过绝育都能得到解决,甚至有宠物医院对外宣称,绝育能延长猫咪寿命。\n\n以下各项如果为真,能够削弱宠物医院观点的有几项?\n\n①有数据显示,流浪猫的平均寿命是3年,家猫的平均寿命是10年\n\n②绝育容易引起猫咪肥胖,肥胖会增加猫咪患心脏病等致命性疾病的几率\n\n③给猫咪进行绝育的饲主,原本就在猫咪的医疗和照顾方面会更加用心\n\n④绝育能够减少发情猫咪为了繁殖而溜出家门的次数", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "他因削弱;削弱论点", "most_wrong": "A", "human_count": 133213, "human_acc": 40.2888606968, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第42题", "difficulty": 7, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"], ["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 2524779, "material": "", "question": "某医学院教授发表了一项研究,自19世纪以来,全球成年人的平均体温在持续下降,不到200年间下降了$0.4^{\\circ}C$,从$37^{\\circ}C$降到$36.6^{\\circ}C$,人类体温降低这事有可能对人类健康不利。因为人体分泌的各类酶最适反应温度是$37^{\\circ}C$。\n\n以下哪项如果为真,能够削弱上述结论?", "type": "不定项", "options": "A. 体温的降低会提高人体代谢效率,增加能量摄入,对人类身体健康的影响并无大碍\nB. 人体内各类酶会随着温度的变化,自行调节到最合适的状态,使酶活性达到最大\nC. 人体唾液淀粉酶反应体系的温度从$15^{\\circ}C$上升至$25^{\\circ}C$时,唾液淀粉酶的活性最大\nD. 随着全球变暖,外部气温的增加帮助人体节省了能量消耗,体温当然也会跟着降", "choice": "ABC", "keypoints": "削弱论点;削弱论据", "most_wrong": "D", "human_count": 9666, "human_acc": 14.5872129112, "source": "2020年上半年省考第二十六季行测模考大赛(陕西卷)第103题", "difficulty": 7, "formulas": 211, "history": [{"id": 2540063, "material": "", "question": "为了精确探索人类老化的海马体体积,研究人员对28名年龄在14至79岁之间、突发猝死的男性和女性进行了全面的尸检。其中没有人有长期的健康问题或认知缺陷,并且在他们生命的最后三个月里,也没有出现明显的生活压力。科学家发现,年龄较大的男性和女性可以生成与年轻人相同数量水平的新脑细胞。因此,研究人员认为即使人变老了,脑细胞也依然会继续生长。\n\n以下各项如果为真,能够削弱上述观点的有(    )。", "type": "不定项", "options": "A. 随着寿命的增加,海马体内脑细胞之间的联系会逐渐减少,氧气和营养的供应也将减少\nB. 在啮齿类动物和灵长类动物中,海马体内生长新神经元细胞的能力随着年龄的增长而降低\nC. 研究人员在最老化的实验对象的大脑中没有发现中间神经前期细胞和未成熟神经元细胞\nD. 部分实验对象在实验期间长期服用抗抑郁药物,而抗抑郁药会对脑细胞的形成产生影响", "choice": "CD", "keypoints": "削弱论点;削弱论据", "most_wrong": "B", "human_count": 12433, "human_acc": 19.8423550229, "source": "2020年上半年省考第二十八季行测模考大赛(陕西卷)第109题", "difficulty": 7, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论点"], ["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 5224750, "material": "", "question": "弱关系社交电商:指以兴趣爱好作为社交链接纽带的社交电商,通常以平台达人、领域大V为核心的粉丝经济模式。\n\n下列属于弱关系社交电商的是:", "type": "单选题", "options": "A. 张女士是一名宝妈,在朋友推荐下给宝宝使用过某款尿不湿后觉得不错,便以微信为渠道做起了该款尿不湿的代理\nB. 退休后的皮肤科医生杨阿姨在某短视频平台开设了账号,不定期讲解护肤、美肤知识,人气颇高,许多人在她的建议下购买护肤品\nC. 小张是某电商平台社区团购的团长,每天在团购群里发送经过他严格把关后的各种产品信息,群里的人都十分放心地购买\nD. 喜欢收藏手办的小高在线上开了一家潮玩店并在某经验分享平台注册了账号,分享各种潮玩产品,很快就吸引了大量粉丝购买他的商品", "choice": "D", "keypoints": "大前提;主客体", "most_wrong": "B", "human_count": 16779, "human_acc": 90.5596281066, "source": "2022下半年省考第七季行测模考大赛(江苏C卷)第102题", "difficulty": 3, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"], ["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 4582365, "material": "2020年1-11月,全国文体用品制造业规模以上企业累计完成利润总额181.31亿元,同比下降3.71%,降幅较1-10月收窄4.69个百分点。文体用品制造业营业收入利润率为6.23%,同比下降0.35个百分点。从3个子行业看,体育用品制造完成利润总额82.10亿元,占45.28%;文教办公用品制造完成78.90亿元,占43.52%;游艺器材及娱乐用品制造完成20.31亿元,占11.20%。其中,体育用品制造业利润同比增长5.20%,增速较1-10月加快2.94个百分点;文教办公用品同比下降11.25%,降幅较1-10月收窄3.59个百分点;游艺器材及娱乐用品同比下降4.86%,降幅较1-10月收窄16.3个百分点。\n\n        1-11月,在文教办公用品行业的7个子行业中,文具制造累计完成利润总额45.27亿元,同比增长4.31%;本册印制完成15.17亿元,同比下降15.87%;笔的制造完成7.57亿元,同比下降12.56%;工艺美术颜料制造完成5.16亿元,同比下降46.48%;其他文教办公用品制造完成3.41亿元,同比下降42.83%;教学用模型及教具制造完成1.64亿元,同比下降5.86%;墨水、墨汁制造完成0.67亿元,同比下降53.82%。\n\n        1-11月,从营业收入利润率看,文具制造为6.44%,同比下降0.34个百分点;墨水、墨汁制造为6.14%,同比下降3.51个百分点;笔的制造为5.82%,同比下降0.09个百分点;本册印制为5.43%,同比下降0.41个百分点;工艺美术颜料制造为4.46%,同比下降2.06个百分点;其他文教办公用品制造为4.16%,同比下降2.7个百分点;教学用模型及教具制造为3.54%,同比下降0.79个百分点。", "question": "2019年1-11月,全国文体用品制造业规模以上企业累计完成营业收入约多少亿元?", "type": "单选题", "options": "A. 2155.47\nB. 2861.64\nC. 3308.54\nD. 4022.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 353628, "human_acc": 71.6925695929, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 20583, "material": "根据以下资料,完成各题。\n\n        2009年,中国农业生产在国家继续加大支农政策力度的作用下,克服不利气候条件的影响,实现了稳步的增长。\n\n        据国家统计局公布的统计数据显示,2009年第一产业增加值35477亿元(包括农林牧渔服务业),比上年实际增长4.2%。第一产业增加值占国内生产总值的比重为10.6%,比上年下降0.1个百分点。在农、林、牧、渔业增加值中,农业增加值19699亿元,实际增长3.1%;林业增加值1581亿元,实际增长6.0%;畜牧业增加值达到9640亿元,实际增长5.5%;渔业增加值达到3431亿元,实际增长5.5%。第一产业内部,农业比重比上年提高1.6个百分点;林业比重为4.5%,渔业比重为7.9%,均比上年略有提高;畜牧业比重为27.2%,比上年下降2.4个百分点。", "question": "2009年,在农、林、牧、渔业增加值中,增长最快的是:", "type": "单选题", "options": "A. 农业\nB. 林业\nC. 畜牧业\nD. 渔业", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 41525, "human_acc": 83.4292594822, "source": "2010年湖北省公务员录用考试《行测》题第92题", "difficulty": 3, "formulas": 0, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 5509770, "material": "国家能源局发布2022年1~7月,全国规模以上工业发电4.77万亿千瓦时,同比增长1.4%,增速比上半年加快0.7个百分点。7月份,全国发电量8059亿千瓦时,同比增长4.5%,增速比上月加快3.0个百分点。分品种看,7月份火电由降转增,同比增长5.3%;由于来水偏枯,水电同比增长2.4%,增速比上月放缓26.6个百分点;风电同比增长5.7%,增速比上月放缓11.0个百分点;核电同比下降3.3%,降幅比上月收窄5.7个百分点;太阳能发电同比增长13.0%,增速比上月加快3.1个百分点。\n\n        国家能源局发布2022年1~7月,全社会用电量累计49303亿千瓦时,同比增长3.4%。分产业看,第一产业用电量634亿千瓦时,同比增长11.1%;第二产业用电量32552亿千瓦时,同比增长1.1%;第三产业用电量8531亿千瓦时,同比增长4.6%;城乡居民生活用电量7586亿千瓦时,同比增长12.5%。7月份,全社会用电量8324亿千瓦时,同比增长6.3%。分产业看,第一产业用电量121亿千瓦时,同比增长14.3%;第二产业用电量5132亿千瓦时,同比下降0.1%;第三产业用电量1591亿千瓦时,同比增长11.5%;城乡居民生活用电量1480亿千瓦时,同比增长26.8%。", "question": "2022年1-7月份,全国城乡居民生活用电量比2021年1-7月份约多:", "type": "单选题", "options": "A. 672亿千瓦时\nB. 843亿千瓦时\nC. 925亿千瓦时\nD. 1020亿千瓦时", "choice": "B", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 318023, "human_acc": 77.7610424403, "source": "2023年四川省公务员录用考试《行测》试题(网友回忆版)第97题", "difficulty": 3, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 2051088, "material": "某年度某机构关于中国宠物主人消费行为及倾向调查回收的10680份有效问卷显示:女性养宠者占$58.1\\%$,宠物主人为“80-90后”占$79.5\\%$。将宠物定义为“孩子”“亲人”“朋友”和“宠物”的分别为$54.5\\%$、$33.4\\%$、$7.7\\%$和$3.2\\%$。$8.9\\%$的人月开销在100元以内,$49.4\\%$的人开销在101至500元之间,而花费在501至1000元之间的达到$25\\%$,月消费1000元以上的人群达到$16.4\\%$。在购买物品方面,购买宠物食物的人数达到有效问卷总人数的$94.5\\%$,其次为药品、保健品,以及日用品、玩具、服饰五项,均接近$60\\%$。宠物主人外出时,四成“委托亲朋照顾”,三成“一起带走”,委托寄养还不到$20\\%$。在训练方面,$99\\%$的宠物处于自主训练或放任生长的状态,但近一半人希望爱宠得到专业训练。在购买渠道方面,$74\\%$的被访问者选择综合电商平台,选择线下综合商店或专卖店者为$53.3\\%$,选择宠物类垂直电商平台的占$33.6\\%$,但其复购率更高。值得注意的是,目前宠物主人对购物类O2O服务有选择意向的不足$4.0\\%$。", "question": "问卷中,选择综合电商平台和选择购物类O2O服务的消费者人数之比为:", "type": "单选题", "options": "A. 小于$2.2\\colon1$\nB. 大于$2.2\\colon1$\nC. 小于$18.5\\colon1$\nD. 大于$18.5\\colon1$", "choice": "D", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 585401, "human_acc": 78.1220052579, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第108题", "difficulty": 4, "formulas": 352, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 13357, "material": "国家工商总局公布的数据显示,2009年第一季度,全国工商行政管理机关共查处各类违法违章案件68202件,同比下降29.98%;其中立案查处案件49654件,同比下降32.26%,案件总值33.57亿元,同比下降21.26%,罚没金额3.33亿元,同比下降39.49%。\n\n\n        从违法法规看,违法企业登记管理法规案件9216件,同比下降38.54%;违反产品质量法规案件6760件,同比下降27.51%;违反反不正当竞争法规案件4944件,同比增长6.51%;违反商标法规案件4119件,同比下降21.93%;违反广告法规案件2141件,同比下降24.27%;违反消费者权益保护法规定案件1644件,下降13.66%;违反合同法规案件156件,同比下降57.02%。\n\n        从违法主体看,在立案查处的案件中,个体工商户案件22142件,同比下降22.73%;自然人案件12472件,同比下降49.04%;公司案件6521件,同比下降21.73%;私营企业案件3975件,同比下降22.27%;集体企业案件728件,同比下降45.26%。", "question": "若保持同比下降率不变,预计2010年第一季度全国立案查处案件数将:", "type": "单选题", "options": "A. 接近4.8万\nB. 接近3.4万\nC. 接近1.6万\nD. 接近2.1万", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "A", "human_count": 49652, "human_acc": 75.0382663337, "source": "2010年江西省公务员录用考试《行测》题第91题", "difficulty": 4, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 14511, "material": "2006年,全国研究与试验发展(R&D)经费总支出为3003.1亿元,比上年增加553.1亿元,研究与试验发展(R&D)经费投入强度为1.42%。按研究与试验发展人员(全时工作量)计算的人均经费支出为20万元,比上年增加2万元。\n\n        分研究类型看,基础研究经费支出为155.8亿元,比上年增长18.8%;应用研究经费支出为504.5亿元,增长16.4%;试验发展经费支出为2342.8亿元,增长24.3%。\n\n        分执行部门看,各类企业经费支出为2134.5亿元,比上年增长27.5%;政府部门属研究机构经费支出567.3亿元,增长10.6%;高等学校经费支出276.8亿元,增长14.2%。\n\n        分产业部门看,七大行业的研究与试验发展(R&D)经费投入强度超过1%。医药制造业为1.76%,专用设备制造业为1.7%,电气机械及器材制造业为1.48%,通用设备制造业为1.47%,交通运输设备制造业为1.38%,橡胶制造业为1.19%,通信设备、计算机及其他电子设备制造业为1.19%。\n\n        分地区看,研究与试验发展(R&D)经费支出超过100亿元的有北京、江苏、广东、上海、山东、浙江、辽宁、四川和陕西9个省(市),共支出2154亿元,占全国经费总支出的71.7%。研究与试验发展投入强度达到或超过全国平均水平的有北京、上海、陕西、天津、江苏、辽宁和浙江7个省(市)。", "question": "2005年基础研究经费支出占研究与试验发展经费总支出的:", "type": "单选题", "options": "A. 5.12%\nB. 5.35%\nC. 6.24%\nD. 6.38%", "choice": "B", "keypoints": "基期比重;文字资料", "most_wrong": "A", "human_count": 8612, "human_acc": 66.2099396191, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第92题", "difficulty": 5, "formulas": 0, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2604087, "material": "2020年1-4月,A市实现社会消费品零售总额1653亿元,下降$11.9\\%$,降幅比一季度收窄4.1个百分点。按消费类型分,商品零售1418亿元,下降$8.7\\%$;餐饮收入235亿元,下降$27.1\\%$。4月单月实现社会消费品零售总额499亿元,下降$0.5\\%$,降幅较3月收窄11.5个百分点,环比增长$27.2\\%$。4月线上零售额增长$13.8\\%$,1-4月增长$10.6\\%$。4月,吃穿用类、汽车类、石油类分别实现零售额87.9亿元、79.5亿元和31.9亿元,增速分别为$4.6\\%$、$0.6\\%$和$-18.9\\%$,增速较3月分别提高7.6个、11.5个和3.1个百分点。\n\n        1-4月,全市货物进出口1639亿元。其中,出口1002亿元,下降$3.8\\%$,降幅比一季度收窄7.1个百分点;进口638亿元,增长$5.9\\%$,增速比一季度回落1.7个百分点。从出口产品看,高新技术产品出口增长$6.6\\%$,占全市出口的$17.8\\%$,占比较上年同期提高1.7个百分点;文化产品出口增长$19.1\\%$;劳动密集型产品出口下降$9.4\\%$,降幅大于全市出口总额5.6个百分点。\n\n         1-4月,全市一般公共预算收入832亿元,下降$3.1\\%$,降幅比一季度收窄0.8个百分点。企业减税降负效应进一步显现,三大税种中,国内增值税、个人所得税分别下降$18.1\\%$和$15.2\\%$,企业所得税增长$7.6\\%$,增速比一季度回落1.7个百分点。一般公共预算支出662亿元,下降$0.2\\%$,降幅比一季度收窄9.3个百分点。", "question": "2020年3月,吃穿用类、汽车类、石油类中,实现零售额占A市社会消费品零售总额比重高于上年同期的有几类?", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "B", "human_count": 276841, "human_acc": 66.8874913759, "source": "2021年国考第十季行测模考大赛(副省级)第126题", "difficulty": 4, "formulas": 21, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 2307735, "material": "2018年1-7月份,社会消费品零售总额210752亿元,同比增长$9.3\\%$。其中,限额以上单位消费品零售额81125亿元,同比增长$7.3\\%$。\n\n        按经营单位所在地分,7月份,城镇消费品零售额26388亿元,同比增长$8.6\\%$;乡村消费品零售额4345亿元。1-7月份,城镇消费品零售额180480亿元,同比增长$9.1\\%$;乡村消费品零售额30272亿元,同比增长$10.4\\%$。\n\n        按消费类型分,7月份,餐饮收入3343亿元,同比增长$9.4\\%$;商品零售27391亿元,同比增长$8.7\\%$。1-7月份,餐饮收入22800亿元,同比增长$9.8\\%$;商品零售187951亿元,同比增长$9.2\\%$。\n\n        2018年1-7月份,全国网上零售额47863亿元,同比增长$29.3\\%$。其中,实物商品网上零售额36461亿元,同比增长$29.1\\%$,占社会消费品零售总额的比重为$17.3\\%$;在实物商品网上零售额中,吃、穿和用类商品分别同比增长$41.6\\%$、$29.9\\%$和$29.7\\%$。", "question": "2018年1-6月,商品零售同比增长约为:", "type": "单选题", "options": "A. $8.6\\%$\nB. $9.2\\%$\nC. $9.3\\%$\nD. $9.5\\%$", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 482602, "human_acc": 54.2815819247, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 5, "formulas": 349, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 48349, "material": "2012年1-3月,我国规模以上工业企业资料如下:\n\n        全国规模以上工业企业实现利润10449亿元,同比下降$1.3\\%$。其中,国有及国有控股企业实现利润3172亿元,同比下降$12.4\\%$;集体企业实现利润178亿元,同比增长$16.8\\%$;股份制企业实现利润5959亿元,同比增长$0.4\\%$;外商及港澳台投资企业实现利润2515亿元,同比下降$12.6\\%$;私营企业实现利润3264亿元,同比增长$22.4\\%$。\n\n        在41个工业大类行业中,27个行业利润同比增长,11个行业同比下降。主要行业中:石油和天然气开采业利润同比增长$10.6\\%$,农副食品加工业增长$7.7\\%$,汽车制造业增长$6.3\\%$,电力、热力生产和供应业增长$28.3\\%$,化学原料和化学制品制造业下降$23.1\\%$,黑色金属冶炼和压延加工业下降$83.5\\%$,通用设备制造业下降$0.5\\%$,电气机械和器材制造业下降$2.4\\%$,计算机、通信和其他电子设备制造业下降$12.2\\%$。石油加工、炼焦和核燃料加工业由同期盈利转为亏损。\n\n        规模以上工业企业实现主营业务收入197823亿元,同比增长$14.1\\%$。其中,国有及国有控股企业实现主营业务收入56164亿元,同比增长$7.6\\%$,集体企业实现主营业务收入2711亿元,同比增长$13.2\\%$,主营业务收入利润率为$6.57\\%$;股份制企业实现主营业务收入112260亿元,同比增长$16.6\\%$,主营业务收入利润率为$5.31\\%$;外商及港澳台投资企业实现主营业务收入50191亿元,同比增长$7.2\\%$,主营业务收入利润率为$5.01\\%$;私营企业实现主营业务收入60020亿元,同比增长$23.9\\%$,主营业务收入利润率为$5.44\\%$。", "question": "从2011年1-3月到2012年1-3月,规模以上工业企业中,主营业务收入同比增长金额最大的是(  )。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 集体企业\nC. 股份制企业\nD. 私营企业", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 186664, "human_acc": 71.7781682595, "source": "2013年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 25, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 3888231, "material": "2020年全年粮食种植面积11677万公顷,比上年增加70万公顷。其中,稻谷种植面积3008万公顷,增加38万公顷;小麦种植面积2338万公顷,减少35万公顷;玉米种植面积4126万公顷,减少2万公顷。棉花种植面积317万公顷,减少17万公顷。油料种植面积1313万公顷,增加20万公顷。糖料种植面积157万公顷,减少4万公顷。\n\n        全年粮食产量66949万吨,比上年增加565万吨,增产0.9%。其中,夏粮产量14286万吨,占全年粮食产量的比重与上年持平;早稻产量2729万吨,增产3.9%;秋粮产量49934万吨,增产0.7%。全年谷物产量61674万吨,比上年增产0.5%。其中,稻谷产量21186万吨,增产1.1%;小麦产量13425万吨,每公顷产量同比增长2%;玉米产量26067万吨,持平略减。\n\n        全年棉花产量591万吨,比上年增产0.4%。油料产量3585万吨,增产2.6%。糖料产量12028万吨,减产1.2%。茶叶产量297万吨,增产7.1%。\n\n        全年猪牛羊禽肉产量7639万吨,比上年下降0.1%。其中,猪肉产量4113万吨,下降3.3%;牛肉产量672万吨,增长0.8%;羊肉产量492万吨,增长1.0%;禽肉产量2361万吨,增长5.5%。禽蛋产量3468万吨,增长4.8%。牛奶产量3440万吨,增长7.5%。年末生猪存栏40650万头,比上年末增长31.0%;全年生猪出栏52704万头,比上年下降3.2%。\n\n        全年水产品产量6545万吨,比上年增长1.0%。其中,养殖水产品产量5215万吨,增长3.0%;捕捞水产品产量1330万吨。\n\n        全年木材产量8727万立方米,比上年下降13.1%。", "question": "2019年猪肉产量约是牛奶产量的多少倍?", "type": "单选题", "options": "A. 1.0\nB. 1.2\nC. 1.3\nD. 1.8", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 81195, "human_acc": 73.3431861568, "source": "2021下半年省考第十六季行测模考大赛(陕西卷)第119题", "difficulty": 4, "formulas": 0, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 4675118, "material": "Y市地区生产总值从2000年的105.05亿元增长至2020年的4089.66亿元,占S省全省比重从2000年的5.8%提升至2020年的15.6%,提高了9.8个百分点。\n\n        2000年,Y市农林牧渔业总产值24.01亿元,2020年农林牧渔业总产值484.53亿元,是2000年的20.2倍。2020年粮食播种面积719.33千公顷,较2000年增加225.57千公顷。2020年粮食产量253.80万吨,较2000年增加182.90万吨;蔬菜产量122.54万吨,较2000年增加106.50万吨。\n\n        2020年,Y市规模以上工业总产值4712.98亿元,是2000年的152.2倍,年均增长28.6%。其中,煤炭开采和洗选业产值占规模以上工业总产值的比重为47.9%,较2000年提高46.4个百分点。2020年实现工业增加值2423.45亿元,占S省全省的27.4%,较2000年提高21.0个百分点。2020年规模以上工业企业数量992户,较2000年增加852户。其中,2020年规模以上工业大中型企业数量146户,较2000年增加128户。\n\n        2020年,Y市完成地方财政收入406.22亿元,是2000年的66.1倍。2020年地方财政支出707.32亿元,是2000年的54.4倍。城镇居民人均可支配收入由2000年的3505元到2017年突破三万元大关,2020年达到35682元,是2000年的10.2倍,年均增长12.3%。农村居民人均可支配收入由2000年的1062元到2016年突破万元大关,2020年达到14319元,是2000年的13.5倍,年均增长13.9%。", "question": "2000年,Y市粮食平均每公顷产量约为:", "type": "单选题", "options": "A. 3.5吨\nB. 0.35吨\nC. 1.4吨\nD. 0.14吨", "choice": "C", "keypoints": "基期平均数;文字资料", "most_wrong": "D", "human_count": 241931, "human_acc": 67.4059959245, "source": "2022上半年省考第二季行测模考大赛(四川卷)第91题", "difficulty": 5, "formulas": 0, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 541339, "material": "2013年3月末,金融机构人民币各项贷款余额65.76万亿元,同比增长$14.9\\%$,增速比上年同期低0.8个百分点。\n\n       2013年3月末,主要金融机构及小型农村金融机构,外资银行人民币小微企业贷款余额11.78万亿元,同比增长$13.5\\%$,比全部企业贷款余额增速高1.2个百分点。\n\n       2013年3月末,主要金融机构本外币工业中长期贷款余额6.46万亿元,同比增长$3.2\\%$。其中,轻工业中长期贷款余额6824亿元,同比增长$7.6\\%$;重工业中长期贷款余额5.77万亿元,同比增长$2.7\\%$,服务业中长期贷款余额16.55万亿元,同比增长$8.9\\%$。\n\n       2013年3月末,主要金融机构及小型农村金融机构、村镇银行、财务公司本外币农村贷款余额15.24万亿元,同比增长$18.4\\%$;农户贷款余额3.86万亿元,同比增长$16.9\\%$;农业贷款余额2.87万亿元,同比增长$12.3\\%$。\n\n       2013年3月末,主要金融机构及小型农村金融机构、外资银行人民币房地产贷款余额12.98万亿元,同比增长$16.4\\%$。地产开发贷款余额1.04万亿元,同比增长$21.4\\%$。房产开发贷款余额3.2万亿元,同比增长$12.3\\%$。个人购房贷款余额8.57万亿元,同比增长$17.4\\%$。保障性住房开发贷款余额6140亿元,同比增长$42.4\\%$。", "question": "2013年3月末,各项贷款余额从高到低排序正确的是:", "type": "单选题", "options": "A. 农户贷款余额、地产开发贷款余额、农业贷款余额\nB. 房产开发贷款余额、地产开发贷款余额、轻工业中长期贷款余额\nC. 服务业中长期贷款余额、农户贷款余额、重工业中长期贷款余额\nD. 重工业中长期贷款余额、轻工业中长期贷款余额、房产开发贷款余额", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 693333, "human_acc": 85.7404739137, "source": "2014年河南省选调生选拔考试 《行政职业能力测验》试卷(精选)第118题", "difficulty": 5, "formulas": 14, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 5708589, "material": "2020年,上海市房地产开发投资稳步增长,完成投资4698.75亿元,比上年增长11.0%。从房屋类型看,全市住宅投资2418.79亿元,比上年增长4.3%;办公楼投资833.08亿元,增长20.8%;商业用房投资559.85亿元,增长22.4%。\n\n        2020年,全市房屋施工面积15740.34万平方米,比上年增长6.3%。其中,房屋新开工面积3440.62万平方米,增长12.3%。从房屋类型看,住宅新开工面积1756.37万平方米,增长11.7%,增速比上年提高4.9个百分点;商办新开工面积752.79万平方米,增长11.4%。\n\n        2020年,房屋竣工面积经历了连续两年的下降后止跌回升。全市房屋竣工面积2877.78万平方米,比上年增长7.8%。其中,住宅竣工面积1627.61万平方米,增长12.0%;商办竣工面积545.52万平方米,下降6.6%。\n\n        2020年,全市新建房屋销售面积1789.16万平方米,比上年增长5.5%。其中,住宅销售面积1434.07万平方米,增长5.9%;商办销售面积185.42万平方米,下降2.1%。虽然市场化住宅销售量增加,但由于保障性住宅和商办销售规模下降,因此全部房屋销售面积小幅增长。", "question": "2018年上海市住宅新开工面积约为多少万平方米?", "type": "单选题", "options": "A. 1672\nB. 1572\nC. 1472\nD. 1372", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 76738, "human_acc": 70.0917407282, "source": "2023下半年省考第十七季行测模考大赛(陕西卷)第117题", "difficulty": 4, "formulas": 0, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 2440284, "material": "2018年1-10月份,全国房地产开发投资99325亿元,同比增长$9.7\\%$,增速比1-9月份回落0.2个百分点。其中,住宅投资70370亿元,增长$13.7\\%$,增速回落0.3个百分点。住宅投资占房地产开发投资的比重为$70.8\\%$。\n\n        1-10月份,东部地区房地产开发投资53136亿元,同比增长$10.8\\%$,增速比1-9月份回落0.2个百分点;中部地区投资20755亿元,增长$7.1\\%$,增速回落1.3个百分点;西部地区投资21254亿元,增长$8.4\\%$,增速提高0.9个百分点;东北地区投资4180亿元,增长$15.6\\%$,增速回落0.9个百分点。\n\n        1-10月份,商品房销售面积133117万平方米,同比增长$2.2\\%$,增速比1-9月份回落0.7个百分点。其中,住宅销售面积增长$2.8\\%$,办公楼销售面积下降$10.5\\%$,商业营业用房销售面积下降$2.8\\%$。商品房销售额115913亿元,增长$12.5\\%$,增速回落0.8个百分点。其中,住宅销售额增长$15.0\\%$,办公楼销售额下降$6.5\\%$,商业营业用房销售额增长$1.7\\%$。\n\n        1-10月份,东部地区商品房销售面积53545万平方米,同比下降$4.7\\%$,降幅比1-9月份扩大0.4个百分点;销售额61680亿元,增长$5.4\\%$,增速回落0.6个百分点。中部地区商品房销售面积37733万平方米,增长$8.7\\%$,增速回落1.5个百分点;销售额25380亿元,增长$21.1\\%$,增速回落1.6个百分点。西部地区商品房销售面积35430万平方米,增长$21.1\\%$,增速回落0.3个百分点;销售额24165亿元,增长$26.0\\%$,增速回落0.6个百分点。东北地区商品房销售面积6409万平方米,下降$4.7\\%$,降幅扩大1.2个百分点;销售额4688亿元,增长$7.2\\%$,增速回落2.5个百分点。\n\n        10月末,商品房待售面积52789万平方米,比9月末减少401万平方米。其中,住宅待售面积减少321万平方米,办公楼待售面积减少19万平方米,商业营业用房待售面积减少46万平方米。", "question": "2018年1-10月,在东部、中部、西部、东北四个地区中,商品房销售单价与全国变化相同的有几项?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "D", "keypoints": "两期平均数比较;文字资料", "most_wrong": "B", "human_count": 201406, "human_acc": 67.0387178138, "source": "2019年青海省法院、检察院录用考试《行测》题第117题", "difficulty": 4, "formulas": 23, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "两期平均数比较"], ["资料分析", "文字资料"]]}, {"id": 2262592, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "下列省区市中,2013年固定资产投资总量位居第二位的是:", "type": "单选题", "options": "A. 四川\nB. 重庆\nC. 内蒙古\nD. 广西", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 4802, "human_acc": 70.074968763, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第92题", "difficulty": 5, "formulas": 9, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 2271258, "material": "2010年年底登录过手机淘宝的用户数仅有1000万户。2013年年底,手机淘宝的用户数突破4亿户。2012年在手机淘宝的用户中,产生过购物行为的用户有5700万户,每小时通过手机淘宝卖出的商品超过22万件;平均每天有928万人在手机淘宝上搜索商品;每天还有超过466万人在手机淘宝上查询物流信息;每天有159.5万人在手机淘宝上收藏商品和店铺,382万人在使用手机淘宝上的购物车功能。还有更多用户则是把手机淘宝当成“碎片化”时间中的生活消遣,或是在上下班空闲时间进行商品查询,或是在逛街购物时进行比价。\n\n        2012年11月11日,手机淘宝创造了日支付宝交易金额的年度峰值——9.4亿元,当日的独立访问量达到6485万次。2013年11月11日,手机淘宝支付宝交易额53.3亿元,独立访问用户量1.27亿户。分析认为,我国移动电子商务发展如此迅速的原因主要有手机上网用户数量攀升、廉价智能手机及平板电脑的大量普及、上网速度更快、无线宽带资费下调等。同时,传统电商沉淀也为移动电子商务的发展奠定了基础。\n\n        2012年,一线城市中北京、上海、广州、深圳访问过手机淘宝的用户平均增长率为$146\\%$;贵阳、长沙、成都、重庆等二线城市手机淘宝访问用户的平均增长率为$167\\%$;延安、常德、张家界、岳阳等三线、四线城市的用户平均增长率高达$180\\%$和$203\\%$,成为手机“淘宝”新增用户的主要来源,其中濮阳和铜仁市成为三、四线城市中用户同比增幅最大的城市,增长率分别达到$281\\%$和$286\\%$。", "question": "2013年11月11日,手机淘宝独立访问用户人均支付宝交易额比去年同期增加约:", "type": "单选题", "options": "A. 14.19元\nB. 20.52元\nC. 27.64元\nD. 42.13元", "choice": "C", "keypoints": "平均数的增长量;文字资料", "most_wrong": "D", "human_count": 10463, "human_acc": 85.8358023511, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第86题", "difficulty": 3, "formulas": 6, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 2676488, "material": "2017年,我国文化产品和服务进出口总额1265.1亿美元,同比增长$11.1\\%$。其中,文化产品进出口总额971.2亿美元,同比增长$10.2\\%$。文化服务进出口总额293.9亿美元,同比增长$14.4\\%$。\n\n        文化产品方面,出口881.9亿美元,同比增长$12.4\\%$;进口89.3亿美元,同比下降$7.6\\%$。出口的技术含量有所提升,具有较高附加值的游艺器材和娱乐用品、广播电影电视设备出口同比增长$19.4\\%$,占比提升2个百分点至$34.5\\%$。美国、中国香港、荷兰、英国和日本为中国文化产品进出口前五大市场,进出口额合计占比为$55.9\\%$。这样比较上年下降1.8个百分点。我国与“一带一路”沿线国家进出口额达到176.2亿美元,同比增长$18.5\\%$,占比提高1.2个百分点至$18.1\\%$;与金砖国家进出口额43亿美元,同比增长$48\\%$。\n\n        文化服务方面,进口232.2亿美元,同比增长$20.5\\%$。其中视听及相关产品许可费、著作权等研发成果使用费进口分别同比增长$52.1\\%$和$18.9\\%$。出口61.7亿美元,同比下降$3.9\\%$;其中处于核心层的文化和娱乐服务、研发成果、使用费、视听及相关产品许可费等三项服务出口15.4亿美元,同比增长$25\\%$,占比增提升5.7个百分点至$24.9\\%$。", "question": "若保持2017年同比增速不变,我国文化产业和服务进出口总额将在哪年突破1500亿美元?", "type": "单选题", "options": "A. 2018年\nB. 2019年\nC. 2020年\nD. 2021年", "choice": "B", "keypoints": "现期追赶;文字资料", "most_wrong": "C", "human_count": 5795, "human_acc": 83.9171699741, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第116题", "difficulty": 4, "formulas": 17, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 2565915, "material": "2020年1-3月,全国造船完工量700万载重吨,同比下降$27.3\\%$,其中海船为196万修正总吨;新承接船舶订单量489万载重吨,同比增长$6.5\\%$,其中海船为170万修正总吨。截至3月底,手持船舶订单量7955万载重吨,同比下降$5.6\\%$,其中海船为2606万修正总吨,出口船舶占总量的$92\\%$。1-3月,我国造船完工量、新接订单量、手持订单量以载重吨计分别占世界市场份额的$30.4\\%$、$65.5\\%$和$46.8\\%$。\n\n        2019年1-9月,全国造船完工量2936万载重吨,同比增长$6.7\\%$,其中海船为848万修正总吨;新承接船舶订单量1947万载重吨,同比下降$27.4\\%$,降幅较上半年收窄19.5个百分点,新接海船为520万修正总吨。截至9月底,手持船舶订单量7941万载重吨,同比下降$8.2\\%$,其中海船为2601万修正总吨,出口船舶占总量的$91.9\\%$。今年1-9月份,我国造船完工量、新接订单量、手持订单量以载重吨计分别占世界市场份额的$37.8\\%$、$46.6\\%$和$43.1\\%$,继续保持国际领先。\n\n        2019年1-3月,全国造船完工量962万载重吨,同比增长$12.8\\%$,其中海船为292万修正总吨;新承接船舶订单量459万载重吨,同比下降$70.4\\%$,其中海船为168万修正总吨。截至3月底,手持船舶订单量8428万载重吨,同比下降$10.0\\%$,其中海船为2738万修正总吨,出口船舶占总量的$90.8\\%$。1-3月,我国造船完工量、新接订单量、手持订单量以载重吨计分别占世界市场份额的$35.5\\%$、$41.5\\%$和$42.4\\%$。", "question": "2020年1-3月,全国造船完工量比2018年同期约下降多少万载重吨?", "type": "单选题", "options": "A. 135\nB. 153\nC. 226\nD. 262", "choice": "B", "keypoints": "间隔增长量;文字资料", "most_wrong": "D", "human_count": 24811, "human_acc": 62.4037725203, "source": "2020年上半年省考第三十一季行测模考大赛(陕西卷)第86题", "difficulty": 5, "formulas": 21, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长量", "间隔增长量"], ["资料分析", "文字资料"]]}, {"id": 4652178, "material": "2019年A市专利密集型产业实现增加值6918.8亿元,比上年增长9.6%,分别高于战略性新兴产业、高技术产业增加值增速2.3个和1.7个百分点;专利密集型产业增加值占GDP的比重为19.5%,比上年提高0.4个百分点。\n\n        2019年专利密集型产业发明专利申请量占专利申请总量的比重为66%,比规模以上重点企业高5.1个百分点。专利密集型产业每亿元R&D经费产生的发明专利申请量为73.1件,比规模以上重点企业高3.6件;企业户均拥有有效发明专利15.6件,是规模以上重点企业的2.2倍。从成果转化看,已被成功实施的发明专利数为5.2万件,占有效发明专利数的58.4%。\n\n        在专利密集型产业中,2019年信息通信技术服务业实现营业收入10198.5亿元,增速达41.3%;实现利润197.6亿元,比上年增长1倍;单位企业实现营业收入12亿元,是专利密集型产业平均水平的3.3倍。\n\n        在专利密集型产业中,2019年医药医疗产业营业收入、利润分别增长13.7%和5%;收入利润率达到17%,高于专利密集型产业平均水平4.1个百分点;单位企业营业收入、利润分别为4.5亿元和0.76亿元。", "question": "2019年A市专利密集型产业企业户均拥有已被成功实施的发明专利约多少件?", "type": "单选题", "options": "A. 9\nB. 10\nC. 11\nD. 12", "choice": "A", "keypoints": "现期比重;现期平均数;文字资料", "most_wrong": "B", "human_count": 546011, "human_acc": 68.6817664846, "source": "2022年北京市公务员录用考试《行测》题(网友回忆版)第128题", "difficulty": 4, "formulas": 0, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 2603931, "material": "1. 3D地绘是近年非常流行的一种视觉艺术形式,在地绘作品中,地面常会化身悬崖、裂谷、深坑或是孤岛,露出奇异的“地下世界”。地绘作品为什么能给原本____________的地面赋予如此魔力呢?这要从人们对空间的感知说起。\n\n2. 为了理解3D地绘的原理,我们先了解人脑如何产生深度知觉。外部世界是三维立体的,但是它在我们的视网膜上留下的投影却是二维的。我们最终仍能感知到立体的世界,这是因为大脑会自动利用视觉信息中的各种深度线索,“重建”出立体的感知。\n\n3. 深度知觉的线索分为两类。一类是单眼线索,通过一只眼睛的视觉信息就可获得,最常见的单眼线索就是线条透视以及物体的相对大小。色调和光影也会带来重要的空间信息。高光部分会被知觉认为离我们较近,阴影的部分则会被认为离我们较远。另外,由于空气散射的存在,当物体离我们较远的时候,它的对比度和色彩饱和度都会下降,呈现出一种“雾蒙蒙”的样子。除了静态的信息之外,运动也会产生立体感。当我们处于运动状态时,较近的物体在视野中移动得较快,较远的物体则移动得较慢。\n\n4. 大脑感知深度时还会整合来自两只眼睛的信息,这类线索被称为双眼线索。成年人两眼间约有6厘米间隔,即使来自同一光源的光线,它们在两眼视网膜上留下的投影也会有细微差别。大脑会自动监测这样的差别,并据此做出深度判断。在观看较近的物体时,眼外肌也会帮助调整双眼,让视线汇聚到物体上,这种肌肉运动的信息也可以作为深度判断的依据。\n\n5. 由于深度感知的重要性,大脑对各种线索的加工非常熟练,瞬间就能建立起深度感知。正因如此,大脑在立体感方面也易“受骗”,只要营造出恰好带有深度线索的视觉刺激,在平面上也可以产生种种逼真的3D效果。在各种视觉艺术中,都可以看到很多“欺骗”大脑产生立体感的技术,比如3D电影就借助偏光镜片人为地制造出了双眼视差,进而诱导出立体感。而绘画类的艺术作品则主要依赖单眼线索,通过各种技法表现和强化透视、光影等空间线索。\n\n6. 在这一点上,地绘和传统的绘画作品本质上其实是一样的。它的独特之处在于,作品不是正面悬挂于观赏者的眼前,而是“躺”在地面上,与观察者的视线存在一个角度。地绘艺术家会预先设计好一个位置,使得观察者站在这里观看时,图像恰好能在他们眼中形成理想的投影。地绘作品往往会与周围的环境相结合,这也进一步强化了现实感,产生艺术与现实交融的奇妙体验。不过,一旦改变了观测角度,就不会有这样完美的立体效果了。\n\n7. 恐高确实是常见现象。这种恐惧倾向具有适应意义,它能够帮助我们回避危险的情境。不过,从实证的角度来看,目前我们还缺乏决定性的证据,因此在恐高究竟是不是一种本能这个问题上,还无法得出确定的结论。\n\n8. 在这方面,最有名的研究是心理学家艾莲诺·吉布森1960年发表的“视崖”实验。在实验中,研究者用玻璃板和格纹花布搭建起了一个视觉上的“悬崖”:透过玻璃,可以看到下方的“深渊”,但不会真的跌落下去。实验表明,婴儿在能爬行的年龄就已具备深度知觉,能够分辨出两边的差异。不过,仅凭这个实验尚不足以证明对于高度的恐惧是天生的。比如实验中使用的婴儿已经具备了一定的运动经验,对于高度的恐惧也可能是在探索肢体运动的过程中习得的。\n\n9. 总之,学术界还没有确定恐高是否属于人类的本能。成人的恐高程度也存在很大的个体差异。人群中约有$5\\%$属于临床意义上的恐高症,有$30\\%$存在未达到临床程度的恐高。也有部分人群如具有感官刺激寻求人格特质的人,不但不恐高还很享受高度带来的刺激。看完3D地绘后谈笑风生毫不紧张,你可能拥有“不畏高的头脑”。无论如何,这都不妨碍我们欣赏地绘艺术家的神奇创造。", "question": "下列各项关于恐高说法错误的是:", "type": "单选题", "options": "A. 有感官刺激寻求人格特质的人可能喜欢蹦极\nB. 吉布森实验说服力不够因为婴儿有运动经验\nC. 半数以上的成人不会患恐高症对高度不敏感\nD. 3D地绘可能令恐高的人感到紧张或者害怕", "choice": "C", "keypoints": "", "most_wrong": "B", "human_count": 13566, "human_acc": 75.755565384, "source": "2021年国考第十季行测模考大赛(副省级)第54题", "difficulty": 4, "formulas": 2, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 5606315, "material": "", "question": "古人教育孩子,给孩子启蒙的教材很多。下列不属于古代启蒙教材的是(    )。", "type": "单选题", "options": "A. 《三字经》\nB. 《仓颉篇》\nC. 《增广贤文》\nD. 《熹平石经》", "choice": "D", "keypoints": "文化常识", "most_wrong": "C", "human_count": 36791, "human_acc": 46.6418417548, "source": "2023下半年省考第七季行测模考大赛(四川卷)第9题", "difficulty": 6, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 2028302, "material": "", "question": "司马谈《论六家要旨》:“___博而寡要,劳而少功,是以其事难尽从;然其序君臣父子之礼,列夫妇长幼之别,不可易也。___俭而难遵,是以其事不可遍循;然其强本节用,不可废也。___严而少恩;然其正君臣上下之分,不可改矣。___使人俭而善失真;然其正名实,不可不察也。”\n\n①②③④处应分别填入:", "type": "单选题", "options": "A. 儒家、墨家、道家、法家\nB. 道家、名家、墨家、儒家\nC. 儒家、墨家、法家、名家\nD. 儒家、法家、兵家、名家", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 1864929, "human_acc": 73.8230785193, "source": "2017年国家公务员录用考试《行测》题(副省级)第8题", "difficulty": 4, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 11203, "material": "", "question": "以下对中国封建社会一些专有名词的解释准确的是:", "type": "多选题", "options": "A. 秦朝“三公”“九卿”中的“三公”,为丞相、太尉和御史大夫\nB. 隋朝“三省”“六部”中的“三省”,为中书省、门下省和尚书省\nC. 明朝科考“八股文”规定每篇由破题、承题、起讲、领题等组成\nD. 清朝“连中三元”即在乡试、会试、殿试三次考试中均名列前茅", "choice": "AB", "keypoints": "中国历史", "most_wrong": "C", "human_count": 12117, "human_acc": 12.9900140299, "source": "2009年山东省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 4695857, "material": "", "question": "关于大数据分析,下列哪一表述是不正确的?", "type": "单选题", "options": "A. 大数据分析经常用来进行预测性分析\nB. 大数据分析会经常采用抽样调查的方法来分析数据\nC. 大数据分析能分析语音和图像的数据\nD. 大数据分析需要在大量的经过专业处理后数据基础上进行分析", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 6522, "human_acc": 63.4774609016, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第6题", "difficulty": 4, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 5361245, "material": "", "question": "下列与二十四节气有关的说法,有误的是(    )。", "type": "单选题", "options": "A. 惊蛰是第一个节气\nB. 清明过后紧接着的节气是谷雨\nC. 在青岛,小满、大暑的昼夜长短相同\nD. 有五个节气反映了温度变化", "choice": "A", "keypoints": "自然常识", "most_wrong": "C", "human_count": 281079, "human_acc": 47.7211033197, "source": "2022下半年省考第十七季行测模考大赛(四川卷)第11题", "difficulty": 6, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 2692355, "material": "", "question": "下列关于生活中的材料,说法不正确的是(    )。", "type": "单选题", "options": "A. 聚丙烯英文简称PP,其应用非常广泛\nB. 越王勾践剑的材料实际上是一种合金\nC. 钨在所有金属单质中熔点最高,适合做灯丝\nD. 生铁和钢都是铁的合金,生铁的含碳量低于钢", "choice": "D", "keypoints": "化学常识", "most_wrong": "C", "human_count": 180620, "human_acc": 54.9291329864, "source": "2021年国考第二十三季行测模考大赛(副省级)第13题", "difficulty": 6, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 2656417, "material": "", "question": "张小龙最喜欢吃土豆炖排骨和黄瓜炒鸡蛋,在土豆、猪、黄瓜、鸡四种生物中通常采用无性繁殖的是(    )。", "type": "单选题", "options": "A. 土豆\nB. 猪\nC. 黄瓜\nD. 鸡", "choice": "A", "keypoints": "生物常识", "most_wrong": "C", "human_count": 37272, "human_acc": 72.8428847392, "source": "2020年下半年省考第八季行测模考大赛(浙江卷)第78题", "difficulty": 4, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 2343359, "material": "", "question": "河北省是我国省级行政区。省会石家庄,截至2017年末,常住总人口7519.52万人。下辖11个地级市,20个县级市,95个县,6个自治县,47个市辖区。共有1970个乡镇,50201个村。下列哪一个不属于河北省的地级市?", "type": "单选题", "options": "A. 定州市\nB. 邢台市\nC. 衡水市\nD. 沧州市", "choice": "A", "keypoints": "国情社情", "most_wrong": "C", "human_count": 9997, "human_acc": 84.6153846154, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第17题", "difficulty": 4, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 2983, "material": "", "question": "李某酒后驾车在市内狂奔,连续冲撞数部车辆和行人,造成了一人死亡和多人受伤。李某的行为触犯了法律,严重危害了:", "type": "单选题", "options": "A. 公共安全\nB. 社会管理秩序\nC. 社会进步\nD. 国家安全", "choice": "A", "keypoints": "刑法", "most_wrong": "B", "human_count": 81689, "human_acc": 91.7149187773, "source": "2008年陕西省公务员录用考试《行测》题第117题", "difficulty": 3, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 2388196, "material": "", "question": "下列关于自然现象的解释,正确的一项是:", "type": "单选题", "options": "A. 冬天户外用嘴呼气冒“白气”,是汽化现象\nB. 白炽灯泡用久后玻璃泡壁变黑,是凝华现象\nC. 利用干冰进行人工增雨,干冰发生的变化属于液化现象\nD. 冬天房顶上的积雪虽没有融化,却逐渐减少,是蒸发现象", "choice": "B", "keypoints": "物理常识", "most_wrong": "C", "human_count": 781158, "human_acc": 47.8297604326, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第4题", "difficulty": 5, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 9031, "material": "", "question": "有关6岁儿童的行为措述不正确的一项是:", "type": "单选题", "options": "A. 6岁的儿童可以练长跑\nB. 6岁的儿童用石头把人打伤,应该由父母承担责任\nC. 6岁的儿童认知水平具有相对具体和刻板性特点\nD. 《关于开展全民义务植树运动的实施办法》中6岁以上的儿童在责任人协助下,每人每年植树3-5棵", "choice": "A", "keypoints": "生活常识", "most_wrong": "D", "human_count": 26586, "human_acc": 73.4747611525, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 4733953, "material": "", "question": "麦克风:话筒", "type": "单选题", "options": "A. 付账:买单\nB. 粉刺:青春痘\nC. 灯笼:走马灯\nD. 巧克力:糖果", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 6277, "human_acc": 25.26684722, "source": "2017年福建省选调生考试《行政职业能力测验》第77题", "difficulty": 5, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}, {"id": 2601, "material": "", "question": "柳絮:杨花", "type": "单选题", "options": "A. 松子:榆钱\nB. 月华:幽兰\nC. 芙蓉:荷花\nD. 菊花:银甲", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 53007, "human_acc": 46.193898919, "source": "2008年辽宁省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0}, {"id": 11963, "material": "", "question": "报警:警报", "type": "单选题", "options": "A. 来回:回来\nB. 书写:写书\nC. 给付:付给\nD. 开水:水开", "choice": "D", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 41134, "human_acc": 30.7798901152, "source": "2008年安徽省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 2261825, "material": "", "question": "成年儿子为治病借外债后不治离世,八旬老父毅然决定勇挑重担,替子还债,对此,正确的理解是:", "type": "单选题", "options": "A. 父债子还,子债父还,理所应当\nB. 这是一种道义责任,非法律责任\nC. 这是一种民事责任而非刑事责任\nD. 这是一种刑事责任而非民事责任", "choice": "B", "keypoints": "民法", "most_wrong": "C", "human_count": 9233, "human_acc": 64.3344525073, "source": "2017年湖北省选调生行测题(精选)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 3726749, "material": "", "question": "下列世界现代史事件,按照出现时间的先后顺序,排列正确的是(    )。\n\n①华盛顿会议召开\n\n②苏联解体\n\n③巴黎和会召开\n\n④共产国际成立\n\n⑤联合国成立", "type": "单选题", "options": "A. ③⑤④②①\nB. ③④①⑤②\nC. ④①⑤③②\nD. ④③②⑤①", "choice": "B", "keypoints": "世界历史", "most_wrong": "C", "human_count": 75007, "human_acc": 56.6680443159, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第29题", "difficulty": 5, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 13871, "material": "", "question": "下列对选举中的平等原则的理解错误的是:", "type": "单选题", "options": "A. 男女平等\nB. 一人一次一票\nC. 票的效力相等\nD. 地区平等", "choice": "D", "keypoints": "宪法", "most_wrong": "B", "human_count": 155052, "human_acc": 40.6231457834, "source": "2008年湖北省公务员录用考试《行测》题(B类)第87题", "difficulty": 5, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 43509, "material": "", "question": "中国人民银行决定,自2011年6月20日起,上调存款类金融机构人民币存款准备金率0.5个百分点,这也是本轮调控以来的第12次,今年以来第6次调升。上述举措的直接作用是:", "type": "不定项", "options": "A. 抑制过高的物价水平\nB. 调节国民收入的分配\nC. 增加国家的财政收入\nD. 调控流通中的货币量", "choice": "AD", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 11219, "human_acc": 49.7637935645, "source": "2012年上海市公务员录用考试《行测》题(B类)第90题", "difficulty": 5, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 2172290, "material": "", "question": "旱田作物:粮食作物:高产作物", "type": "单选题", "options": "A. 工业酒精:食用酒精:医用酒精\nB. 人民日报:光明日报:解放日报\nC. 领军人物:新闻人物:公众人物\nD. 脊椎动物:哺乳动物:高等动物", "choice": "C", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 1058939, "human_acc": 48.8352020277, "source": "2018年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第71题", "difficulty": 6, "formulas": 0, "history": [{"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}, {"id": 5585651, "material": "", "question": "主食:甜食", "type": "单选题", "options": "A. 剧团:戏班\nB. 商品:零食\nC. 戏剧:小说\nD. 动物:芍药", "choice": "B", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 43627, "human_acc": 49.1484631077, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 2034140, "material": "", "question": "律师:教授", "type": "单选题", "options": "A. 专家:吉林人\nB. 钢筋:房屋\nC. 歌手:乐队\nD. 人:社会", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 569161, "human_acc": 87.4676936754, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0}, {"id": 2021824, "material": "", "question": "流行:高尚", "type": "单选题", "options": "A. 专家:学者\nB. 勇敢:品德\nC. 树根:树叶\nD. 闰月:春季", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 532077, "human_acc": 52.6615508658, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第65题", "difficulty": 5, "formulas": 0}, {"id": 5289672, "material": "", "question": "陶器:酒器", "type": "单选题", "options": "A. 童鞋:凉鞋\nB. 主食:副食\nC. 卧椅:躺椅\nD. 官窑:哥窑", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 215948, "human_acc": 90.1254005594, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第91题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"]]}, {"id": 4651645, "material": "", "question": "下列行政执法文书部分内容的表述,符合《行政处罚法》等法律规定的是:", "type": "单选题", "options": "A. 某非法运营案件处罚决定书的违法事实:“非法经营客运出租汽车”\nB. 某治安行政案件的物品扣押清单:“宝马3系(320)小轿车一辆”\nC. 某交通事故认定书的事故地点:“312国道南京方向286公里处”\nD. 某广告违法案件处罚决定书的法律依据:“依据《广告法》相关规定”", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 474689, "human_acc": 24.3506801295, "source": "2022年江苏省公务员录用考试《行测》题(B类)(网友回忆版)第10题", "difficulty": 5, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 5403999, "material": "", "question": "为了加强黄河流域生态环境保护,保障黄河安澜,推进水资源节约集约利用,推动高质量发展,保护传承弘扬黄河文化,2022年10月30日,中华人民共和国第十三届全国人民代表大会常务委员会第三十七次会议通过《中华人民共和国黄河保护法》,自2023年4月1日起施行。关于该法的规定,下列说法不正确的是(    )。", "type": "单选题", "options": "A. 黄河流域建立省际河湖长联席会议制度。各级河湖长负责河道、湖泊管理和保护相关工作\nB. 国家建立以国家发展规划为统领,以空间规划为基础,以专项规划、区域规划为支撑的黄河流域规划体系\nC. 不得在黄河流域重要典型生态系统的完整分布区、生态环境敏感区设立国家公园\nD. 在黄河流域取用水资源,应当依法取得取水许可", "choice": "C", "keypoints": "其他法律法规", "most_wrong": "D", "human_count": 151342, "human_acc": 51.8606863924, "source": "2023年国考第四十七季行测模考大赛(行政执法类)第13题", "difficulty": 6, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 5540174, "material": "", "question": "新年前夕,国家主席习近平通过中央广播电视总台和互联网,发表二〇二三年新年贺词。下列成就在贺词中未提及的是(    )。", "type": "单选题", "options": "A. 全年国内生产总值预计超过120万亿元\nB. 白鹤滩水电站全面投产\nC. “墨子号”实现1200公里地表量子态传输\nD. 我国粮食生产实现“十九连丰”", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 37471, "human_acc": 39.4144805316, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第3题", "difficulty": 7, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 4276812, "material": "", "question": "自大革命时期开始,中国共产党就将改善民生、保障人民生存权作为重要任务。下列关于我国人权事业发展经历的选项中,错误的是(    )。", "type": "单选题", "options": "A. 大革命时期,中国共产党提出保障人权、解救民生,领导制定《中国土地法大纲》等文件,在拥有1亿多人口的解放区开展土地改革,实行耕者有其田,消灭了封建生产关系\nB. 新中国成立后,制定我国第一部社会主义类型的宪法,为中国人权事业发展奠定了根本政治前提和制度基础\nC. 改革开放以来,中国共产党领导中国人民开辟中国特色社会主义道路,解放和发展了社会生产力,人民生存权、发展权和各项基本权利得到更好保障,中国人权事业得到大发展\nD. 十八大以来,中国特色社会主义进入新时代,在以习近平同志为核心的党中央领导下,脱贫攻坚目标任务如期完成,决胜全面建成小康社会取得决定性成就,中国人权事业全面发展", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 158342, "human_acc": 50.9959454851, "source": "2021下半年省考第二十二季行测模考大赛(广东县级卷)第12题", "difficulty": 6, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 49507, "material": "", "question": "下列行为侵犯到他人知识产权的是:", "type": "单选题", "options": "A. 甲模仿某知名作家的写作风格创作小说并以该作家名字公开发表\nB. 甲因无法分辨真假销售某高仿皮具,但未给商标权利人造成损失\nC. 甲开发“A之C”游戏并公开销售,但“AC”商标的权利人是乙\nD. 甲申请注册“AC”琴行,“AC”二字与某知名电脑商标完全重合", "choice": "B", "keypoints": "经济法", "most_wrong": "A", "human_count": 1262300, "human_acc": 16.2858274578, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第15题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 20703, "material": "", "question": "编号为1~55号的55盏亮着的灯,按顺时针方向依次排列在一个圆周上,从1号灯开始顺时针方向留1号灯,关掉2号灯;留3号灯,关掉4号灯······这样每隔一盏灯关掉一盏,转圈关下去,则最后剩下的一盏亮灯编号是:", "type": "单选题", "options": "A. 50\nB. 44\nC. 47\nD. 1", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 233290, "human_acc": 50.2250417935, "source": "2012年江苏省公务员录用考试《行测》题(A类)第40题", "difficulty": 5, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 4687740, "material": "", "question": "甲与妻子乙常年在外地打工,但感情一直不和,乙提起了离婚诉讼,后法院将两人调解和好。一年后,两人又对老家房子的产权产生了分歧,最终又闹到了法院,甲邀请丙作为证人出庭。下列说法正确的是(    )。", "type": "单选题", "options": "A. 法院将两人的离婚案件调解和好,可不制作调解书\nB. 乙提起的离婚诉讼,应由两人老家所在地的人民法院管辖\nC. 涉及老家房子的诉讼,可由两人打工地的人民法院管辖\nD. 丙因作证产生的交通费、食宿费等应由甲最终承担", "choice": "A", "keypoints": "民事诉讼法", "most_wrong": "D", "human_count": 159030, "human_acc": 11.027479092, "source": "2022上半年省考第四季行测模考大赛(陕西卷)第9题", "difficulty": 7, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 5268722, "material": "", "question": "某单位组织一批党员进行参观展览活动,计划将党员随机分为四组,人数分别为20人、12人、12人、12人,然后聘请甲、乙、丙、丁4位解说员,每人带领一组进行解说。那么,本次参观展览活动安排方法数以下表示正确的是:", "type": "单选题", "options": "A. $\\frac{C_{56}^{20}\\times C_{36}^{12}\\times C_{24}^{12}\\times C_{12}^{12}}{A_{3}^{3}}\\times A_{4}^{4}$\nB. $C_{56}^{20}\\times C_{36}^{12}\\times C_{24}^{12}\\times C_{12}^{12}\\times A_{4}^{4}$\nC. $\\frac{A_{56}^{20}\\times A_{36}^{12}\\times A_{24}^{12}}{A_{3}^{3}}\\times A_{4}^{4}$\nD. $A_{56}^{20}\\times A_{36}^{12}\\times A_{24}^{12}\\times A_{4}^{4}$", "choice": "A", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 141381, "human_acc": 18.2110750384, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第65题", "difficulty": 7, "formulas": 611, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 20009, "material": "", "question": "下列做法符合《劳动合同法》相关规定的是:", "type": "单选题", "options": "A. 甲经过培训仍不能胜任现工作,单位决定和他解除劳动合同\nB. 劳动合同期满,丁所在用人单位不愿意续订劳动合同,该用人单位不必支付经济补偿\nC. 在试用期内,单位和劳动者都可以随时通知对方解除劳动合同,而不需要承担赔偿责任\nD. 乙和某单位签订了劳动合同的补充协议,约定由于该单位给乙解决了本地户口,乙必须在该单位工作满三年,否则应向单位支付违约金", "choice": "A", "keypoints": "劳动法", "most_wrong": "B", "human_count": 240748, "human_acc": 41.3436456378, "source": "2010年贵州省公务员录用考试《行测》题第105题", "difficulty": 6, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 1587221, "material": "", "question": "某单位共有10个进修的名额分到下属科室,每个科室至少一个名额,若有36种不同分配方案,问该单位最多有多少个科室?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 256451, "human_acc": 51.7599853383, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 2576025, "material": "", "question": "有甲、乙、丙、丁、戊5个保洁员被派到赵、钱、孙、李、周5个家庭中去做保洁,每个家庭只能有一个保洁员,每个保洁员只能去一个家庭。已知:\n\n(1)如果乙、丙或戊去孙家,则丁去赵家;\n\n(2)如果乙或丙去周家,则甲去钱家或李家;\n\n(3)甲去赵家。 \n\n由此可以推出:", "type": "单选题", "options": "A. 乙去孙家\nB. 戊去周家\nC. 丙去李家\nD. 丁去钱家", "choice": "B", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 262364, "human_acc": 71.5993810126, "source": "2021年国考第八季行测模考大赛(副省级)第114题", "difficulty": 4, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 5372059, "material": "", "question": "千家万户美好生活的前提是就业大局稳定。某市要追求千家万户美好生活,因此该市必须要确保就业大局稳定。\n\n下列选项的逻辑结构与题干最相似的是(    )。", "type": "单选题", "options": "A. 职业教育是贫困家庭的学生打开成功大门的必要条件。贫困家庭的学生可以通过职业教育打开成功的大门,因此职业教育扶贫是成效最显著的扶贫方式\nB. 乡村振兴必须坚决贯彻以人民为中心的发展思想。只有那些充分考虑农民利益的公共决策,才能真真切切地体现出以人民为中心的发展思想\nC. 网络文艺行业要想高质量发展必须要主动适应新的政策要求。网络文艺工作者希望本行业能高质量发展,因此他们必须去主动适应新的政策要求\nD. 体育生实现人生转型离不开文化教育。文化教育让学生有更丰富的知识和视野,因此重视文化教育有助于体育生实现人生转型", "choice": "C", "keypoints": "推理形式", "most_wrong": "A", "human_count": 11840, "human_acc": 79.2314189189, "source": "2022下半年省考第十八季行测模考大赛(广东县级卷)第74题", "difficulty": 4, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 5509934, "material": "", "question": "某公路隧道长1500米,一辆公共汽车匀速从隧道通过,测得公共汽车从开始进入隧道到车身完全驶出隧道用时151秒,整辆公共汽车完全在隧道里的时间为149秒,则公共汽车的车身长度和行驶速度分别为:", "type": "单选题", "options": "A. 8米;5米/秒\nB. 10米;10米/秒\nC. 10米;15米/秒\nD. 12米;20米/秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 229314, "human_acc": 73.3339438499, "source": "2023年辽宁省公务员录用考试《行测》题(网友回忆版)第62题", "difficulty": 4, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 4663020, "material": "", "question": "2022年,小张和小李的年龄和为48岁。五年前,小张的年龄是小王年龄的1.5倍;四年后,小李的年龄是小王年龄的$\\frac{1}{3}$。问2022年小王的年龄为多少岁?", "type": "单选题", "options": "A. 12\nB. 24\nC. 29\nD. 33", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 141547, "human_acc": 59.3068026874, "source": "2021下半年省考第三十九季行测模考大赛(广东乡镇卷)第36题", "difficulty": 6, "formulas": 1, "history": [{"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 4517, "material": "", "question": "父亲今年44岁,儿子今年16岁,当父亲的年龄是儿子的年龄的8倍时,父子的年龄和是多少岁:", "type": "单选题", "options": "A. 36\nB. 54\nC. 99\nD. 162", "choice": "A", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 16717, "human_acc": 79.8408805408, "source": "2009年北京市公务员录用考试《行测》题(社招)第17题", "difficulty": 5, "formulas": 0}, {"id": 5185, "material": "", "question": "哥哥5年后的年龄和弟弟3年前的年龄和是29岁,弟弟现在的年龄是两人年龄差的4倍。哥哥今年几岁?", "type": "单选题", "options": "A. 10\nB. 12\nC. 15\nD. 18", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 30233, "human_acc": 80.4551318096, "source": "2009年北京市公务员录用考试《行测》题(应届)第24题", "difficulty": 4, "formulas": 0}, {"id": 8161, "material": "", "question": "父亲与两个儿子的年龄和为84岁,12年后父亲的年龄等于两个儿子的年龄之和,请问父亲现在多少岁:", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 60", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 51483, "human_acc": 74.1837111279, "source": "2009年广东省公务员录用考试《行测》题第14题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "年龄问题"]]}, {"id": 1679270, "material": "", "question": "负迁移,是指一种知识技能的掌握干扰或抑制了另一种知识技能的掌握。也就是已掌握的知识经验使新的学习发生了困难。凡新旧刺激物十分相似而又要求学习者做出不同的反应时,就可能发生负迁移现象。\n\n根据上述定义,下列属于负迁移的是:", "type": "单选题", "options": "A. 已经懂得英语的人,就会很容易地掌握法语\nB. 爱好打篮球的小王,耽误了学习文化课的时间\nC. 不会骑自行车的人,学习骑摩托车就会很费力\nD. 学会汉语拼音,就会对学习英文音标产生干扰", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 241979, "human_acc": 95.9504750412, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第62题", "difficulty": 3, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 5509706, "material": "", "question": "轨道交通公司定期进行轨道检修工作,甲、乙两个工程队合作进行需4小时完成,甲队单独完成比乙队单独完成快15小时,则甲队单独完成需要的时间是:", "type": "单选题", "options": "A. 5小时\nB. 6小时\nC. 7小时\nD. 8小时", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 216750, "human_acc": 51.4283737024, "source": "2023年宁夏公务员录用考试《行测》题(网友回忆版)第56题", "difficulty": 3, "formulas": 0, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 2050518, "material": "", "question": "踢猫效应,是一种典型的负面情绪的传递机制:人的愤怒情绪和不满情绪,往往会沿着社会关系链条由强到弱依次传递,从金字塔尖—直传递至金字塔底层,而处在最底层的个体,往往由于无处发泄,成了最终的受害者,进而影响其行为。\n\n根据上述定义,下列最符合踢猫效应的是:", "type": "单选题", "options": "A. 淘气的小男孩在学校把另一位同学推倒了,老师批评他几句,他回家后跟家长哭了起来\nB. 李某出差把宠物狗委托邻居照看,因狗生病二人闹翻了脸,自此两家孩子也不一起玩了\nC. 一位母亲在单位受到领导的批评,回家后把淘气的女儿骂了一通,女儿把遥控器摔坏了\nD. 小明妈妈在公园门口卖饮料,有一位卖冰糕的女士经常对她发泄不满情绪,二人吵了起来", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 447732, "human_acc": 93.5537330367, "source": "2017年422联考《行测》题(吉林卷乙级)第68题", "difficulty": 5, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 5698766, "material": "", "question": "某款解密类游戏共有80个关卡,玩家登录游戏后会随机解锁一个关卡,当该关卡通过后立即随机解锁另一个关卡,如此反复。一定时间后,甲、乙、丙三人分别通过了56个、49个、63个关卡,问三人都通过的关卡至少有多少个?", "type": "单选题", "options": "A. 10\nB. 9\nC. 8\nD. 7", "choice": "C", "keypoints": "多集合反向构造", "most_wrong": "B", "human_count": 4447, "human_acc": 60.2653474252, "source": "2023下半年省考第十六季行测模考大赛(广东县级卷)第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 1541957, "material": "", "question": "某单位从下属的5个科室各抽调了一名工作人员,交流到其他科室,如每个科室只能接收一个人的话,有多少种不同的人员安排方式?", "type": "单选题", "options": "A. 120\nB. 78\nC. 44\nD. 24", "choice": "C", "keypoints": "错位排列", "most_wrong": "A", "human_count": 451348, "human_acc": 46.7865150615, "source": "2015年山东省公务员录用考试《行测》题第57题", "difficulty": 6, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 9041, "material": "", "question": "美国科学家的一份报告指出:滨海湿地生态系统每公顷每年创造的综合价值达4025美元,相当于同等面积的热带雨林的2倍,或其他森林的13倍,或草地的17倍,或农田的44倍。\n\n对句中“价值”的理解不正确的一项是:", "type": "单选题", "options": "A. 滨海湿地是具有丰富的生物多样性的特殊生态系统\nB. 滨海湿地对全球生态平衡具有不可替代的重要作用\nC. 滨海湿地有很高的生物生产力和重要的海岸防护功能\nD. 滨海湿地可以为沿海地区创造出很高的国民经济价值", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 37291, "human_acc": 58.7809391006, "source": "2009年安徽省公务员录用考试《行测》题第31题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 4734056, "material": "", "question": "据学校工作人员说,有新来的老师没有办理图书馆证。那么以下不能直接判断真假的是:\n\n①所有新来的老师都没办图书馆证\n\n②所有图书馆的老师都办了图书馆证\n\n③有的新来的老师办了图书馆证\n\n④有的新来的老师没有办理图书馆证", "type": "单选题", "options": "A. ①②\nB. ①②③\nC. ②③\nD. ③④", "choice": "B", "keypoints": "集合推理", "most_wrong": "D", "human_count": 4385, "human_acc": 54.4355758267, "source": "2017年福建省选调生考试《行政职业能力测验》第87题", "difficulty": 5, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 5292233, "material": "", "question": "暑假将至,小红想趁着假期报一个兴趣班,可是她舞蹈和美术都很喜欢,妈妈建议:“你已经很大了,骨头都长硬了,并不适合学舞蹈了,更适合学美术。”\n\n以下选项与题干中的问答方式最为相似的是:", "type": "单选题", "options": "A. 小刘是一名高一新生,在即将开始的选科中很犹豫,他喜欢地理,但是周围人都说生物更简单,对此他的好朋友说:“喜欢是最重要的,没有兴趣再简单你也学不出名堂。”\nB. 丽丽在午饭是点外卖还是自己做中纠结良久,朋友打电话过来说:“不是要一起吃饭吗?赶紧下来,我都订好位子了。”\nC. 妈妈在理发店万分纠结,不知道头发是染黑色还是染棕色好,小于说道:“不要染了吧,你才刚染没多久。”\nD. 苏苏大学即将毕业,不知道是毕业直接找工作还是考研,她的闺蜜给了建议:“你如果都想的话,可以一边找工作一边考研啊。”", "choice": "A", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18990, "human_acc": 68.0832016851, "source": "2022下半年省考第十一季行测模考大赛(江苏C卷)第93题", "difficulty": 4, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 50309, "material": "", "question": "政务公开是指政府的工作内容公开化,对于政府筹划或正准备进行的各项工作,分类进行公开,并对各项工作内容及进程予以公开,任何公民可以通过特定途径进行查询、监督。\n\n下列不属于政务公开的是:", "type": "单选题", "options": "A. D部门在门户网站建立公共政务服务信息库,进行网上咨询\nB. L县对人员考录、年度考核、表彰奖励等事项实行社会公示制\nC. X村通过政务公开栏展示企业项目承包情况和村现金收付表\nD. K市利用广播、电视等新闻媒体准确及时地发布春耕春播信息", "choice": "D", "keypoints": "拆词", "most_wrong": "C", "human_count": 204266, "human_acc": 80.3951710025, "source": "2013年河北省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 5703391, "material": "", "question": "小李和小张一起参加综艺对抗赛。要轮流从一个装有6个完全一样的球的袋中摸出一个球,这些球上分别标有数字1、2、3、4、5、6。两人各有10次机会。每次摸到球后重新放入袋中,如果小李摸到的是偶数球可以计1分,如果小张摸到的球上数字加1后大于5可以计1分。下列关于小李和小张获胜的概率的说法正确的是________。", "type": "单选题", "options": "A. 小李获胜概率较高\nB. 小张获胜概率较高\nC. 两者获胜概率一样高\nD. 两者获胜概率无法比较", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 91, "human_acc": 62.6373626374, "source": "2016年上海市行政执法类考试《行测》试题(网友回忆版)第56题", "difficulty": 4, "formulas": 0, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 5353408, "material": "", "question": "某停车场有1个公共充电桩,甲、乙两辆电动车会在上午7点到下午5点之间的任一时间开始充电。甲车充满电需要2小时,乙车充满电需要3小时,问甲、乙两车都不需要等待的概率是多少?", "type": "单选题", "options": "A. 37.5%\nB. 56.5%\nC. 62.5%\nD. 43.5%", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 9597, "human_acc": 35.5736167552, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第68题", "difficulty": 7, "formulas": 0, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 13445, "material": "", "question": "电子政府是指政府机构运用现代网络通讯与计算机技术,将其内部和外部的管理和服务职能通过精简、优化、整合、重组后到网上实现,打破时间、空间以及部门分隔的制约,为社会公众以及自身提供一体化的高效、优质、廉洁的管理和服务。\n\n根据上述定义,下列不属于电子政府的是:", "type": "单选题", "options": "A. 某市政府建立网络平台,将其原有全部的政务在网络上一一对应实现\nB. 某市政府内部实行办公系统自动化\nC. 某市政府建立内部信息化网络平台,使各部门实现信息共享\nD. 某市政府向社会组织和个人开辟网上申报系统", "choice": "B", "keypoints": "方式目的", "most_wrong": "D", "human_count": 17320, "human_acc": 75.3348729792, "source": "2009年福建省公务员录用考试《行测》题(春季)第72题", "difficulty": 5, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 3595740, "material": "", "question": "开化纸系明代纸名,又称开花纸、桃花笺,系用桑皮和楮皮或三桠皮混合为原料,经漂白后抄造而成。纸质细腻,洁白光润,帘纹不明显,纸薄而韧性好。可供印刷、书画或高级包装之用。开化纸原产地在浙江省开化县,史称“藤纸”,其工艺源于唐宋,至明清时期趋于纯熟,是清代最名贵的宫廷御用纸,举世闻名的《四库全书》就是用它印刷的。然而开化纸的制作工艺失传已逾百年,加上其制作技法从未在文献中记载流传过,所有的工艺只靠历代的纸匠口耳相传,秘不示人,所以,想要恢复开化纸,其难度真不亚于登蜀道。\n\n以下表述正确的是:", "type": "单选题", "options": "A. 开化纸代表了明清时期造纸的最高水平\nB. 开化纸在唐宋时期已经出现并日趋纯熟\nC. 《四库全书》因用开化纸印刷而名声大噪\nD. 由于种种原因恢复开化纸难度不容小觑", "choice": "D", "keypoints": "细节判断题", "most_wrong": "B", "human_count": 14448, "human_acc": 96.4285714286, "source": "2021下半年省考第六季行测模考大赛(山西卷)第58题", "difficulty": 3, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 4192714, "material": "", "question": "甲、乙两人在A地,丙在B地,三人同时出发,在A、B两地之间往返。当甲和丙第一次相遇时,乙距离B地960米;之后丙继续走了100米,和乙第一次相遇,此时,甲到达A、B两地中点,乙距离B地900米;当甲第一次到达B地时,乙距离B地360米,问A、B两地相距多少米?", "type": "单选题", "options": "A. 1280\nB. 1080\nC. 1440\nD. 1680", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 152977, "human_acc": 49.6793635645, "source": "2021下半年省考第二十一季行测模考大赛(广东乡镇卷)第42题", "difficulty": 6, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 2377335, "material": "", "question": "近年来,意大利面被冠上导致肥胖的坏名声,因此很多人在面对这种地中海饮食时,都抱有一种又恨又爱的纠结心情。然而,意大利地中海神经病学研究所通过对2.3万人的研究发现,意大利面不像很多人想象的那样会导致体重增加。而且,意大利面非但不会导致肥胖,还可以起到相反的效果——降低体脂率。研究结果显示,如果人们能够适量摄入,并保证饮食多样性,意大利面对人们的身体健康大有裨益。\n\n以下各项如果为真,能够支持上述结论的有(  )。", "type": "不定项", "options": "A. 面条中所含碳水化合物是导致肥胖的重要因素\nB. 没有研究显示意大利面会导致人群肥胖率上升\nC. 地中海饮食采用的橄榄油对身体健康大有益处\nD. 酌量食用意大利面能够维持人们理想的体脂率", "choice": "D", "keypoints": "补充论据", "most_wrong": "B", "human_count": 217610, "human_acc": 41.9925554892, "source": "2019年420联考《行测》题(陕西卷)(网友回忆版)第103题", "difficulty": 6, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 5563408, "material": "", "question": "在纷繁复杂的影视市场之中,观众需要专业指引和观看意见,____________________。伴随着“文娱领域综合治理”“清朗行动”的不断深入,影视控评现象有所改观。特别是《关于加强新时代文艺评论工作的指导意见》的推出,这方面的实践得到了进一步有序、健康的引导。文艺评论应当更加客观专业,把好方向盘,把更多有筋骨、有道德、有温度的优秀作品推介给读者观众,从艺术标准、社会价值出发,做好“引路人”。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 影评人要避免被利益裹挟敢说真话\nB. 影视营销正被行业重新认识和评估\nC. 让评分体系为广大观众所需所用\nD. 加强文艺评论工作显得尤为重要", "choice": "D", "keypoints": "开头", "most_wrong": "A", "human_count": 3957, "human_acc": 73.2120293151, "source": "2023下半年省考第二季行测模考大赛(河南卷)第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 5480641, "material": "", "question": "家长的功利化选择,与学校、社会对素质教育的误解,用等级证书等衡量“综合素质”等不科学的评价方式有关。素质教育被窄化为吹拉弹唱,综合素质评价变为“数证书”“数奖状”。正是这种环境催生了家长的功利化,不仅导致校外艺术培训虚火过旺,增加了家长的经济负担,也挤压了孩子自由生长的空间。所以,引导家长在尊重孩子兴趣的基础上选择艺术教育,还需要从规范招生入学政策、全面理解素质教育、改革综合素质评价方式出发,通过科学的评价方式引导艺术教育回归初衷。\n\n“这种环境”指代的是:", "type": "单选题", "options": "A. 艺术教育不科学的评价方式\nB. 对素质教育存在错误的认知\nC. 艺术教育功利化的社会环境\nD. 素质教育供给评价的一元化", "choice": "B", "keypoints": "代词", "most_wrong": "D", "human_count": 28118, "human_acc": 41.9446617825, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第80题", "difficulty": 7, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2188963, "material": "", "question": "我们常说,“字如其人”,就是说通过一个人写的字,可以看出他的人品、性格。这是有一定道理的。不久前,一位总统如心电图一般的签名曾引发全球热议。笔迹专家赛费尔称,从这位总统的签名可以看出,他非常具有攻击性,喜欢“非黑即白”地看待事情,不太喜欢妥协。这番话并非毫无科学依据。有研究显示,笔迹就像一面镜子,基于字间距、签名方式等线索,能揭示出5000多种不同的人格特征,还能预示一些疾病征兆。\n\n接下来最可能讲述的是:", "type": "单选题", "options": "A. 笔迹与性格的关系\nB. 笔迹与人品的关系\nC. 笔迹与疾病的关系\nD. 笔迹与职业的关系", "choice": "C", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 1452040, "human_acc": 68.7457645795, "source": "河南省选调2018年优秀高校毕业生到基层工作考试(网友回忆版)第47题", "difficulty": 4, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 1407, "material": "", "question": "领导意味着确立方向和战略决策,激励与鼓舞他人,为变革创建远景,管理意味着执行计划、制定实现目标的详细步骤和时间表,分配资源,支配日常工作,完成活动。管理者是把事情做正确的人,而领导者是做正确的事情的人。\n\n根据上述定义,下列属于领导的是:", "type": "单选题", "options": "A. 公司的董事长\nB. 军队的基层连长\nC. 政府的新闻发言人\nD. 企业的经理人", "choice": "A", "keypoints": "常规问法", "most_wrong": "D", "human_count": 96514, "human_acc": 84.2302671115, "source": "2008年山西省公务员录用考试《行测》题第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 3583219, "material": "", "question": "烟花爆竹是吉祥的象征,每逢佳节、喜庆之日爆竹声震耳欲聋,彩色火花满天飞舞,给人以欢欣与鼓舞。然而传统的烟花爆竹会引发火灾,造成资源浪费等问题。随着技术的进步,电子礼花逐渐进入人们的视野。有专业人士指出,在不久的将来,电子礼花将替代传统的烟花爆竹。\n\n以下哪项如果为真,不能加强上述专业人士的观点?", "type": "单选题", "options": "A. 随着环保攻坚的不断深入,全国多地实施禁放烟花爆竹的政策,各大企业也加大电子礼花的研发投入\nB. 电子礼花既有传统烟花爆竹的效果与视觉感受,同时又确保了环保的标准与安全性\nC. 随着电子礼花的市场份额不断扩大及成本的降低,其价格可能会低于传统烟花爆竹,可以激发人们购买的欲望\nD. 新时代人们越来越重视环保问题,低碳出行、光盘行动等成为人们的生活时尚", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 44157, "human_acc": 87.6780578391, "source": "2021下半年省考第五季行测模考大赛(四川卷)第85题", "difficulty": 4, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 10537, "material": "", "question": "在对某起生产事故原因的调查中,$70\\%$的人认为是设备故障,$30\\%$的人认为是违章操作,$25\\%$的人认为原因不清,需要深入调查。\n\n以下哪项最能合理地解释上述看来包含矛盾的陈述:", "type": "单选题", "options": "A. 被调查的有125人\nB. 有的被调查者后来改变了自己的观点\nC. 有的被调查者认为事故的发生既有设备故障的原因,也有违章操作的原因\nD. 很多认为原因不清的被调查者实际上有自己倾向性的判断,但是不愿意透露", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 23259, "human_acc": 86.6804247818, "source": "2009年河北省公务员录用考试《行测》题第91题", "difficulty": 4, "formulas": 3, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 3031061, "material": "", "question": "在古代,波斯人会烧死带回坏消息的信使,这被称为波斯信使综合征。现在人们通常用波斯信使综合征来代指不能解决根本问题,只处罚带来负面信息的传播人,以为借此就能解决问题的行为。\n\n根据上述定义,以下哪项属于波斯信使综合征?", "type": "单选题", "options": "A. 某国种族歧视十分严重,当一名记者指责该国政府对于种族歧视毫无作为时,该国政府以发表煽动性言论为由将其逮捕\nB. 某国国家足球队成员在微博上公开曝光自己球队踢假球,之后有关部门介入调查,发现该队员所说与事实不符,国家队立即开除此队员\nC. 某市市民在公共媒体上曝光某市政道路存在问题,市政部门高度重视,立即责成相关公司整改,并在主流媒体上表彰该热心市民\nD. 某家具公司被某媒体爆料其生产的家具甲醛超标,随后该公司以侵害他人名誉权为由将该媒体告上法庭", "choice": "A", "keypoints": "故事类", "most_wrong": "D", "human_count": 342522, "human_acc": 80.3618453705, "source": "2022年国考第六季行测模考大赛(副省级)第93题", "difficulty": 4, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 4655968, "material": "", "question": "幽门螺杆菌是引发多种胃病和胃癌的主要因素,目前越来越多的人开始重视幽门螺杆菌的检测和治疗。据报道,大蒜素拥有较强的杀菌消炎作用,可以有效地去除肠胃中的有害细菌,特别是能杀死诱发胃癌的幽门螺杆菌,因此有人认为生吃大蒜能够治疗幽门螺杆菌感染。\n\n以下哪项如果为真,最不能削弱上述结论?", "type": "单选题", "options": "A. 只吃“大蒜素”,体内的幽门螺杆菌的数量不会发生变化\nB. 大蒜素不是大蒜独有的物质,且只在高温下才能够杀菌\nC. 经常生吃大蒜的人感染幽门螺杆菌的概率往往相对较低\nD. 只有浓缩后的大剂量的大蒜素才能治疗幽门螺杆菌感染", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 206217, "human_acc": 84.7747760854, "source": "2021下半年省考第三十八季行测模考大赛(广东县级卷)第57题", "difficulty": 4, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 2049320, "material": "", "question": "迁都是件大事,有“牵一发动千钧”的效果。不仅迁都国家的政治经济格局将随着新都的诞生而发生改变,其他国家也将依照新都的情况而改变与这个国家的联络方式,比如驻该国的使馆要迁到新都啦,随着该国的政治经济和人口分布的改变,对该国的经济政策也要变化啦等等。因此,迁都实际上牵扯到许多人的现实利益,____________________,由于众口难调,实施起来就格外困难。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 会有连锁反应\nB. 堪比世界难题\nC. 是个系统工程\nD. 易致恶性循环", "choice": "C", "keypoints": "结尾", "most_wrong": "A", "human_count": 1314214, "human_acc": 40.3358965891, "source": "2017年河南省选调生选拔考试《行测》试卷(网友回忆版)第25题", "difficulty": 6, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 5411639, "material": "某出版社目前有E、F、G、H、I、K、L共7本书籍需要张、王、李3位员工进行初审,每本书籍由1人审核,每人至少审核1本。已知:\n\n(1)I和K须由同一人审核;\n\n(2)E和F须由同一人审核;\n\n(3)张审核的数量比王少;\n\n(4)王如果审核I,李不审核G;\n\n(5)张审核L当且仅当王不审核E。", "question": "如果E和L由同一人审核,下列哪项一定为真?", "type": "单选题", "options": "A. 李审核I\nB. 王审核F\nC. 张审核G\nD. 张审核L", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 182001, "human_acc": 57.9925385025, "source": "2023年国考第四十八季行测模考大赛(地市级)第107题", "difficulty": 6, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 1365275, "material": "", "question": "梳理历史事件、臧否历史人物、阐释历史典籍,我们既不能因循守旧、泥古不化,也不能数典忘祖、妄自尊大,以无知的狂妄去妖魔化古人。应以历史唯物主义的理性精神,严肃、客观、公正地对待历史,审慎地鉴别史实、历史地评价古人、科学地阐发经典,所有的结论都要用史实说话,持之有据、言之有理,绝不能想当然地凭空捏造杜撰。要把握传统文化精髓要义,用创造性的艺术想象帮助人们恢复历史的记忆,丰富文化的积累,提供前行的借鉴,为博大精深的中华民族优秀文化的继往开来开拓一方新的天地。\n\n根据文意,要发扬“历史唯物主义的理性精神”,其基本态度应当是:", "type": "单选题", "options": "A. 既不能因循守旧、泥古不化; 也不能数典忘祖、妄自尊大\nB. 审慎地鉴别史实、历史地评价古人、科学地阐发经典\nC. 要用史实说话,持之有据、言之有理,绝不能想当然地凭空捏造杜撰\nD. 用创造性的艺术想象帮助人们恢复历史的记忆,丰富文化的积累", "choice": "B", "keypoints": "中心理解题", "most_wrong": "C", "human_count": 474644, "human_acc": 40.533747398, "source": "2015年天津市公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 4919, "material": "", "question": "听了他的解释,疑团打消了,心里______多了。", "type": "单选题", "options": "A. 酣畅\nB. 欢畅\nC. 宽畅\nD. 痛畅", "choice": "C", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "B", "human_count": 55634, "human_acc": 76.9367652874, "source": "2008年湖北省公务员录用考试《行测》题(A类)第1题", "difficulty": 5, "formulas": 0}, {"id": 47753, "material": "", "question": "孟子曰:“民为贵,社稷次之,君为轻。是故得乎丘民而为天子,得乎天子为诸侯,得乎诸侯为大夫。”\n\n这段文字体现了:", "type": "单选题", "options": "A. 民主思想\nB. 民粹思想\nC. 民本思想\nD. 民生思想", "choice": "C", "keypoints": "主题词", "most_wrong": "A", "human_count": 634079, "human_acc": 79.1573289764, "source": "2013年浙江省公务员录用考试《行测》题(B类)第28题", "difficulty": 4, "formulas": 0}, {"id": 11037, "material": "", "question": "老人们都很 ______ ,对孩子们从不发脾气。", "type": "单选题", "options": "A. 慈善\nB. 和善\nC. 善良\nD. 善意", "choice": "B", "keypoints": "实词填空;词的辨析-词义侧重", "most_wrong": "A", "human_count": 41589, "human_acc": 69.5039553728, "source": "2008年湖北省公务员录用考试《行测》题(B类)第4题", "difficulty": 4, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "中心理解题"]]}, {"id": 12917, "material": "", "question": "一项调查表明,某中学的学生对悠悠球的着迷程度远远超过其他任何游戏,同时调查发现,经常玩悠悠球的学生的学习成绩比其他学生相对更好一些。由此看来,玩悠悠球可以提高学生的学习成绩。\n\n以下哪项为真,最能削弱上面的推论?", "type": "单选题", "options": "A. 悠悠球作为世界上花式最多最难、最具观赏性的手上技巧运动之一,要想玩好必须不断练习,因此能够锻炼学生的毅力,对学习成绩的提高很有帮助\nB. 学习成绩好的人更爱玩悠悠球\nC. 玩悠悠球的同学在学校的有效指导下并没有荒废学业\nD. 学校与学生家长订了协议,如果孩子的学习成绩没有排在前十五名,双方共同禁止学生玩悠悠球", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 20048, "human_acc": 55.137669593, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第62题", "difficulty": 5, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 2557548, "material": "", "question": "世界卫生组织统计显示,全球每年有800多万人死于烟草使用,其中约120万不吸烟者因接触二手烟而死亡。香烟中含有数千种有毒化学物质,这些化学物质会破坏肺部细胞并引起细胞DNA突变,进而癌变。人们一直以为吸烟导致的肺部细胞癌变是永久性的,即使戒烟也无法挽回。可是,最新一项研究显示,吸烟者在患上肺癌之前已有大量细胞突变,且绝大部分突变都是因为烟草而发生的。然而,会有一小部分细胞未受伤害。没有受损的细胞就像是藏在核掩体中一样,一旦吸烟者戒烟,这些细胞就开始生长繁殖,并取代那些已经受损的细胞。通过观察发现,戒烟者的肺部细胞最多有$40\\%$看上去和从未吸烟的人一样。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 二手烟,人类最大的肺部杀手\nB. 吸烟的危害单靠戒烟无法挽回\nC. 及时戒烟或可使肺部“奇迹般”修复\nD. 烟草对身体器官的影响是可逆的", "choice": "C", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 386725, "human_acc": 81.835412761, "source": "2021年国考第六季行测模考大赛(副省级)第49题", "difficulty": 5, "formulas": 1, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 43105, "material": "", "question": "蛋白质药品,如胰岛素,仍然必须通过繁琐的皮下注射程序来予以实施。如果蛋白质药品被口服,它们就会被消化而不能到达目标细胞。但是,有些非蛋白质药品含有不会被消化系统分解的化学键。\n\n以上的论述最强烈地支持了这样的论断,即一项成功实现下面哪个目标的研究可使蛋白质药品的使用者受益:", "type": "单选题", "options": "A. 把消化系统里面消化蛋白质的物质永久清除掉\nB. 确定每一种非蛋白质药品到达其目标细胞所需的时间\nC. 将胰岛素包上一种能被目标细胞分解、但其化学键不会被消化的混合物\nD. 以系统的方法来确定正常消化系统中存在着哪些酶和细菌", "choice": "C", "keypoints": "加强-其他", "most_wrong": "B", "human_count": 39555, "human_acc": 88.1582606497, "source": "2011年上海市公务员录用考试《行测》题(A类)第54题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 5600789, "material": "2021年,Q市全年实现地区生产总值(GDP)231.4亿元,比上年增长5.2%。其中,第一产业增加值37.3亿元,比上年增长6.1%;第二产业增加值99.3亿元,比上年增长3.1%;第三产业增加值94.8亿元,比上年增长6.8%。三次产业结构比例为16.1:42.9:41.0。全市人均地区生产总值实现34055元,比上年增长5.5%。2018年,全市实现地区生产总值250.3亿元,比上年增长5.6%。其中,三次产业结构比例为12.3:39.9:47.8。全市人均地区生产总值实现32028元,比上年增长7.2%。\n\n        2021年,全市规模以上工业增加值比上年增长2.1%。其中,煤炭开采和洗选业增加值比上年下降1.2%,石油、煤炭及其他燃料加工业增加值比上年增长6.0%,电力、热力生产和供应业增加值比上年下降0.8%,化学原料和化学制品业增加值比上年增长18.3%,家具制造业比上年下降11.5%,专用设备制造业比上年增长469.2%,非金属矿物制品业比上年增长1.7%。非煤行业占规模以上工业比重为37.2%。\n\n        2021年,全市农林牧渔业总产值75.4亿元,比上年增长6.4%。其中,畜牧业产值19.4亿元,比上年增长9.7%;农业45.1亿元,比上年增长5.2%;林业3.6亿元,比上年增长10.1%。\n\n注:材料中部分数据因四舍五入的原因,存在总计与分项合计不等的情况。", "question": "2021年Q市全年实现地区生产总值比2017年约增长了:", "type": "单选题", "options": "A. 8.0%\nB. 1.1%\nC. -2.4%\nD. -1.1%", "choice": "C", "keypoints": "间隔增长率;文字资料;一般增长率", "most_wrong": "D", "human_count": 31631, "human_acc": 64.4241408745, "source": "2023下半年省考第七季行测模考大赛(陕西卷)第119题", "difficulty": 6, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 5597156, "material": "2022年末Z省常住人口为6577万人,同比增加37万人,比第七次人口普查(2020年11月1日零时)增长1.9%。\n\n        从城乡构成看,城镇人口为4826万人,农村人口为1751万人。城镇人口占总人口的比重(即城镇化率)为73.4%,同比上升0.7个百分点,比第七次人口普查下降1.2个百分点。\n\n        从性别构成看,男性为3436万人,占总人口的52.2%;女性为3141万人,占总人口的47.8%。性别比(以女性为100,男性对女性的比例)为109.4。\n\n        从年龄构成看,0-15岁的人口为907万人,占总人口的13.8%,比上年下降0.3个百分点;16-59岁的人口为4341万人,占总人口的66.0%,比上年下降0.8个百分点;60岁及以上的人口为1329万人,占总人口的20.2%,比上年上升1.1个百分点,其中65岁及以上的人口为981万人,占比为14.9%,比第七次人口普查增加124万人。\n\n        2022年全省出生人口为41.2万人,出生率为$6.28‰$;死亡人口为40.9万人。与2021年相比,出生率下降0.62个千分点,死亡率上升0.34个千分点,自然增长率下降0.96个千分点。\n\n注:①年人口自然增长率=(年人口出生数-年人口死亡数)÷年平均人口数=年人口出生率-年人口死亡率\n\n       ②年平均人口数=(年初总人口数+年末总人口数)÷2", "question": "2022年末Z省农村人口数同比约增长:", "type": "单选题", "options": "A. -2.0%\nB. -1.5%\nC. 2.0%\nD. 1.5%", "choice": "A", "keypoints": "两期比重;文字资料;一般增长率", "most_wrong": "B", "human_count": 47128, "human_acc": 32.1931760312, "source": "2023下半年省考第六季行测模考大赛(上海卷)第53题", "difficulty": 7, "formulas": 1, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 3728697, "material": "建国70周年以来,四川省基本公共文化设施稳步增长,逐渐完善。2018年,全省共有文化馆207个,比1952年增加59个;公共图书馆204个,比1952年增加200个;文化站4574个,比1952年增加4428个;博物馆252个,比1952年增加251个。\n\n        广播电视覆盖面持续扩大,全覆盖目标基本实现。2018年,全省共有广播电视台(站)171个,比1957年增加91个;全省广播综合人口覆盖率$97.8\\%$,比1952年提高77.7个百分点;全省电视综合人口覆盖率$98.8\\%$,比1962年提高94.9个百分点。\n\n        四川省公共文化投入持续快速增加。一般公共预算文化体育与传媒支出快速增长,2018年,全省一般公共预算文化体育与传媒支出145.2亿元,比2007年增长$407.9\\%$。文化事业费43.0亿元,比2006年增长$732.1\\%$。文化事业费占财政支出的比重为$0.44\\%$,比2006年提高0.06个百分点;人均文化事业费51.6元,比2006年增长$716.1\\%$。全省群众文化业务活动专项经费5.3亿元,比2010年增长$442.3\\%$。", "question": "2006年,四川省财政支出约为多少亿元?", "type": "单选题", "options": "A. 136\nB. 1360\nC. 653\nD. 6530", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "A", "human_count": 96687, "human_acc": 78.150113252, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第87题", "difficulty": 4, "formulas": 7, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 3763, "material": "国家统计局小康研究课题组,对城镇居民生活小康标准5个方面12项指标进行监测显示:1999年我国城镇居民生活水平小康实现程度达到94.3%。在12项小康指标中有10项达到或者基本达到小康初始水平。但是还有两项指标,即文化教育娱乐支出比重和人均绿地面积与小康标准有一定差距。从5个方面来看,经济发展、物质生活和人口素质3个方面小康实现程度已经达到100%;精神生活水平和社会保障水平2个方面指标分别只达到86.7%和75.6%。各地区城市小康实现程度也存在较大差距。三大地带相比,1998年实现程度综合得分仍然差异较大,中、西部比东部分别低7.9个百分点和12.97个百分点。但与1996年相比,东部地区小康实现程度由91.87%下降到91.70%;中、西部实现程度分别由79.8%和74.4%提高到83.80%和78.73%。", "question": "城镇居民生活小康标准的五个方面不包括:", "type": "单选题", "options": "A. 社会保障水平\nB. 物质生活\nC. 城市环境建设\nD. 人口素质", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 5857, "human_acc": 82.038586307, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 2274495, "material": "根据下列统计资料回答问题\n\n        2017年上半年,B市全市第三产业实现增加值10198.2亿元,按可比价计算,同比增长$7.2\\%$。\n\n上半年,信息传输、软件和信息技术服务业实现增加值1319.5亿元,同比增长$9.3\\%$;累计完成电信业务量361.1亿元,同比增长$38.8\\%$;科学研究和技术服务业实现增加值1211.8亿元,同比增长$10.0\\%$,比一季度增幅扩大1.4个百分点。\n\n        上半年,旅客周转量同比增长$8.7\\%$;货物周转量由上年的下降转为增长,其中铁路同比增长$7.7\\%$,民航同比增长$8.0\\%$。上半年,快递业务量累计达到9.9亿件,同比增长$13.3\\%$;交通运输、仓储和邮政业实现增加值554.2亿元,同比增长$13.1\\%$,增幅比上年同期扩大7.8个百分点。\n\n        上半年,批发和零售业实现增加值1190.6亿元,同比增长$7.7\\%$,增幅比上年同期扩大7.1个百分点。第二季度,全市实现电子商务交易额8324.5亿元,同比增长$12.7\\%$。\n\n        上半年,B市规模以上文化创意产业法人单位、战略性新兴产业法人单位、高技术服务业法人单位分别实现收入6902.7亿元、3870.0亿元和6924.9亿元,同比分别增长$8.6\\%$、$12.6\\%$和$9.1\\%$。\n\n        上半年,服务业扩大开放六大重点领域的规模以上非公有制经济单位实现收入7864.6亿元,同比增长$15.7\\%$,快于六大重点领域整体增速8.0个百分点,占六大重点领域整体收入的比重为$32.3\\%$,比上年同期提高1.1个百分点。", "question": "2017年上半年,B市信息传输、软件和信息技术服务业实现增加值同比增速比第三产业实现增加值同比增速", "type": "单选题", "options": "A. 低2.1个百分点\nB. 高2.1个百分点\nC. 低31.6个百分点\nD. 高31.6个百分点", "choice": "B", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 472172, "human_acc": 93.965122879, "source": "2019年北京市公务员录用考试《行测》题(网友回忆版)第132题", "difficulty": 3, "formulas": 16, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 17695, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007年黑龙江省国际互联网络拨号、专线用户比上年减少约多少万户:", "type": "单选题", "options": "A. 15.63\nB. 19.14\nC. 22.58\nD. 28.73", "choice": "B", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 11750, "human_acc": 50.3319148936, "source": "2009年四川省公务员录用考试《行测》题(上半年)第89题", "difficulty": 5, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 2015298, "material": "2015年保险公司原保险保费收入24282.52亿元,同比增长$20.00\\%$,比上一年高$2.51\\%$。其中,产险业务原保险保费收入7994.97亿元,同比增长$10.99\\%$;寿险业务原保险保费收入13241.52亿元,同比增长$21.46\\%$,健康险业务原保险保费收入2410.47亿元,同比增长$51.87\\%$;意外险业务原保险保费收入635.56亿元,同比增长$17.14\\%$。\n\n        2015年保险公司赔款和给付支出8674.14亿元,同比增长$20.20\\%$。其中,产险业务赔款4194.17亿元,同比增长$10.72\\%$;寿险业务给付3565.17亿元,同比增长$30.67\\%$;健康险业务赔款和给付762.97亿元,同比增长$33.58\\%$;意外险业务赔款151.84亿元,同比增长$18.24\\%$。\n\n        截至2015年末,保险公司资金运用余额111795.49亿元,较年初增长$19.81\\%$。其中,银行存款24349.67亿元,占比$21.78\\%$;债券38446.42亿元,占比$34.39\\%$;股票和证券投资基金16968.99亿元,占比$15.18\\%$;其他投资32030.41亿元,占比$28.65\\%$。\n\n        截至2015年末,保险公司总资产123597.76亿元,较年初增长$21.66\\%$。其中,产险公司总资产18481.13亿元,较年初增长$31.43\\%$;寿险公司总资产99324.83亿元,较年初增长$20.41\\%$;再保险公司总资产5187.38亿元,较年初增长$47.64\\%$;资产管理公司总资产352.39亿元,较年初增长$46.44\\%$。", "question": "2015年,四大保险业务中,原保险保费收入占比最高值与最低值相差约:", "type": "单选题", "options": "A. $40\\%$\nB. $45\\%$\nC. $50\\%$\nD. $55\\%$", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 25786, "human_acc": 64.3760179943, "source": "2016年9月政法干警联考《行政职业能力测验》(本硕网友回忆版)第82题", "difficulty": 5, "formulas": 356, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 2719414, "material": "2019年上半年,我国服务进出口总额达到26124.6亿元,同比增长$2.6\\%$。其中,出口总额9333.7亿元,同比增长$9.0\\%$;进口总额16790.8亿元,同比下降$0.6\\%$。服务进出口总额占对外贸易总额的比重达到$15.1\\%$,比2018年全年高出0.5个百分点。\n\n        2019年全年,我国服务进出口总额54152.9亿元,同比增长$2.8\\%$。其中,出口总额19564.0亿元,同比增长$8.9\\%$;进口总额34588.9亿元,同比减少$0.4\\%$。\n\n        2019年上半年,我国知识密集型服务进出口额8923.9亿元,同比增长$9.4\\%$,其中,知识密集型服务出口额4674.1亿元,同比增长$12.1\\%$;进口额4249.8亿元,同比增长$6.5\\%$。从具体领域看,知识产权使用费出口同比增长$33.0\\%$;电信、计算机和信息服务出口同比增长$15.7\\%$,进口同比增长$19.6\\%$;其他商业服务(含技术、专业和管理咨询服务、研发成果转让费及委托研发等)出口同比增长$10.4\\%$;金融服务出口同比增长$13.9\\%$,进口同比增长$43.9\\%$。\n\n        2019年全年,我国知识密集型服务进出口额18777.7亿元,同比增长$10.8\\%$,其中,知识密集型服务出口额9916.8亿元,同比增长$13.4\\%$;进口额8860.9亿元,同比增长$8.0\\%$。从具体领域看,个人文化娱乐服务,电信、计算机和信息服务,金融服务进出口总额分别同比增长$19.4\\%$、$18.9\\%$、$18.7\\%$。", "question": "能够从上述资料中推出的是:", "type": "单选题", "options": "A. 2019年下半年,我国服务进口额同比为正增长\nB. 2019年上半年,电信、计算机和信息服务进出口总额占知识密集型服务进出口总额的比重高于上年同期水平\nC. 2019年上半年,非知识密集型服务进出口贸易逆差低于7000亿元\nD. 2019年下半年,我国知识密集型服务出口额占服务出口额的比重低于知识密集型服务进口额占服务进口额的比重", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 1418077, "human_acc": 52.3207837092, "source": "2021年国家公务员录用考试《行测》题(地市级网友回忆版)第130题", "difficulty": 5, "formulas": 22, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 7403, "material": "请根据下列文字资料,完成以下各题:\n\n        2005年我国对外贸易出口总额达到7620亿美元,占全球贸易出口总额的比重由2001年的4.3%提高到2005年的7.3%。2005年,我国对外贸易进出口总额为14221亿美元,居世界第三位,占全球贸易进出口总额的6.7%。2005年我国吸引外国直接投资额由2001年的469亿美元增加到603亿美元,居世界第三位。\n\n        近年来,我国外汇储备持续大幅增长,2001年我国外汇储备2122亿美元,2005年比2001年增长了2.9倍,居世界第二位,为我国经济持续、稳定发展奠定了重要基础。", "question": "2005年我国外汇储备额大约是:", "type": "单选题", "options": "A. 6千亿美元左右\nB. 不到3千亿美元\nC. 8千亿美元左右\nD. 10千亿美元以上", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "A", "human_count": 17086, "human_acc": 67.2480393304, "source": "2008年河南省公务员录用考试《行测》题第124题", "difficulty": 5, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 220709, "material": "2009年,在江苏省委、省政府的正确领导下,全省深入贯彻科学发展观,认真落实中央决策部署和一系列政策措施,积极应对国际金融危机带来的严峻挑战和严重困难,统筹做好保增长保民生保稳定各项工作,经济企稳向好态势不断增强,结构调整和自主创新取得重大进展,发展质量稳步提高,民生继续得到改善,改革开放深入推进,各项社会事业全面进步,较好地完成了年初确定的各项目标任务。\n\n        全省实现生产总值34061.2亿元,比上年增长12.4%。先进制造业水平提升,全年实现高新技术产业产值21987.0亿元,增长19.5%,占规模以上工业比重达30.0%,比上年提高1.5个百分点。服务业特别是现代服务业增长加快、比重上升,实现服务业增加值13555.6亿元,比上年增长13.6%,占GDP比重39.8%,提高1.1个百分点。新兴行业加快发展,新能源、新医药、新材料、环保产业产值分别增长66.0%、30.0%、22.0%和21.0%,软件业销售收入增长35.7%,服务外包执行总额增长177.0%。非公有制经济进一步发展,实现增加值在地区生产总值中的份额达到64.1%,其中私营个体经济比重为39.4%,分别提高0.9个和2.3个百分点。城市化和城市现代化水平稳步提高,年末城市化率达55.6%,比上年提高1.3个百分点。区域发展格局进一步改善,加快推进苏南转型升级,巩固苏中、苏北快速发展局面,苏中、苏北对全省经济增长的贡献份额达到42.3%,提高2.9个百分点,全面实施沿海地区发展规划。\n\n        节能减排取得明显成效。大力推进资源节约型、环境友好型社会建设,实施重点节能减排项目,淘汰落后产能,深入开展化工生产企业专项整治。全年共实施1121个减排项目,关闭小火电组687.6万千瓦,淘汰落后炼钢铁能力792.2万吨,分别完成“十一五”总目标的224.3%、51.1%和77.4%。预计超额完成单位GDP能耗降低率的年度目标。化学需氧量、二氧化硫排放量分别削减3.1%和4.1%,累计完成“十一五”减排总目标的98.93%和121.1%。", "question": "2008年江苏省规模以上工业产值为多少亿元:", "type": "单选题", "options": "A. 64558.5\nB. 67216.5\nC. 70348.6\nD. 73290.5", "choice": "A", "keypoints": "基期比重;文字资料", "most_wrong": "D", "human_count": 42296, "human_acc": 49.8912426707, "source": "2011年深圳市公务员录用考试《行测》题第71题", "difficulty": 5, "formulas": 0, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2031160, "material": "据统计,2015年上半年全国渔业产值4152.56亿元,同比增长$5.91\\%$;渔业增加值2260.05亿元,同比增长$5.92\\%$,高出农林牧渔业增加值的增幅2.2个百分点。\n\n        2015年上半年全国水产品产量2700.09万吨,同比增长$3.20\\%$,其中养殖水产品产量2114.38万吨,同比增长$4.13\\%$。\n\n        2015年上半年全国水产品进出口总量383.08万吨,同比下降$7.48\\%$,进出口总额137.28亿美元,同比下降$4.67\\%$。\n\n        其中,出口量189.28万吨,出口额95.81亿美元,同比分别增长$1.52\\%$和$-2.39\\%$。主要出口国家和地区中,对美国、欧盟、东盟、日本、中国香港、韩国和中国台湾的出口额分别增长$-2.49\\%$、$-5.04\\%$、$31.26\\%$、$-1.37\\%$、$-18.94\\%$、$-11.67\\%$和$4.43\\%$。\n\n        进口量193.80万吨,进口额41.47亿美元,同比分别下降$14.84\\%$和$9.57\\%$,其中鱼粉进口量、进口额同比分别下降$43.06\\%$和$20.80\\%$。", "question": "2015年上半年,非养殖水产品产量与上年同期相比的变化最接近以下哪个数字?", "type": "单选题", "options": "A. $-20\\%$\nB. $0\\%$\nC. $5\\%$\nD. $10\\%$", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 437226, "human_acc": 71.7194311409, "source": "2017年北京市公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 353, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 5432045, "material": "2021年底,A省发电总装机容量8465.74万千瓦,较上年末增加649.71万千瓦。分类型看,火电5740.23万千瓦,比上年增长3.23%;风电511.43万千瓦,增长24.42%;太阳能发电1706.85万千瓦,增长24.62%;水电507.23万千瓦,增长7.04%。全省可再生能源装机容量2964.56万千瓦,比上年增长20.13%。\n\n        2021年,全省发电量3044.51亿千瓦时。分类型看,火力发电2702.37亿千瓦时,比上年增长6.75%;风力发电106.91亿千瓦时,增长88.35%;太阳能发电154.50亿千瓦时,增长18.70%;水力发电80.72亿千瓦时,增长21.92%。A电东送平稳增长。2021年,全省A电东送电量670.61亿千瓦时,比上年增长4.07%。2021年,全省可再生能源发电量459.58亿千瓦时,比上年增长26.27%,占总发电量的15.10%,比重比上年提高2.05个百分点。\n\n        2021年,全省发电设备平均利用小时为3737小时,比上年增长2.05%。分类型看,火电4735小时,增长3.52%;风电2259小时,增长50.30%;太阳能发电1054小时,增长6.57%;水电1598小时,下降6.93%。", "question": "2021年,A省发电设备平均利用小时数比上年增长最少的一项是:", "type": "单选题", "options": "A. 全省发电设备\nB. 火电设备\nC. 风电设备\nD. 太阳能发电设备", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 340981, "human_acc": 69.1469612676, "source": "2023上半年省考第一季行测模考大赛(深圳卷)第97题", "difficulty": 5, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 4485546, "material": "2020年1-11月,H省外贸进出口总值3953.5亿元人民币(下同),同比增长8.5%。其中,出口2246.7亿元,同比增长4.6%;进口1706.8亿元,同比增长14.1%。11月当月进出口438.6亿元,同比增长33.1%,环比增长8.2%。其中,出口261.5亿元,同比增长34.8%;进口177.1亿元,同比增长30.8%,环比下降5.5%。\n\n        一、贸易方式方面。一般贸易进出口3442.4亿元,上年同期为3159.9亿元;以保税物流方式进出口236.2亿元,上年同期为135.7亿元;加工贸易进出口218.4亿元,上年同期为242亿元。\n\n        二、企业性质方面。民营企业进出口2599亿元,上年同期为2299.5亿元。国有企业进出口824亿元,上年同期为799.7亿元。外商投资企业进出口529.6亿元,上年同期为542.9亿元。\n\n        三、贸易伙伴方面。对澳大利亚进出口731.9亿元,同比(下同)增长22.6%,占进出口总值的18.5%。对东盟进出口441.1亿元,增长11.3%,其中对马来西亚进出口123.4亿元,增长24.1%。对欧盟(不含英国)进出口415.4亿元,增长3%,其中对德国进出口106.5亿元,下降1.1%。对美国进出口383.6亿元,增长22.1%。对巴西进出口348.8亿元,增长29.9%。对俄罗斯进出口171.5亿元,下降14.7%。对韩国进出口162.6亿元,下降16.8%。对日本进出口134.1亿元,下降6.3%。对印度进出口126亿元,增长5.2%。此外,对“一带一路”沿线国家进出口1185.9亿元,增长1.5%。", "question": "2020年10月,H省外贸出口值约为多少亿元?", "type": "单选题", "options": "A. 174.0\nB. 218.0\nC. 261.5\nD. 405.4", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 188696, "human_acc": 68.6342052826, "source": "2021下半年省考第二十六季行测模考大赛(北京乡镇卷)第123题", "difficulty": 4, "formulas": 0, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 5524973, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立的单位银行账户中基本存款账户户数约是一般存款账户的多少倍?", "type": "单选题", "options": "A. 3.9\nB. 3.2\nC. 2.1\nD. 2.6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 38096, "human_acc": 79.3022889542, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第99题", "difficulty": 4, "formulas": 0, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 5446878, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2020年第三季度,全国银行平均办理每笔非现金支付业务金额约为多少万元?", "type": "单选题", "options": "A. 0.1\nB. 0.5\nC. 0.8\nD. 1.0", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 264215, "human_acc": 69.5849970668, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第97题", "difficulty": 4, "formulas": 0, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 623097, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "将2011年1—9月间该省贸易伙伴按进出口总额从高到低排序不正确的是:", "type": "单选题", "options": "A. 韩国,日本\nB. 美国,东盟\nC. 东盟,韩国\nD. 马来西亚,德国", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 336890, "human_acc": 89.8512867702, "source": "2014年四川省公务员录用考试《行测》题第104题", "difficulty": 3, "formulas": 7, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 3888230, "material": "2020年全年粮食种植面积11677万公顷,比上年增加70万公顷。其中,稻谷种植面积3008万公顷,增加38万公顷;小麦种植面积2338万公顷,减少35万公顷;玉米种植面积4126万公顷,减少2万公顷。棉花种植面积317万公顷,减少17万公顷。油料种植面积1313万公顷,增加20万公顷。糖料种植面积157万公顷,减少4万公顷。\n\n        全年粮食产量66949万吨,比上年增加565万吨,增产0.9%。其中,夏粮产量14286万吨,占全年粮食产量的比重与上年持平;早稻产量2729万吨,增产3.9%;秋粮产量49934万吨,增产0.7%。全年谷物产量61674万吨,比上年增产0.5%。其中,稻谷产量21186万吨,增产1.1%;小麦产量13425万吨,每公顷产量同比增长2%;玉米产量26067万吨,持平略减。\n\n        全年棉花产量591万吨,比上年增产0.4%。油料产量3585万吨,增产2.6%。糖料产量12028万吨,减产1.2%。茶叶产量297万吨,增产7.1%。\n\n        全年猪牛羊禽肉产量7639万吨,比上年下降0.1%。其中,猪肉产量4113万吨,下降3.3%;牛肉产量672万吨,增长0.8%;羊肉产量492万吨,增长1.0%;禽肉产量2361万吨,增长5.5%。禽蛋产量3468万吨,增长4.8%。牛奶产量3440万吨,增长7.5%。年末生猪存栏40650万头,比上年末增长31.0%;全年生猪出栏52704万头,比上年下降3.2%。\n\n        全年水产品产量6545万吨,比上年增长1.0%。其中,养殖水产品产量5215万吨,增长3.0%;捕捞水产品产量1330万吨。\n\n        全年木材产量8727万立方米,比上年下降13.1%。", "question": "2020年小麦产量较上年的增长幅度约为:", "type": "单选题", "options": "A. 5.0%\nB. 0.5%\nC. -1.5%\nD. -2.0%", "choice": "B", "keypoints": "平均数的增长率;文字资料", "most_wrong": "A", "human_count": 81004, "human_acc": 56.741642388, "source": "2021下半年省考第十六季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 0, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 4641790, "material": "2020年,全国一般公共预算收入182895亿元,同比下降3.9%,增速比上年降低7.7个百分点;支出245588亿元,同比增长2.8%,增速比上年降低5.3个百分点。其中,中央一般公共预算收入82771亿元,同比下降7.3%,增速比上年降低11.8个百分点,支出35096亿元,同比下降0.1%,增速比上年降低6.1个百分点;地方一般公共预算收入100124亿元,同比下降0.9%,支出210492亿元,同比增长3.3%。\n\n        全国政府性基金预算收入93489亿元,同比增长10.6%;支出117999亿元,同比增长28.8%。分中央和地方看,中央政府性基金预算收入同比下降11.8%,支出2715亿元,同比下降12.8%;地方政府性基金预算收入89927亿元,同比增长11.7%。\n\n        全国国有资本经营预算收入4778亿元,同比增长20.3%;支出2544亿元,同比增长10.8%。分中央和地方看,中央国有资本经营预算收入同比增长9.1%,支出874亿元,同比下降11.4%;地方国有资本经营预算收入2992亿元,同比增长28.1%,支出1670亿元,同比增长27.6%。", "question": "2018年中央一般公共预算支出约为:", "type": "单选题", "options": "A. 29381亿元\nB. 33143亿元\nC. 35131亿元\nD. 85444亿元", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 204838, "human_acc": 63.697165565, "source": "2021下半年省考第三十六季行测模考大赛(浙江卷)第106题", "difficulty": 5, "formulas": 0, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 2385134, "material": "2018年1-9月汽车行业统计数据如下:\n\n        乘用车累计产销分别完成1735.1万辆和1726.0万辆,同比分别增长$0.1\\%$和$0.6\\%$。其中,轿车产销分别完成841.3万辆和842.6万辆,同比分别增长$0.2\\%$和$1.3\\%$;SUV产销分别完成737.1万辆和723.5万辆,同比分别增长$4.2\\%$和$3.9\\%$;MPV产销分别完成124.4万辆和126.2万辆,同比分别下降$15.2\\%$和$13.1\\%$;交叉型乘用车产销分别完成32.2万辆和33.7万辆,同比分别下降$18.2\\%$和$19.6\\%$。中国品牌乘用车累计销售724.2万辆,同比下降$1.5\\%$。\n\n        商用车累计产销分别完成314.1万辆和323.1万辆,同比分别增长$5.2\\%$和$6.3\\%$。分车型情况看,客车产销分别完成33.9万辆和33.3万辆,同比分别下降$2.7\\%$和$3.8\\%$;货车产销分别完成280.1万辆和289.8万辆,同比分别增长$6.2\\%$和$7.6\\%$。\n\n        新能源汽车中,纯电动汽车产销分别完成55.5万辆和54.1万辆,同比分别增长$58.9\\%$和$66.2\\%$;插电式混合动力汽车产销分别完成18.0万辆和18.1万辆,同比分别增长$138.0\\%$和$146.9\\%$。\n\n        汽车整车出口81.4万辆,同比增长$30.9\\%$。分车型情况看,乘用车出口60.1万辆,同比增长$38.2\\%$;商用车出口21.3万辆,同比增长$13.8\\%$。", "question": "2017年1-9月,乘用车的四类车型按销量从高至低排列,依次为(    )。", "type": "单选题", "options": "A. 轿车$\\gt$SUV$\\gt$交叉型乘用车$\\gt$MPV\nB. SUV$\\gt$轿车$\\gt$交叉型乘用车$\\gt$MPV\nC. 轿车$\\gt$SUV$\\gt$MPV$\\gt$交叉型乘用车\nD. SUV$\\gt$轿车$\\gt$MPV$\\gt$交叉型乘用车", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "A", "human_count": 158763, "human_acc": 85.8890295598, "source": "2019深圳市公务员录用考试《行测》题(网友回忆版)第89题", "difficulty": 4, "formulas": 1031, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 2578805, "material": "2017年,S市服务业小微样本企业总体实现营业收入105.39亿元,同比增长$3.1\\%$ ,比2016年回落了15.7个百分点,户均实现营业收入510.63万元。\n\n        2017年,S市服务业小微样本企业总体资产938.58亿元,同比增长$4.2\\%$ ,增速比2016年下降0.9个百分点,户均资产4547.40万元。分门类看,除房地产业,交通运输、仓储和邮政业,教育业资产总计比2016年分别下降$3.1\\%$、$5.4\\%$和$6.8\\%$外,其他行业资产总计同比均有不同程度的增长。\n\n        2017年,S市服务业小微样本企业总体营业税金及附加为1.09亿元,同比下降$29.5\\%$;缴纳增值税2.30亿元,同比增长$11.6\\%$,户均缴纳增值税11.16万元。\n\n        2017年,S市服务业小微样本企业总体应付职工薪酬19.28亿元,比2016年增长$9.3\\%$。户均应付职工薪酬93.50万元。从业人员人数29028人,人均年薪酬6.64万元,比2016年增加0.60万元。", "question": "如S市服务业小微样本企业数量为固定值,问2017年S市服务业小微样本企业户均比上年少缴纳营业税金及附加多少万元?", "type": "单选题", "options": "A. 1.1\nB. 2.2\nC. 3.3\nD. 4.4", "choice": "B", "keypoints": "平均数的增长量;文字资料", "most_wrong": "A", "human_count": 773781, "human_acc": 52.3615855132, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第98题", "difficulty": 5, "formulas": 8, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 4690776, "material": "截至2020年12月31日,全国体育场地371.34万个,比上年(截至2019年12月31日)增加16.9万个;体育场地面积30.99亿平方米,比上年增加1.82亿平方米;人均体育场地面积由上年的2.08平方米增加至2.20平方米。\n\n一、基础大项场地\n\n        全国田径场地17.95万个,场地面积9.46亿平方米,分别比上年增加0.56万个、0.30亿平方米。其中,设有400米环形跑道的田径场地3.72万个,占20.72%;其他田径场地14.23万个,占79.28%。\n\n        全国游泳场地2.92万个,场地面积0.64亿平方米,分别比上年增加0.13万个、0.06亿平方米。其中,室外游泳池1.67万个,占57.19%;室内游泳馆1.20万个,占41.10%;天然游泳场548个,占1.71%。\n\n二、球类运动场地\n\n        全国球类运动场地233.54万个,比上年增加9.18万个。\n\n        全国足球场地11.73万个,场地面积3.20亿平方米。其中,十一人制足球场地数量占22.92%,七人制足球场地数量占32.39%,五人制足球场地数量占44.59%,沙滩足球场地数量占0.10%。\n\n        全国篮球场地100.58万个,场地面积5.95亿平方米,是数量最多的体育场地。其中,室外篮球场数量占91.37%,室外三人篮球场数量占6.26%;室内篮球馆数量占2.37%。\n\n        全国排球场地9.13万个,场地面积0.29亿平方米。其中,室外排球场数量占96.28%,室内排球馆数量占3.72%。\n\n        全国乒乓球场地83.50万个,场地面积0.51亿平方米。其中,室外乒乓球场数量占88.37%;室内乒乓球馆数量占11.63%。\n\n        全国羽毛球场地20.24万个,场地面积0.40亿平方米。其中,室外羽毛球场数量占84.83%;室内羽毛球馆数量占15.17%。\n\n三、冰雪运动场地\n\n        全国冰雪运动场地1888个,场地面积0.67亿平方米,分别比上年增加368个、0.06亿平方米。其中,滑冰场地1187个,占62.87%;滑雪场地701个,占37.13%。\n\n四、体育健身场地\n\n        全国全民健身路径87.12万个,比上年增加4.77万个。全国健身房11.48万个,场地面积0.50亿平方米,分别比上年增加0.66万个、0.03亿平方米。全国健身步道8.94万个,长度20.93万公里,场地面积6.04亿平方米,分别比上年增加1.26万个、3.00万公里、0.78亿平方米。", "question": "若保持2020年的同比增量不变,则在哪一年末全国体育场地数量将超过500万个?", "type": "单选题", "options": "A. 2026年\nB. 2027年\nC. 2028年\nD. 2029年", "choice": "C", "keypoints": "现期追赶;文字资料", "most_wrong": "B", "human_count": 217043, "human_acc": 82.4030261285, "source": "2022上半年省考第四季行测模考大赛(广东县级卷)第92题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 563519, "material": "2013年3月末,金融机构人民币各项贷款余额65.76万亿元,同比增长$14.9\\%$,增速比上年同期低0.8个百分点。\n\n       2013年3月末,主要金融机构及小型农村金融机构,外资银行人民币小微企业贷款余额11.78万亿元,同比增长$13.5\\%$,比全部企业贷款余额增速高1.2个百分点。\n\n       2013年3月末,主要金融机构本外币工业中长期贷款余额6.46万亿元,同比增长$3.2\\%$。其中,轻工业中长期贷款余额6824亿元,同比增长$7.6\\%$;重工业中长期贷款余额5.77万亿元,同比增长$2.7\\%$,服务业中长期贷款余额16.55万亿元,同比增长$8.9\\%$。\n\n       2013年3月末,主要金融机构及小型农村金融机构、村镇银行、财务公司本外币农村贷款余额15.24万亿元,同比增长$18.4\\%$;农户贷款余额3.86万亿元,同比增长$16.9\\%$;农业贷款余额2.87万亿元,同比增长$12.3\\%$。\n\n       2013年3月末,主要金融机构及小型农村金融机构、外资银行人民币房地产贷款余额12.98万亿元,同比增长$16.4\\%$。地产开发贷款余额1.04万亿元,同比增长$21.4\\%$。房产开发贷款余额3.2万亿元,同比增长$12.3\\%$。个人购房贷款余额8.57万亿元,同比增长$17.4\\%$。保障性住房开发贷款余额6140亿元,同比增长$42.4\\%$。", "question": "2013年3月末,金融机构人民币各项贷款余额比2011年同期大约增长了多少万亿元:", "type": "单选题", "options": "A. 8.53\nB. 16.29\nC. 11.51\nD. 25.91", "choice": "B", "keypoints": "间隔增长量;文字资料", "most_wrong": "A", "human_count": 136122, "human_acc": 73.372415921, "source": "2014年412联考《行测》题(陕西卷)第116题", "difficulty": 4, "formulas": 14, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "增长量", "间隔增长量"], ["资料分析", "文字资料"]]}, {"id": 2613970, "material": "①从上万米深的海底世界,到90摄氏度的热泉口,生命几乎________了地球的每一寸土地。我们在赞叹生命的________时不由得会思考:这一切,最初是如何开始的?\n\n②著名生物学家查尔斯·达尔文曾在一封寄给好友约瑟夫·李·胡克的私人信件中提到,构成最早生命形式的大分子应该是从“温暖的小池塘”中诞生的。在热池特殊的环境条件下,各种前体化合物发生了一系列化学反应,这一过程创造出的生物大分子随后发展成为我们所熟知的各类生命形态。另一种主流理论认为,生命应当起源于炙热的深海热液口。在这里,冰冷的海水被深海中活动的火山加热,这为化学反应提供了充足的能量。\n\n③在一项近期发表于《美国国家科学院院刊》的研究论文中,研究人员通过建模提出,早期地球比现在频繁得多的陨石撞击,可能将碱基带至地球上的热池中,这些碱基可能参与了最早的RNA分子的组成。RNA不仅可以作为信息分子存储信息,还可以作为一种生物催化剂促进其他大分子的合成,因此大多数科学家都认同RNA的诞生是真正意义上的“生命”诞生的第一个步骤。\n\n④科学家认为,为了确保生命的延续,组成生命的分子必须能够合成新的分子。RNA既能作为信息载体又能作为催化剂的性质,决定了它不同于DNA——后者的复制过程必须有复杂的蛋白质分子来催化,而RNA可以依靠自身来产生新的RNA分子——这也是支持RNA首先出现的重要依据之一。论文作者认为,他们的研究是首次通过这种复杂的手段,对生命的起源方式进行模拟,这一研究为热池理论提供了依据。\n\n⑤论文的第一作者,加拿大麦克马斯特大学的本·皮尔斯和其他共同作者一同建立了一个模型,在这个模型中,地球还处于行星地质变化的早期阶段。45亿至37亿年前,遍布全球的陨石撞击事件可能给地球上的热池带来碱基。\n\n⑥在干旱的季节,这些热池会缩小,使得其中的化学物质也浓缩在一起;而潮湿的季节里热池面积会增大。研究者写道,这样的干湿循环有助于解释聚合作用,也就是化合物聚集在一起形成长链或更复杂的三维结构的过程。他们据此认为,热液口形成早期生命的理论成立的可能性较低,因为热液口的水域显然比这些会定期缩小的热池要大得多,不利于化合物的聚合。\n\n⑦但也是由于在干湿循环过程中环境条件会发生快速变化,论文作者们认为RNA分子一定形成于陨石撞击的几年之内。否则,干旱时期充足的阳光中的紫外线就会破坏这些分子。论文作者认为这一过程发生在至少41.7亿年前,比拥有确切证据的生命出现时间还要早几亿年。格陵兰岛的叠层石化石表明生命大约诞生于37亿年前,而就在近期,另一项研究称生命在距今约39.5亿年前就存在了。\n\n⑧论文作者有许多理由认为他们的模型能够帮助解释生命起源的“自然发生”理论。他们的模型将小行星作为RNA前体分子的来源,这有助于解释一些必需的化学反应可能如何发生,并且他们提出的时间线也与地球早期地质状况相吻合。但关于生命起源的问题还远没有找到答案。\n\n⑨即使如此,这项新研究让热池理论得以向前一步。“基于对行星形成过程和太阳系化学的了解,针对地球生命出现的过程,我们提出了一种合理的解释。对于生命得以起源的环境特征,我们已经给出了基本合理的物理和化学信息,”论文的共同作者,普朗克天文研究所的德米特里·谢苗诺夫在新闻稿中说,“现在轮到做实验的科学家来发现生命在这种特定的环境下究竟如何起源了。”", "question": "最适合做所给材料标题的是:", "type": "单选题", "options": "A. 地球起源研究有重大突破?\nB. 生命真正的起点在哪里?\nC. 地球生命起源于陆地池塘?\nD. 生命起源的答案到底是什么?", "choice": "C", "keypoints": "", "most_wrong": "D", "human_count": 16814, "human_acc": 28.2740573332, "source": "2021年国考第十二季行测模考大赛(副省级)第55题", "difficulty": 7, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 2295458, "material": "", "question": "“草长莺飞二月天,拂堤杨柳醉春烟。儿童散学归来早,忙趁东风放纸鸢。”诗中的纸鸢即风筝,下面关于风筝的说法有错的是____________。", "type": "单选题", "options": "A. 风筝起源于中国\nB. 纸风筝出现于春秋时期\nC. 古时风筝曾被用于军事通讯\nD. 风筝制作技艺已被列入国家级非物质文化遗产名录", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 68685, "human_acc": 70.4418723156, "source": "2019年上海市公务员录用考试《行测》题(A类)(网友回忆版)第113题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 19651, "material": "", "question": "下面诗词搭配正确的是:", "type": "单选题", "options": "A. 随风潜入夜,润物细无声——《春夜喜雨》李白\nB. 接天莲叶无穷碧,映日荷花别样红——《晓出净慈寺送林子方》杨万里\nC. 不是花中偏爱菊,此花开尽更无花——《菊花》陶渊明\nD. 洛阳亲友如相问,一片冰心在玉壶——《凉州词》王昌龄", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 132113, "human_acc": 47.8469189255, "source": "2010年安徽省公务员录用考试《行测》题第107题", "difficulty": 6, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 4651857, "material": "", "question": "2021年是中国共产党百年华诞,回首百年前,1921年7月23日,中国共产党第一次全国代表大会开幕,关于中共一大,下列说法不正确的是:", "type": "单选题", "options": "A. 召开地点为上海、嘉兴\nB. 通过了党的第一个纲领\nC. 成立中央局,并选举陈独秀任书记\nD. 与会代表13人,包括陈独秀、李大钊、毛泽东", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 250138, "human_acc": 55.9870951235, "source": "2022年深圳市考公务员录用考试《行测》试题(网友回忆版)第1题", "difficulty": 4, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 2547748, "material": "", "question": "下列关于中继卫星作用的说法,错误的是(    )。", "type": "单选题", "options": "A. 可以跟踪测定中、低轨道卫星\nB. 可以监测地球大气等环境\nC. 为对地观测卫星实时转发遥感、遥测数据\nD. 承担航天飞机和载人飞船的通信和数据传输中继业务", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 287566, "human_acc": 56.3665384642, "source": "2021年国考第五季行测模考大赛(副省级)第17题", "difficulty": 6, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 4457451, "material": "", "question": "《琅琊榜》中靖王还是郡王时,依例可以朔日进宫向母妃请安,该日期指的是(    )。", "type": "单选题", "options": "A. 农历初一\nB. 农历初七或初八\nC. 农历十五或十六\nD. 农历廿二或廿三", "choice": "A", "keypoints": "自然常识", "most_wrong": "C", "human_count": 9943, "human_acc": 32.7969425727, "source": "2021下半年省考第二十五季行测模考大赛(云南卷)第15题", "difficulty": 7, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 5131838, "material": "", "question": "下列对应不正确的是(    )。", "type": "单选题", "options": "A. 高锰酸钾——氧化剂\nB. 硫酸亚铁——还原剂\nC. 过氧化钠——干燥剂\nD. 酚酞——酸碱指示剂", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 28674, "human_acc": 50.3905977541, "source": "2022下半年省考第三季行测模考大赛(新疆卷)第16题", "difficulty": 6, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 2047686, "material": "", "question": "角蛋白是一种控制细胞形状和稳定性的蛋白。以下对角蛋白认识错误的是:", "type": "单选题", "options": "A. 人的头发、指甲主要是由角蛋白构成的\nB. 角蛋白是爬行动物鳞片、羽毛、爪子的主要成分\nC. 在人的皮肤中,角蛋白主要分布在真皮层\nD. 角蛋白来源于外胚层分化而来的细胞,是一种硬蛋白", "choice": "C", "keypoints": "生物常识", "most_wrong": "D", "human_count": 1141735, "human_acc": 64.9941536346, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第72题", "difficulty": 5, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 636757, "material": "", "question": "由于地理位置、宗教信仰、历史文化等方面的差异,世界各地存在截然不同的饮食习惯。\n\n下列情况中,符合现实的是:", "type": "单选题", "options": "A. 在新德里的餐厅里,咖喱牛肉拌饭十分受当地人欢迎\nB. 在慕尼黑啤酒节上,当地人一边喝着啤酒一边吃着咸猪手\nC. 在梵蒂冈当地家庭的餐桌上,通常会有来自当地港口的海鲜\nD. 在北海道的冬天,当地人自古以来都食用胡椒以抵御严寒", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 286345, "human_acc": 38.0977492186, "source": "2014年广州市公务员录用考试《行测》题第55题", "difficulty": 5, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 5622478, "material": "", "question": "李某驾驶小型轿车行驶至某十字路口时,将正在过马路的王某撞成重伤,李某负事故全部责任。下列选项中,不是李某构成交通肇事罪的必要条件的是(    )。", "type": "单选题", "options": "A. 发生事故时,李某系饮酒后驾驶机动车\nB. 发生事故时,李某系吸食毒品后驾驶机动车\nC. 发生事故时,李某严重疲劳驾驶\nD. 发生事故时,李某尚未取得机动车驾驶证", "choice": "C", "keypoints": "刑法", "most_wrong": "D", "human_count": 24138, "human_acc": 47.050294142, "source": "2023下半年省考第九季行测模考大赛(新疆区考卷)第10题", "difficulty": 6, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 4660386, "material": "", "question": "下列说法正确的是(    )。", "type": "单选题", "options": "A. 烧烫的铁钉在空气中比在同温度的水中冷却快\nB. 吊扇在正常转动时,悬挂点所受拉力比静止时要大\nC. 打开室内照明灯对着电视画面拍照比关闭室内照明灯更清晰\nD. 向水杯倒水,倒满后水会微微凸出呈光滑的球面状", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 108194, "human_acc": 58.7149010111, "source": "2021下半年省考第三十九季行测模考大赛(陕西卷)第12题", "difficulty": 5, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 3726722, "material": "", "question": "下列对日常生活现象的解释不正确的是(    )。", "type": "单选题", "options": "A. 在铁制品表面刷油漆是为了防止生锈\nB. 大型电器多采用三孔插座是因为三孔插座承受的功率比两孔插座大\nC. 餐具用温水清洗效果更好是因为油脂更易被表面活性剂乳化增溶\nD. 被蚊虫叮咬后用肥皂水止痒是利用了酸碱中和反应", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 73257, "human_acc": 73.0264684604, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 2636147, "material": "", "question": "三明治:奶酪:干酪", "type": "单选题", "options": "A. 番茄酱:番茄:西红柿\nB. 手术刀:碳钢:不锈钢\nC. 面粉:酥饼:豆沙饼\nD. 火腿肠:火腿:香肠", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 149234, "human_acc": 24.1587037806, "source": "2020年下半年省考第五季行测模考大赛(新疆卷)第90题", "difficulty": 7, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}, {"id": 2601, "material": "", "question": "柳絮:杨花", "type": "单选题", "options": "A. 松子:榆钱\nB. 月华:幽兰\nC. 芙蓉:荷花\nD. 菊花:银甲", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 53007, "human_acc": 46.193898919, "source": "2008年辽宁省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0}, {"id": 11963, "material": "", "question": "报警:警报", "type": "单选题", "options": "A. 来回:回来\nB. 书写:写书\nC. 给付:付给\nD. 开水:水开", "choice": "D", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 41134, "human_acc": 30.7798901152, "source": "2008年安徽省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 4826958, "material": "", "question": "下列关于《民法典》的表述,说法正确的是(    )。", "type": "单选题", "options": "A. 居住权的设立可以是口头形式也可以是书面形式\nB. 抵押人转让抵押财产的,应当经抵押权人同意\nC. 商业广告和宣传的内容符合要约条件的,构成要约\nD. 当事人在保证合同中对保证方式没有约定的,按照连带责任保证承担保证责任", "choice": "C", "keypoints": "民法", "most_wrong": "B", "human_count": 288540, "human_acc": 31.1187357039, "source": "2022上半年省考第十二季行测模考大赛(陕西卷)第9题", "difficulty": 7, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 18465, "material": "", "question": "下列关于发明的说法错误的是:", "type": "单选题", "options": "A. 避雷针的发明者是富兰克林\nB. 电视机的发明者是爱迪生\nC. 电话的发明者是贝尔\nD. 炸药的发明者是诺贝尔", "choice": "B", "keypoints": "世界历史", "most_wrong": "D", "human_count": 301010, "human_acc": 71.9368127305, "source": "2011年内蒙古自治区公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 10753, "material": "", "question": "每年3月,我国都要召开全国人民代表大会和全国政治协商会议,全国人大代表和全国政协委员汇集北京,共商国是。以下关于“两会”代表、委员的表述,正确的是(    )。", "type": "单选题", "options": "A. 代表的任务是参政议政,委员的任务是政治协商\nB. 代表参加制定国家法律,委员协商国际重大事务\nC. 人大是最高国家权力机关,政协是最高国家监督机关\nD. 人大直接创建国家管理制度,政协间接创建国家管理制度", "choice": "B", "keypoints": "宪法", "most_wrong": "A", "human_count": 143754, "human_acc": 24.1906312172, "source": "2009年甘肃省公务员录用考试《行测》题第71题", "difficulty": 5, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 4457313, "material": "", "question": "“十四五”规划指出:“加快构建以国内大循环为主体、国内国际双循环相互促进的新发展格局。”畅通国内经济大循环的突破点是要疏通消费环节的堵点,下列措施中属于疏通消费环节的堵点的是(    )。", "type": "单选题", "options": "A. 提高居民收入在国民收入分配中的占比\nB. 提升基础科研和成果转化能力\nC. 进一步完善城乡融合的交通网络\nD. 完善市场信用和监管机制", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 116617, "human_acc": 24.1928706792, "source": "2021下半年省考第二十五季行测模考大赛(青海卷)第7题", "difficulty": 7, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 2376457, "material": "", "question": "电影配音:外语配音", "type": "单选题", "options": "A. 单向沟通:双向沟通\nB. 注射给药:口服给药\nC. 短期观察:重点观察\nD. 长期记忆:短期记忆", "choice": "C", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 808144, "human_acc": 94.1206022689, "source": "2019年420联考《行测》题(吉林乙级)(网友回忆版)第62题", "difficulty": 3, "formulas": 0, "history": [{"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}, {"id": 5585651, "material": "", "question": "主食:甜食", "type": "单选题", "options": "A. 剧团:戏班\nB. 商品:零食\nC. 戏剧:小说\nD. 动物:芍药", "choice": "B", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 43627, "human_acc": 49.1484631077, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 2034140, "material": "", "question": "律师:教授", "type": "单选题", "options": "A. 专家:吉林人\nB. 钢筋:房屋\nC. 歌手:乐队\nD. 人:社会", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 569161, "human_acc": 87.4676936754, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0}, {"id": 2021824, "material": "", "question": "流行:高尚", "type": "单选题", "options": "A. 专家:学者\nB. 勇敢:品德\nC. 树根:树叶\nD. 闰月:春季", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 532077, "human_acc": 52.6615508658, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第65题", "difficulty": 5, "formulas": 0}, {"id": 5289672, "material": "", "question": "陶器:酒器", "type": "单选题", "options": "A. 童鞋:凉鞋\nB. 主食:副食\nC. 卧椅:躺椅\nD. 官窑:哥窑", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 215948, "human_acc": 90.1254005594, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第91题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"]]}, {"id": 5394585, "material": "", "question": "根据《行政许可法》的规定,下列关于行政许可设定说法不正确的是(    )。", "type": "单选题", "options": "A. 行业组织或者中介机构能够自律管理的,可以不设行政许可\nB. 有限自然资源开发利用、公共资源配置等,需要赋予特定权利的事项必须由法律设定行政许可\nC. 法规、规章对实施上位法设定的行政许可作出的具体规定,不得增设行政许可\nD. 公民、法人或者其他组织可以向行政许可的设定机关和实施机关就行政许可的设定和实施提出意见和建议", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 12493, "human_acc": 10.5098855359, "source": "2022下半年省考第二十季行测模考大赛(江苏B卷)第15题", "difficulty": 7, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 5741361, "material": "", "question": "下列行为没有违反《互联网广告管理办法》的是(    )。", "type": "单选题", "options": "A. 某APP开屏广告须经两次以上点击才能关闭\nB. 某商家在购物平台上发布“吞吐健康,安全相伴”的电子烟广告\nC. 某事业单位在搜索其政务服务网站的结果中插入竞价排名广告\nD. 某博主在平台上通过体验分享的形式推销商品并附加购物链接,在显著位置标明了“广告”", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 81650, "human_acc": 79.8983466013, "source": "2023下半年省考第二十季行测模考大赛(上海卷)第102题", "difficulty": 3, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 5047598, "material": "", "question": "为加快实现联合国可持续发展目标,中国政府积极行动,支持联合国人居署设立(    ),并在(    )颁发首届奖项。", "type": "单选题", "options": "A. 杭州全球可持续发展城市奖 2022年10月31日\nB. 上海全球可持续发展城市奖 2022年10月31日\nC. 杭州全球可持续发展城市奖 2022年4月22日\nD. 上海全球可持续发展城市奖 2022年4月22日", "choice": "B", "keypoints": "时政", "most_wrong": "C", "human_count": 1171, "human_acc": 28.6080273271, "source": "2022上半年省考第二十三季行测模考大赛(上海卷)第110题", "difficulty": 7, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 2461694, "material": "", "question": "《党章》规定,年满(    )岁的中国工人、农民、军人、知识分子和其他社会阶层的先进分子,承认党的纲领和章程,愿意参加党的一个组织并在其中积极工作、执行党的决议和按期交纳党费的,可以申请加入中国共产党。", "type": "单选题", "options": "A. 十四\nB. 十六\nC. 十八\nD. 十五", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 771, "human_acc": 93.7743190661, "source": "天津市2020年度定向34所重点高校招录选调生《综合能力测试》第33题", "difficulty": 5, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 2264313, "material": "", "question": "垄断协议分为横向垄断协议和纵向垄断协议。下列哪一垄断协议与其他三项不同?", "type": "单选题", "options": "A. 甲市销售额排名前五的手机销售门店召开会议,指定下半年各类手机产品的最低价格\nB. 乙市四家最大的面包店把全市五十家面包店组织在一起,协议指定采购某品牌面粉\nC. 丙市七家米粉厂互相约定,各米粉厂只能在划定的区域内销售米粉\nD. 丁市某电器生产公司和八家电器销售公司约定对外批发电器的销售价格", "choice": "D", "keypoints": "经济法", "most_wrong": "C", "human_count": 2718791, "human_acc": 25.5782809344, "source": "2019年国家公务员录用考试《行测》题(地市级网友回忆版)第11题", "difficulty": 7, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 455849, "material": "", "question": "100个骨牌整齐地排成一列,依次编号为1、2、3、4、···99、100。如果第一次拿走所有偶数位置上的牌,第二次再从剩余牌中拿走所有偶数位置上的牌,第三次再从剩余牌中拿走所有奇数位置上的牌,第四次再从剩余牌中拿走所有奇数位置上的牌,第五次再从剩余牌中拿走所有偶数位置上的牌,以此类推,问最后剩下的一张骨牌的编号是多少:", "type": "单选题", "options": "A. 77\nB. 53\nC. 39\nD. 27", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 157254, "human_acc": 33.8814910908, "source": "2014年天津市公务员录用考试《行测》题第15题", "difficulty": 6, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 4528172, "material": "", "question": "赵某家住A市,在B市经营了一家企业,五年前无故失踪至今下落不明。钱某和孙某是赵某企业的两家供应商的老板,钱某准备向法院申请宣告赵某失踪,孙某准备向法院申请宣告赵某死亡。下列说法正确的是(    )。", "type": "单选题", "options": "A. 钱某既可以向A市人民法院提出宣告失踪申请,也可以向B市人民法院提出\nB. 对于赵某这种情况,必须先申请宣告失踪,满两年后再申请宣告死亡\nC. 法院受理孙某的申请,宣告死亡的公告期间为一年\nD. 公告期满后,若赵某仍无消息,则赵某被自动宣告失踪或者宣告死亡", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 230493, "human_acc": 20.0730607871, "source": "2022年国考第三十六季行测模考大赛(行政执法类)第9题", "difficulty": 7, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 1503589, "material": "", "question": "将10名运动员平均分成两组进行对抗赛,问有多少种不同的分法:", "type": "单选题", "options": "A. 120\nB. 126\nC. 240\nD. 252", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "D", "human_count": 332759, "human_acc": 27.3573366911, "source": "2015年四川省公务员录用考试《行测》题(上半年)第47题", "difficulty": 7, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 5254424, "material": "", "question": "根据《劳动法》,下列关于劳动者的相关说法,错误的是(    )。", "type": "单选题", "options": "A. 某省文艺院因工作需要招用一位12岁的未成年人,该文艺院应保障该未成年人接受义务教育的权利\nB. 夏季属于空调销售高峰期,某空调生产厂家在休息日安排职工工作又不能安排补休,应向职工支付二倍的工资报酬\nC. 某煤矿由于缺少人手,领导安排女职工从事矿山井下劳动\nD. 某瓷砖厂职工张某由于长期接触粉尘而患职业病,应依法享受社会保险待遇", "choice": "C", "keypoints": "劳动法", "most_wrong": "B", "human_count": 82908, "human_acc": 67.883678294, "source": "2022下半年省考第八季行测模考大赛(深圳卷)第7题", "difficulty": 4, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 826133, "material": "", "question": "将7个大小相同的桔子分给4个小朋友,要求每个小朋友至少得到1个桔子,一共有几种分配方法:", "type": "单选题", "options": "A. 14\nB. 18\nC. 20\nD. 22", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 397159, "human_acc": 62.7685637238, "source": "2014年四川省公务员录用考试《行测》题(下半年)第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 2022010, "material": "", "question": "你为什么总是不高兴?因为你缺失信仰,人生失去了方向。也就失去了驾驭快乐的手段。导致很多人在幸福中选择了不快乐。同时,没有信仰就容易把价值观建立在一些外在事物上,甚至是相互比较上,仰望别人的成功,感觉自己的卑微;仰望别人的幸福,慨叹自己的不幸。比较别人的得志,愤然自己的失意;比较别人的快乐,放大自己的痛苦。\n\n如果以上陈述为真,则可以推出:", "type": "单选题", "options": "A. 不缺失信仰,就不会总是不高兴\nB. 总是不高兴,说明一定缺失信仰\nC. 有信仰,就不会把价值观建立在一些外在的事物上\nD. 不把价值观建立在一些外在事物上,代表你有信仰", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 270163, "human_acc": 59.287911372, "source": "2016年吉林省公务员录用考试《行测》题(乙级)第79题", "difficulty": 5, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 20915, "material": "", "question": "科学不是宗教,宗教都主张信仰,所以主张信仰都不科学。\n\n下列最能说明上述推理不成立的是:", "type": "单选题", "options": "A. 犯罪行为都是违法行为,违法行为都应受到社会的谴责,所以应受到社会谴责的行为都是犯罪行为\nB. 商品都有使用价值,阳光当然有使用价值,所以阳光当然是商品\nC. 不刻苦学习的人都成不了业务骨干,小李是刻苦学习的人,所以小李能成为业务骨干\nD. 中国人不是美国人,美国人都说英语,所以,说英语的都不是中国人", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 65960, "human_acc": 70.2683444512, "source": "2011年安徽省公务员录用考试《行测》题第79题", "difficulty": 4, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 5335731, "material": "", "question": "一条长2000米的桥两端有A、B两辆火车相向驶来,当A火车车头刚上桥时,B火车车尾也刚上桥。一段时间过后,当A火车车尾下桥时,B火车车头也刚下桥。已知A、B两辆火车的速度分别为15米/秒、12米/秒。若A火车的长度比B火车多50米,则A火车的长度为多少米?", "type": "单选题", "options": "A. 200\nB. 250\nC. 300\nD. 350", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 7244, "human_acc": 49.6548868029, "source": "2022下半年省考第十五季行测模考大赛(浙江C卷)第68题", "difficulty": 6, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 15695, "material": "", "question": "甲、乙两人的年龄和正好是80岁,甲对乙说:“我像你这么大时,你的年龄正好是我年龄的一半。”甲今年:", "type": "单选题", "options": "A. 32岁\nB. 40岁\nC. 48岁\nD. 45岁", "choice": "C", "keypoints": "年龄问题", "most_wrong": "A", "human_count": 62484, "human_acc": 82.0209973753, "source": "2010年吉林省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0, "history": [{"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 4517, "material": "", "question": "父亲今年44岁,儿子今年16岁,当父亲的年龄是儿子的年龄的8倍时,父子的年龄和是多少岁:", "type": "单选题", "options": "A. 36\nB. 54\nC. 99\nD. 162", "choice": "A", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 16717, "human_acc": 79.8408805408, "source": "2009年北京市公务员录用考试《行测》题(社招)第17题", "difficulty": 5, "formulas": 0}, {"id": 5185, "material": "", "question": "哥哥5年后的年龄和弟弟3年前的年龄和是29岁,弟弟现在的年龄是两人年龄差的4倍。哥哥今年几岁?", "type": "单选题", "options": "A. 10\nB. 12\nC. 15\nD. 18", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 30233, "human_acc": 80.4551318096, "source": "2009年北京市公务员录用考试《行测》题(应届)第24题", "difficulty": 4, "formulas": 0}, {"id": 8161, "material": "", "question": "父亲与两个儿子的年龄和为84岁,12年后父亲的年龄等于两个儿子的年龄之和,请问父亲现在多少岁:", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 60", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 51483, "human_acc": 74.1837111279, "source": "2009年广东省公务员录用考试《行测》题第14题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "年龄问题"]]}, {"id": 18693, "material": "", "question": "夹心层指游离在政府保障与市场之外的无能力购房的群体,表现为有的不符合廉租房条件但又没有钱买经适房,有的没资格买经适房但又买不起商品房。\n\n下列最可能为夹心层的是:", "type": "单选题", "options": "A. 小胡的老妈要买一处跃层房,而老婆却要买一处景观房,小胡夹在中间受气\nB. 张教授没买过房,他认为买房不如租房,租房不如借房\nC. 老刘用一生积蓄买了一套三室一厅的二手房\nD. 公司刚招进的小李、小王和小刘合住在公司的一间临时仓库里", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 41958, "human_acc": 83.5621335621, "source": "2010年江苏省公务员录用考试《行测》题(B类)第127题", "difficulty": 4, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 2880431, "material": "", "question": "同一个山脚下有A、B两块地由甲、乙两人分别来开垦,且两人工作过程中不休息。已知在晴天,甲开垦完A地要18天,乙开垦完B地要20天;在雨天,甲的工作效率会下降$40\\%$,乙的工作效率会下降$20\\%$。结果两人开垦完两块地所用天数相同,那么,在开垦过程中有多少天是雨天?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 363410, "human_acc": 46.0237747998, "source": "2022年国考第四季行测模考大赛(副省级)第66题", "difficulty": 6, "formulas": 2, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 14201, "material": "", "question": "小王登山,上山的速度是4km/h, 到达山顶后原路返回,速度为6km/h,设山路长为9km,小王的平均速度为多少km/h?", "type": "单选题", "options": "A. 5\nB. 4.8\nC. 4.6\nD. 4.4", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 22418, "human_acc": 79.0570077616, "source": "2009年湖南省公务员录用考试《行测》题第120题", "difficulty": 3, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 4655953, "material": "", "question": "在自我意识心理学中,人们认为别人对自己的态度就像一面可以照出自己形象的镜子,所以会由此形成对自我概念的印象,这种现象称之为镜像效应。\n\n根据上述定义,下列属于镜像效应的是:", "type": "单选题", "options": "A. 见不贤而内自省也\nB. 人敬我一尺,我敬人一丈\nC. 人待我如何,我即如何也\nD. 以人为镜,可以明得失", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 139610, "human_acc": 60.959816632, "source": "2021下半年省考第三十八季行测模考大赛(四川卷)第70题", "difficulty": 5, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 4737617, "material": "", "question": "一个班级一共有50人,其中参加A项目的有45人,参加B项目的有35人,参加C项目的有40人,请问这个班级中至少有多少人三个项目都参加?", "type": "单选题", "options": "A. 10\nB. 20\nC. 30\nD. 35", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 37812, "human_acc": 64.9661483127, "source": "2017年福建省选调生考试《行政职业能力测验》第53题", "difficulty": 4, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 2385, "material": "", "question": "商品差价:同一商品由于流通环节、购销地区、购销季节以及质量不同而形成的价格差额。\n\n下列不属于商品差价的一项是:", "type": "单选题", "options": "A. 同一本书,刚出版时与两年后的价格不同\nB. 早市萝卜一块一斤,下午则五角一斤\nC. 富康轿车与大众轿车价格不同\nD. 甲地的盐比乙地的盐便宜,因为甲地产盐", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 8598, "human_acc": 83.8101884159, "source": "2008年江苏省公务员录用考试《行测》题(C类)第60题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5543, "material": "", "question": "行为罚亦称能力罚,是行政主体对违反行政法律规范的行政相对方所采取的限制或剥夺其特定行为能力或资格的一种处罚措施。\n\n下列属于行为罚的是:", "type": "单选题", "options": "A. 行政拘留\nB. 没收财物\nC. 吊销营业执照\nD. 劳动教养", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 14256, "human_acc": 70.8543771044, "source": "2009年北京市公务员录用考试《行测》题(应届)第54题", "difficulty": 5, "formulas": 0}, {"id": 1163, "material": "", "question": "产权是指主体对物的排他性权利,它的本质是人们在社会中发生的对劳动成果的权利。\n\n根据以上定义,下列不属于产权的是:", "type": "单选题", "options": "A. 所有权、占有权\nB. 收益权、转让权\nC. 劳动选择权、劳动交换转让权\nD. 支配权、使用权", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 32630, "human_acc": 82.7152926755, "source": "2008年山东省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2452831, "material": "", "question": "应激性是指生物对外来刺激(如温度、声音)在短时间内所做出的反应。\n\n根据上述定义,以下属于应激性的是:", "type": "单选题", "options": "A. 篮球触地后高高弹起\nB. 含羞草被碰触后叶子收缩\nC. 鲜牛奶常温放置24小时后发酸\nD. 纸张遇到明火燃烧", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 107843, "human_acc": 94.2314290218, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 3789479, "material": "", "question": "小李和六名同伴准备一起参加征文比赛,写完之后随机打乱进行批改,批改时大家发现有2人拿到的是自己的文章,则满足此要求的情况共有多少种?", "type": "单选题", "options": "A. 88\nB. 135\nC. 924\nD. 189", "choice": "C", "keypoints": "错位排列", "most_wrong": "B", "human_count": 99482, "human_acc": 40.4083150721, "source": "2021下半年省考第十四季行测模考大赛(广东县级卷)第37题", "difficulty": 7, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 2264138, "material": "", "question": "细菌虽然小得肉眼看不见,但它们在分解枯枝败叶的过程中确实起了关键性的作用。它们能将吸收二氧化碳和其他养分而长成的树干与枝叶,再分解成二氧化碳释放到大气中。若没有细菌的存在,那么地球上的二氧化碳只能维持植物利用40年,因为碳素将被锁定在植物体内而不能参与到物质循环中去。由于细菌的这种作用,维持了整片森林甚至整个地球的盎然的绿意。\n\n下面对文段中“关键性的作用”解说不正确的一项是:", "type": "单选题", "options": "A. 细菌在分解枯枝败叶的过程中释放了二氧化碳,维持了地球上的物质循环\nB. 细菌把有可能被锁定在植物体内的碳素分解出来并释放到大气中去\nC. 细菌在分解树干与枝叶的过程中将它吸收的二氧化碳又释放到大气中去\nD. 如果没有细菌做分解枯枝败叶的工作,地球将无法维持盎然的绿意", "choice": "C", "keypoints": "实词", "most_wrong": "D", "human_count": 5789, "human_acc": 53.8953187079, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第41题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2185097, "material": "", "question": "某围棋队有选手会在比赛时喝茶,他们或者喝红茶,或者喝绿茶。\n\n如果以上描述为真,下列哪项一定是真的?\n\nI.该围棋队一名在比赛时不喝红茶的选手,一定喝绿茶。\n\nII.该围棋队没有选手比赛时喝黑茶。\n\nIII.该围棋队有的选手比赛时不喝茶。", "type": "单选题", "options": "A. 只有II\nB. 只有III\nC. I和II\nD. II和III", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 1034329, "human_acc": 32.5642034594, "source": "2018年广东省公务员录用考试《行测》题(县级、乡镇统一卷)(网友回忆版)第54题", "difficulty": 7, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 4863425, "material": "", "question": "疫情袭来后,在机关工作的小米在犹豫去社区站岗还是去隔离宾馆值守,他的妻子告诉他,要去最危险的前线战斗,还是去隔离宾馆值守吧。\n\n以下选项与题干中的问答方式最为相似的是:", "type": "单选题", "options": "A. 小张报考大学的时候,在辽宁省、广东省、山西省三个省份之间犹豫,他的母亲建议他,还是在辽宁上学比较好\nB. 老刘的妻子问老刘,晚上想吃红烧肉还是锅包肉,老刘回答道,最近吃得太油腻了,还是吃一些炒青菜吧\nC. 小鹏在犹豫毕业之后是去体制内工作还是去外企工作,他的舍友建议他还是考体制内比较稳定些\nD. 春天到了,小沈在犹豫买茉莉花还是买兰花,她的男朋友告诉她,全都买吧,每种花都各有特色", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 7123, "human_acc": 81.9036922645, "source": "2022上半年省考第十四季行测模考大赛(广东县级卷)第74题", "difficulty": 4, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 2187603, "material": "", "question": "形象联想记忆法是把所需要记忆的材料同某些具体的事物、数字、字母、汉字或几何图形等联系起来,借助形象思维加以记忆。形象联想既有利于激发兴趣,调动学习的积极性,又有利于加深记忆。\n\n根据上述定义,下列没有运用形象联想记忆法的是:", "type": "单选题", "options": "A. 新疆的地形特征“三山夹两盆”可与“疆”的右半部分联系起来:“三横”表示三山,“两田”表示两大盆地\nB. 号称“时尚女鞋之国”的意大利,它的轮廓就像一只高跟靴子\nC. 海参,长得就像黄瓜(cucumber),又长在海里(sea),所以它叫“sea cucumber”\nD. 篮球界的迈克尔·乔丹、音乐界的迈克尔·杰克逊、赛车界的迈克尔·舒马赫······记住,这些牛人都叫“迈克尔”", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 1145403, "human_acc": 90.7102565647, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第74题", "difficulty": 3, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 19425, "material": "", "question": "现有甲、乙两个水平相当的技术工人需进行三次技术比赛,规定三局两胜者为胜方,如果在第一次比赛中甲获胜,这时乙最终取胜的可能性有多少:", "type": "单选题", "options": "A. 1/2\nB. 1/3\nC. 1/4\nD. 1/6", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 72004, "human_acc": 71.5154713627, "source": "2011年内蒙古自治区公务员录用考试《行测》题第59题", "difficulty": 4, "formulas": 0, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 3639307, "material": "", "question": "现有甲、乙两艘船,甲船顺水航行速度为500米/分钟、逆水航行速度为400米/分钟,乙船顺水航行速度比甲船快$60\\%$。某一时刻,两船同时从港口出发顺流而下,分别航行一段时间后,返回港口,均用时45分钟。问甲、乙两船同向航行的时间为多少分钟?", "type": "单选题", "options": "A. 39\nB. 40\nC. 43\nD. 44", "choice": "D", "keypoints": "流水行船", "most_wrong": "B", "human_count": 75155, "human_acc": 15.192601956, "source": "2021下半年省考第七季行测模考大赛(广东乡镇卷)第38题", "difficulty": 7, "formulas": 1, "history": [{"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1679372, "material": "", "question": "两艘船相对划行,一船从A到B顺水,一船从B到A逆水,结果所用时间相同(假设水流速、行船速恒定,快船速是慢船速2倍)。则慢船速是水流速的几倍?", "type": "单选题", "options": "A. 1\nB. 4\nC. 3\nD. 2​", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 307203, "human_acc": 65.1679833856, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第92题", "difficulty": 5, "formulas": 0}, {"id": 44089, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要几天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 93842, "human_acc": 76.8600413461, "source": "2012年上海市公务员录用考试《行测》题(A类)第60题", "difficulty": 5, "formulas": 0}, {"id": 43449, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要多少天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 73831, "human_acc": 77.2223049938, "source": "2012年上海市公务员录用考试《行测》题(B类)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 11241, "material": "", "question": "某商场以摸奖的方式回馈顾客,盒内有五个乒乓球,其中一个为红色,2个为黄色,2个为白色,每位顾客从中任意摸出一个球,摸到红球奖10元,黄球奖1元,白球无奖励,则每一位顾客所获奖励的期望值为多少:", "type": "单选题", "options": "A. 10\nB. 1.2\nC. 2\nD. 2.4", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 27167, "human_acc": 62.7415614532, "source": "2009年山东省公务员录用考试《行测》题第113题", "difficulty": 4, "formulas": 0, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 5402801, "material": "", "question": "零售疗法,也叫作“购物疗法”,指的是人们通过购物来自我调节、释放压力、缓解负面情绪等的一种实现自我疗愈的方法。\n\n根据上述定义,下列属于零售疗法的是:", "type": "单选题", "options": "A. 丹妮每周六都会和朋友相约观看网络直播的购物节目,并互相推荐心仪的产品\nB. 迪安每次不开心都会在网上购物,购买后又会花费几小时来责怪自己没有克制力\nC. 为了庆祝小生命的到来,准爸爸贝尔和准妈妈露西去商场买了婴儿的奶瓶、衣服等\nD. 珍妮和丈夫离婚后,立刻购买了全新的床上用品,铺上后感觉自己的生活焕然一新", "choice": "D", "keypoints": "方式目的", "most_wrong": "B", "human_count": 252085, "human_acc": 71.3053136839, "source": "2023年国考第四十七季行测模考大赛(副省级)第93题", "difficulty": 4, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 2377086, "material": "", "question": "其实,大多数人都在沿着固有的一套路径和习惯生活,也就是“舒适区”,并且倾向于不打破它。特别是在互联网文化的影响下,人们更容易和持有相似观点的人抱团取暖,强化原有的认知方式,增强安全感。可生活的不确定因素那么多,在保持它的开放性的前提下顺其自然,才有更多的机会去拥抱美好的结局吧?因为你搞不清自己在什么节点会茅塞顿开,变成一个十分陌生但很开心的自己。\n\n下列选项中,对这段文字理解正确的是:", "type": "单选题", "options": "A. 打破“舒适区”,安享生活的不确定性,你会收获更多的快乐\nB. 摒除互联网文化影响,不与持相似观点的人抱团取暖,是让自己茅塞顿开的前提\nC. 承认并接受生活中的不确定因素,我们也许会因此改变成为一个自己都不认识的人\nD. 固守“舒适区”,与思想上的同类人“抱团”,执拗于原有习惯和安全感,等于拒绝了很多开放性的快乐", "choice": "D", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 1306590, "human_acc": 31.1274385997, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第16题", "difficulty": 5, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 5115489, "material": "", "question": "甲、乙两辆车从A、B两地同时出发,匀速相向而行。当甲车到达B地时,乙车距离A地10千米;当乙车到达A地时,甲车到达B地并继续行驶了20千米,则A、B两地相距多少千米?", "type": "单选题", "options": "A. 60\nB. 40\nC. 30\nD. 20", "choice": "D", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 18537, "human_acc": 26.7626908345, "source": "2022下半年省考第二季行测模考大赛(安徽卷)第32题", "difficulty": 7, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 53151, "material": "", "question": "科学家在南极洲的海底钻探揭晓了数千万年前南极洲的真实状况,他们发现了与现今截然不同的远古南极洲。在距今4800万-5500万年前的始新世时期,这里温度较高,或许拥有一片绿色海岸。\n\n以下哪项如果为真,最能支持上述结论?", "type": "单选题", "options": "A. 研究员观察了分布在同一深度的海底火山锥体,发现始新世时期曾出现了大规模的火山喷发\nB. 研究发现,南极洲最温暖的地带——南设得南群岛上生长着200种淡水藻类,这些藻类有时也会在冰面上生长\nC. 科学家在海底沉积层中发现了木棉树的花粉,而木棉树是一种生长于热带地区的植物,它的树干不仅粗大且能储存水分\nD. 在海底探测中,科学家发现了一些类似原核生物的化石,这意味着南极洲有可能孕育了早期的生命形态", "choice": "C", "keypoints": "补充论据", "most_wrong": "B", "human_count": 381079, "human_acc": 82.3388326305, "source": "2013年921联考《行测》题(河南卷)第71题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 5436698, "material": "", "question": "美国哈佛大学与埃默里大学研究人员合作,利用人类干细胞来源的心肌细胞制造出一种完全自主的“人造鱼”装置。这种生物混合装置同时包含生物和人工部分,能通过心肌收缩,在水中游泳超过100天。科学家据此认为,人类的心律失常等疾病将有机会被治愈。\n\n上述论证最可能基于的潜在假设是(    )。", "type": "单选题", "options": "A. “人造鱼”装置的心肌收缩频率与人类心脏高度相似,可为研究心脏疾病提供研究模型\nB. 干细胞在一定条件下能够多向分化为组织细胞,在治疗遗传性疾病方面潜力巨大\nC. “人造鱼”装置的“体能”会随其“年龄”增加而改善,其肌肉收缩幅度会不断提升\nD. 目前“人造鱼”装置还需通过外部光基因刺激来控制其肌肉收缩,进而实现其在水中自主游泳", "choice": "A", "keypoints": "搭桥", "most_wrong": "C", "human_count": 20018, "human_acc": 95.2692576681, "source": "2023上半年省考第二季行测模考大赛(北京卷)第105题", "difficulty": 3, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2377142, "material": "", "question": "假设“如果张楠和林枫不是志愿者,那么杨梅是志愿者”是前提,“林枫是志愿者”为结论。\n\n那么,下列各项中,是其必要前提的是:", "type": "单选题", "options": "A. 张楠是志愿者\nB. 杨梅不是志愿者\nC. 杨梅和张楠都是志愿者\nD. 杨梅和张楠都不是志愿者", "choice": "D", "keypoints": "搭桥", "most_wrong": "B", "human_count": 1547257, "human_acc": 57.6758095132, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2387377, "material": "", "question": "有报道称,已婚者一般比独身者寿命长,所以独身的压力一定对健康有损耗。\n\n以下哪项如果为真,最能支持上述论证?", "type": "单选题", "options": "A. 独身者寿命短于同龄已婚者\nB. 独身者会比已婚者的压力更大\nC. 已婚者寿命不尽相同\nD. 人的寿命受多种因素影响", "choice": "B", "keypoints": "搭桥", "most_wrong": "A", "human_count": 31582, "human_acc": 63.0739028561, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第99题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"]]}, {"id": 5704994, "material": "", "question": "____________________。要实现粮食饭碗的长期安全,必须突破传统“肩挑背磨”“看天吃饭”的生产模式,通过建设一支现代化农业产业专业人才队伍,大力发展现代化农业,进一步解放发展生产力,逐步提升农业生产中各环节的科技含量,确保粮食生产长期高质、高量、高效。要坚持问题导向,围绕“卡脖子”的地方尽快培养一批紧缺农业科技人才,兜牢粮食安全的底线;要兼顾长期发展,完善农业全流程的专业型和复合型人才培育,长期向社会供应懂农业、爱农村、有技术的技术型人才。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 转变传统生存方式,打造农业人才队伍“火车头”\nB. 强化科技创新培育,帮助农业人才挑起“金扁担”\nC. 完善人才培养流程,搭建农业人才发展“大舞台”\nD. 建设专业人才队伍,撑起产业人才培育“顶梁柱”", "choice": "B", "keypoints": "开头", "most_wrong": "D", "human_count": 4831, "human_acc": 23.4527013041, "source": "2023下半年省考第十七季行测模考大赛(河南卷)第34题", "difficulty": 7, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 2021872, "material": "", "question": "所有工作都是有报酬的,而任何有报酬的工作都是可以用金钱衡量的。因此,公益劳动不是工作。\n\n上述论证的成立,必须补充以下哪项前提?", "type": "单选题", "options": "A. 公益劳动不可以用金钱衡量\nB. 有报酬的工作不是公益劳动\nC. 公益劳动不是有报酬的工作\nD. 一切有报酬的工作都是工作", "choice": "A", "keypoints": "必要条件", "most_wrong": "C", "human_count": 350923, "human_acc": 64.8079493222, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第79题", "difficulty": 5, "formulas": 0, "history": [{"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2133678, "material": "", "question": "扶贫必扶智。让贫困地区的孩子们接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n以上观点的前提是:", "type": "单选题", "options": "A. 贫困的代际传递导致教育的落后\nB. 富有阶层大都受过良好教育\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就财富", "choice": "D", "keypoints": "必要条件", "most_wrong": "A", "human_count": 2721802, "human_acc": 71.5025927676, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 4, "formulas": 0}, {"id": 2271348, "material": "", "question": "扶贫先扶智,让贫困地区的孩子接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n上述观点最恰当的前提是(  )。", "type": "单选题", "options": "A. 贫困地区与非贫困地区教育发展不均衡\nB. 贫困代际传递导致教育落后\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就未来", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 21632, "human_acc": 63.6094674556, "source": "广西2019年定向招录选调生笔试第32题", "difficulty": 5, "formulas": 0}, {"id": 47687, "material": "", "question": "西双版纳傣族的竹楼都用方形柱子将房子架空来防止潮湿及蚊虫骚扰,之所以用方形柱子而不是圆形柱子,是为了防止蛇攀爬进入竹楼。\n\n下列哪项最有可能是上述陈述的假设:", "type": "单选题", "options": "A. 傣族人喜欢把东西做成方形的\nB. 蛇喜欢攀爬圆形的柱子\nC. 西双版纳热带雨林中有很多蛇\nD. 蛇不能缠绕着方形的柱子爬行", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 372360, "human_acc": 84.9487055538, "source": "2013年浙江省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 1789586, "material": "", "question": "逆势扩张:指企业在面临巨大压力和困难的情况下,进一步巩固和拓展市场,在竞争中抢占先机的经营行为。\n\n下列不属于逆势扩张的是:", "type": "单选题", "options": "A. 当大多数的国产品牌彩电市场份额纷纷下滑的时候,某电视厂家却连续推出了几款超级电视,市场占比高歌猛进,遥遥领先几大洋品牌\nB. 某汽车油箱销售公司是我国规模较大的自主品牌出口企业,近期已正式进入预先披露更新企业名单之列,向上市的目标又迈进了一步\nC. 在人们普遍认为房地产调控政策将严重影响家居行业之际,某品牌家具高调宣布,最近在省城及周边地区又成功开设了多家专营店\nD. 国内零售行业近期表现欠佳,各销售企业纷纷收缩实体阵地,某民营企业今日却在省城新增了一家购物中心,另外两家不久也将开业", "choice": "B", "keypoints": "大前提", "most_wrong": "A", "human_count": 476204, "human_acc": 92.1741522541, "source": "2016年江苏省公务员录用考试《行测》题(B类)第111题", "difficulty": 5, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}, {"id": 9009, "material": "", "question": "体液是指人体体内含有的大量以水为基础的液体,包括细胞内液和细胞外液,其中除含有大量的水外,还有许多离子和化合物。\n以下不属于体液的是:", "type": "单选题", "options": "A. 炎热环境中排出的汗液\nB. 血管中流动的血浆\nC. 组织细胞间隙的组织液\nD. 淋巴管内流动的淋巴", "choice": "A", "keypoints": "大前提", "most_wrong": "D", "human_count": 18888, "human_acc": 42.095510377, "source": "2009年江西省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 2440235, "material": "", "question": "注意分配是指在同一时间内,把注意指向不同的对象,同时从事几种不同活动的现象。\n\n根据上述定义,下列不属于注意分配的是:", "type": "单选题", "options": "A. 学生边听讲边做笔记\nB. 歌手自拉自唱\nC. 工人边观察仪表边控制调节\nD. 运动员一鼓作气完成了躲避、转身、投篮的动作", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 198157, "human_acc": 86.5591424981, "source": "2019年青海省法院、检察院录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 2564047, "material": "", "question": "现阶段,人类抗衰老研究大多数集中在染色体末端的“小帽子”——端粒上,端粒能够防止基因DNA密码的“磨损”,在生物健康和衰老进程中至关重要。但在细胞每次分裂时,它们都会变短一些,直到细胞不再分裂而死亡。如果能干预这一过程,则将实现对衰老以及衰老带来的不良影响的调节。2015年,科学家发现了一种名为PARN的基因,这个基因处于正常情况时会稳定端粒酶的一个重要成分TERC,进而使端粒酶产量恒定,但当_变异时则会导致端粒酶的产生量变少,从而造成端粒过早地变短。英国一个研究团队筛选了超过10万种已知的化学物质,最终发现一种名为PAPD5的酶也能稳定TERC,进而恢复端粒酶的正常平衡。\n\n文段中加下划线的“其”指代的是:", "type": "单选题", "options": "A. TERC\nB. PAPD5\nC. DNA\nD. PARN", "choice": "D", "keypoints": "代词", "most_wrong": "A", "human_count": 349209, "human_acc": 80.0975919865, "source": "2021年国考第七季行测模考大赛(副省级)第47题", "difficulty": 4, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2052038, "material": "", "question": "曾有新闻报道,一位家长带着两个孩子逛商场,两个孩子从玻璃扶栏上掉下,当场死亡,这使家长陷入无限的哀痛与自责中。同样,获得了第89届奥斯卡金像奖最佳影片和最佳导演提名的电影《海边的曼彻斯特》,片中人物李,因为自己的过失导致三个幼子葬身火海。李在事情发生多年之后离开故乡,一个人住在没有家具的小公寓里,做着粗重的底层工作。他整天浑浑噩噩,不与人交往,仿佛生活在永远不会结束的冬天。从心理学上看,他其实患上了持续哀痛障碍。   \n\n这段文字是一篇文章的开头,接下来的内容最可能是:", "type": "单选题", "options": "A. 介绍持续哀痛障碍第三个案例\nB. 解释持续哀痛障碍的基本含义\nC. 概括持续哀痛障碍的行为表现\nD. 分析影片中人物李的心理特征", "choice": "B", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 941185, "human_acc": 85.198127892, "source": "2017年422联考《行测》题(吉林卷甲级)第38题", "difficulty": 4, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 4800074, "material": "", "question": "情景交融根据表达方式不同,有景中藏情式和情中见景式。景中藏情式集中笔墨全力写景,一切都通过逼真的画面来表达,虽不言情,但情藏景中,往往更显得情深意浓;情中见景式是营造“情景交融”的意境,让读者在浓郁的“情”中体悟到清晰的景,体悟到最真挚最浓郁的情,从而得到美的享受。\n\n根据上述定义,下列属于景中藏情式的是:", "type": "单选题", "options": "A. 碧云天,黄花地,西风紧,北雁南飞\nB. 念天地之悠悠,独怆然而涕下\nC. 问君能有几多愁?恰似一江春水向东流\nD. 中路因循我所长,古来才命两相妨", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 288179, "human_acc": 89.6751671704, "source": "2022上半年省考第十一季行测模考大赛(陕西卷)第73题", "difficulty": 4, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 5487099, "material": "", "question": "阑尾盘踞在右下腹,很容易因被堵塞而突发急性阑尾炎,一旦确诊,首选对阑尾进行切除,从根本上逆转病情。传统手术需要在右下腹取一个至少长5厘米的切口,切除阑尾后缝合。而腹腔镜手术则只需要在腹壁开三个5毫米左右的小口,通过器械完成阑尾切除。因此有医生认为,在需要切除阑尾时应优选腹腔镜手术。\n\n以下除哪项外,均能支持上述结论?", "type": "单选题", "options": "A. 传统手术需逐层破坏腹壁组织,相比腹腔镜手术不仅创伤大、伤口污染率高,且术后疼痛更加明显\nB. 传统手术通过右下腹切口难以对整个腹腔进行全面探查,更加不利于寻找急性阑尾炎的原发病灶\nC. 腹腔镜手术已经在很多病症的临床治疗中得到了应用,未来几乎所有的外科手术都能采用这种方式\nD. 腹腔镜手术的切口微小,感染率更低,术后疼痛轻微,疤痕几乎看不出来,视觉效果美观", "choice": "C", "keypoints": "加强选非题", "most_wrong": "B", "human_count": 31502, "human_acc": 74.3032188432, "source": "2023上半年省考第八季行测模考大赛(深圳卷)第40题", "difficulty": 4, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 5030063, "material": "", "question": "如今,楼市供求基本面已经基本平衡,短期内来看,楼市仍然面临“去库存”的问题,即使有限购取消、降准降息等“救市”政策,也改变不了中国楼市“去库存”的基本现实,然而部分城市的房价却出现了不降反升的现象。\n\n以下最能解释上述现象的是:", "type": "单选题", "options": "A. 经调查显示,房地产行业占中国经济的比重达到25%,房地产目前仍然是中国经济的支柱产业\nB. 中国经济依靠出口、消费和投资三驾马车拉动,但疫情导致出口不振、消费低迷,需依靠房地产投资拉动经济\nC. 中国当前部分城市地价上涨,房地产开发公司用地需求减少,商品房供给数量不足,形成了物以稀为贵的局面\nD. 中国房价下降过快将会引发一系列社会问题,因此部分城市纷纷出台了遏制房价下降过快的政策", "choice": "C", "keypoints": "原因解释", "most_wrong": "B", "human_count": 6928, "human_acc": 85.5658198614, "source": "2022上半年省考第二十二季行测模考大赛(广东县级卷)第70题", "difficulty": 4, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 5042669, "material": "", "question": "荷兰有一个城市为解决垃圾问题而购置了垃圾桶,但由于人们不愿意使用垃圾桶,乱扔垃圾现象仍十分严重。该市卫生机关采取了提高罚金、增加街道巡逻人员等举措,但是成效并不显著。后来,有人设计了一个电动垃圾桶,桶上装有一个感应器,每当垃圾丢进桶内,感应器就有反应而启动录音机,播出一则故事或笑话。这个设计大受欢迎,所有的人不论距离远近,都把垃圾丢进垃圾桶里,城市因而变得清洁起来。这个理论后来也被称为垃圾桶理论。\n\n以下说法符合垃圾桶理论的是:", "type": "单选题", "options": "A. 为强化安全意识,某企业召开思想动员会,提前告知违规处罚制度\nB. 某门店安装了监控,以防止员工在工作时间嬉笑、打闹\nC. 交警面对违停车辆,将“违章处罚单”改为“友情告知单”\nD. 某银行面对投诉率高的现象,对员工加压刺激,降低投诉率", "choice": "C", "keypoints": "故事类", "most_wrong": "B", "human_count": 255517, "human_acc": 95.1740980052, "source": "2022上半年省考第二十三季行测模考大赛(陕西卷)第74题", "difficulty": 3, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 2725486, "material": "", "question": "碳酸钙是珍珠的主要成分,占珍珠比例的百分之九十,但是,想用皮肤来吸收碳酸钙,这几乎是不可能的,因为皮肤有多层结构,固体的珍珠粉很难渗入。珍珠粉外敷之后若有残留粉末,可能会反射出一定的光泽,显得皮肤变白了。其实这只是假象。所以,想靠着珍珠粉去美白是不太现实的。\n\n下列选项除了哪项外,均能反驳上述论证?", "type": "单选题", "options": "A. 现代技术能让珍珠粉的大小达到百纳米以下,可以被吸入皮肤\nB. 某明星有长期外用珍珠粉的习惯,年过60仍皮肤润泽柔滑,细腻白皙\nC. 珍珠粉外敷能部分隔绝空气,减缓空气对皮肤表层细胞的氧化,长期使用能延缓衰老\nD. 珍珠粉中的牛磺酸具有加强巨噬细胞吞噬的能力,黑色素进入表皮层之后部分会被巨噬细胞吞噬降解", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "B", "human_count": 764219, "human_acc": 55.9480986471, "source": "2020年四川下半年公务员录用考试《行测》试题(网友回忆版)第77题", "difficulty": 5, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 19083, "material": "", "question": "某高校本科生毕业论文中被发现有违反学术规范行为的人次在近10年来明显增多,这说明当代大学生在学术道德方面的素质越来越差。\n\n以下哪项如果为真,将会明显削弱上述结论:", "type": "单选题", "options": "A. 互联网的强大功能为学术不端行为带来了极大的便利\nB. 高校没有对大学生进行学术道德方面的相关教育\nC. 近10年来大学本科毕业生的数量大幅增加\nD. 仍有三十名大学本科生的毕业论文被评为省优秀论文", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 90468, "human_acc": 79.2655966751, "source": "2010年安徽省公务员录用考试《行测》题第82题", "difficulty": 4, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}, {"id": 1324947, "material": "", "question": "有甲、乙两家公司,甲公司售后服务部门接到的产品投诉电话是乙公司的3倍。因此,甲公司产品的质量没有乙公司的好。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙公司的产品操作相对来说更为简单\nB. 甲公司接到电话大多数是咨询电话\nC. 甲公司的咨询电话机数量比乙公司多\nD. 甲公司产品的市场占有率达到$76\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 793211, "human_acc": 70.0645855895, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第58题", "difficulty": 5, "formulas": 83}, {"id": 22459, "material": "", "question": "由于在乐业天坑中最大的天坑——大石围的底部的原始森林中发现了与恐龙同时代的植物桫椤,有人据此推测,大石围应形成于恐龙时代,即6500万年前。\n\n如果下列各项为真,哪项最能反驳上述推测:", "type": "单选题", "options": "A. 桫椤至今仍然存在\nB. 在其他乐业天坑中未发现桫椤\nC. 恐龙无法进入这个极深的天坑\nD. 没有在大石围中发现恐龙化石", "choice": "A", "keypoints": "拆桥", "most_wrong": "D", "human_count": 423565, "human_acc": 53.8413230555, "source": "2012年安徽省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"]]}, {"id": 4918960, "material": "", "question": "从历史上看,城与乡并非单独存在,总是相互依存,只是在户籍制度作用下,农村和城市超越地理文化属性,开始被赋予身份特征。但在城乡人口大流动和户籍制度逐步放开的背景下,地理区隔逐步被打破,农村和城市关系重新由割裂走向共融。在现实方面,费孝通先生深情描述的“生于斯、长于斯”的安土重迁社会、“老幼相闻、守望相助”的熟悉社会,“乡土性”在转型中被渐渐磨灭,农村中传统和现代的因素交织融合。这说明,现实的复杂性要求我们不能单从乡村一个维度来理解乡村,____________________。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 更要考虑到城乡交融互动的实际状态及影响\nB. 而是要用发展的眼光来看待城乡之间的变迁\nC. 要破除城乡二元体制来促进城镇一体化建设\nD. 更不能用割裂的眼光来看待农村自身的问题", "choice": "A", "keypoints": "结尾", "most_wrong": "B", "human_count": 244774, "human_acc": 56.3793540164, "source": "2022上半年省考第十六季行测模考大赛(陕西卷)第55题", "difficulty": 5, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 5175776, "material": "某幼儿园大班的老师教导小朋友识别同种物品的宽窄,拿来红、橙、绿、蓝、黄、紫、白、黑8个颜色不同、长度相同、宽窄不同的板凳,让小朋友们把板凳从窄到宽排成一排。已知:\n\n(1)白板凳要么是最宽的,要么是最窄的;\n\n(2)黑板凳和白板凳之间隔着2个板凳;\n\n(3)红板凳和绿板凳之间隔着3个板凳;\n\n(4)蓝板凳和白板凳紧挨着。", "question": "根据上述条件,以下哪项可能为真?", "type": "单选题", "options": "A. 绿板凳和黑板凳隔着1个板凳\nB. 蓝板凳和紫板凳隔着5个板凳\nC. 红板凳和黄板凳隔着5个板凳\nD. 紫板凳紧挨着排在蓝板凳前面", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 85082, "human_acc": 72.0246350579, "source": "2022下半年省考第五季行测模考大赛(江苏卷)第105题", "difficulty": 4, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 5683124, "material": "", "question": "电影频道曾有过脍炙人口的宣传语“打开电视看电影”;多档电视节目和电视纪录片曾被重新剪辑或者制作后登陆影院,实现“走进影院看电视”。如今,数量庞大的互联网用户则体验着“打开手机看电影”“打开平板电脑看电影”“影游融合”“全民短视频”······在媒介融合时代,不仅内容流通多元不拘,____________________。在“你方唱罢我登场”的热闹中,“打开电视看网剧”正悄然成为人们当下的生活时尚与休闲方式。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 形式感层面的边界消弭也愈加明显\nB. 观众还可以实现随时随地观影\nC. 还获得上佳的情感认同和视听体验\nD. 同时文学领域的作品水平在不断提高", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 4156, "human_acc": 60.3705486044, "source": "2023下半年省考第十五季行测模考大赛(河南卷)第35题", "difficulty": 5, "formulas": 0, "history": [{"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}, {"id": 11185, "material": "", "question": "1999年起,我国普通高校开始实行扩招。大幅度的扩招____________________,因此出现了高校学生质量滑坡现象。填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 使入学门槛骤然降低\nB. 缓解了学生和家长的思想压力\nC. 给就业带来了巨大的压力\nD. 使更多的学生有了上学的机会", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 65897, "human_acc": 96.1576399533, "source": "2008年湖北省公务员录用考试《行测》题(B类)第18题", "difficulty": 5, "formulas": 0}, {"id": 2256378, "material": "", "question": "如果怀念过去的书信形式,最好的做法是重新拾起情怀,即在写电子邮件或者使用其他即时通讯工具的时候,______,拒绝被新媒体时代轻快、浮躁的交流形式所侵袭。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽量让表达多点诗意\nB. 能够勇敢地说“不”\nC. 能够多一点郑重感\nD. 尽量让交际慢下来", "choice": "C", "keypoints": "中间", "most_wrong": "D", "human_count": 29886, "human_acc": 37.5292779228, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第16题", "difficulty": 5, "formulas": 0}, {"id": 16273, "material": "", "question": "中国人对小说的欣赏习惯,讲究的是无巧不成书,(  ),也就是不喜欢一般化,而喜欢特殊化。", "type": "单选题", "options": "A. 爱看不知道的事情,而不爱看已经清楚知道了的事情\nB. 爱看新鲜的事情,而不爱看已经清楚知道了的事情\nC. 不爱看已经清楚知道了的事情,而爱看不知道的事情\nD. 不爱看陈旧的事情,而爱看新鲜的事情", "choice": "C", "keypoints": "中间", "most_wrong": "D", "human_count": 51816, "human_acc": 40.3388914621, "source": "2009年山西省党群机关录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 748839, "material": "", "question": "根据贝格曼定律,温血动物身体上每单位表面面积发散的热量相等,因此大型化动物能获得更小的体表面积与体积之比,在体温调节中比小型动物消耗的能量少。所以,在同种动物中,生活在较冷气候中的种群其体型比生活在较暖气候中的种群大。\n\n如果以下各项为真,最能削弱上述观点的是:", "type": "单选题", "options": "A. 较冷气候中的动物种群的冬眠时间比较长\nB. 温血动物身体表面发散热量并不是非常多\nC. 动物体型的增大必然导致绝对散热量增加\nD. 较冷地区也存在许多体型较小的温血动物", "choice": "C", "keypoints": "削弱论据", "most_wrong": "D", "human_count": 228884, "human_acc": 61.8243302284, "source": "2014年青海省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 4004840, "material": "", "question": "某公司发生失窃案,公安机关经过调查锁定了犯罪嫌疑人是该公司会计张某。办案民警小王说:“一定不是他”,办案民警小李发表了反对观点:“当其他可能性被排除了,剩下的不管看起来多么不可能,但一定是事情的真相。”\n\n以下哪项如果为真,最能削弱小李的说法?", "type": "单选题", "options": "A. 追究违法行为最重要的是用证据说话\nB. 办案民警无法极尽所有可能性\nC. 办案民警小王比小李更了解案件经过\nD. 公司职员评价张某平时为人老实诚恳", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 178912, "human_acc": 76.9590636738, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第91题", "difficulty": 5, "formulas": 0}, {"id": 4658543, "material": "", "question": "德国的一项研究显示,长期居住在天寒地冻、杳无人烟的南极洲,人的大脑平均会缩小7%,学习、记忆以及与人交往能力随之减弱。因此,生活在炎热地区的人比生活在寒冷地区的人更聪明。\n\n以下哪项如果为真,最能削弱上述论证?", "type": "单选题", "options": "A. 该项研究成果尚未公开发表\nB. 气候会对人的智力产生巨大的影响\nC. 寒冷令人们为保存更多能量,倾向于减少学习及社交活动\nD. 该研究结果是可逆的,离开南极洲一段时间后人的大脑基本恢复正常水平", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 1126762, "human_acc": 52.4565968678, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第78题", "difficulty": 5, "formulas": 0}, {"id": 1679314, "material": "", "question": "一项民意调查结果显示,在1000多名参与投票的网友中,六成网友支持延长女性产假至三年,以便更好地照顾宝宝;四成网友表示反对,认为产假太长,会增加企业负担,进而增加女性就业难度,不可行。\n\n以下哪项如果为真,最能质疑上述反对者的观点?", "type": "单选题", "options": "A. 企业除了追求利润之外,也应当承担社会责任\nB. 女性产假延长的成本,由财政或社保基金来承担\nC. 这份调查样本量不够大,不足以代表真正的民意\nD. 法律应强制规定企业必须招聘一定比例的女性", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 485630, "human_acc": 84.9737454441, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第79题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 5629339, "material": "", "question": "近日,有医学科普团队随机对200位白领进行采访,采访结果显示有接近40%的白领正患有或曾患有腰肌劳损,而腰肌劳损比较严重的白领感觉腰部不适向臀部放射,且难以坚持弯腰工作。有人认为,正是经常用拳头捶敲腰部才引起腰部肌肉受损,最终导致腰肌劳损。\n\n以下哪项如果为真,最能质疑上述结论?", "type": "单选题", "options": "A. 为了放松腰部肌肉和拉伸腰部关节,患有腰肌劳损的患者才会经常用拳头捶敲腰部\nB. 用拳头捶敲腰部的过程中可使肩周、脊椎和腰椎得到活动,对关节放松非常有好处\nC. 当出现腰肌劳损症状后,患者可以选择物理治疗方法来有效避免腰肌劳损症状加重\nD. 腰肌劳损的部分患者认为只要在家用拳头捶敲按摩腰部,使腰部彻底休息就会好转", "choice": "A", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 62579, "human_acc": 69.7758033845, "source": "2023下半年省考第十季行测模考大赛(上海卷)第83题", "difficulty": 4, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 2274570, "material": "", "question": "马兰:因为赵老师的课讲得特别好,学生都很喜欢他,所以他有资格参加学校十佳教师评选。\n\n李溪:因为赵老师曾上课迟到造成教学事故,他不是合格的教师。所以,他没有资格参加学校十佳教师评选。\n\n李溪的论证使用了以下哪项作为前提?\n\nⅠ.有些课讲得好的老师发生过教学事故\n\nⅡ.凡有过教学事故的教师都不是合格教师\n\nⅢ.只有合格教师才有参评学校十佳教师的资格", "type": "单选题", "options": "A. 仅Ⅰ\nB. 仅Ⅱ\nC. 仅Ⅲ\nD. Ⅱ和Ⅲ", "choice": "D", "keypoints": "搭桥;必要条件", "most_wrong": "C", "human_count": 362596, "human_acc": 80.9647651932, "source": "2019年北京市公务员录用考试《行测》题(网友回忆版)第97题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"], ["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 19095, "material": "", "question": "一项调查结果显示,即使普通人的后代付出与成功人士的后代同样的努力,其成功的几率也仅为后者的一半。由此可以得出结论,成功与否主要取决于遗传因素。\n\n最能反驳以上观点的一项是:", "type": "单选题", "options": "A. 成功人士的后代往往比普通人的后代更加努力\nB. 许多成功人士的后代在事业上毫无建树\nC. 成功人士后代较普通人后代有更好的成长环境\nD. 很多所谓的成功人士出身于普通的家庭", "choice": "C", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 139374, "human_acc": 40.5269275475, "source": "2011年广东省公务员录用考试《行测》题第70题", "difficulty": 6, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 2610977, "material": "", "question": "“二十四节气”不仅是人类的非物质文化遗产,还是中华民族的祖先历经几千年的农业生产实践创造出来的宝贵科学遗产。从气候学角度看,“二十四节气”是中国人在长期的生产实践中逐步认识到的季节更替和气候变化规律,凝聚了中国人对大自然的科学态度和正确的观点及方法。周兵解释说,“二十四节气”起源于黄河流域,把全年分为立春、立夏、立秋和立冬等,以反映四季、气温、降雨、物候等方面的变化。这反映出中国古代民间对气候的朴素认知,农耕时代中国农民一直依靠“二十四节气”来安排生活和生产,这种科学认识然后又远播海外各大洲,影响了全世界。\n\n最适合做这段文字的标题是:", "type": "单选题", "options": "A. “二十四节气”的起源发展\nB. “二十四节气”的世界影响\nC. “二十四节气”的科学价值\nD. “二十四节气”的气候变化", "choice": "C", "keypoints": "标题填入题", "most_wrong": "A", "human_count": 86826, "human_acc": 64.0649114321, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第33题", "difficulty": 6, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 826995, "material": "", "question": "随着人才竞争的日益激烈,市场上出现了一种“挖人公司”,其业务是为公司招募所需要的人才,包括从其他的公司中“挖人”。“挖人公司”自然不得同时帮助其他公司从自己的雇主处挖人。一个“挖人公司”的成功率越高,雇佣它的公司就越多。\n\n上述断定最能支持哪个结论:", "type": "单选题", "options": "A. 一个 “挖人公司”的成功率越高,能成为“挖人”目标的公司就越少\nB. 为了保护自己的人才不被挖走,一个公司不应雇佣“挖人公司”从别的公司挖人\nC. 为了有利于“挖进”人才的同时又确保自己的人才不被“挖走”,雇主的最佳策略是提高雇员的工资\nD. 为了有利于“挖进”人才的同时又确保自己的人才不被“挖走”,雇主的最佳策略是雇佣只为自己服务的“挖人公司”", "choice": "A", "keypoints": "加强-其他", "most_wrong": "D", "human_count": 104902, "human_acc": 31.3578387447, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第90题", "difficulty": 6, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 2393974, "material": "", "question": "依次填写在甲乙丙三处横线上的句子,最恰当的一项是(  )。\n\n上个世纪八十年代初,我刚刚参加工作,______后来回想起来,自己也常常惊讶于那时候的大胆:______却居然敢放言高论,______\n\n甲:①我为了赶任务开始写一篇关于文学的论文,②我开始写一篇关于文学的论文,为了赶任务,\n\n乙:①对于本国的古典文学缺乏系统研究,对于欧洲文学所知有限,而政治思想水平也很低的那时的我,②我那时对于本国的古典文学缺乏系统研究,对于欧洲文学所知有限,而政治思想水平也很低,\n\n丙:①真是大胆的事。②岂非大胆?", "type": "单选题", "options": "A. 甲①乙①丙②\nB. 甲①乙②丙②\nC. 甲②乙①丙①\nD. 甲②乙①丙②", "choice": "D", "keypoints": "结尾;中间", "most_wrong": "A", "human_count": 1130092, "human_acc": 8.0779263989, "source": "2019年青海省公务员录用考试《行测》题省市州级(A类)(网友回忆版)第54题", "difficulty": 5, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 4343110, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,国有控股企业实现利润总额约为:", "type": "单选题", "options": "A. 100亿元\nB. 111亿元\nC. 121亿元\nD. 128亿元", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 130125, "human_acc": 85.1104707012, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 2, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 1379525, "material": "2012年末,中国大陆总人口135404万人,全年出生人口1635万人,死亡人口966万人。从性别结构看,男性人口69395万人,同比增加327万人;女性人口66009万人,同比增加342万人;从城乡结构看,城镇人口71182万人,同比增加2103万人;乡村人口64222万人,同比减少1434万人。\n\n\n        2012年末全国就业人员76704万人,比上年末增加284万人。其中城镇就业人员37102万人,比上年末增加1188万人;乡村就业人员39602万人。\n\n        2012年末,0~14岁(含不满15周岁)人口22287万人,占总人口的16.5%;15~59岁(含不满60周岁)劳动年龄人口93727万人,占总人口的69.2%;60岁及以上人口19390万人,占总人口的14.3%。\n\n        2012年全国农民工总量26261万人,比上年增加983万人,增长3.9%。其中本地农民工9925万人,增长5.4%;外出农民工16336万人,增长3.0%。", "question": "2012年,中国大陆1~14岁(含不满15周岁)的人口数量为:", "type": "单选题", "options": "A. 20652万人\nB. 23922万人\nC. 22287万人\nD. 1635万人", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "C", "human_count": 808489, "human_acc": 72.3794634188, "source": "2015年425联考《行测》题(贵州卷)第105题", "difficulty": 5, "formulas": 0, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 4582370, "material": "2020年1-11月,全国文体用品制造业规模以上企业累计完成利润总额181.31亿元,同比下降3.71%,降幅较1-10月收窄4.69个百分点。文体用品制造业营业收入利润率为6.23%,同比下降0.35个百分点。从3个子行业看,体育用品制造完成利润总额82.10亿元,占45.28%;文教办公用品制造完成78.90亿元,占43.52%;游艺器材及娱乐用品制造完成20.31亿元,占11.20%。其中,体育用品制造业利润同比增长5.20%,增速较1-10月加快2.94个百分点;文教办公用品同比下降11.25%,降幅较1-10月收窄3.59个百分点;游艺器材及娱乐用品同比下降4.86%,降幅较1-10月收窄16.3个百分点。\n\n        1-11月,在文教办公用品行业的7个子行业中,文具制造累计完成利润总额45.27亿元,同比增长4.31%;本册印制完成15.17亿元,同比下降15.87%;笔的制造完成7.57亿元,同比下降12.56%;工艺美术颜料制造完成5.16亿元,同比下降46.48%;其他文教办公用品制造完成3.41亿元,同比下降42.83%;教学用模型及教具制造完成1.64亿元,同比下降5.86%;墨水、墨汁制造完成0.67亿元,同比下降53.82%。\n\n        1-11月,从营业收入利润率看,文具制造为6.44%,同比下降0.34个百分点;墨水、墨汁制造为6.14%,同比下降3.51个百分点;笔的制造为5.82%,同比下降0.09个百分点;本册印制为5.43%,同比下降0.41个百分点;工艺美术颜料制造为4.46%,同比下降2.06个百分点;其他文教办公用品制造为4.16%,同比下降2.7个百分点;教学用模型及教具制造为3.54%,同比下降0.79个百分点。", "question": "2019年1-11月,全国规模以上企业文教办公用品行业的7个子行业中营业收入利润率最高的行业是:", "type": "单选题", "options": "A. 文具制造\nB. 墨水、墨汁制造\nC. 笔的制造\nD. 本册印制", "choice": "B", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 346167, "human_acc": 74.2751331005, "source": "2021下半年省考第三十三季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 18017, "material": "2008年,我国全年建设占用耕地19.16万公顷,灾毁耕地2.48万公顷,生态退耕0.76万公顷,因农业结构调整减少耕地2.49万公顷。土地整理复垦开发补充耕地22.96万公顷。\n\n        全年水资源总量27127亿立方米,比上年增加7.4%;人均水资源2048立方米,增加6.9%;全年平均降水量659毫米,增加8.0%;年末全国大型水库蓄水总量1962亿立方米,比上年末多蓄水93亿立方米;全年总用水量5840亿立方米,比上年增长0.4%。其中,生活用水增长0.6%,工业用水增长1.8%,农业用水减少0.2%,生态补水减少0.7%。万元国内生产总值用水量231.8立方米,比上年下降7.9%;万元工业增加值用水量130.3立方米,下降7.0%。\n\n        全年完成造林面积477万公顷。其中,人工造林329万公顷,林业重点工程完成造林面积312万公顷,占全部造林面积的65.4%。全民义务植树23.1亿株。截至2008年底,自然保护区达到2538个,其中国家级自然保护区303个。新增综合治理水土流失面积4.7万平方公里,新增实施水土流失地区封育保护面积2.6万平方公里。\n\n        初步测算,全年能源消费总量28.5亿吨标准煤,比上年增长4.0%。其中,煤炭消费量27.4亿吨,增长3.0%;原油消费量3.6亿吨,增长5.1%;天然气消费量807亿立方米,增长10.1%;电力消费量34502亿千瓦时,增长5.6%。全国万元国内生产总值能耗下降4.59%。主要原材料消费中,钢材消费量5.4亿吨,增长4.2%;精炼钢消费量538万吨,增长6.9%;电解铝消费量1260万吨,增长4.3%;乙烯消费量998万吨,下降2.9%;水泥消费量13.7亿吨,增长3.5%。", "question": "与2007年相比,2008年我国的水泥消费增加量和以下哪项最接近:", "type": "单选题", "options": "A. 8000万吨\nB. 5000万吨\nC. 800万吨\nD. 500万吨", "choice": "B", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 67969, "human_acc": 77.0601303535, "source": "2010年浙江省公务员录用考试《行测》题(A类)第119题", "difficulty": 5, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 5445865, "material": "2021年H省商品、服务类电子商务交易额为11526.13亿元,比上年同期增长21.8%,高于全国增速2.3个百分点。H省跨境电商进出口交易额为2018.3亿元,其中,出口1475.5亿元,同比增长15.7%;进口542.8亿元,同比增长16.0%。H省网上零售额为2948.2亿元,同比增长12.5%,其中,实物商品网上零售额为2426.4亿元,同比增长10.1%。\n\n        从交易对象看,2021年H省商品类电子商务交易额为8896.60亿元,同比增长16.6%;服务类电子商务交易额为2629.53亿元,同比增长43.5%。从交易主体看,2021年H省对单位电子商务交易额为7254.75亿元,同比增长19.8%,占商品、服务类电子商务交易额比重为62.9%;对个人电子商务交易额为4271.38亿元,同比增长25.4%。\n\n        2021年H省共有电子商务平台87个,在本省电商平台上实现交易金额为5354.93亿元,同比增长41.0%,收取的平台交易服务费为3.17亿元,同比增长49.5%。从地区分布来看,2021年本地电子商务平台拥有量最多的为Z市,有44个平台,实现交易金额4239.04亿元。", "question": "2021年,H省除Z市外其他地区的电子商务平台平均每个平台实现的交易金额约为多少亿元?", "type": "单选题", "options": "A. 5\nB. 12\nC. 26\nD. 62", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 620871, "human_acc": 89.2161173577, "source": "2023年国家公务员录用考试《行测》题(地市级网友回忆版)第129题", "difficulty": 4, "formulas": 0, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 5430273, "material": "2021年上半年,S市工业战略性新兴产业总产值7164.68亿元,比去年同期增长19.6%,两年平均增长12.3%。其中,新能源汽车、新能源和高端装备产值同比分别增长2.5倍、32.1%和24.5%。\n\n        2021年上半年,全市第三产业增加值15080.35亿元,比去年同期增长11.3%。其中,信息传输、软件和信息技术服务业增加值1770.06亿元,比去年同期增加245.5亿元;批发和零售业增加值2428.92亿元,同比增长15.2%;金融业增加值3842.65亿元,比去年同期增加274.7亿元;房地产业增加值1812.18亿元,同比增长13.6%。\n\n        2021年上半年,全市社会消费品零售总额9048.44亿元,比去年同期增加了2104.14亿元。分行业看,批发和零售业零售额8287.13亿元,同比增长28.4%;住宿和餐饮业零售额761.31亿元,同比增长54.0%。2021年上半年,全市网上商店零售额1485.72亿元,比去年同期增加259.92亿元。\n\n        2021年上半年,全市新建商品房销售面积832.83万平方米,比去年同期增长29.2%。其中,新建商品住宅销售面积667.94万平方米,同比增长23.0%。", "question": "2020年上半年,S市工业战略性新兴产业总产值同比增长在以下哪个范围内?", "type": "单选题", "options": "A. 不到7%\nB. 7~10%\nC. 10~13%\nD. 超过13%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 474936, "human_acc": 75.5832364782, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4933275, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "与2018年相比,2019年S省建筑业增加值约增长了:", "type": "单选题", "options": "A. 7.2%\nB. 8.0%\nC. 8.5%\nD. 19.3%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 299975, "human_acc": 65.7551462622, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第93题", "difficulty": 6, "formulas": 0}, {"id": 5198480, "material": "改革开放以来,S市作为中国第一个经济特区,凭借改革精神、政策红利以及地缘优势迅速发展成为国内最发达地区之一。2018-2020年S市实现生产总值分别为24221.98亿元、26927.09亿元和27670.24亿元,同比分别增长7.6%、6.7%和3.1%。分产业来看,2020年S市第一产业增加值25.79亿元,同比下降3.1%;第二产业增加值10454.01亿元,同比增长1.9%;第三产业增加值17190.44亿元,同比增长3.9%。第一、二、三产业增加值比例为0.1:37.8:62.1。\n\n        2020年全市现代服务业增加值同比增长6.4%,现代服务业增加值占第三产业增加值比重为76.1%,其中金融业增加值4189.63亿元,同比增长9.1%,信息传输、软件和信息技术服务业增加值2883.49亿元,同比增长11.3%,是拉动现代服务业增长的主要力量。\n\n        2020年全市货物贸易进出口总额30502.5亿元,同比增长2.4%,高于2019年增速3.0个百分点。其中,出口总额16972.7亿元,同比增长1.5%。", "question": "2020年全市货物贸易进出口总额比2018年约增长:", "type": "单选题", "options": "A. 1.79%\nB. 2.23%\nC. 3.01%\nD. 7.90%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 153985, "human_acc": 82.3346429847, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0}, {"id": 2028352, "material": "2015年我国钟表全行业实现工业总产值约675亿元,同比增长$3.2\\%$,增速比上年同期提高1.7个百分点。\n\n        全行业全年生产手表10.7亿只,同比增长$3.9\\%$,完成产值约417亿元,同比增长$4.3\\%$,增速提高1.9个百分点;生产时钟(含钟心)5.2亿只,同比下降$3.7\\%$,完成产值162亿元,同比下降$4.7\\%$,降幅扩大1.3个百分点;钟表零配件、定时器及其它计时仪器产值96亿元,同比增长$14.3\\%$,增速基本保持上年水平。\n\n        2015年我国钟表行业规模以上工业企业主营业务收入365.8亿元,同比增长$8.7\\%$;实现利润23.4亿元,与上年相比下降$1.5\\%$,而2015年轻工行业主营业务利润率(利润/主营业务收入)的平均水平为$7.57\\%$。\n\n        2015年我国钟表行业海关进出口总额为92.5亿美元,同比增长$4\\%$,完成出口总额为57.7亿美元,同比增长$8.3\\%$,进口额34.8亿美元。出口总额中加工贸易额占$47\\%$,较上年缩小2个百分点。", "question": "2015年我国钟表全行业生产时钟(含钟心)的产值与2013年相比约:", "type": "单选题", "options": "A. 上升了$11\\%$\nB. 下降了$11\\%$\nC. 上升了$8\\%$\nD. 下降了$8\\%$", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 2191826, "human_acc": 71.5692304042, "source": "2017年国家公务员录用考试《行测》题(地市级)第121题", "difficulty": 5, "formulas": 345}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 17535, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "2006年我国农村实用人才中,学历在中专以下人数和中专以上人数的比例约为:", "type": "单选题", "options": "A. $33\\colon1$\nB. $25\\colon1$\nC. $29\\colon1$\nD. $27\\colon1$", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "D", "human_count": 10056, "human_acc": 85.2923627685, "source": "2008年重庆市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 338, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 3667939, "material": "2019年,广东省共投入$R\\&D$经费3098.49亿元,比上年增长$14.6\\%$;$R\\&D$经费投入强度(与全省地区生产总值之比)为$2.88\\%$,比上年提高0.17个百分点。按$R\\&D$人员全时工作量计算的人均经费为38.58万元,比上年增加3.12万元。按资金来源分,政府资金投入397.26亿元,比上年增长$38.09\\%$;企业资金投入2649.95亿元,增长$11.87\\%$;境外及其它资金投入51.28亿元,增长$6.91\\%$。\n\n        按活动类型分,全省用于基础研究的经费投入为141.86亿元,比上年增长$23.2\\%$;应用研究经费247.28亿元,增长$7.3\\%$;试验发展经费2709.36亿元,增长$14.9\\%$。\n\n        按活动主体分,工业企业$R\\&D$经费支出2374.63亿元,增长$12.7\\%$;重点建筑业和服务业企业$R\\&D$经费支出364.24亿元,增长$19.7\\%$;政府属科研机构经费支出112.16亿元,增长$37.2\\%$;高等院校经费支出185.78亿元,增长$21.3\\%$;其他企事业单位经费支出59.77亿元,增长$5.8\\%$。\n\n        2019年,全省地方财政科技拨款额为1168.79亿元,同比增长$13.0\\%$,占当年全省财政支出的比重为$6.76\\%$。按区域分,珠三角地区1047.40亿元,增长$11.2\\%$;东翼13.46亿元,减少$10.7\\%$;西翼12.05亿元,增长$32.1\\%$;山区32.59亿元,增长$12.3\\%$。从支出科目分,技术研究与开发支出384.53亿元,增长$11.2\\%$;基础研究支出52.30亿元,比上年增加47.65亿元;科技重大项目支出42.18亿元,增加21.38亿元;科学技术普及支出7.63亿元,增长$10.0\\%$;社会科学支出5.09亿元,减少11.67亿元。", "question": "2019年,广东省西翼地方财政科技拨款额的同比增量约是山区的多少倍?", "type": "单选题", "options": "A. 0.82\nB. 2.70\nC. 0.37\nD. 1.22", "choice": "A", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 89696, "human_acc": 76.623260792, "source": "2021下半年省考第八季行测模考大赛(甘肃卷)第108题", "difficulty": 5, "formulas": 26, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 2880550, "material": "2020年1-10月,N市经济运行继续保持稳步复苏的良好态势。1-10月,全市进出口总额4292.9亿元,同比增长$9.9\\%$,较去年同期回落3.4个百分点。其中,出口总额2708.8亿元,增长$12.7\\%$。1-10月实际使用外资40.09亿美元,增长$15.3\\%$,较前三季度提升9.5个百分点。\n\n        1-10月,全市一般公共预算收入1432.01亿元,同比增长$3.7\\%$,增速较前三季度加快1.2个百分点。其中,税收收入1234.19亿元,增长$2.0\\%$,增幅较前三季度提升1.8个百分点。1-10月,全市一般公共预算支出1320.02亿元,同比增长$2.1\\%$。10月末,金融机构本外币各项存款余额39991.13亿元,增长$10.7\\%$,增速较9月末提升2.5个百分点;金融机构本外币各项贷款余额37664.39亿元,增长$13.5\\%$,增速较9月末提升0.2个百分点。\n\n        1-10月,全市固定资产投资4611.25亿元,同比增长$6.0\\%$,增幅较1-9月提升0.1个百分点。分领域看,基础设施投资增长$22.1\\%$,比1-9月提升3.6个百分点;工业投资增长$9.7\\%$,较1-9月提升2.8个百分点;房地产开发投资增长$1.0\\%$,较1-9月提升0.8个百分点;高新技术投资增长$11.4\\%$,较1-9月提升5.9个百分点。", "question": "从上述材料中能够推出的是:", "type": "单选题", "options": "A. 2019年1-10月N市实际使用外资不足35亿元\nB. 2020年1-10月N市一般公共预算盈余约112亿元\nC. 2020年10月末N市金融机构本外币各项存贷款差同比增长高于$10.7\\%$\nD. 2019年1-10月N市平均每月的固定资产投资超过445亿元", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 384213, "human_acc": 38.0210976724, "source": "2022年国考第四季行测模考大赛(副省级)第120题", "difficulty": 7, "formulas": 96, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 48019, "material": "截至2011年末,T市城镇职工基本医疗保险参保人员474.52万人,城乡居民基本医疗保险参保人员498.30万人,城镇职工基本养老保险参保人员458.70万人,城乡居民基本养老保险参保人员97.80万人,失业保险参保职工258.75万人,工伤保险参保职工320.42万人。职工五项社会保险基金总收入510.6亿元,增长$18.1\\%$;其中,养老保险基金收入335.8亿元,增长$20.4\\%$。\n\n\n        T市全年保障性住房投资完成306.77亿元,占房地产开发投资的$28.4\\%$。全年开工建设保障性住房1600万平方米、23.9万套,发放租房补贴8.5万户。年末城市人均住宅建筑面积32.77平方米,同比增长$4.8\\%$。\n\n        T市城镇低保标准由450元调整为480元,农村低保标准由250元调整为280元,优抚抚恤、特困救助、农村五保供养、老年人生活补贴标准等都有新的提高。政府抚恤,补助各类优抚对象3.02万人;城乡低保对象27.77万人,其中城镇17.98万人。完善价格补助联动机制,受益群众由18.4万人增加到33.7万人。年末全市各类福利院有床位3.28万张,同比增长$14.5\\%$;在院收养2.04万人,增长$15.5\\%$。当年新安排残疾人就业3070人。全市11个救助站全年救助5046人。接受社会捐赠2790.6万元,销售社会福利彩票16.07亿元,筹集彩票公益金4.86亿元。", "question": "如按2011年的增长速度估算,2012年T市职工五项社会保险基金总收入约为:", "type": "单选题", "options": "A. 580亿元\nB. 600亿元\nC. 620亿元\nD. 640亿元", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 259262, "human_acc": 86.4974427413, "source": "2013年浙江省公务员录用考试《行测》题(B类)第112题", "difficulty": 5, "formulas": 6, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 5597142, "material": "2021年1-11月,J区纺织企业增加值比上年同期增长18.0%,两年平均增长7.4%。其中:规模以上纺织企业占98.3%,增长18.2%。\n\n        J区纺织业完成增加值比上年同期增长20.4%,增速比上年同期提高17.1个百分点。其中:棉纺织及印染精加工增长22.9%,家用纺织制成品制造增长2.9%,产业用纺织制成品制造下降7.1%,毛纺织及染整精加工增长87.5%,麻纺织及染整精加工下降4.1%,化纤织造及印染精加工增长43.7%。\n\n        J区就主要产品产量完成情况来看,布60714.80万米,比上年同期增长41.0%;化学纤维70.47万吨,增长24.6%;化学纤维用浆粕19.26万吨,增长22.7%;纱204.22万吨,增长17.9%;服装5724.00万件,增长1.7%;非织造布(无纺布)19169.17吨,下降2.0%;印染布2991.00万米,下降19.6%。\n\n        J区纺织产品实现出口交货值7.50亿元,比上年同期下降32.4%。其中:纺织业实现出口交货值3.20亿元;纺织服装、服饰业实现出口交货值4.30亿元,下降1.3%。\n\n        同年1-10月,J区纺织企业实现营业收入543.83亿元,比上年同期增长42.2%,实现利润13.61亿元,比1-9月增加2.16亿元;平均用工人数10.99万人,比上年同期下降3.1%,降幅比1-9月收窄1.3个百分点。", "question": "2020年1-11月J区纺织服装、服饰业实现出口交货值占纺织产品的比重约比纺织业:", "type": "单选题", "options": "A. 低21个百分点\nB. 低39个百分点\nC. 高15个百分点\nD. 高18个百分点", "choice": "A", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 50180, "human_acc": 45.542048625, "source": "2023下半年省考第六季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2571732, "material": "2017年全国海洋生产总值77611亿元,比上年增长$6.9\\%$,海洋生产总值占国内生产总值的$9.4\\%$。\n\n        2017年,J省海洋生产总值为7217亿元,比上年增长$9.2\\%$,海洋生产总值占地区生产总值的$8.4\\%$,2017年,全省沿海沿江港口完成货物吞吐量20.4亿吨,同比增长$8.3\\%$;集装箱吞吐量1698.8万标箱,同比增长$5.5\\%$。\n\n        2017年,J省造船完工量为1412.4万载重吨,同比下降$5.4\\%$;新承订单量为1393.4万载重吨,同比增长$228.5\\%$;手持订单量为3662.3万载重吨,同比下降$6.4\\%$,分别占全国份额的$33.1\\%$、$41.3\\%$和$42.0\\%$。\n\n        2017年,J省沿海三市接待国内游客10558.01万人次,同比增长$12.6\\%$;接待入境过夜旅游者27.65万人次,同比增长$8.1\\%$。\n\n        2017年,J省实现海水养殖产量93.1万吨,同比增长$3\\%$;海洋捕捞产量53万吨,同比下降$3.4\\%$;远洋渔业产量2.9万吨,同比增长$43.3\\%$。\n\n        2017年,J省海工装备产值同比增长$6.9\\%$。全省沿海地区风电装机容量达到589.7万千瓦,同比增长$16.6\\%$;海上风电装机容量达到162.5万千瓦,同比增长$46.3\\%$。2017年,全省完成海水淡化产量1.31万吨,同比增长$7.4\\%$。", "question": "2017年J省海洋生产总值占全国的比重比上年:", "type": "单选题", "options": "A. 上升了约0.2个百分点\nB. 上升了约2个百分点\nC. 下降了约0.2个百分点\nD. 下降了约2个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "B", "human_count": 1110271, "human_acc": 71.3904082877, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第87题", "difficulty": 4, "formulas": 21, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 2033154, "material": "2013年全国社会物流总额197.8万亿元,同比增长$9.5\\%$,增幅比上年回落0.3个百分点。分季度看,一季度增长$9.4\\%$,上半年增长$9.1\\%$,前三季度增长$9.5\\%$。其中,工业品物流总额181.5万亿元,同比增长$9.7\\%$,增幅比上年回落0.3个百分点。进口货物物流总额12.1万亿元,同比增长$6.4\\%$,增幅比上年回落1.3个百分点。\n\n       2013年全国社会物流总费用10.2万亿元,同比增长$9.3\\%$,增幅比上年回落2.1个百分点。其中,运输费用5.4万亿元,同比增长$9.2\\%$;保管费用3.6万亿元,同比增长$8.9\\%$;管理费用1.3万亿元,同比增长$10.8\\%$。\n\n       2013年全国物流业增加值3.9万亿元,同比增长$8.5\\%$,增幅比上年回落0.7个百分点。物流业增加值占GDP的比重为$6.8\\%$,占服务业增加值的比重为$14.8\\%$。其中,交通运输物流业增加值同比增长$7.2\\%$,增幅比上年回落1.5个百分点。贸易物流业增加值同比增长$9.5\\%$,增幅比上年回落0.3个百分点。仓储物流业增加值同比增长$9.2\\%$,增幅比上年回升2.4个百分点。邮政物流业增加值同比增长$33.8\\%$,增幅比上年回升7.1个百分点。", "question": "2013年全国社会物流总额同比增速最高的季度是________。", "type": "单选题", "options": "A. 第一季度\nB. 第二季度\nC. 第三季度\nD. 第四季度", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 164739, "human_acc": 73.0385640316, "source": "2015年上海市公务员录用考试《行测》题(B类)第86题", "difficulty": 4, "formulas": 17, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 4999786, "material": "根据工程勘察设计统计调查制度有关规定,中华人民共和国住房和城乡建设部对2020年全国具有资质的工程勘察设计企业基本数据进行了统计,现公布如下:\n\n        2020年,全国共有工程勘察设计企业23741个。其中,工程勘察企业2410个,工程设计企业21331个。\n\n        2020年,全国勘察设计企业年末从业人员440万人。其中,勘察人员16万人,与上年相比增长1.7%;设计人员105.5万人,与上年相比增长2.9%。年末专业技术人员214.5万人。其中,具有高级职称人员46.2万人,与上年相比增长8.0%;具有中级职称人员76.7万人,与上年相比增长6.5%。\n\n        2020年,全国勘察设计企业工程勘察新签合同额合计1494.5亿元,与上年相比增长17.6%。工程设计新签合同额合计7044.7亿元,与上年相比增长3.6%。其中,房屋建筑工程设计新签合同额2371.6亿元,市政工程设计新签合同额1043.7亿元。工程总承包新签合同额合计55068.2亿元,与上年相比增长19.5%。其中,房屋建筑工程总承包新签合同额22084.4亿元,市政工程总承包新签合同额8251.9亿元。其他工程咨询业务新签合同额合计1108.5亿元,与上年相比增长5.7%。\n\n        2020年,全国勘察设计企业营业收入总计72496.7亿元。其中,工程勘察收入1026.1亿元,与上年相比增长4.0%;工程设计收入5482.7亿元,与上年相比增长7.6%;工程总承包收入33056.6亿元,与上年相比减少1.7%;其他工程咨询业务收入805亿元,与上年相比增长1.1%。", "question": "2020年全国勘察设计企业年末从业人员中,设计人员的同比增长量比勘察人员约多:", "type": "单选题", "options": "A. 2.2万人\nB. 2.7万人\nC. 3.2万人\nD. 3.7万人", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 300664, "human_acc": 76.1361519836, "source": "2022上半年省考第二十季行测模考大赛(北京卷)第121题", "difficulty": 4, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 8181, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2007年昆明市期房的均价与二手房的交易均价的差价为:", "type": "单选题", "options": "A. 998元/平方米\nB. 1062元/平方米\nC. 1136元/平方米\nD. 1186元/平方米", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "A", "human_count": 7355, "human_acc": 59.7144799456, "source": "2009年云南省公务员录用考试《行测》题第114题", "difficulty": 4, "formulas": 0, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 2423343, "material": "2018年全国网络零售额90100亿元,同比增长$23.9\\%$。其中,实物商品网上零售额为70200亿元,同比增长$25.4\\%$;非实物商品网上零售额19900亿元,同比增长$18.7\\%$。\n\n        2018年全国农村网络零售额为13700亿元。其中,农村实物商品网络零售额为10900亿元,同比增长$30.9\\%$;农村非实物商品网络零售额2800亿元,同比增长$28.4\\%$。分品类看,农村实物商品零售额前三位的品类分别为服装鞋帽针织品、日用品、粮油食品及饮料烟酒,分别占农村实物商品零售额的$37.3\\%$、$19.3\\%$和$13.3\\%$,同比增速分别为$30\\%$、$28\\%$和$35\\%$。\n\n        2018年全国农产品网络零售额达2305亿元,比全国网络零售额同比增速高9.9个百分点。其中,休闲食品、茶叶、滋补食品零售额排名前三,占比分别为$24.2\\%$、$12.5\\%$和$12.0\\%$,同比增速分别为$30.5\\%$、$32.5\\%$和$29.0\\%$。", "question": "2017年全国农产品网络零售品类中,休闲食品零售额约是滋补食品的:", "type": "单选题", "options": "A. 1.7倍\nB. 2倍\nC. 2.3倍\nD. 2.6倍", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 581876, "human_acc": 73.6354481023, "source": "2019年甘肃省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 17, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 3555677, "material": "2019年末,全国收费公路里程17.11万公里,占公路总里程的$3.4\\%$,比上年末增长了$1.8\\%$。其中,高速公路14.28万公里,净增加4954公里;一级公路1.86万公里,净减少1014公里;二级公路0.87万公里,净减少992公里;独立桥梁及隧道1024公里,净增加73公里。\n\n        2019年末,全国收费公路共有主线收费站1267个,比上年末净减少49个。其中,高速公路753.5个,一级公路323个,二级公路132个,独立桥梁及隧道58.5个。2019年度,全国收费公路通行费收入5937.9亿元,比上年增长$6.9\\%$;支出总额10787.7亿元,增长$12.1\\%$。\n\n        2019年末,全国经营性公路里程7.72万公里,比上年增长$3.2\\%$;累计建设投资总额48546.1亿元,占收费公路累计建设投资总额的$51.0\\%$,增长$10.5\\%$;债务余额28387.6亿元,占收费公路债务余额的$46.1\\%$,增长$7.6\\%$;年通行费收入3628.9亿元,比上年增长$6.4\\%$;年支出总额5963.8亿元,增长$9.2\\%$。2019年度经营性公路通行费收支缺口2334.9亿元,其中,高速公路缺口2284.7亿元,一级公路缺口53.1亿元,二级公路缺口3.7亿元,独立桥梁及隧道盈余6.6亿元。\n\n        2019年度,全国收费公路共减免车辆通行费1009.7亿元,占2019年度应收通行费总额的$14.5\\%$,比上年增长$10\\%$。其中,鲜活农产品运输“绿色通道”减免350.8亿元,比上年增长$1.7\\%$;重大节假日免收小型客车通行费343.7亿元,增长$11.6\\%$;高速公路差异化收费、ETC通行费优惠、抢险救灾车辆免费等其他政策性减免315.3亿元,增长$19\\%$。", "question": "2018年末,全国收费公路平均约每多少公里有一处主线收费站?", "type": "单选题", "options": "A. 189.5\nB. 175.0\nC. 135.9\nD. 127.7", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 91239, "human_acc": 66.8431262947, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第96题", "difficulty": 6, "formulas": 16, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 2271257, "material": "2010年年底登录过手机淘宝的用户数仅有1000万户。2013年年底,手机淘宝的用户数突破4亿户。2012年在手机淘宝的用户中,产生过购物行为的用户有5700万户,每小时通过手机淘宝卖出的商品超过22万件;平均每天有928万人在手机淘宝上搜索商品;每天还有超过466万人在手机淘宝上查询物流信息;每天有159.5万人在手机淘宝上收藏商品和店铺,382万人在使用手机淘宝上的购物车功能。还有更多用户则是把手机淘宝当成“碎片化”时间中的生活消遣,或是在上下班空闲时间进行商品查询,或是在逛街购物时进行比价。\n\n        2012年11月11日,手机淘宝创造了日支付宝交易金额的年度峰值——9.4亿元,当日的独立访问量达到6485万次。2013年11月11日,手机淘宝支付宝交易额53.3亿元,独立访问用户量1.27亿户。分析认为,我国移动电子商务发展如此迅速的原因主要有手机上网用户数量攀升、廉价智能手机及平板电脑的大量普及、上网速度更快、无线宽带资费下调等。同时,传统电商沉淀也为移动电子商务的发展奠定了基础。\n\n        2012年,一线城市中北京、上海、广州、深圳访问过手机淘宝的用户平均增长率为$146\\%$;贵阳、长沙、成都、重庆等二线城市手机淘宝访问用户的平均增长率为$167\\%$;延安、常德、张家界、岳阳等三线、四线城市的用户平均增长率高达$180\\%$和$203\\%$,成为手机“淘宝”新增用户的主要来源,其中濮阳和铜仁市成为三、四线城市中用户同比增幅最大的城市,增长率分别达到$281\\%$和$286\\%$。", "question": "从资料来看,2012年手机淘宝各项功能中,每天使用人数最少的是:", "type": "单选题", "options": "A. 搜索商品\nB. 收藏商品和店铺\nC. 查询物流信息\nD. 使用购物车", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 7914, "human_acc": 92.6080363912, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第85题", "difficulty": 3, "formulas": 6, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 2783995, "material": "2019年,X省亿元以上商品交易市场303个,比上年减少6个;商品成交额达4339.08亿元,同比增长$7.6\\%$;市场营业面积1108.80万平方米,下降$1.9\\%$;市场总摊位数20.65万个,增长$2.9\\%$;年末出租摊位数16.98万个,下降$6.7\\%$。按经营方式分,批发和零售市场分别为154个和149个,商品成交额分别为3428.12亿元和910.96亿元;按经营环境分,封闭式、露天式和其他方式的市场分别为230个、24个和49个,商品成交额分别为3040.46亿元、636.39亿元、662.23亿元。\n\n        全省303个亿元以上商品交易市场中,有综合市场122个,商品成交额为1842.17亿元,其中农产品综合市场40个、工业品综合市场25个;有专业市场181个,商品成交额为2496.91亿元。全省商品成交额在10亿元以上的商品交易市场59个,商品成交额3512.81亿元;其中,100亿元以上商品交易市场6个,商品成交额2317.13亿元。\n\n        从商品分类销售看,粮油食品类商品成交额为1510.05亿元,同比增长$17.7\\%$;服装、鞋帽类商品成交额为335.53亿元,增长$4.7\\%$;建筑及装潢材料类商品成交额为316.00亿元,下降$6.5\\%$;家具类商品成交额为43.83亿元,下降$16.8\\%$;五金、电料类商品成交额为237.26亿元,增长$26.4\\%$;家用电器类商品成交额为104.27亿元,增长$0.8\\%$;汽车类商品成交额为283.21亿元,下降$3.8\\%$。", "question": "2019年,X省平均每个亿元以上商品交易市场的商品成交额比上年约:", "type": "单选题", "options": "A. 增长$9.8\\%$\nB. 增长$5.7\\%$\nC. 下降$9.8\\%$\nD. 下降$5.7\\%$", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 192365, "human_acc": 56.2690718166, "source": "2021上半年省考第七季行测模考大赛(广东卷)第91题", "difficulty": 6, "formulas": 346, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 5127524, "material": "2022年一季度,全国消费品零售总额108659亿元,同比增长3.3%。其中,除汽车以外的消费品零售额97920亿元,增长3.6%;限额以上单位消费品零售额40600亿元,增长5.4%。3月,消费品零售总额34233亿元,同比下降3.5%。其中,除汽车以外的消费品零售额30560亿元,下降3.0%;限额以上单位消费品零售额13631亿元,下降1.4%。\n\n        按经营单位所在地分,一季度,城镇消费品零售额94292亿元,同比增长3.2%;乡村消费品零售额14367亿元,增长3.5%。3月,城镇消费品零售额29699亿元,同比下降3.6%;乡村消费品零售额4534亿元,下降3.3%。\n\n        按消费类型分,一季度,商品零售98006亿元,同比增长3.6%;餐饮收入10653亿元,增长0.5%,其中,限额以上单位餐饮收入2408亿元,增长0.9%。3月,商品零售31298亿元,同比下降2.1%;餐饮收入2935亿元,下降16.4%,其中,限额以上单位餐饮收入728亿元,下降15.6%。\n\n        一季度,全国网上零售额30120亿元,同比增长6.6%。其中,实物商品网上零售额25257亿元,增长8.8%,增速环比加快4个百分点,同比回落17.0个百分点;在实物商品网上零售额中,吃类和用类商品分别增长13.5%和10.6%。", "question": "2020年一季度,全国实物商品网上零售额约为多少亿元?", "type": "单选题", "options": "A. 25257\nB. 23214\nC. 19215\nD. 18453", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 104631, "human_acc": 63.9447200161, "source": "2022下半年省考第三季行测模考大赛(广东乡镇卷)第89题", "difficulty": 6, "formulas": 0, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 2261943, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2017年上半年,我国文化及相关产业营业收入最高的行业是(  )。", "type": "单选题", "options": "A. 内容创作生产\nB. 创意设计服务\nC. 文化休闲娱乐服务\nD. 文化消费终端生产", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 615993, "human_acc": 79.6246061238, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第74题", "difficulty": 4, "formulas": 15, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 5408634, "material": "2020年末,全国共有艺术表演团体17581个,比上年末减少214个;从业人员43.69万人,增加2.44万人。其中各级文化和旅游部门所属艺术表演团体2060个,占11.7%,从业人员10.75万人,占24.6%。\n\n        2020年,全国艺术表演团体共演出225.61万场,比上年下降24.0%;国内观众8.93亿人次,下降27.4%;演出收入86.63亿元,下降31.7%。\n\n        2020年,全国文化和旅游部门所属艺术表演团体共组织政府采购公益演出13.38万场,比上年下降14.9%;观众0.86亿人次,下降27.9%。\n\n        2020年末,全国公共图书馆实际使用房屋建筑面积1785.77万平方米,比上年末增长12.2%;全国图书总藏量117929.99万册,增长6.1%;阅览室坐席数126.47万个,增长6.2%;计算机226234台,增加419台;其中供读者使用的电子阅览终端143714台,减少2022台。\n\n        2020年末,全国共有群众文化机构43687个,比上年末减少386个。其中乡镇综合文化站32825个,减少705个。年末全国群众文化机构从业人员185076人,比上年末减少4992人。其中具有高级职称的人员7075人,具有中级职称人员17969人。", "question": "2020年,全国艺术表演团体平均每场演出创造收入比上年:", "type": "单选题", "options": "A. 减少了不到1000元\nB. 减少了1000元以上\nC. 增加了不到1000元\nD. 增加了1000元以上", "choice": "A", "keypoints": "平均数的增长量;文字资料", "most_wrong": "B", "human_count": 620105, "human_acc": 48.4675982293, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第97题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 2725092, "material": "2020年6月份,全国生产原煤3.3亿吨,同比下降$1.2\\%$,降幅比上月扩大1.1个百分点;日均产量1114万吨,环比增加86万吨。上半年,生产原煤18.1亿吨,同比增长$0.6\\%$,一季度为下降$0.5\\%$。\n\n        2020年6月份,全国生产原油1624万吨,同比增长$0.7\\%$,增速比上月回落0.6个百分点;加工原油5787万吨,增长$9.0\\%$,比上月加快0.8个百分点。进口原油5318万吨,同比增长$34.4\\%$。上半年,生产原油9715万吨,同比增长$1.7\\%$,比一季度放缓0.7个百分点;加工原油3.2亿吨,同比增长$0.6\\%$,一季度为下降$4.6\\%$。进口原油2.69亿吨,同比增长$9.9\\%$,比一季度加快4.9个百分点。\n\n        2020年6月份,生产天然气152亿立方米,同比增长$11.3\\%$,增速比上月回落1.4个百分点。进口天然气833万吨,同比增长$10.8\\%$,增速比上月加快6.6个百分点。上半年,生产天然气940亿立方米,同比增长$10.3\\%$,比一季度加快1.2个百分点。进口天然气4836万吨,同比增长$3.3\\%$,比一季度加快1.5个百分点。\n\n        2020年6月份,全国发电量6304亿千瓦时,同比增长$6.5\\%$,增速比上月加快2.2个百分点;日均发电量210.1亿千瓦时,环比增加18.7亿千瓦时。上半年,发电量33645亿千瓦时,同比下降$1.4\\%$,降幅比一季度收窄5.4个百分点。", "question": "若保持2020年6月份同比增量不变,则到哪一年6月份全国天然气生产量将突破200亿立方米?", "type": "单选题", "options": "A. 2022\nB. 2023\nC. 2024\nD. 2025", "choice": "C", "keypoints": "现期追赶;文字资料", "most_wrong": "B", "human_count": 243729, "human_acc": 58.1715758076, "source": "2020年下半年省考第十六季行测模考大赛(浙江卷)第123题", "difficulty": 6, "formulas": 16, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 47955, "material": "", "question": "本分:职责", "type": "单选题", "options": "A. 羁绊:障碍\nB. 奇葩:宝库\nC. 蓝图:想象\nD. 傲慢:偏见", "choice": "A", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 733231, "human_acc": 68.3144875217, "source": "2013年浙江省公务员录用考试《行测》题(B类)第69题", "difficulty": 5, "formulas": 0, "history": [{"id": 50701, "material": "", "question": "观:看", "type": "单选题", "options": "A. 火:暖\nB. 水:船\nC. 近:远\nD. 叫:喊", "choice": "D", "keypoints": "语义关系-近义关系", "most_wrong": "A", "human_count": 1052197, "human_acc": 98.4512405947, "source": "2013年广东省公务员录用考试《行测》题(一)第46题", "difficulty": 5, "formulas": 0}, {"id": 5510014, "material": "", "question": "修缮:修葺", "type": "单选题", "options": "A. 淹留:逗留\nB. 休闲:休憩\nC. 履职:履任\nD. 赏识:赏玩", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 650668, "human_acc": 33.2867145764, "source": "2023年天津市公务员考试《行测》题(网友回忆版)第81题", "difficulty": 5, "formulas": 0}, {"id": 1749, "material": "", "question": "愉快:快活", "type": "单选题", "options": "A. 信任:信息\nB. 严肃:严谨\nC. 真诚:诚实\nD. 闲聊:休闲", "choice": "C", "keypoints": "语义关系-近义关系", "most_wrong": "B", "human_count": 61069, "human_acc": 75.5145818664, "source": "2008年江苏省公务员录用考试《行测》题(C类)第23题", "difficulty": 5, "formulas": 0}, {"id": 4621237, "material": "", "question": "杜撰:臆造", "type": "单选题", "options": "A. 彩礼:嫁妆\nB. 商榷:协商\nC. 保守:激进\nD. 罕见:荒诞", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "D", "human_count": 10106, "human_acc": 90.4710073224, "source": "2021下半年省考第三十五季行测模考大赛(甘肃卷)第84题", "difficulty": 3, "formulas": 0}, {"id": 1130059, "material": "", "question": "同情:怜悯", "type": "单选题", "options": "A. 当然:实际\nB. 宽恕:饶恕\nC. 偶然:必然\nD. 所有:有些", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 143672, "human_acc": 96.7620691575, "source": "2010年江苏省公务员录用考试《行测》题(C类)第36题", "difficulty": 2, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"]]}, {"id": 44541, "material": "2011年全国全年粮食种植面积11057万公顷,比上年增加70万公顷,棉花种植面积504万公顷,增加19万公顷,油料种植面积1379万公顷,减少10万公顷,糖料种植面积195万公顷,增加4万公顷。\n\n        全年粮食产量57121万吨,比上年增加2473万吨,增产4.5%。其中,夏粮产量12627万吨,增产2.5%,早稻产量3276万吨,增产4.5%,秋粮产量41218万吨,增产5.1%。\n\n        全年棉花产量660万吨,比上年增产10.7%。油料产量3279万吨,增产1.5%。糖料产量12520万吨,增产4.3%。茶叶产量162万吨,增产9.9%。\n\n        全年肉类总产量7957万吨,比上年增长0.4%。其中,猪肉产量5053万吨,下降0.4%,牛肉产量648万吨,下降0.9%,羊肉产量393万吨,下降1.4%。年末生猪存栏46767万头,增长0.7%,生猪出栏66170万头,下降0.8%。牛奶产量3656万吨,增长2.2%。\n\n        全年水产品产量5600万吨,比上年增长4.2%。其中,养殖水产品产量4026万吨,增长5.2%,捕捞水产品产量1574万吨,增长1.9%", "question": "2011年末全国生猪存栏比2010年末多:", "type": "单选题", "options": "A. 325万头\nB. 327万头\nC. 330万头\nD. 323万头", "choice": "A", "keypoints": "", "most_wrong": "B", "human_count": 174471, "human_acc": 44.4406233701, "source": "2012年江苏省公务员录用考试《行测》题(B类)第137题", "difficulty": 5, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 5102391, "material": "", "question": "“二十四节气”是古代农耕文明的产物,是中华民族悠久历史文化的重要组成部分。下列关于二十四节气的说法错误的是:", "type": "单选题", "options": "A. “小阳春”是指立冬至小雪之间风和日丽、温暖舒适的天气\nB. 霜降是一年中昼夜温差最大的节气,此后冷空气逐渐频繁南下\nC. “乍暖还寒时候”用来形容的是雨水节气前后天气变化不定的特点\nD. 谷雨作为春季最后一个节气,雨水增多,南方地区人们忙着插秧播种", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 832984, "human_acc": 24.5514919854, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第13题", "difficulty": 4, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 2815439, "material": "", "question": "王国维在《人间词话》中说到:“白仁甫《秋夜梧桐雨》剧,沉雄悲壮,为元曲冠冕。然所作《天籁词》,粗浅之甚,不足为稼轩奴隶。”下列与之相关的说法中不正确的是(    )。", "type": "单选题", "options": "A. “白仁甫”是元曲四大家之一的白朴\nB. 《秋夜梧桐雨》描写的是汉元帝和王昭君的爱情故事\nC. “了却君王天下事,赢得生前身后名”为“稼轩”所作\nD. “稼轩”与李清照并称“济南二安”", "choice": "B", "keypoints": "文学常识", "most_wrong": "C", "human_count": 129921, "human_acc": 44.4200706583, "source": "2021上半年省考第十季行测模考大赛(安徽卷)第58题", "difficulty": 6, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 4679944, "material": "", "question": "下列历史事件与骆宾王的诗句“此地别燕丹,壮士发冲冠”所对应的历史事件在时间上最为接近的是(    )。", "type": "单选题", "options": "A. 七国之乱\nB. 澶渊之盟\nC. 安史之乱\nD. 秦灭六国", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 129572, "human_acc": 41.1755626216, "source": "2022上半年省考第三季行测模考大赛(陕西卷)第20题", "difficulty": 7, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 5131841, "material": "", "question": "下列关于我国的科技成就,按时间先后排序正确的是(    )。\n\n①全球首座球床模块式高温气冷堆核电站送电成功\n\n②国内首座高水平放射性废液玻璃固化设施正式投运\n\n③推出世界首个人工智能地震监测系统——“智能地动”监测系统\n\n④我国首艘万吨级海事巡逻船“海巡09”轮正式列编", "type": "单选题", "options": "A. ①③②④\nB. ②④①③\nC. ③②④①\nD. ④③①②", "choice": "C", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 74122, "human_acc": 40.6707860015, "source": "2022下半年省考第三季行测模考大赛(广东乡镇卷)第25题", "difficulty": 7, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 2021672, "material": "", "question": "拉尼娜现象就是太平洋中东部海水异常变冷的情况,东南信风将表面被太阳晒热的海水吹向太平洋西部,致使西部比东部海平面增高将近60厘米,西部海水温度增高,气压下降,潮湿空气积累形成台风和热带风暴,东部底层海水上翻,致使东太平洋海水变冷。拉尼娜现象总是出现在厄尔尼诺现象之后,是厄尔尼诺现象的反向,也称为“反厄尔尼诺”或“冷事件”,对于拉尼娜现象可能带来的影响,下列说法错误的是:", "type": "单选题", "options": "A. 拉尼娜现象出现时,我国易出现冷冬热夏\nB. 登陆我国的热带气旋个数比常年多,洪涝灾害更易发生\nC. 印度尼西亚等东南亚地区降雨偏多\nD. 美国西南部和南美洲西岸将有更充沛的降水", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 407884, "human_acc": 43.8484961411, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第8题", "difficulty": 6, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 10575, "material": "", "question": "以下科技常识正确的是:", "type": "单选题", "options": "A. 原子弹爆炸是核能聚变的反应过程\nB. 使用甲醇含量高的建材进行家庭装修,容易导致室内环境污染\nC. “钛”因为耐高温,比铝还轻,被称为“太空金属”\nD. 手机刚接通时的电子辐射最强", "choice": "D", "keypoints": "化学常识", "most_wrong": "B", "human_count": 50024, "human_acc": 38.0257476411, "source": "2009年安徽省公务员录用考试《行测》题第120题", "difficulty": 6, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 3726705, "material": "", "question": "下列关于人体血液输送的说法,有误的是(    )。", "type": "单选题", "options": "A. 静脉瓣具有防止血液倒流的作用\nB. 动脉血管弹性大,管内血流速度快\nC. 体循环能将含氧丰富的动脉血变为含氧较少的静脉血\nD. A型血的人可以给O型血的人输入血液", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 11749, "human_acc": 82.1091156694, "source": "2021下半年省考第十一季行测模考大赛(云南卷)第5题", "difficulty": 4, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 4687763, "material": "", "question": "以下关于我国水资源的说法正确的是(    )。", "type": "单选题", "options": "A. 我国水资源短缺,人均水资源占有量仅为世界人均水平的二分之一\nB. 我国人均水资源最缺乏的地区是西北地区\nC. 我国水资源地区分布不平衡,季节分布亦不平衡\nD. 南水北调工程将长江、黄河、淮河三条东西方向的河流相连接", "choice": "C", "keypoints": "国情社情", "most_wrong": "B", "human_count": 47875, "human_acc": 65.153002611, "source": "2022上半年省考第四季行测模考大赛(四川卷)第10题", "difficulty": 4, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 45611, "material": "", "question": "甲遭遇仇敌追杀,情急之下,从一住户的窗户跳入屋内躲避,不想将睡在窗边的一小孩踩成重伤。则甲的行为性质为:", "type": "单选题", "options": "A. 过失致人重伤罪\nB. 防卫过当\nC. 紧急避险\nD. 意外事件", "choice": "D", "keypoints": "刑法", "most_wrong": "C", "human_count": 302272, "human_acc": 16.3726709718, "source": "2012年吉林省公务员录用考试《行测》题(甲级)第54题", "difficulty": 5, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 2187750, "material": "", "question": "通常情况下,使用高压锅可以大大缩短食物的烹煮时间,节约能源。下列对其所用物理原理的解释正确的是:", "type": "单选题", "options": "A. 锅内蒸汽的压强增大,导致水的沸点降低\nB. 锅内水的沸点降低,导致蒸汽的压强增大\nC. 锅内蒸汽的压强增大,导致水的沸点升高\nD. 锅内水的沸点升高,导致蒸汽的压强增大", "choice": "C", "keypoints": "物理常识", "most_wrong": "A", "human_count": 1230185, "human_acc": 50.1898494942, "source": "2018年421联考《行测》题(天津卷)(网友回忆版)第52题", "difficulty": 6, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 3764159, "material": "", "question": "近日,网络上传出二手手机交易可能存在个人信息泄露风险,引发社会广泛关注。为保护隐私,在出售旧手机前,我们应当(    )。", "type": "单选题", "options": "A. 恢复出厂设置\nB. 删除用户数据\nC. 删除用户数据并恢复出厂设置\nD. 使用大型文件反复覆盖手机存储", "choice": "D", "keypoints": "生活常识", "most_wrong": "C", "human_count": 49685, "human_acc": 6.464727785, "source": "2021下半年省考第十三季行测模考大赛(四川卷)第8题", "difficulty": 7, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 6177, "material": "", "question": "网络日记 对于 (    ) 相当于 菠萝 对于 (    )", "type": "单选题", "options": "A. 网络——苹果\nB. 电脑——香蕉\nC. 博客——凤梨\nD. 写手——水果", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "D", "human_count": 42122, "human_acc": 91.7240396942, "source": "2008年湖北省公务员录用考试《行测》题(A类)第88题", "difficulty": 3, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}, {"id": 2601, "material": "", "question": "柳絮:杨花", "type": "单选题", "options": "A. 松子:榆钱\nB. 月华:幽兰\nC. 芙蓉:荷花\nD. 菊花:银甲", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 53007, "human_acc": 46.193898919, "source": "2008年辽宁省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0}, {"id": 11963, "material": "", "question": "报警:警报", "type": "单选题", "options": "A. 来回:回来\nB. 书写:写书\nC. 给付:付给\nD. 开水:水开", "choice": "D", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 41134, "human_acc": 30.7798901152, "source": "2008年安徽省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 4717240, "material": "", "question": "根据《民事诉讼法》的相关规定,下列说法正确的是(    )。", "type": "单选题", "options": "A. 法院因通知证人出庭作证而使证人产生的交通费用,由败诉方承担\nB. 证人因自然灾害不能出庭的,法院应中止审理另定开庭时间\nC. 鉴定人是否出庭作证应由人民法院决定,当事人无权申请\nD. 鉴定人拒不出庭作证的,鉴定意见应结合其他证据作为认定事实的根据", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 31346, "human_acc": 20.1588719454, "source": "2022上半年省考第七季行测模考大赛(湖南卷)第6题", "difficulty": 7, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 456091, "material": "", "question": "德、意、日三个法西斯帝国挑起了第二次世界大战,历史上确定这次大战爆发的事件是:", "type": "单选题", "options": "A. 意大利进攻埃塞俄比亚\nB. 德国进攻波兰\nC. 德国进攻法国\nD. 日本进攻我国北京郊区卢沟桥", "choice": "B", "keypoints": "世界历史", "most_wrong": "C", "human_count": 260819, "human_acc": 75.5623631714, "source": "2014年天津市公务员录用考试《行测》题第54题", "difficulty": 4, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 2263055, "material": "", "question": "下列提法中,符合我国《宪法》规定的有:", "type": "多选题", "options": "A. 国家提倡公民从事义务劳动\nB. 父母有抚养子女的义务\nC. 劳动是中华人民共和国公民的光荣职责\nD. 中华人民共和国公民享有受教育的权利和义务", "choice": "AD", "keypoints": "宪法", "most_wrong": "B", "human_count": 1888, "human_acc": 5.5084745763, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第99题", "difficulty": 5, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 2031088, "material": "", "question": "在市场经济下,当一国处于经济下降阶段时,经济上不可能出现的特征是:", "type": "单选题", "options": "A. 商品价格持续上升\nB. 居民消费需求下滑\nC. 投资减少,失业率上升\nD. 居民收入减少", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 299575, "human_acc": 83.7249436702, "source": "2017年北京市公务员录用考试《行测》题第10题", "difficulty": 4, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 4462804, "material": "", "question": "观赏植物:草本植物", "type": "单选题", "options": "A. 微信支付:电子支付\nB. 打折促销:降价销售\nC. 长篇小说:武侠小说\nD. 积极心理:消极心理", "choice": "C", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 202459, "human_acc": 91.3943069955, "source": "2021下半年省考第二十五季行测模考大赛(广东乡镇卷)第58题", "difficulty": 3, "formulas": 0, "history": [{"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}, {"id": 5585651, "material": "", "question": "主食:甜食", "type": "单选题", "options": "A. 剧团:戏班\nB. 商品:零食\nC. 戏剧:小说\nD. 动物:芍药", "choice": "B", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 43627, "human_acc": 49.1484631077, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 2034140, "material": "", "question": "律师:教授", "type": "单选题", "options": "A. 专家:吉林人\nB. 钢筋:房屋\nC. 歌手:乐队\nD. 人:社会", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 569161, "human_acc": 87.4676936754, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0}, {"id": 2021824, "material": "", "question": "流行:高尚", "type": "单选题", "options": "A. 专家:学者\nB. 勇敢:品德\nC. 树根:树叶\nD. 闰月:春季", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 532077, "human_acc": 52.6615508658, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第65题", "difficulty": 5, "formulas": 0}, {"id": 5289672, "material": "", "question": "陶器:酒器", "type": "单选题", "options": "A. 童鞋:凉鞋\nB. 主食:副食\nC. 卧椅:躺椅\nD. 官窑:哥窑", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 215948, "human_acc": 90.1254005594, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第91题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"]]}, {"id": 1752556, "material": "", "question": "对A省教育厅的具体行政行为不服的,可以向________申请行政复议。", "type": "多选题", "options": "A. A省教育厅\nB. A省人民政府\nC. 教育部\nD. 国务院", "choice": "BC", "keypoints": "行政法", "most_wrong": "A", "human_count": 108934, "human_acc": 49.0810949749, "source": "2016年北京市公务员录用考试《行测》题第33题", "difficulty": 6, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 4489849, "material": "", "question": "2021年6月1日起施行的《中华人民共和国乡村振兴促进法》明确规定了全面实施乡村振兴战略,促进乡村产业振兴、____________、____________、____________、____________。\n\n①人才振兴\n\n②文化振兴\n\n③经济振兴\n\n④生态振兴\n\n⑤组织振兴", "type": "单选题", "options": "A. ①③④⑤\nB. ①②③⑤\nC. ②③④⑤\nD. ①②④⑤", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 3257, "human_acc": 36.5366902057, "source": "2021下半年省考第二十七季行测模考大赛(北京乡镇卷)第16题", "difficulty": 7, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 5423744, "material": "人民民主是社会主义的生命,是全面建设社会主义现代化国家的应有之义。习近平总书记在党的二十大报告中把发展全过程人民民主确定为中国式现代化本质要求的一项重要内容,强调全过程人民民主是社会主义民主政治的本质属性,对“发展全过程人民民主,保障人民当家作主”作出全面部署、提出明确要求。这对于新时代新征程更好发挥我国社会主义政治制度优势、全面建设社会主义现代化国家、全面推进中华民族伟大复兴具有十分重要的意义。\n\n        党的十八大以来,以习近平同志为核心的党中央立足新的历史方位,深刻把握我国社会主要矛盾发生的新变化,积极回应人民对民主法治、公平正义的新要求新期待,坚持党的领导、人民当家作主、依法治国有机统一,深化对民主政治发展规律的认识,提出全过程人民民主重大理念,全面发展全过程人民民主,健全人民当家作主制度体系,发挥社会主义协商民主重要作用,丰富民主形式,畅通民主渠道,从各层次各领域扩大人民有序政治参与,推动全过程人民民主取得历史性成就,成为新时代我国民主政治领域具有重大创新意义的标志性成果。", "question": "我国全过程人民民主实现了过程民主和成果民主、程序民主和实质民主、直接民主和间接民主、人民民主和国家意志相统一,是全链条、全方位、全覆盖的民主,是最广泛、最真实、最管用的社会主义民主。下列能够体现全过程人民民主这一特征的有____________________。", "type": "不定项", "options": "A. 虹桥街道立法点完成了全国人大68部法律草案的意见征集工作,上报建议1500余条,其中112条建议已被采纳\nB. 基层立法点开门立法,扩大社会各方面有序参与立法的范围和途径\nC. 上海市人大完成了30部地方性法规草案的意见征集工作,上报建议402条,其中23条已被采纳\nD. 北京市人大代表和立法议题“双下沉”,实现“关系千家万户的法规,都由千家万户说了算”", "choice": "ABCD", "keypoints": "时政", "most_wrong": "", "human_count": 10306, "human_acc": 65.3308752183, "source": "2023年上海市公务员录用考试《行测》题(A类)(网友回忆版)第118题", "difficulty": 4, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 4651962, "material": "", "question": "某市政协扎实推进“请你来协商”平台建设,开展“请你来协商”重点活动,通过面对面协商、点对点交流,不少意见建议得到采纳并转化为工作举措。从实质民主角度看,“请你来协商”平台:", "type": "单选题", "options": "A. 丰富了公众通过政协行使民主权利的形式\nB. 是拓宽公民行使知情权、监督权的渠道\nC. 是实现人民当家作主的有益探索\nD. 进一步完善了政治协商制度", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 14712, "human_acc": 43.9777052746, "source": "2022年上海市公务员录用考试《行测》题(B类)(网友回忆版)第94题", "difficulty": 5, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 4660380, "material": "", "question": "格式条款又称为标准条款,是指当事人为了重复使用而预先拟定、并在订立合同时未与对方协商的条款。下列各行业生产经营场所设定的格式条款中符合法律法规或行业标准规定的是(    )。", "type": "单选题", "options": "A. 快递站——“先签收后验货”\nB. 装饰品网店——“定制商品,不支持七日无理由退货”\nC. KTV——“会员卡一经售出,因非本会所造成的退会和会员违反约定,本会所有权取消其会员资格,其已支付费用不予退回,并无需作出任何赔偿”\nD. 洗衣店——“请客人在本单开出之日起一个月内来本店提取衣物,逾期本店有权自行处理”", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 23517, "human_acc": 49.1814432113, "source": "2021下半年省考第三十九季行测模考大赛(四川卷)第6题", "difficulty": 6, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 6423, "material": "", "question": "整数15具有被它的十位数字和个位数字同时整除的性质,则在12和50之间具有这种性质的整数的个数是:", "type": "单选题", "options": "A. 8个\nB. 10个\nC. 12个\nD. 14个", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 28749, "human_acc": 48.7216946676, "source": "2009年江苏省公务员录用考试《行测》题(B类)第75题", "difficulty": 6, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 5109348, "material": "", "question": "赵某与李某发生口角并大打出手,围观群众用数码相机拍摄了打架照片,后李某提起诉讼,要求赵某赔偿医疗费,并向法院提交了打印的照片。该照片属于下列哪一种证据?", "type": "单选题", "options": "A. 鉴定意见\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "D", "human_count": 19953, "human_acc": 42.6301809252, "source": "2022下半年省考第二季行测模考大赛(新疆卷)第11题", "difficulty": 7, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 2031318, "material": "", "question": "在电脑里先输入一个数,它会按给定的指令进行如下运算:如果输入的数是偶数,就把它除以2;如果输入的是奇数,就把它加上3;对产生的数继续进行同样的运算。这样进行了3次,得出结果是27。原来输入的数有________种情况。", "type": "单选题", "options": "A. 五\nB. 四\nC. 三\nD. 一", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 128792, "human_acc": 52.4030995714, "source": "2015年上海市公务员录用考试《行测》题(B类)第69题", "difficulty": 5, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 2672053, "material": "", "question": "用人单位拖欠或者未足额支付劳动报酬时,劳动者可以依法向当地人民法院申请:", "type": "单选题", "options": "A. 支付令\nB. 保护令\nC. 法律援助\nD. 司法救济", "choice": "A", "keypoints": "劳动法", "most_wrong": "C", "human_count": 2541, "human_acc": 44.0377804014, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第53题", "difficulty": 5, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 5460861, "material": "", "question": "某部门将15个新员工招聘名额分配到3个工作组,每组至少分配1个名额且分配到的数量互不相同,问有多少种分配方式?", "type": "单选题", "options": "A. 54\nB. 68\nC. 72\nD. 91", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 96526, "human_acc": 51.760147525, "source": "2023上半年省考第六季行测模考大赛(山西卷)第74题", "difficulty": 6, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 23611, "material": "", "question": "有关专家指出,月饼高糖、高热量,不仅不利于身体健康,甚至演变成了“健康杀手”。月饼要想成为一种健康食品,关键要从工艺和配料两方面进行改良,如果不能从工艺和配料方面进行改良,口味再好,也不能符合现代人对营养方面的需求。\n\n由此不能推出的是:", "type": "单选题", "options": "A. 只有从工艺和配料方面改良了的月饼,才能符合现代人对营养方面的需求\nB. 如果月饼符合了现代人对营养方面的需求,说明一定从工艺和配料方面进行了改良\nC. 只要从工艺和配料方面改良了月饼,即使口味不好,也能符合现代人对营养方面的需求\nD. 没有从工艺和配料方面改良月饼,却能符合现代人对营养方面需求的情况是不可能存在的", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 139074, "human_acc": 70.7659231776, "source": "2009年国家公务员录用考试《行测》题第98题", "difficulty": 4, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 24041, "material": "", "question": "一项工程,甲一人做完需30天,甲、乙合作完成需18天,乙、丙合作完成需15天,甲、乙、丙三人共同完成该工程需:", "type": "单选题", "options": "A. 10天\nB. 12天\nC. 8天\nD. 9天", "choice": "A", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 517169, "human_acc": 61.636331644, "source": "2012年421联考《行测》题(山西/辽宁/黑龙江/福建/湖北/ 湖南/广西/海南/四川/重庆/ 云南/ 西藏/陕西/青海/宁夏/ 新疆兵团)第65题", "difficulty": 5, "formulas": 0, "history": [{"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 5867, "material": "", "question": "一个游泳池,甲管注满水需6小时,甲、乙两管同时注水,注满要4小时。如果只用乙管注水,那么注满水需多少小时:", "type": "单选题", "options": "A. 14\nB. 12\nC. 10\nD. 8", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 127732, "human_acc": 87.2490840197, "source": "2008年河南省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}, {"id": 3431, "material": "", "question": "要折叠一批纸飞机,若甲单独折叠要半个小时完成,乙单独折叠需要45分钟完成。若两人一起折,需要多少分钟完成:", "type": "单选题", "options": "A. 10\nB. 15\nC. 16\nD. 18", "choice": "D", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 59989, "human_acc": 76.2139725616, "source": "2008年广东省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 49325, "material": "", "question": "一项工程,甲、乙合作16天完成,乙、丙合作12天完成,丙、丁合作16天完成,如果甲、丁合作完成这项工程需要多少天:", "type": "单选题", "options": "A. 21\nB. 24\nC. 26\nD. 27", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "A", "human_count": 368874, "human_acc": 77.7297939134, "source": "2013年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"]]}, {"id": 5317007, "material": "", "question": "电脑是机器,电脑是简化办公流程的用具,所以,机器是简化办公流程的用具。\n\n以下与上述推理在结构上最为相似的一项是:", "type": "单选题", "options": "A. 通假字是古人常用的表达方式,通假字是需要翻译的,所以,通假字是能够被我们理解的\nB. 乌龟是两栖动物,乌龟既能在水中生活也能在陆地生活,所以,两栖动物既能在水中生活也能在陆地生活\nC. 饮料是含糖的食物,含糖的食物是能给人带来快乐的,所以,饮料能给人带来快乐\nD. 文章是用来阅读的,用来阅读的东西是可以帮助人们变得博学的,所以,文章是可以帮助人们变得博学的", "choice": "B", "keypoints": "推理形式", "most_wrong": "C", "human_count": 20811, "human_acc": 94.959396473, "source": "2022下半年省考第十四季行测模考大赛(北京卷)第102题", "difficulty": 3, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 5425544, "material": "", "question": "某公司3个部门分别派出2、2、3人参加拍摄宣传照的活动,现将所有人分为两排,要求第一排的人数不得多于第二排且同一部门的人左右相邻,则共有多少种不同的站位方式?", "type": "单选题", "options": "A. 48\nB. 72\nC. 96\nD. 144", "choice": "D", "keypoints": "相邻问题", "most_wrong": "C", "human_count": 236717, "human_acc": 16.1526210623, "source": "2022下半年省考第二十四季行测模考大赛(深圳卷)第55题", "difficulty": 7, "formulas": 0, "history": [{"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 8099, "material": "", "question": "3名学生和2名老师站成一排照相,2名老师必须站在一起且不在边上的不同排法共有:", "type": "单选题", "options": "A. 12种\nB. 24种\nC. 36种\nD. 48种", "choice": "B", "keypoints": "相邻问题", "most_wrong": "A", "human_count": 142697, "human_acc": 66.8682593187, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第8题", "difficulty": 5, "formulas": 0}, {"id": 455201, "material": "", "question": "四对情侣排成一队买演唱会门票,已知每对情侣必须排在一起,问共有多少种不同的排队顺序:", "type": "单选题", "options": "A. 24\nB. 96\nC. 384\nD. 40320", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 454303, "human_acc": 64.360569928, "source": "2014年浙江省公务员录用考试《行测》题(B类)第47题", "difficulty": 5, "formulas": 0}, {"id": 5647201, "material": "", "question": "壮壮给平板电脑设置了仅由数字5和6组成的六位数密码,且其中恰好有连续三位数字都是6。则壮壮设置的密码有多少种可能?", "type": "单选题", "options": "A. 10\nB. 9\nC. 12\nD. 11", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 50144, "human_acc": 54.2756860243, "source": "2023下半年省考第十二季行测模考大赛(广东县级卷)第40题", "difficulty": 6, "formulas": 0}, {"id": 5365372, "material": "", "question": "春节期间,单位安排甲、乙、丙三人在初一到初六值班,要求每人值班两天,且甲必须连续两天值班,则共有多少种值班方案?", "type": "单选题", "options": "A. 30\nB. 60\nC. 120\nD. 240", "choice": "A", "keypoints": "相邻问题", "most_wrong": "C", "human_count": 11719, "human_acc": 20.0870381432, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第66题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "相邻问题"]]}, {"id": 2461741, "material": "", "question": "某铁路桥长1440米,一列动车从桥上通过,测得动车从开始上桥到完全下桥用了21秒,动车的速度为288km/h,则整列动车完全在桥上的时间为(    )秒。", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 12", "choice": "C", "keypoints": "火车过桥", "most_wrong": "A", "human_count": 7228, "human_acc": 59.2695074709, "source": "天津市2020年度定向34所重点高校招录选调生《综合能力测试》第10题", "difficulty": 5, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 2521790, "material": "", "question": "甲、乙、丙年龄之和比乙、丙、丁之和多$16\\%$,甲、丁年龄之和与乙、丙之和相等,甲比丁大8岁,那么四人年龄之和为多少岁?", "type": "单选题", "options": "A. 36\nB. 40\nC. 44\nD. 58\nE. 63\nF. 66\nG. 69\nH. 72", "choice": "H", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 7027, "human_acc": 18.0162231393, "source": "2020年上半年省考第二十五季行测模考大赛(陕西卷)第116题", "difficulty": 7, "formulas": 1, "history": [{"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 4517, "material": "", "question": "父亲今年44岁,儿子今年16岁,当父亲的年龄是儿子的年龄的8倍时,父子的年龄和是多少岁:", "type": "单选题", "options": "A. 36\nB. 54\nC. 99\nD. 162", "choice": "A", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 16717, "human_acc": 79.8408805408, "source": "2009年北京市公务员录用考试《行测》题(社招)第17题", "difficulty": 5, "formulas": 0}, {"id": 5185, "material": "", "question": "哥哥5年后的年龄和弟弟3年前的年龄和是29岁,弟弟现在的年龄是两人年龄差的4倍。哥哥今年几岁?", "type": "单选题", "options": "A. 10\nB. 12\nC. 15\nD. 18", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 30233, "human_acc": 80.4551318096, "source": "2009年北京市公务员录用考试《行测》题(应届)第24题", "difficulty": 4, "formulas": 0}, {"id": 8161, "material": "", "question": "父亲与两个儿子的年龄和为84岁,12年后父亲的年龄等于两个儿子的年龄之和,请问父亲现在多少岁:", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 60", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 51483, "human_acc": 74.1837111279, "source": "2009年广东省公务员录用考试《行测》题第14题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "年龄问题"]]}, {"id": 5331897, "material": "", "question": "彼此相倚是指沟通双方一方面按自己的计划同对方沟通,另一方面也以互相配合的方式对对方的行为做出反应,而且这种反应也不违背自己的意愿,在这类互动中,每一方的反应成为对方行为的刺激。\n\n根据以上定义,下列涉及到彼此相倚的是:", "type": "单选题", "options": "A. 某村委会打算推行新的村容村貌管理标准,但村民们纷纷反映希望根据具体的情况分区域设置标准,于是村委会决定暂不实施新标准,等后续征集村民意见后再推行\nB. 老师要求每位学生和自己的父母拍一个亲子互动视频,他考虑到李飞的父母在外打工,就没有要求李飞拍视频\nC. 小李因私事向领导张经理请半天假,张经理在听完小李的请假原因后说今天的工作任务比较繁重,希望小李不要请假,小李也表示接受\nD. 菲菲的父母希望她能参加兴趣班,比如学钢琴,但菲菲表示自己喜欢古筝不喜欢钢琴,菲菲的父母决定尊重孩子并根据她的兴趣让她参加了古筝兴趣班", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 271704, "human_acc": 71.3500721373, "source": "2022下半年省考第十五季行测模考大赛(浙江C卷)第82题", "difficulty": 4, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 5524901, "material": "", "question": "一项工程,甲单独完成比乙单独完成需要多花5天,比丙单独完成少花5天。现由乙、丙两人一起合作,用时12天恰好完成。问乙单独完成这项工程需要多少天?", "type": "单选题", "options": "A. 20\nB. 22\nC. 23\nD. 25", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 7864, "human_acc": 24.0844354018, "source": "2023上半年省考第十一季行测模考大赛(浙江B卷)第47题", "difficulty": 7, "formulas": 0, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 12659, "material": "", "question": "一船顺水而下,速度是每小时6千米,逆流而上每小时4千米。求往返两地相距24千米的码头间平均速度是多少:", "type": "单选题", "options": "A. 5\nB. 4.8\nC. 4.5\nD. 5.5", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 17966, "human_acc": 78.5706334187, "source": "2008年湖北省公务员录用考试《行测》题(B类)第42题", "difficulty": 5, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 8391, "material": "", "question": "首因效应是指人们根据最初获得的信息所形成的印象不易改变,甚至会左右对后来获得的新信息的解释。\n\n根据上述定义,下列各项中属于首因效应的是:", "type": "单选题", "options": "A. 小王一直认为同事小张是一个冷漠、不喜欢帮助别人的人,直到最近小张在工作上给了小王很大帮助,小王对小张的印象才有所改变\nB. 新学期开始的时候,小李的勤奋、踏实给赵老师留下了深刻的印象,果然小李不负赵老师的期望,在学习过程中非常勤奋刻苦,期末的时候小李还因学习成绩突出获得了一等奖学金\nC. 在某公司招聘员工的面试中,小黄因过于紧张在回答考官提出的前面几个问题时有些口吃,尽管小黄及时调整了自己的状态,完整流利地回答了考官随后提出的几个问题,但考官给小黄的评价仍然是思维缺乏敏捷性、不善于表达自己\nD. 科学家做过这样的测试,要求被测试者分别描述“热情”和“冷淡”的人的个性特征,90%以上的被测试者认为热情的人同时也是慷慨的、富有幽默感的、勤奋的和有礼貌的,而大多数被测试者认为冷淡的人是粗鲁的", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 15827, "human_acc": 92.3737916219, "source": "2008年吉林省公务员录用考试《行测》题(甲级)第48题", "difficulty": 3, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 2185077, "material": "", "question": "某软件公司对旗下甲、乙、丙、丁四款手机软件进行使用情况调查,在接受调查的1000人中,有$68$$\\%$的人使用过甲软件,有$87$$\\%$的人使用过乙软件,有$75$$\\%$的人使用过丙软件,有$82$$\\%$的人使用过丁软件。那么,在这1000人中,使用过全部四款手机软件的至少有(    )人。", "type": "单选题", "options": "A. 120\nB. 250\nC. 380\nD. 430", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 792425, "human_acc": 51.4590024293, "source": "2018年广东省公务员录用考试《行测》题(县级、乡镇统一卷)(网友回忆版)第27题", "difficulty": 6, "formulas": 8, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 4582144, "material": "", "question": "溢出效应是指一个组织在进行某项活动时,不仅会产生活动所预期的效果,而且会对组织之外的人或社会产生影响。\n\n根据上述定义,下列不属于溢出效应的是:", "type": "单选题", "options": "A. 某公司为了实现利润最大化,拼命扩大生产,压缩治理污染成本。该公司自身获得发展后,许多企业竞相模仿,导致该地区环境污染失控\nB. 世博会的举办对上海的基础设施建设、会展业等方面都产生了深远的影响,很大程度上促进了经济发展,也给杭州等城市带来了许多外部机会\nC. 某知名互联网公司从其他公司挖来高管团队后,不但提高了公司的管理水平,同时他们的工作态度也对周围的员工产生了有利影响,提高了公司的整体效率\nD. 面对新冠病毒的不断传播,某大学决定延期开学,规定学生不得擅自返校,其他大学纷纷效仿,疫情控制态势良好", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 350692, "human_acc": 59.7991970162, "source": "2021下半年省考第三十三季行测模考大赛(北京乡镇卷)第104题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5543, "material": "", "question": "行为罚亦称能力罚,是行政主体对违反行政法律规范的行政相对方所采取的限制或剥夺其特定行为能力或资格的一种处罚措施。\n\n下列属于行为罚的是:", "type": "单选题", "options": "A. 行政拘留\nB. 没收财物\nC. 吊销营业执照\nD. 劳动教养", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 14256, "human_acc": 70.8543771044, "source": "2009年北京市公务员录用考试《行测》题(应届)第54题", "difficulty": 5, "formulas": 0}, {"id": 1163, "material": "", "question": "产权是指主体对物的排他性权利,它的本质是人们在社会中发生的对劳动成果的权利。\n\n根据以上定义,下列不属于产权的是:", "type": "单选题", "options": "A. 所有权、占有权\nB. 收益权、转让权\nC. 劳动选择权、劳动交换转让权\nD. 支配权、使用权", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 32630, "human_acc": 82.7152926755, "source": "2008年山东省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2452831, "material": "", "question": "应激性是指生物对外来刺激(如温度、声音)在短时间内所做出的反应。\n\n根据上述定义,以下属于应激性的是:", "type": "单选题", "options": "A. 篮球触地后高高弹起\nB. 含羞草被碰触后叶子收缩\nC. 鲜牛奶常温放置24小时后发酸\nD. 纸张遇到明火燃烧", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 107843, "human_acc": 94.2314290218, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 3588976, "material": "", "question": "某公司需要将10多名宾客从机场送往酒店,公司安排了2辆座位数相同的小客车并按照宾客姓名提前排好座位,其中有1辆小客车坐满,另一辆小客车差2人坐满。若小客车可载客人数为奇数且没有宾客上错车,则在坐满宾客的小客车中,只有4名宾客所坐位置与安排的位置一致的情况可能有多少种?", "type": "单选题", "options": "A. 315\nB. 1134\nC. 1540\nD. 5544", "choice": "D", "keypoints": "错位排列", "most_wrong": "C", "human_count": 67556, "human_acc": 9.8392444787, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第41题", "difficulty": 7, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 2261737, "material": "", "question": "据报道,微软的研究人员通过统计1.28亿人之间的300亿个电子信息后发布,“六度分离”理论是成立的。所谓“六度分离”,就是说地球上60多亿人之间的任意两个人,最多通过六个人就能建立起联系。\n\n对“六度分离”最恰当的解释是:", "type": "单选题", "options": "A. 信息的裂变式传播让我们在食指轻划触屏时,需要慎思量\nB. 这是一个“天罗地网”的时代,需要净化自己的虚拟空间\nC. 地球上60多亿人之间的任意两个人,最多通过6个人就能建立联系\nD. 与朋友建立圈子时提醒自己:圈诤友不圈损友,传播正能量而不放大负效应", "choice": "C", "keypoints": "实词", "most_wrong": "A", "human_count": 18397, "human_acc": 80.757732239, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第45题", "difficulty": 4, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2137046, "material": "", "question": "有些参加语言学暑期高级讲习班的学生获得过青年语言学奖。所有中文专业的三年级硕士生都参加了语言学暑期高级讲习班。所有中文专业的一年级硕士生都没有参加语言学暑期高级讲习班。\n\n如果以上陈述为真,可以推出:", "type": "单选题", "options": "A. 有些获得过青年语言学奖的学生是中文专业的三年级硕士生\nB. 有些中文专业的三年级硕士生获得过青年语言学奖\nC. 有些获得过青年语言学奖的学生不是中文专业的一年级硕士生\nD. 有些中文专业的一年级硕士生获得过青年语言学奖", "choice": "C", "keypoints": "集合推理", "most_wrong": "B", "human_count": 446324, "human_acc": 54.3349674228, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第105题", "difficulty": 5, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 250197, "material": "", "question": "最高明的骗子,可能在某个时刻欺骗所有的人,也可能在所有时刻欺骗某些人,但不可能在所有时刻欺骗所有的人。\n\n如果上述断定是真的,那么下述哪项断定是假的?", "type": "单选题", "options": "A. 人可能在任何时候都不受骗\nB. 不存在某一时刻有人可能不受骗\nC. 骗子也可能在某个时刻受骗\nD. 不存在某个时刻所有的人都必然不受骗", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 11125, "human_acc": 37.4561797753, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第59题", "difficulty": 5, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 16851, "material": "", "question": "事故应急救援预案(简称预案或应急预案)是指政府或企业为降低事故后果的严重程度,以对危险源的评价和事故预测结果为依据,预先制订的事故控制和抢险救灾方案。\n\n根据上述定义,下列不属于事故应急救援预案范畴的是:", "type": "单选题", "options": "A. 某石油天然气集团公司为尽可能减小其所属的钻井公司在施工过程中可能发生的井喷事故的危害,对钻井公司的员工进行了相关应急培训\nB. 某商厦为了减小发生火灾时可能造成的损失,配备了专用灭火器等器材,并规定了应急状态下的报警通讯方式、通知方式\nC. 某危险化学品生产企业因管理不善,引发了大量的液氯泄露,公司临时从外面调来抢救器械,虽未造成人员中毒死亡,但造成了较大的经济损失\nD. 某矿务局所属的大型煤矿为了减少可能发生的瓦斯爆炸事故的危害,编制了详实的应急预案,内容包括应急计划区、应急组织机构、人员、预案分级响应条件等", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 17375, "human_acc": 86.071942446, "source": "2009年贵州省公务员录用考试《行测》题第73题", "difficulty": 4, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 2741654, "material": "", "question": "进入某比赛四强的选手通过抽签方式随机分成2组进行半决赛,已知小王在面对任何对手时获胜的概率都是$60\\%$,小张在面对任何对手时获胜的概率都是$40\\%$。问小王和小张均在半决赛中获胜的概率为:", "type": "单选题", "options": "A. $\\frac{2}{15}$\nB. $\\frac{4}{15}$\nC. $\\frac{3}{25}$\nD. $\\frac{4}{25}$", "choice": "D", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 587535, "human_acc": 25.9298594977, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第38题", "difficulty": 5, "formulas": 421, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 1587231, "material": "", "question": "甲、乙两船同时从A地出发,甲船逆流前往B地,乙船顺流前往C地,1小时后两艘船同时掉头航向A地,甲船比乙船早1小时返回,已知甲船的静水速度是水流的3倍,那么甲船的静水速度和乙船的静水速度之比是:", "type": "单选题", "options": "A. 3:5\nB. 2:3\nC. 3:4\nD. 2:5", "choice": "A", "keypoints": "流水行船", "most_wrong": "C", "human_count": 202357, "human_acc": 36.936700979, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第58题", "difficulty": 6, "formulas": 0, "history": [{"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1679372, "material": "", "question": "两艘船相对划行,一船从A到B顺水,一船从B到A逆水,结果所用时间相同(假设水流速、行船速恒定,快船速是慢船速2倍)。则慢船速是水流速的几倍?", "type": "单选题", "options": "A. 1\nB. 4\nC. 3\nD. 2​", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 307203, "human_acc": 65.1679833856, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第92题", "difficulty": 5, "formulas": 0}, {"id": 44089, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要几天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 93842, "human_acc": 76.8600413461, "source": "2012年上海市公务员录用考试《行测》题(A类)第60题", "difficulty": 5, "formulas": 0}, {"id": 43449, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要多少天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 73831, "human_acc": 77.2223049938, "source": "2012年上海市公务员录用考试《行测》题(B类)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 4485493, "material": "", "question": "某战区有一个由特种兵和普通兵组成的10人小分队,某次任务需抽调3名队员去完成,因任务需要,只有3名队员的兵种相同(3名均是特种兵或3名均是普通兵),此次任务才能完成。经过计算发现,如果进行随机抽调,未能完成任务的概率是能完成任务概率的4倍。则10名队员中特种兵最少有多少人?", "type": "单选题", "options": "A. 7\nB. 6\nC. 5\nD. 4", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 164039, "human_acc": 16.5107078195, "source": "2021下半年省考第二十六季行测模考大赛(北京乡镇卷)第80题", "difficulty": 7, "formulas": 0, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 2049914, "material": "", "question": "“饥饿营销”是指商品提供者有意调低产量,以期达到调控供求关系、制造供不应求“假象”、维持商品较高售价和利润率的目的。饥饿营销比较适合一些单价较高、不容易形成单个商品重复购买的行业。\n\n根据上述定义,下列属于饥饿营销的是:", "type": "单选题", "options": "A. 某厂商设计了新款笔记本电脑,与该品牌以往的一贯风格相差甚远,该厂商不确定是否能被市场接受,限量生产了3万台,上市后市场反应异常火爆,供不应求\nB. 某汽车品牌推出新款,很多人排队等候,甚至愿意加价购买,厂家宣称该款汽车产量有限,一直限量限售,以扩大“热销”影响\nC. 某品牌一款经典白球鞋,一直销量稳定,近期受时尚界刮起的“怀旧风”影响,白球鞋销量大增,供不应求\nD. 近期高档白酒滞销,某知名品牌白酒生产商为保证效益,主动限产,调高售价,销售额未出现明显下滑", "choice": "B", "keypoints": "方式目的", "most_wrong": "D", "human_count": 594837, "human_acc": 83.7501702147, "source": "2017年422联考《行测》题(山东卷)第77题", "difficulty": 5, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 2012256, "material": "", "question": "游泳是人体处于一个完全陌生的环境下进行的一项运动。人在陆地上的日常生活中所形成的走、跑、跳、投等习惯性的运动技能,由于活动环节、姿势、呼吸、动力等因素的改变,都不能在水中直接运用。因此,凡是初学游泳的人,不是先学某一个动作,而是先从熟悉水性这个环节开始,亲临水中了解水的浮力、压力、阻力,体验水中运动技能形成的感觉。消除怕水的恐惧心理,是学习游泳的入门关键。\n\n下列选项不符合文意的一项是:", "type": "单选题", "options": "A. 游泳是人体处于一个完全陌生的环境下进行的一项运动\nB. 人在陆地上的运动技能可以直接在水中运用\nC. 初学游泳的人先从熟悉水性开始\nD. 消除怕水的恐惧心理,是学习游泳的入门关键", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 6137, "human_acc": 97.9957634023, "source": "2008年江苏省公务员录用考试《行测》题(C类)第75题", "difficulty": 5, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 5524917, "material": "", "question": "一辆新型汽车,加满油后以100千米/小时的速度匀速行驶,可以行驶6个小时。经过测试,发现平均车速每减少10千米/小时,可行驶的时间会增加1小时。问当汽车加满油后,平均车速在20千米/小时~100千米/小时范围内时,最多可以行驶多少千米?", "type": "单选题", "options": "A. 480\nB. 560\nC. 640\nD. 720", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 7838, "human_acc": 53.0364889002, "source": "2023上半年省考第十一季行测模考大赛(浙江B卷)第50题", "difficulty": 6, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 2264178, "material": "", "question": "一畅销的自助书的出版商在一些促销材料中声称这本书将向读者展示如何成为一个卓越成功的人。当然,每个人都知道没有书能给很多人带来那些从定义上一定仅局限于少数人的卓越的成功。因此,尽管出版商很明显故意地做了一个虚假的声明,但是在这种情况下这种做法不应该被认为是不道德的。\n\n下面哪一原则,如果正确,能最强有力支持上面的推理?", "type": "单选题", "options": "A. 只要可能有人会认为某一虚假声明是假的,那么故意做出这样的声明就是不道德的\nB. 只要人们能合情合理地接受某一虚假的声明为真,那么故意作出这样的声明就是不道德的\nC. 如果作出虚假声明的人在损害那些认为该虚假声明为真的人的情况下获益,那么故意作出这样的声明是不道德的\nD. 至少在其他某个人发现某个虚假声明是假的,且这个人一定一度认为该声明是真的情况下,故意作出这样的声明是不道德的", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 5600, "human_acc": 25.9107142857, "source": "2015年重庆市选调优秀大学生到基层工作考试《行测》题第73题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 2717473, "material": "", "question": "____________________。年轻人结婚年龄普遍推后,极晚婚现象挤压了“婚内生育空间”,结果必然是极晚育和极少生。年龄在35岁以上的高龄孕妇所占比例逐年攀升。显然,高房价抑制了生育意愿,生育焦虑指数非常之高,“房奴”“孩奴”成为事实,有人测算过从孩子出生到成家需要数百万之巨,高房价、高生养成本已经如此普遍,很少有家庭可以摆脱高成本约束的生养模式。虽然理想子女数平均接近2,但条件生育率却不到1,高房价、高抚育成本及不确定的巨大机会成本,都成了很多家庭想生而不敢生的障碍因素。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 多数年轻人是因为目前生活成本太高,无奈中选择少育晚育\nB. 年轻人生育趋向“被动性晚婚晚育”“选择性优生优育”模式\nC. 社会转型导致生养成本急剧升高让年轻夫妇产生“恐育”心理\nD. 我国当代人口婚育模式表现出极晚婚、极晚育、极少育的趋势", "choice": "A", "keypoints": "开头", "most_wrong": "D", "human_count": 130303, "human_acc": 21.5536096636, "source": "2020年下半年省考第十五季行测模考大赛(天津卷)第31题", "difficulty": 7, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 2448483, "material": "", "question": "合理使用是指在法律明文规定的情形下,非商业性使用他人已经发表的作品,可以不经著作权人许可,也不必向其支付报酬。“法律明文规定的情形”主要包括:(1)为个人学习、研究或者欣赏,使用他人已经发表的作品;(2)免费表演已经发表的作品;(3)对设置或者陈列在室外公共场所的艺术作品进行临摹、绘画、摄影、录像;(4)将已经发表的以汉语言文字创作的作品翻译成少数民族语言文字作品出版发行。\n\n根据上述规定,下列属于合理使用的是:", "type": "单选题", "options": "A. 甲在班级聚会上演唱了戊未发表的一首歌曲\nB. 乙将一部英文作品翻译成蒙文作品出版发行\nC. 丙公司拍摄公共广场的雕塑作品后,将其制作成图片发行\nD. 丁为撰写论文,复印了庚发表在某期刊上的论文作参考", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 3029618, "human_acc": 62.2111434511, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第84题", "difficulty": 5, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}, {"id": 9009, "material": "", "question": "体液是指人体体内含有的大量以水为基础的液体,包括细胞内液和细胞外液,其中除含有大量的水外,还有许多离子和化合物。\n以下不属于体液的是:", "type": "单选题", "options": "A. 炎热环境中排出的汗液\nB. 血管中流动的血浆\nC. 组织细胞间隙的组织液\nD. 淋巴管内流动的淋巴", "choice": "A", "keypoints": "大前提", "most_wrong": "D", "human_count": 18888, "human_acc": 42.095510377, "source": "2009年江西省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 2440235, "material": "", "question": "注意分配是指在同一时间内,把注意指向不同的对象,同时从事几种不同活动的现象。\n\n根据上述定义,下列不属于注意分配的是:", "type": "单选题", "options": "A. 学生边听讲边做笔记\nB. 歌手自拉自唱\nC. 工人边观察仪表边控制调节\nD. 运动员一鼓作气完成了躲避、转身、投篮的动作", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 198157, "human_acc": 86.5591424981, "source": "2019年青海省法院、检察院录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 2685055, "material": "", "question": "“民吾同胞,物吾与也。”在中华民族的精神谱系中,无论国与家,还是己与人,都是密不可分的命运共同体。在历史的长河中,家国情怀内化为“修身齐家治国平天下”的人生理想,指导着道德实践;凝练为“苟利国家生死以,岂因祸福避趋之”的千古名句,成为了价值法度;记录为“人心齐,泰山移”“树高千丈,叶落归根”等民间俗语,通过口耳相传、相习成诵,蕴藏于一代代中华儿女的灵魂深处。_让中华文明辉煌于史、溢彩于今,虽经风雨波折而始终屹立如新,成为一种“亘古亘今”的文明。\n\n文中画横线的“这”指代的是:", "type": "单选题", "options": "A. 家国情怀指导着人民的道德实践\nB. 中华民族家国同心的精神永流传\nC. 国与家是密不可分的命运共同体\nD. 爱国精神已融入中华儿女血脉中", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 4756, "human_acc": 43.1034482759, "source": "2020年下半年省考第十二季行测模考大赛(天津卷)第44题", "difficulty": 7, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2187568, "material": "", "question": "人的身高是生物学性状之一。一直以来,人们认为身高主要是遗传、饮食和环境因素综合决定的。但是,在人类认识了基因的作用后,开始认为基因在决定身高中占主要作用,于是在人类基因组计划完成后,开始寻找与身高相关的基因,并获得其与健康、疾病等有关的信息和知识。\n\n接下来最可能讲述的是:", "type": "单选题", "options": "A. 身高差距大的人在外貌、健康状态上差异也大\nB. 饮食、环境及个人健康状况对基因有影响\nC. 寻找与身高基因有关的数据并实证分析\nD. 决定身高的基因还影响着健康、疾病等", "choice": "C", "keypoints": "接语选择题", "most_wrong": "D", "human_count": 1603319, "human_acc": 64.4597238603, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第42题", "difficulty": 4, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 5673527, "material": "", "question": "当句对,是指在同一句中的词语自成对仗,同时又与另一句成对。掉字对,是指同一句中使用相同的字与另一句一组相同的字作对仗。错综对,是指在一联中相对称的字或词错位。\n\n根据上述定义,下列属于掉字对的是:", "type": "单选题", "options": "A. 虎踞龙盘今胜昔,天翻地覆慨而慷\nB. 昔看黄菊与君别,今听玄蝉我却回\nC. 花谢花飞花满天,红消香断有谁怜\nD. 即从巴峡穿巫峡,便下襄阳向洛阳", "choice": "D", "keypoints": "常规问法", "most_wrong": "C", "human_count": 76668, "human_acc": 46.4900610424, "source": "2023下半年省考第十四季行测模考大赛(北京卷)第109题", "difficulty": 6, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 457575, "material": "", "question": "某饭店为了在下一季度进一步吸引顾客、提高利润,决定与团购公司合作,推出优惠团购套餐。\n\n该饭店的上述促销计划假设了以下各项,除了:", "type": "单选题", "options": "A. 该饭店能够接待比现在更多的顾客前来用餐\nB. 团购公司能够使该饭店的团购优惠让更多的潜在消费者得知\nC. 团购套餐的优惠价格跟实际成本相比仍有盈利\nD. 团购套餐中的菜式是年轻人所喜欢的", "choice": "D", "keypoints": "加强选非题", "most_wrong": "A", "human_count": 270685, "human_acc": 77.4058407374, "source": "2014年深圳市公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 5451877, "material": "", "question": "据统计,我国大部分股民在股市中都亏钱,然而一项最新的统计数据却显示,最近一段时间进入股市交易的我国股民数量有所增长。\n\n下列选项如果为真,最能解释这一现象的是(    )。", "type": "单选题", "options": "A. 部分股民在亏钱后往往归因于运气不好,因此不会离开股市\nB. 随着我国经济的发展,居民的人均收入和资产也在逐年上升\nC. 很多股民不甘心亏钱后离开,总想再努力把亏了的钱赚回来\nD. 近期我国股市大幅向下调整,很多没炒过股的人进场“抄底”", "choice": "D", "keypoints": "原因解释", "most_wrong": "C", "human_count": 38996, "human_acc": 82.9597907478, "source": "2023上半年省考第五季行测模考大赛(广东县级卷)第69题", "difficulty": 4, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 2262981, "material": "", "question": "口红效应,经济不景气,口红这种比较廉价的消费品反而会直线上升,当经济不景气时,人们的消费就会转向购买廉价商品,而口红是生活必需品,却兼具廉价和粉饰的作用,来检测消费者带来的心理慰藉。根据上述定义,下列选项体现了口红效应的是:", "type": "单选题", "options": "A. 胡老汉为了还取债务,卖掉了自己的高级轿车,并改骑自行车上班\nB. 为了应聘成功,贾某虽然工资不高,还是买了一身高级西装来粉饰\nC. 今年单位效益不好,小刘只好改出国旅游为周边旅游,结果感觉很不错\nD. 为约会顺利,小黄到理发店理了个新发型,看上去朝气蓬勃", "choice": "C", "keypoints": "故事类", "most_wrong": "B", "human_count": 3863, "human_acc": 74.4240227802, "source": "2016年青海省选调生行测题(精选)第51题", "difficulty": 5, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 3602534, "material": "", "question": "加拿大一项最新研究显示,方向感比较强的人嗅觉灵敏。麦基尔大学研究人员招募志愿者参加实验,让他们辨别不同气味,另外在电脑屏幕上显示的一座虚拟城镇内仅借助地标性建筑找路。结果发现,找路测试中方向感较强的人们,其嗅觉也更加灵敏。因此该机构得出结论,方向感越强导致嗅觉更加灵敏。\n\n以下哪项如果为真,不能削弱研究机构的结论?", "type": "单选题", "options": "A. 生物进化过程中,嗅觉作为重要的生存手段不断进化,有助于辨别方向感\nB. 左内侧眶额皮质较厚、右侧海马体较大会使人在闻味和找路测试中表现得更好\nC. 虚拟城市与真实环境不同,真实城市中影响方向感判别的因素更多\nD. 经常使用电脑的人的嗅觉会因为长期的工作压力退化,甚至失灵", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 87592, "human_acc": 63.3493926386, "source": "2021下半年省考第六季行测模考大赛(广东县级卷)第58题", "difficulty": 6, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 2388009, "material": "", "question": "今年“五一”期间,某品牌服装店进行促销活动,根据顾客身份证上的出生年份打折,如1986年出生的,打86折,1999年及以后出生的统一打99折。该活动由于宣传到位,备货充足,顾客盈门,“五一”假期销售额同比增长$40\\%$。该服装店老板认为此次促销活动非常成功。\n\n以下哪项如果为真,最能反驳该服装店老板的结论?", "type": "单选题", "options": "A. 1986年到1996年出生的顾客占比超过$80\\%$\nB. 今年“五一”假期全国服装销售额同比增长$45\\%$\nC. 今年“五一”假期比去年多一天,消费者有更多的购物时间\nD. 另一个街区该品牌服装店没有促销活动,“五一”假期销售额也增长了$40\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 715477, "human_acc": 69.0392563283, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第105题", "difficulty": 5, "formulas": 252, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}, {"id": 1324947, "material": "", "question": "有甲、乙两家公司,甲公司售后服务部门接到的产品投诉电话是乙公司的3倍。因此,甲公司产品的质量没有乙公司的好。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙公司的产品操作相对来说更为简单\nB. 甲公司接到电话大多数是咨询电话\nC. 甲公司的咨询电话机数量比乙公司多\nD. 甲公司产品的市场占有率达到$76\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 793211, "human_acc": 70.0645855895, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第58题", "difficulty": 5, "formulas": 83}, {"id": 22459, "material": "", "question": "由于在乐业天坑中最大的天坑——大石围的底部的原始森林中发现了与恐龙同时代的植物桫椤,有人据此推测,大石围应形成于恐龙时代,即6500万年前。\n\n如果下列各项为真,哪项最能反驳上述推测:", "type": "单选题", "options": "A. 桫椤至今仍然存在\nB. 在其他乐业天坑中未发现桫椤\nC. 恐龙无法进入这个极深的天坑\nD. 没有在大石围中发现恐龙化石", "choice": "A", "keypoints": "拆桥", "most_wrong": "D", "human_count": 423565, "human_acc": 53.8413230555, "source": "2012年安徽省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"]]}, {"id": 2950183, "material": "某蛋糕店打折促销,小汪、小张、小孙、小唐、小江、小刘和小吴七位顾客站成一列等待购买。排队情况遵循以下原则:\n\n①小汪站在第三位;\n\n②小江和小吴的站位不相邻;\n\n③小唐站在小孙和小吴前面;\n\n④小张和小孙的站位相邻。", "question": "如果小江和小孙相邻且小江在前,那么以下哪项一定为真?", "type": "单选题", "options": "A. 小吴和小唐相邻且小吴在后\nB. 小刘站在第一位或者第二位\nC. 小唐站在小汪前面\nD. 小张站在小江前面", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 27248, "human_acc": 64.1074574281, "source": "2022年国考第五季行测模考大赛(地市级)第110题", "difficulty": 6, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 820289, "material": "", "question": "对于藏北色林错东南岸古湖滨阶地的采集石器,研究者认为这些石器在制作技术与类型学上显示出浓厚的欧洲旧石器中期文化风格,加工时采用欧洲典型的“奎纳修整法”的“去薄”技术,从而认定色林错石器的大致年代可能在距今四万至三万年前后。\n\n以下哪项如果为真,最能削弱上述结论:", "type": "单选题", "options": "A. 欧洲典型的“奎纳修整法”是石器加工的主要方法\nB. 欧洲旧石器中期文化风格较为单一,缺乏变化\nC. 在别处发现了类似于藏北色林错东南岸湖滨阶地采集到的石器\nD. 后期研究在部分石器文化风格和加工技术的确认上遇到了障碍", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 223538, "human_acc": 49.4721255447, "source": "2014年黑龙江省政法干警考试《行政职业能力测验》试卷(专科)第100题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 4004840, "material": "", "question": "某公司发生失窃案,公安机关经过调查锁定了犯罪嫌疑人是该公司会计张某。办案民警小王说:“一定不是他”,办案民警小李发表了反对观点:“当其他可能性被排除了,剩下的不管看起来多么不可能,但一定是事情的真相。”\n\n以下哪项如果为真,最能削弱小李的说法?", "type": "单选题", "options": "A. 追究违法行为最重要的是用证据说话\nB. 办案民警无法极尽所有可能性\nC. 办案民警小王比小李更了解案件经过\nD. 公司职员评价张某平时为人老实诚恳", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 178912, "human_acc": 76.9590636738, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第91题", "difficulty": 5, "formulas": 0}, {"id": 4658543, "material": "", "question": "德国的一项研究显示,长期居住在天寒地冻、杳无人烟的南极洲,人的大脑平均会缩小7%,学习、记忆以及与人交往能力随之减弱。因此,生活在炎热地区的人比生活在寒冷地区的人更聪明。\n\n以下哪项如果为真,最能削弱上述论证?", "type": "单选题", "options": "A. 该项研究成果尚未公开发表\nB. 气候会对人的智力产生巨大的影响\nC. 寒冷令人们为保存更多能量,倾向于减少学习及社交活动\nD. 该研究结果是可逆的,离开南极洲一段时间后人的大脑基本恢复正常水平", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 1126762, "human_acc": 52.4565968678, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第78题", "difficulty": 5, "formulas": 0}, {"id": 1679314, "material": "", "question": "一项民意调查结果显示,在1000多名参与投票的网友中,六成网友支持延长女性产假至三年,以便更好地照顾宝宝;四成网友表示反对,认为产假太长,会增加企业负担,进而增加女性就业难度,不可行。\n\n以下哪项如果为真,最能质疑上述反对者的观点?", "type": "单选题", "options": "A. 企业除了追求利润之外,也应当承担社会责任\nB. 女性产假延长的成本,由财政或社保基金来承担\nC. 这份调查样本量不够大,不足以代表真正的民意\nD. 法律应强制规定企业必须招聘一定比例的女性", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 485630, "human_acc": 84.9737454441, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第79题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 4565657, "material": "", "question": "发表在《环境科学与科技》上的一篇论文表明,屋内落满灰尘会使人们变胖。论文作者解释道,大量的消费品带着各种化学物质“入侵”室内环境,这些化学物质和灰尘一起慢慢地在房间里沉积,而屋内灰尘越多,屋主人越容易变胖。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 灰尘中含有影响体内激素变化的化学物质\nB. 随着体重的不断增加,人们越不愿意打扫屋内卫生,导致屋内灰尘大量堆积\nC. 灰尘中的大量化学物质会促进细胞储存脂肪,进而使人们变胖\nD. 化学物质在室内的含量非常少,不至于使人出现生理性病变", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 344265, "human_acc": 75.4073170377, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 1796576, "material": "", "question": "老张为了试验某品牌化肥的效果,把自家的稻田分成东边、西边两块,在东边地块施肥,西边地块不施肥。水稻收割后,东边地块亩产700公斤,西边地块亩产400公斤。因此,该品牌化肥能有效增产。\n\n以下最能反驳上述论证的是(    )。", "type": "单选题", "options": "A. 东边地块的土壤肥力原本就比西边地块高\nB. 东西两块地种植的是同一种品种的水稻\nC. 东边地块的水稻遭受过病虫害\nD. 老张收割西边地块的水稻先于东边地块", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 828585, "human_acc": 94.7679477664, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第72题", "difficulty": 5, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 2524665, "material": "", "question": "“一个民族总是要强调一些有别于其他民族的风俗习惯、生活方式上的特点,赋予强烈的感情,把它升华为代表本民族的标志。”乡土、乡愁、乡风、乡贤,这是传统村落的“精神标配”。呵护传统村落,关键要回归传统民俗文化,取其精华、去其糟粕,让优秀的民俗文化回归,并为乡村振兴提供精神动力,成为建构新时代乡风文明的文化底色。呵护传统村落,就是要唤醒沉睡的民俗文化,充分发掘历史遗存、民间习俗、名人典故、传统技艺与工艺等特色资源,通过“挖文兴旅”,繁荣传统文化底蕴,增添美丽乡村建设的独特魅力。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 传承民俗文化,助力乡村振兴\nB. 守护民俗文化,回归民俗文化\nC. 保护传统村落,重在精神回归\nD. 呵护传统村落,感知乡村之美", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 337365, "human_acc": 54.3870881686, "source": "2020年上半年省考第二十六季行测模考大赛(浙江卷)第35题", "difficulty": 6, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 19641, "material": "", "question": "为保护凤凰山红枫林免受山顶季节性狂风的肆虐而不被刮倒,凤凰山国家风景管理局在山顶上设置了巨大的防风屏障。这些屏障的建立虽然挡住了狂风的侵袭,但就风景的整体性而言,有两个副作用,一是近乎将红枫林圈围起来了,二是凤凰山山顶在狂风季节的“风”景,也因此屏障而大为逊色;另外也使本来就不太大的山顶显得更狭小了。\n\n上述信息最支持的一项论断是:", "type": "单选题", "options": "A. 通过建筑防风屏障来保护红枫林,从长远来看,其作用可能是适得其反的\nB. 由于季风的猛烈程度不断加深,必须从红枫林周围建立起更多有效的防风屏障\nC. 为人类留下宝贵的红枫林资源,应该是红枫林风景管理的首要目标\nD. 防风屏障永远不被风暴破坏,也不需要昂贵的维修和更新", "choice": "A", "keypoints": "加强-其他", "most_wrong": "C", "human_count": 346642, "human_acc": 75.6838467352, "source": "2012年江西省公务员录用考试《行测》题第31题", "difficulty": 4, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 16359, "material": "", "question": "尘:伐", "type": "单选题", "options": "A. 信:嵩\nB. 眉:鸟\nC. 明:清\nD. 让:休", "choice": "A", "keypoints": "逻辑关系-对应关系", "most_wrong": "D", "human_count": 100252, "human_acc": 43.7088536887, "source": "2010年江苏省公务员录用考试《行测》题(A类)第48题", "difficulty": 6, "formulas": 0}, {"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强-其他"]]}, {"id": 4935370, "material": "", "question": "①在这种情形下制定的惩戒规则容易侵害学生的权利\n\n②传统治理体系往往将维持校园秩序稳定作为首要目标,惩戒行政色彩浓厚,容易忽略学生的正当诉求\n\n③法律惩戒需体现温度和情怀,高校作为教育主体,其本质是以教书育人为目的\n\n④从高校学生惩戒监管体系来看,也存在一些不足\n\n⑤所以在开展教育惩戒时,应该以育人为目的,坚持从轻量罚,让学生树立改过自新的勇气\n\n⑥高校作为相对独立的主体,其约束机制不健全,导致法律惩戒有时会存在不结合实际的情况发生\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①②④③⑥⑤\nB. ②①④⑥③⑤\nC. ③①④⑥⑤②\nD. ⑥④⑤③①②", "choice": "B", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 22972, "human_acc": 93.191711649, "source": "2023年国考第十九季行测模考大赛(行政执法类)第59题", "difficulty": 3, "formulas": 0, "history": [{"id": 6609, "material": "", "question": "①其中包括他们的肤色、相貌、身材、线条、姿态、气质、风度等许多方面\n\n②这样的美,才是广大女性更加向往、追求和渴望的\n\n③真正的女性美,应该是结实、精干、肌肉强健,具有区别于男子的特有曲线美\n\n④越来越多的人们现在都倾向于认为:现代女性人体美,绝不是苗条、柔软、纤细\n\n⑤当代青年人心目中美的典型,已不再是一个或一种人,而是一个多层次、多因素的复杂模式\n\n⑥既不失女性的妩媚,又足以承担生活竞争的压力,担当起社会责任\n\n排列组合最连贯的是:", "type": "单选题", "options": "A. ⑤⑥③②④①\nB. ⑤④⑥②①③\nC. ⑤①④③⑥②\nD. ②⑤①③④⑥", "choice": "C", "keypoints": "非首句特征", "most_wrong": "B", "human_count": 92466, "human_acc": 85.1058767547, "source": "2008年江苏省公务员录用考试《行测》题(A类)第71题", "difficulty": 5, "formulas": 0}, {"id": 4840106, "material": "", "question": "①就这样,日复一日,年复一年,我在平凡的岗位上奉献着,也收获着\n\n②我的家乡地处鄂东大别山支脉的深山僻岭,那里交通不便、曾经生活贫困\n\n③高中毕业后,我开始了梦寐以求的职业生涯,走上了“传道授业解惑”之路\n\n④知识打开了我的眼界,也给我幼小的心灵播下种子:长大后我要当一名教师,用知识改变偏远的山乡\n\n⑤能与乡村教育结缘,还得从小时候的梦想说起\n\n⑥用实际行动改变一个又一个孩子,点燃他们对于生活和未来的希望\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑤②⑥④③\nB. ⑤②④③①⑥\nC. ②⑤③④①⑥\nD. ④②⑤③⑥①", "choice": "B", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 246048, "human_acc": 87.6910196384, "source": "2022上半年省考第十三季行测模考大赛(河南卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 2033074, "material": "", "question": "①提起“小清新”,或许很多人不屑。\n\n②“人生一场小清新,此生不改是天真。”\n\n③天真,含义有褒有贬。既有纯真、简单之意,也有幼稚、不成熟之意。\n\n④这位“网络红人”却难能可贵地在“小清新”中,发现了它最可爱又可贵的内核——天真。\n\n⑤天真是好是坏?是多一点好还是少一点好?在不同的语境中答案当然不同。但在当前,窃以为这种品质不是太泛滥,而是太稀缺。 \n\n⑥这是不久前一位“网络红人”与网友互动时,在微博上写下的一句俏皮的“禅语”。\n\n下列语序排列正确的是:", "type": "单选题", "options": "A. ①⑥②④⑤③\nB. ⑥④①⑤③②\nC. ②⑥①④③⑤\nD. ③⑤②⑥①④", "choice": "C", "keypoints": "非首句特征", "most_wrong": "D", "human_count": 512840, "human_acc": 81.1087278683, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第50题", "difficulty": 5, "formulas": 0}, {"id": 5355308, "material": "", "question": "①它们也是人类赖以生存的生态系统的重要组成部分,与人类的衣食住行密切相关\n\n②开花是其区别于其它植物大类群最重要的特征,是其成为陆地生态系统主导类群的重要优势特征\n\n③花的起源和演化是认识和理解被子植物的起源,及与其它种子植物大类群谱系发育关系的关键\n\n④这一类群对人类和地球上的其它生命有着至关重要的影响,其起源和早期演化一直都是演化生物学中重要的科学问题\n\n⑤被子植物被认为是植物界进化完善、种类丰富、生态习性复杂的大类群\n\n⑥食物、棉麻衣服、建筑木材,绝大多数直接或间接地取自被子植物\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑤①⑥④②③\nB. ⑥⑤①②④③\nC. ②③①④⑥⑤\nD. ③④②①⑥⑤", "choice": "A", "keypoints": "非首句特征", "most_wrong": "D", "human_count": 2414, "human_acc": 75.2692626346, "source": "2022下半年省考第十七季行测模考大赛(新疆区考卷)第49题", "difficulty": 6, "formulas": 0}, {"id": 5570233, "material": "", "question": "①这种研究不再局限于传统对于地域文学的简单外部地理关注\n\n②以空间为导向的文学研究在实质上极大地促进了当代文学批评的变革,把越来越多的评论目光吸引到空间、地方和文学的动态关系上\n\n③随着空间概念日益前景化,我们看待和研究作家创作的角度也有了全新发展\n\n④还拓展到地图和地理意识在作家创作过程中的重要意义、空间在文本结构和意义再现中的重要功能等\n\n⑤通过在相关期刊数据库中以“空间性”为关键词搜索发现,相关研究成果在21世纪以来出现大幅增长并一直居高不下\n\n⑥这说明空间文学研究已经成为文学研究新的增长点\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤⑥③①④\nB. ③①⑤⑥④②\nC. ⑤⑥③①②④\nD. ⑥③①⑤④②", "choice": "A", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 42575, "human_acc": 57.9424544921, "source": "2023下半年省考第三季行测模考大赛(四川卷)第30题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"]]}, {"id": 5346033, "material": "2021年1-5月,全国到税务部门新办理税种认定、发票领用、申报纳税等涉税事项的企业、个体工商户等市场主体(以下简称“新办涉税市场主体”)共522.25万户,较2020年同期增长40.19%,较2019年同期增长24.75%。\n\n        分类型看,新办企业278.41万户,同比增长37.14%;新办个体工商户237.04万户,同比增长45.37%。\n\n        分所有制看,前五个月新办民营涉税市场主体共计516.32万户,占比持续攀升,达到98.86%,较2020年同期、2019年同期分别提高0.09、0.53个百分点。\n\n        分行业看,批发零售业、商务服务业、建筑业3个行业新办涉税市场主体合计292.74万户。信息技术服务业、科学研究和技术服务业等现代服务业新办涉税市场主体数量占比持续提高,分别从2020年1-5月的3.81%、5.49%提高至2021年1-5月的5.19%和6.08%。\n\n        分地区看,四大经济圈市场活力优势明显。长三角、珠三角、京津冀、成渝经济圈新办涉税市场主体分别为129.27万户、53.90万户、35.35万户、37.72万户,占全部新办涉税市场主体的49.06%。其中,S省新办涉税市场主体54.70万户,较2020年同期增长45.80%,较2019年同期增长57.80%。", "question": "2020年1-5月,全国新办涉税市场主体同比约增长了:", "type": "单选题", "options": "A. -6.3%\nB. -11.0%\nC. 12.4%\nD. 15.4%", "choice": "B", "keypoints": "间隔增长率;文字资料;一般增长率", "most_wrong": "D", "human_count": 297389, "human_acc": 70.8499641883, "source": "2022下半年省考第十六季行测模考大赛(深圳卷)第86题", "difficulty": 4, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 11333, "material": "根据文字资料完成以下各题。\n\n        2007年粮食种植面积10553万公顷,比上年增加70万公顷;棉花种植面积559万公顷,增加7万公顷;油料种植面积1094万公顷,减少60万公顷;糖料种植面积167万公顷,增加10万公顷。\n\n        全年粮食产量50150万吨,比上年增加350万吨,增产0.7%,其中,夏粮产量11534万吨,增产1.3%;早稻产量3196万吨,增产0.3%;秋粮产量35420万吨,增产0.6%。\n\n        全年棉花产量760万吨,比上年增产1.3%。油料产量2416万吨,减产4.2%。糖料产量11110万吨,增产11.4%。烤烟产量239万吨,减产3.9%。茶叶产量114万吨,增产10.9%。全年肉类总产量6800万吨,比上年减少3.5%。其中,猪肉减少9.2%;牛、羊肉分别增长6.1%和5.8%。全年水产品产量4737万吨,增长3.3%。全年木材产量6974万立方米,增长5.5%。全年新增的有效灌溉面积107万公顷,新增节水灌溉面积136万公顷。", "question": "2006年全年,全国的肉类总产量是多少万吨?", "type": "单选题", "options": "A. 7047\nB. 7132\nC. 6643\nD. 6745", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 11268, "human_acc": 83.1469648562, "source": "2009年江西省公务员录用考试《行测》题第119题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 48451, "material": "恩格尔系数,即食品消费支出在总消费支出中所占的比重。联合国粮农组织依据恩格尔系数,将生活水平划分为如下标准:恩格尔系数在59%以上者为绝对贫困状态的消费;50%—59%为勉强度日状态的消费;40%—50%为小康水平的消费;20%—40%为富裕状态的消费;20%以下为最富裕状态的消费。我国城镇和乡村的恩格尔系数,1980年为56.9%和61.8%;2000年分别为39.2%和49.1%;2001年分别为37.1%和47.7%。到2010年我国城乡的恩格尔系数应分别是30%和40%。2020年分别是25%和35%。", "question": "从数据可以看出,1980年以来,我国城乡恩格尔系数变动呈:", "type": "单选题", "options": "A. 上升态势\nB. 快速下降态势\nC. 下降态势\nD. 快速上升态势", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 39629, "human_acc": 65.9163743723, "source": "2009年湖南省公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 0, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 4339, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "自1981年至1985年,到中国来的西方国家旅游者人数总和大约是多少?", "type": "单选题", "options": "A. 490万\nB. 500万\nC. 510万\nD. 520万", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 6646, "human_acc": 88.1432440566, "source": "2008年内蒙古自治区公务员录用考试《行测》题第132题", "difficulty": 5, "formulas": 0, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 5292020, "material": "2019年上半年,N省规上文化产业企业实现营业收入1518.4亿元,同比增长21.3%,增速快于全国平均水平13.4个百分点,快于上年同期2.9个百分点;规上文化产业单位企业实现营业收入6310.9万元。其中,文化制造业实现营业收入712.2亿元,同比增长10.6%;文化批零业159.6亿元,增长7.7%;文化服务业646.5亿元,增长40.6%,文化服务业对全部规上文化产业企业营业收入增长贡献最大,高达(X)。\n\n        上半年,全省规上文化产业企业实现营业收入利润率6.0%,利润总额同比增长9.6%。其中,规上文化服务业利润总额增速最低,仅增长3.1%。全部规上文化产业企业中营业利润下降的有853家;出现亏损的有562家,亏损面为23.4%。\n\n        上半年,全省居民人均教育文化娱乐支出991.6元,同比增长6.6%,增速低于上年同期4.3个百分点。其中,城镇居民人均教育文化娱乐支出1177.4元,增长4.3%,低于上年同期6.6个百分点。\n\n        上半年,全省文化产业投资同比增长24.4%,比上年同期提升12.3个百分点;项目个数1434个,增长21.4%;新开工项目396个,计划总投资增长13.1%。\n\n注:亏损面$=\\frac{亏损企业数}{企业总数}$,增长贡献率$=\\frac{部分增长量}{整体增长量}$。", "question": "第一段中(X)处应填入的数值最可能是:", "type": "单选题", "options": "A. 45%\nB. 54%\nC. 62%\nD. 70%", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "A", "human_count": 216376, "human_acc": 57.5179317484, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第111题", "difficulty": 6, "formulas": 2, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "文字资料"]]}, {"id": 2452878, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份股份制企业实现利润总额比上年同期增长约:", "type": "单选题", "options": "A. 864亿元\nB. 1434亿元\nC. 666亿元\nD. 1185亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 200194, "human_acc": 89.3383418084, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第107题", "difficulty": 4, "formulas": 9, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 2448503, "material": "2018年,B市新经济实现增加值10057.4亿元,比上年增长$9.3\\%$,占全市地区生产总值的比重为$33.2\\%$,比上年提高0.4个百分点。全年全市新设立的企业中,信息服务业、科技服务业企业合计达到70661家,占比为$38.5\\%$,注册资本达到7311.4亿元,同比增长$13.5\\%$。\n\n        2018年,B市高技术产业实现增加值6976.8亿元,比上年增长$9.4\\%$,占地区生产总值的比重为$23.0\\%$,比上年提高0.2个百分点。战略性新兴产业实现增加值4893.4亿元,增长$9.2\\%$,占地区生产总值的比重为$16.1\\%$,比上年提高0.1个百分点。信息产业实现增加值4940.7亿元,增长$14.3\\%$,占地区生产总值的比重为$(X)\\%$,比上年提高0.9个百分点。\n\n        2018年,B市高技术服务业完成投资507.8亿元,同比增长$18.9\\%$。其中,信息服务业投资增长$31.2\\%$,科技服务业投资增长$7.7\\%$。\n\n        2018年,B市限额以上批发零售业网上零售额达到2632.9亿元,比上年增长$10.3\\%$,占全市零售额比重为$22.4\\%$,对全市零售额增长的贡献率(限额以上批发零售业网上零售额同比增量在全市零售额同比增量中占的比重)达到$80.6\\%$。限额以上住宿餐饮企业通过公共网络实现的餐费收入为124.7亿元,比上年增长$39.3\\%$,对全市餐费收入增长的贡献率达到$33\\%$。\n\n        2018年,B市高新技术示范区规模以上高新技术企业实现技术收入10629.4亿元,比上年增长$13.4\\%$,占高新技术示范区规模以上高新技术企业总收入的比重为$18.1\\%$,比上年提高1.8个百分点。", "question": "2018年,B市高新技术示范区规模以上高新技术企业月均收入在以下哪个范围内?", "type": "单选题", "options": "A. 超过5500亿元\nB. 4500~5500亿元之间\nC. 3500~4500亿元之间\nD. 不到3500亿元", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 1955425, "human_acc": 66.3209788153, "source": "2020年国家公务员录用考试《行测》题(地市级网友回忆版)第129题", "difficulty": 5, "formulas": 20, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 5751565, "material": "2022年一季度,H省地区生产总值10804.66亿元,按不变价格计算,比上年同期增长6.7%。分产业看,第一产业增加值724.54亿元,增长5.8%;第二产业增加值4669.97亿元,增长7.9%;第三产业增加值5410.15亿元,增长5.9%。三个产业增加值之比约为6.7:43.2:50.1。\n\n        2022年一季度,H省农林牧渔业增加值758.55亿元,同比增长6.1%。经济作物生产保持平稳。蔬菜产量同比增长4.0%,较上年同期增长36.12万吨;水果产量同比增长22.1%,较上年同期增长4.16万吨。畜牧水产供应稳定。生猪出栏1195.93万头,增长12.2%;羊出栏149.16万只,增长6.5%;水产品产量138.21万吨,增长4.3%。\n\n        2022年一季度,H省城镇新增就业人员20.79万人,完成全年目标任务的29.7%。一季度,H省全体居民人均可支配收入9448元,同比增长7.4%。其中城镇居民人均可支配收入12296元,增长6.2%;农村居民人均可支配收入5680元,增长9.1%。\n\n        2022年一季度,H省进出口总额1346.2亿元。其中,出口879.3亿元,增长26.3%;进口466.9亿元,下降4.2%。3月份,进出口总额552.1亿元,同比增长40.5%。其中,出口363.1亿元,增长58.6%;进口189.0亿元,增长15.2%。一季度,全省实际使用外资38.74亿美元,同比增长25.4%。", "question": "2022年一季度,H省城镇人口与农村人口之比与以下哪个选项最接近?", "type": "单选题", "options": "A. 7:4\nB. 4:7\nC. 10:13\nD. 13:10", "choice": "D", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 87994, "human_acc": 46.7736436575, "source": "2023下半年省考第二十一季行测模考大赛(陕西卷)第118题", "difficulty": 7, "formulas": 0, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 4292838, "material": "2020年C市规模以上文化企业实现营业收入1588.9亿元,同比增长1.8%。从企业规模看,大中型企业实现营业收入780.3亿元,户均实现营业收入4亿元,是全市平均水平的2.9倍,是小微型企业平均水平的4.8倍;小微型企业实现营业收入808.7亿元。\n\n        从企业类别看,2020年全市规模以上文化企业中,1137家内资企业实现营业收入1574.5亿元。其中私营企业900家,实现营业收入921.6亿元。港澳台商和外商投资文化企业实现营业收入14.5亿元。\n\n        从各文化领域收入总量看,2020年全市规模以上文化企业中,文化消费终端生产、新闻信息服务、创意设计服务规模位居前三,分别实现营业收入641.4亿元、231.3亿元和202.4亿元,分别占全市规模以上文化企业营业收入的40.4%、14.6%和12.7%。从各文化领域收入增幅看,2020年全市规模以上文化企业中,新闻信息服务、创意设计服务和文化装备生产三个领域营业收入增幅突破两位数,分别为13%、12.9%和20.4%。\n\n        从产业类型看,2020年全市规模以上文化企业中,规模以上文化制造企业实现营业收入784.8亿元,同比下降1.5%;限额以上文化批零企业实现营业收入217.5亿元,同比增长3.5%;规模以上文化服务企业实现营业收入586.6亿元,同比增长5.7%。\n\n        从企业规模看,2020年全市规模以上文化企业中,营业收入突破亿元的企业有406家,占全市规模以上文化企业数的比重为35.2%,比2019年回落0.9个百分点。", "question": "2020年C市规模以上文化企业中,大中型企业数量约是小微型企业的多少倍?", "type": "单选题", "options": "A. 4.6\nB. 1.2\nC. 0.8\nD. 0.2", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 116389, "human_acc": 60.5727345368, "source": "2021下半年省考第二十二季行测模考大赛(陕西卷)第116题", "difficulty": 6, "formulas": 0, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 5411957, "material": "2021年J省规模以上服务业实现营业收入同比增长18.0%,比去年同期加快9.6个百分点。31个行业实现增长,行业增长面达93.9%。房地产租赁业,研究和试验发展,娱乐业,广播、电视、电影和录音制作业发展势头良好,增速分别为63.7%、51.9%、49.4%、46.8%。\n\n        2021年J省规模以上新兴服务业不断成长壮大,商务服务业、软件和信息技术服务业、专业技术服务业营业收入分别增长38.7%、21.8%、19.9%,三个行业合计完成营业收入908.3亿元,占全部规模以上服务业的24.8%,对规模以上服务业营业收入增长的贡献率为38.1%。\n\n        2021年J省规模以上服务业实现利润总额230.37亿元,同比增长27.9%。4072家企业实现盈利,企业盈利面为83.2%;28个行业实现盈利,行业盈利面为84.8%。其中,道路运输业,电信、广播电视和卫星传输服务业,商务服务业盈利能力居前,分别盈利72.87亿元、71.32亿元、20.50亿元;房地产租赁业,广播、电视、电影和录音制作业,娱乐业盈利增幅明显,分别增长6.47倍、4.48倍、2.38倍。", "question": "下列说法正确的是:", "type": "单选题", "options": "A. 2021年J省规模以上服务业盈利的行业是非盈利行业的5倍多\nB. 在新兴服务业中,2021年全国商务服务业、软件和信息技术服务业、专业技术服务业营业收入占全部规模以上服务业的四分之一左右\nC. 2021年J省规模以上服务业有5个行业营业收入同比减少\nD. 2021年J省规模以上服务业利润率超过一成", "choice": "A", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 175342, "human_acc": 31.1425670974, "source": "2022下半年省考第二十二季行测模考大赛(北京卷)第135题", "difficulty": 7, "formulas": 0, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 2659377, "material": "2018年,F省规模以上工业企业实现利润总额3537.14亿元,同比增长$16.1\\%$,增幅比上年回落4.1个百分点。\n\n        2018年,在规模以上工业企业中,国有企业实现利润总额1.44亿元,增长13.4倍;集体企业实现利润总额2.56亿元,下降$7.2\\%$;股份制企业实现利润总额2263.37亿元,增长$19.2\\%$;外商及港澳台商投资企业实现利润总额1231.28亿元,增长$10.9\\%$。采矿业实现利润总额38.36亿元,增长$9.1\\%$;制造业实现利润总额3348.94亿元,增长$16.4\\%$;电力、热力、燃气及水生产和供应业实现利润总额149.85亿元,增长$11.1\\%$。\n\n        2018年,规模以上工业企业实现主营业务收入51297.99亿元,增长$13.4\\%$。\n\n        12月末,规模以上工业企业应收账款4898.58亿元,同比增长$9.4\\%$;产成品存货1742.81亿元,增长$11.8\\%$。\n\n        2018年,规模以上工业企业主营业务收入利润率为$6.90\\%$,同比提高0.17个百分点;每百元主营业务收入中的成本为86.17元,同比增加0.12元;每百元资产实现的主营业务收入149.23元,同比增加6.70元;从业人员人均主营业务收入128.10万元,同比增加16.70万元;产成品存货周转天数为12.7天,同比减少0.5天;应收账款平均回收期为31.8天,同比减少0.6天。", "question": "若保持2018年同比增幅不变,2020年F省股份制企业实现利润总额将为:", "type": "单选题", "options": "A. 接近3000亿元\nB. 3000~3500亿元\nC. 3500~4000亿元\nD. 4000多亿元", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "A", "human_count": 268992, "human_acc": 73.1315429455, "source": "2021年国考第十九季行测模考大赛(副省级)第129题", "difficulty": 4, "formulas": 11, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 4678668, "material": "据国家统计局测算,妇女就业规模继续扩大。2016年全国女性就业人员占全社会就业人员的比重为43.1%,超过《中国妇女发展纲要(2011-2020年)》规定的40%的目标。\n\n        女职工的合法权益得到进一步维护,为减少和解决女职工在工作中因生理特点造成的特殊困难发挥了积极作用。2016年,执行《女职工劳动保护特别规定》的企业比重明显提高,达73%,比2010年提高18个百分点。\n\n        农村贫困妇女人数大幅度减少,基本实现应保尽保。按照年人均收入2300元的农村贫困标准计算,2016年全国农村贫困人口为4335万人,比2010年减少1.2亿人,其中约一半为女性。2016年农村贫困妇女享受“低保”及农村特困人员人数占全国农村女性贫困人口的比重为38%,比2010年提高4.1个百分点。\n\n        女性生育保障水平有明显提高。《女职工劳动保护特别规定》发布以来,女职工在产假、怀孕流产等各个特殊时期的保护有了明确的规定,女性参加生育保险的人数迅速增加。2016年,女性参加生育保险的人数达8020万人,比2010年增长49%。\n\n        享有基本社会保障的女性人数增加。2016年,全国参加基本养老保险人数8.9亿人,其中女性3.5亿人;参加城镇职工基本养老保险人数3.8亿人,其中女性1.8亿人,占比为46.6%;2016年,参加城乡居民基本养老保险人数5.1亿人,其中女性超过1.7亿人。女性参加失业保险和工伤保险的人数增加,2016年,全国参加失业保险的人数超过1.8亿人,其中女性7551万人,分别比2010年增加4713万人和2402万人,增长35%和47%;参加工伤保险人数2.2亿人,其中女性8129万人,分别增长35%和43%。", "question": "2010年农村贫困妇女享受“低保”及农村特困人员人数约为多少万人?", "type": "单选题", "options": "A. 6564\nB. 8020\nC. 2494\nD. 2769", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "A", "human_count": 91506, "human_acc": 64.6154350534, "source": "2020年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 0, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2097102, "material": "2015年,全国规模以上纺织企业工业增加值同比增长$6.3\\%$,高于规模以上工业整体水平0.2个百分点,增速比上年同期回落0.7个百分点。其中,纺织业、服装服饰行业、化学纤维行业增加值同比分别增长$7.0\\%$、$4.4\\%$和$11.2\\%$。\n\n        2015年,纺织行业规模以上企业累计实现主营业务收入70713亿元,同比增长$5.0\\%$;实现利润总额3860亿元,同比增长$5.4\\%$;企业亏损面(亏损企业占所有企业比重)$11.4\\%$,比上年低0.1个百分点。\n\n        2015年,我国出口纺织品、服装2912亿美元,同比下降$4.8\\%$,按出口商品类型看,纺织品出口1153亿美元,同比下降$2.3\\%$;服装出口1759亿美元,同比下降$6.4\\%$。按出口对象看,对美国出口额同比增长$6.7\\%$,对欧盟出口额同比下降$9.3\\%$,对日本出口额同比下降$11.6\\%$,对东盟出口额同比下降$0.8\\%$。\n\n        2015年,我国纺织行业500万元以上项目固定资产投资完成额11913亿元,同比增长$15.0\\%$。其中东部地区固定资产投资完成额同比增长$15.3\\%$,中部地区固定资产投资完成额同比增长$13.1\\%$,西部地区固定资产投资完成额同比增长$19.2\\%$。行业新开工项目数呈现增速提升势头,新开工项目16149项,同比增长$18.3\\%$。", "question": "在美国、欧盟、日本和东盟四大主要贸易伙伴中,2015年我国纺织品、服装对其出口额占当年我国纺织品、服装出口总额比重低于2014年水平的有:", "type": "单选题", "options": "A. 仅东盟\nB. 美国和东盟\nC. 欧盟和日本\nD. 欧盟、日本和东盟", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "D", "human_count": 378291, "human_acc": 74.1048557856, "source": "2017年四川省公务员录用考试《行测》题(下半年)第88题", "difficulty": 4, "formulas": 19, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 4999789, "material": "根据工程勘察设计统计调查制度有关规定,中华人民共和国住房和城乡建设部对2020年全国具有资质的工程勘察设计企业基本数据进行了统计,现公布如下:\n\n        2020年,全国共有工程勘察设计企业23741个。其中,工程勘察企业2410个,工程设计企业21331个。\n\n        2020年,全国勘察设计企业年末从业人员440万人。其中,勘察人员16万人,与上年相比增长1.7%;设计人员105.5万人,与上年相比增长2.9%。年末专业技术人员214.5万人。其中,具有高级职称人员46.2万人,与上年相比增长8.0%;具有中级职称人员76.7万人,与上年相比增长6.5%。\n\n        2020年,全国勘察设计企业工程勘察新签合同额合计1494.5亿元,与上年相比增长17.6%。工程设计新签合同额合计7044.7亿元,与上年相比增长3.6%。其中,房屋建筑工程设计新签合同额2371.6亿元,市政工程设计新签合同额1043.7亿元。工程总承包新签合同额合计55068.2亿元,与上年相比增长19.5%。其中,房屋建筑工程总承包新签合同额22084.4亿元,市政工程总承包新签合同额8251.9亿元。其他工程咨询业务新签合同额合计1108.5亿元,与上年相比增长5.7%。\n\n        2020年,全国勘察设计企业营业收入总计72496.7亿元。其中,工程勘察收入1026.1亿元,与上年相比增长4.0%;工程设计收入5482.7亿元,与上年相比增长7.6%;工程总承包收入33056.6亿元,与上年相比减少1.7%;其他工程咨询业务收入805亿元,与上年相比增长1.1%。", "question": "2020年,全国勘察设计企业工程勘察新签合同额与工程设计新签合同额之和比上年约增长:", "type": "单选题", "options": "A. 11.6%\nB. 8.2%\nC. 5.8%\nD. 4.3%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 299101, "human_acc": 66.0549446508, "source": "2022上半年省考第二十季行测模考大赛(北京卷)第122题", "difficulty": 5, "formulas": 0, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 4972921, "material": "2021年前三季度,全国软件业完成软件业务收入69007亿元,同比增长20.5%,增速较上半年回落2.7个百分点。其中,软件产品实现收入17951亿元,同比增长17.0%,比上半年回落3.1个百分点;信息技术服务实现收入43980亿元,同比增长23.7%,比上半年回落2.3个百分点;信息安全产品和服务共实现收入1226亿元,同比增长21.1%,比上半年回落4.9个百分点;嵌入式系统软件实现收入5850亿元,同比增长9.6%,比上半年回落3.2个百分点。\n\n        全国软件业实现利润总额7937亿元,同比增长10.7%;软件业从业人数796万人,同比增长7.3%;从业人员工资总额同比增长10.3%。\n\n        全国软件业完成软件业务收入居前5名的省市中,北京、广东、江苏、上海和浙江软件业务收入分别为14323亿元、11894亿元、8733亿元、5854亿元和5666亿元,分别同比增长32.1%、17.3%、16.0%、24.9%和11.6%,五省(市)合计软件业务收入46470亿元,占全国的比重为67.3%,占比较去年同期提高1.9个百分点。\n\n        全国15个副省级中心城市实现软件业务收入35850亿元,同比增长16.0%;软件业利润总额4618亿元,同比增长6.4%。", "question": "2021年前三季度全国软件业完成软件业务收入居前4名的省市的同比增长量排序正确的是:", "type": "单选题", "options": "A. 广东>北京>上海>江苏\nB. 北京>广东>江苏>上海\nC. 北京>广东>江苏>浙江\nD. 北京>广东>上海>江苏", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 285706, "human_acc": 57.8902788181, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第93题", "difficulty": 6, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 3983496, "material": "2020年12月,国内手机市场总体出货量达2659.5万部,同比下降12.6%;1-12月,国内手机市场总体出货量累计3.08亿部,同比下降20.8%。2020年12月,国内手机市场上市新机型45款,同比增长28.6%。1-12月,上市新机型累计462款,同比下降19.4%。\n\n        5G手机方面,2020年12月,国内市场5G手机出货量达1820.0万部,占同期手机出货量的68.4%;上市新机型19款,占同期手机上市新机型数量的42.2%。1-12月,国内市场5G手机累计出货量1.63亿部、上市新机型累计218款,占比分别为52.9%和47.2%。\n\n        国内手机市场国内外品牌构成方面,2020年12月,国产品牌手机出货量达2055.3万部,同比下降22.8%;上市新机型38款,同比增长26.7%。1-12月,国产品牌手机出货量累计2.70亿部,同比下降23.5%,占同期手机出货量的87.5%;上市新机型累计413款,同比下降18.7%,占同期手机上市新机型数量的89.4%。\n\n        国内智能手机方面,2020年12月,智能手机出货量达2521.8万部,同比下降12.8%,占同期手机出货量的94.8%。1-12月,智能手机累计出货量2.96亿部,同比下降20.4%,占同期手机出货量的96.0%。2020年12月,智能手机上市新机型40款,同比增长48.1%,占同期手机上市新机型数量的88.9%。1-12月,智能手机上市新机型累计363款,同比下降14.4%,占同期手机上市新机型数量的78.6%。", "question": "2019年1-11月,国内手机市场上市新机型累计约多少款?", "type": "单选题", "options": "A. 417\nB. 462\nC. 538\nD. 573", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 145006, "human_acc": 78.3505510117, "source": "2021下半年省考第十八季行测模考大赛(广东县级卷)第92题", "difficulty": 4, "formulas": 0, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 5320311, "material": "2021年,H省实现货物进出口总值1995.0亿元,比上年增长29.6%。其中,出口447.7亿元,增长24.4%。从贸易方式看,一般贸易进出口1659.6亿元,增长37.5%;边境小额贸易进出口211.0亿元,增长14.5%;加工贸易进出口78.7亿元,下降5.5%。从企业性质看,国有企业进出口1171.5亿元,增长45.6%;民营企业进出口702.7亿元,增长16.9%;外资企业进出口113.2亿元,下降2.3%。\n\n        2021年,H省使用外资新设立企业126个,比上年增长11.5%;合同外资金额30.8亿美元,增长27.6%;实际使用外资6.0亿美元,增长10.8%,其中,第一产业942万美元,增长8.1倍;第二产业38355万美元,增长18.3%;第三产业20992万美元,下降4.2%。H省千万元及以上利用内资项目实际利用内资2011.7亿元,增长64.7%;新签千万元及以上利用内资项目1393个。\n\n        2021年,H省共接待国内游客1.6亿人次,比上年增长14.2%,实现旅游收入1345.1亿元,下降18.2%。其中,接待省内游客占国内游客的比重为85.3%。\n\n        2021年,H省金融机构本外币存款余额34319.9亿元,比上年增加2709.3亿元。其中,住户存款24132.2亿元,增加2838.0亿元;非金融企业存款4666.2亿元,增加85.9亿元。金融机构本外币贷款余额24409.5亿元,比上年增加1823.6亿元。其中,住户贷款6927.2亿元,增加447.7亿元;企(事)业单位贷款17073.5亿元,增加1324.6亿元。\n\n注:材料中部分数据因四舍五入,存在总计与分项合计不等的情况。", "question": "2020年,H省第三产业实际使用外资约是第一产业的多少倍?", "type": "单选题", "options": "A. 86\nB. 107\nC. 188\nD. 211", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 258773, "human_acc": 69.0871922496, "source": "2022下半年省考第十四季行测模考大赛(深圳卷)第88题", "difficulty": 4, "formulas": 0, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 4626091, "material": "2020年末,A市民用汽车(包括三轮汽车和低速货车)保有量287.8万辆,比上年末增长4.6%,其中私人汽车保有量258.5万辆,增长4.4%。民用轿车保有量250.3万辆,增长4.8%,其中私人轿车235.8万辆,增长4.7%。\n\n        年末市区公共汽车营运线路246条,比上年增加1条;营运线路长度4277公里,增加71公里;营运车辆4153辆。\n\n        全年邮政行业业务总量244.4亿元,同比增长51.9%。邮政函件业务0.1亿件,同比下降29.6%;包裹业务0.006亿件,同比增长19.9%。快递业务量109629.4万件,同比增长66.8%;快递业务收入87.6亿元,同比增长32.0%。\n\n        全年电信业务总量993.0亿元,比上年增长24.0%。年末互联网宽带用户416.7万户,增长6.0%。移动电话用户1368.0万户,下降2.5%;固定电话用户107.3万户,下降12.9%。\n\n        全年接待国际游客0.88万人次,比上年下降96.2%;国际旅游创汇收入339.5万美元,下降96.4%。接待国内游客6229.34万人次,下降49.3%;国内旅游收入683.9亿元,下降53.5%。全年旅游总收入下降53.7%。", "question": "2019年末,该市市区公共汽车营运线路中,平均每条营运线路的长度约为多少公里?", "type": "单选题", "options": "A. 16.5\nB. 16.9\nC. 17.2\nD. 17.4", "choice": "C", "keypoints": "基期平均数;文字资料", "most_wrong": "D", "human_count": 233714, "human_acc": 84.7523040982, "source": "2021下半年省考第三十五季行测模考大赛(北京乡镇卷)第112题", "difficulty": 3, "formulas": 0, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 2614088, "material": "2019年1-10月,S省规模以上工业企业完成营业收入19585.7亿元,同比增长$4.1\\%$,增速与前三季度持平,比去年同期回落8.5个百分点,低于全国平均增速1.1个百分点;实现利润总额1778亿元,同比下降$12.6\\%$,降幅比前三季度扩大1.6个百分点。从能源工业看,1-10月,全省规上能源工业实现利润总额1023.2亿元,同比下降$11.6\\%$,降幅比前三季度扩大1.4个百分点。从非能源工业看,1-10月,全省规上非能源工业实现利润总额754.8亿元,同比下降$13.9\\%$,降幅比前三季度扩大1.8个百分点。\n\n        1-10月,国有控股企业实现利润总额1069.4亿元,同比下降$7.1\\%$,降幅比前三季度扩大1.2个百分点;股份制企业实现利润总额1611.3亿元,同比下降$11\\%$,降幅扩大1.5个百分点;外商及港澳台商投资企业实现利润总额92.2亿元,同比下降$33.7\\%$,降幅扩大2个百分点;私营企业实现利润总额290.4亿元,同比下降$11.5\\%$,降幅扩大2.4个百分点。\n\n        1-10月,全省规模以上大中型工业企业实现利润总额1311.1亿元,同比下降$15.1\\%$,降幅比前三季度扩大1个百分点。降幅大于全部规上工业企业的2.5个百分点。其中:国有控股大中型企业实现利润总额1018.5亿元,同比下降$7.7\\%$,降幅比前三季度扩大0.5个百分点。\n\n        1-10月,全省规模以上工业企业利润总额同比下降企业单位数为3077个,占全省规模以上工业企业单位总数的$45.6\\%$。其中,国有控股企业利润总额同比下降企业数367个,占比$11.9\\%$;股份制企业同比下降企业数2836个,占比$92.2\\%$;外商及港澳台商投资企业同比下降企业数62个,占比$3\\%$;私营企业同比下降企业数1324个,占比$43\\%$。", "question": "2019年前三季度,S省规上工业企业实现利润总额同比增速按照从小到大排序正确的是:", "type": "单选题", "options": "A. 国有控股企业、股份制企业、外商及港澳台商投资企业、私营企业\nB. 外商及港澳台商投资企业、股份制企业、私营企业、国有控股企业\nC. 国有控股企业、私营企业、股份制企业、外商及港澳台商投资企业\nD. 外商及港澳台商投资企业、私营企业、股份制企业、国有控股企业", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "D", "human_count": 86123, "human_acc": 56.5748986914, "source": "2020年下半年省考第二季行测模考大赛(新疆卷)第118题", "difficulty": 6, "formulas": 15, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 4742211, "material": "2021年上半年,J省农林牧渔业总产值3045.8亿元,同比增长4.5%,比上年同期加快4.3个百分点。夏粮总产276.15亿斤,较上年增加1.39亿斤,增长0.5%;夏粮亩产373.9公斤,较上年略减0.8公斤,下降0.2%。\n\n        上半年,全省实现社会消费品零售总额21758.2亿元,同比增长28.7%。分消费形态看,上半年全省限额以上单位商品零售额7314.5亿元,同比增长29.9%;餐饮收入486.3亿元,同比增长52.6%。分商品类值看,全省限额以上10类主要商品零售额均为正增长。其中,汽车类增长34.7%、石油及制品类增长35.9%、粮油食品类增长22.9%、服装鞋帽针纺织品类增长37.9%、家用电器和音像器材类增长30%,较去年同期分别提升48.3个、49.7个、12.8个、51.7个、48.4个百分点。上半年,全省实现网上零售额5163.4亿元,同比增长16.2%。其中,实物商品网上零售额4526.4亿元,同比增长13.4%。\n\n        上半年,全省一般贸易进出口额13580.3亿元,同比增长27.2%,占进出口总额的比重为56.6%,较上年同期提高3.2个百分点。\n\n        上半年,全省完成一般公共预算收入5647亿元,同比增长19.1%。其中,税收收入4630.8亿元,增长19.8%。6月末,全省金融机构人民币存款余额189942.7亿元,同比增长10.2%;金融机构人民币贷款余额169777.2亿元,同比增长15%。", "question": "2021年上半年,J省夏粮种植面积比上年同期约增长:", "type": "单选题", "options": "A. -0.7%\nB. -0.4%\nC. 0.4%\nD. 0.7%", "choice": "D", "keypoints": "平均数的增长率;文字资料", "most_wrong": "C", "human_count": 415094, "human_acc": 52.1363835661, "source": "2022上半年省考第八季行测模考大赛(广东县级卷)第88题", "difficulty": 7, "formulas": 0, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 2188457, "material": "根据以下资料,回答以下问题。\n\n        2017年第一季度,某省农林牧渔业增加值361.78亿元,比上年同期增长$5.9\\%$,高于上年同期0.2个百分点。具体情况如下:\n\n        该省种植业增加值119.21亿元,比上年同期增长$8.2\\%$。其中蔬菜种植面积358.80万亩,比上年同期增加18.23万亩,蔬菜产量471.42万吨,增长$7.5\\%$;茶叶种植面积679.53万亩,比上年同期增加19.79万亩,茶叶产量2.30万吨,增长$19.4\\%$。\n\n        该省林业增加值34.84亿元,比上年同期增长$8.3\\%$。\n\n        该省畜牧业增加值176.64亿元,比上年同期增长$4.2\\%$,增速比上年同期加快2.1个百分点。其中生猪存栏增速由上年同期的下降$9.8\\%$转为增长$3.1\\%$,出栏增速由上年同期的下降$3.2\\%$转为增长$3.3\\%$;猪牛羊禽肉产量67.80万吨,比上年同期增长$3.1\\%$;禽蛋产量5.33万吨,增长$1.0\\%$;牛奶产量1.40万吨,增长$6.1\\%$。\n\n        该省渔业增加值9.22亿元,比上年同期增长$4.5\\%$。全省水产品产量7.68万吨,比上年同期增长$4.7\\%$,其中,养殖水产品产量7.3万吨,增长$4.7\\%$。\n\n        该省农林牧渔服务业增加值21.87亿元,比上年同期增长$3.8\\%$。", "question": "2015年第一季度,该省农林牧渔业增加值与下列哪一项最为接近?", "type": "单选题", "options": "A. 320亿元\nB. 340亿元\nC. 360亿元\nD. 380亿元", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 768838, "human_acc": 83.4291489234, "source": "2018年421联考《行测》题(河北卷)(网友回忆版)第111题", "difficulty": 5, "formulas": 17, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 4485550, "material": "2020年1-11月,H省外贸进出口总值3953.5亿元人民币(下同),同比增长8.5%。其中,出口2246.7亿元,同比增长4.6%;进口1706.8亿元,同比增长14.1%。11月当月进出口438.6亿元,同比增长33.1%,环比增长8.2%。其中,出口261.5亿元,同比增长34.8%;进口177.1亿元,同比增长30.8%,环比下降5.5%。\n\n        一、贸易方式方面。一般贸易进出口3442.4亿元,上年同期为3159.9亿元;以保税物流方式进出口236.2亿元,上年同期为135.7亿元;加工贸易进出口218.4亿元,上年同期为242亿元。\n\n        二、企业性质方面。民营企业进出口2599亿元,上年同期为2299.5亿元。国有企业进出口824亿元,上年同期为799.7亿元。外商投资企业进出口529.6亿元,上年同期为542.9亿元。\n\n        三、贸易伙伴方面。对澳大利亚进出口731.9亿元,同比(下同)增长22.6%,占进出口总值的18.5%。对东盟进出口441.1亿元,增长11.3%,其中对马来西亚进出口123.4亿元,增长24.1%。对欧盟(不含英国)进出口415.4亿元,增长3%,其中对德国进出口106.5亿元,下降1.1%。对美国进出口383.6亿元,增长22.1%。对巴西进出口348.8亿元,增长29.9%。对俄罗斯进出口171.5亿元,下降14.7%。对韩国进出口162.6亿元,下降16.8%。对日本进出口134.1亿元,下降6.3%。对印度进出口126亿元,增长5.2%。此外,对“一带一路”沿线国家进出口1185.9亿元,增长1.5%。", "question": "2019年1-11月,按H省对贸易伙伴进出口总值从高到低排序,正确的是:", "type": "单选题", "options": "A. 东盟$\\gt$欧盟(不含英国)$\\gt$巴西$\\gt$美国\nB. 东盟$\\gt$欧盟(不含英国)$\\gt$美国$\\gt$巴西\nC. 欧盟(不含英国)$\\gt$东盟$\\gt$巴西$\\gt$美国\nD. 欧盟(不含英国)$\\gt$东盟$\\gt$美国$\\gt$巴西", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 188251, "human_acc": 69.0726742487, "source": "2021下半年省考第二十六季行测模考大赛(北京乡镇卷)第124题", "difficulty": 5, "formulas": 1004, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 2739955, "material": "2017年,全年实现旅游总收入5.40万亿元,增长$15.1\\%$。旅游直接就业2825万人,旅游直接和间接就业7990万人,占全国就业总人口的$10.28\\%$。\n\n        2017年全年,国内旅游人数50.01亿人次,比上年同期增长$12.8\\%$。其中,城镇居民36.77亿人次,增长$15.1\\%$;农村居民13.24亿人次,增长$6.8\\%$。国内旅游收入4.57万亿元,比上年同期增长$15.9\\%$。其中,城镇居民花费3.77万亿元,增长$16.8\\%$;农村居民花费0.80万亿元,增长$11.8\\%$。\n\n        2017年全年,入境旅游人数13948万人次,比上年同期增长$0.8\\%$。其中,外国人2917万人次,增长$3.6\\%$;香港同胞7980万人次,下降$1.6\\%$;澳门同胞2465万人次,增长$4.9\\%$;台湾同胞587万人次,增长$2.5\\%$。入境旅游人数按照入境方式分,船舶占$3.3\\%$,飞机占$16.5\\%$,火车占$0.8\\%$,汽车占$22.2\\%$,徒步占$57.2\\%$。\n\n        2017年全年,入境过夜旅游人数6074万人次,比上年同期增长$2.5\\%$。其中,外国人2248万人次,增长$3.8\\%$;香港同胞2775万人次,增长$0.1\\%$;澳门同胞522万人次,增长$8.6\\%$;台湾同胞529万人次,增长$4.0\\%$。\n\n        2017年全年,国际旅游收入1234亿美元,比上年同期增长$2.9\\%$。其中,外国人在华花费695亿美元,增长$4.1\\%$;香港同胞在内地花费301亿美元,下降$1.5\\%$;澳门同胞在内地花费83亿美元,增长$8.0\\%$;台湾同胞在大陆花费156亿美元,增长$4.0\\%$。", "question": "2017年,我国城镇居民旅游平均每人次花费约比上年(    )元。", "type": "单选题", "options": "A. 提高14.9\nB. 降低14.9\nC. 提高1.49\nD. 降低1.49", "choice": "A", "keypoints": "平均数的增长量;文字资料", "most_wrong": "C", "human_count": 175036, "human_acc": 51.7607806394, "source": "2021上半年省考第二季行测模考大赛(广东卷)第92题", "difficulty": 6, "formulas": 28, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 4651879, "material": "H市统计公报显示,2019年末全市各级各类学校总数达2642所,比上年增加91所;毕业生51.49万人,招生63.97万人,在校学生232.24万人,分别增长2.9%、0.5%和5.1%。年末全市有幼儿园1836所,增加65所;在园幼儿54.50万人,增长4.0%;有小学340所,减少4所;在校学生106.90万人,增长4.0%。普通中学417所,增加27所;在校学生47.74万人,增长6.6%。普通高等学校13所,与上年持平,在校学生数增长9.0%。全年全市普通高等学校本专科招生3.00万人,在校生9.22万人,毕业生2.13万人;普通高等学校研究生教育招生0.81万人,在校生2.10万人,毕业生0.47万人。\n\n        2019年末,全市各类专业技术人员183.50万人,比上年增长10.1%,其中具有中级及以上技术职称的专业技术人员54.69万人,增长7.4%。年末全市各级创新载体2258个,其中,国家级重点实验室、工程实验室和技术中心等创新载体116个,部级创新载体604个,市级创新载体1537个。全年专利申请量与授权量分别为26.15万件和16.66万件,分别增长14.4%和18.8%。其中,发明专利申请量与授权量分别为8.29万件和2.61万件,分别增长18.4%和22.3%;PCT国际专利申请量1.75万件,减少3.4%。", "question": "若全市每所幼儿园平均在园幼儿数保持2019年同比增量不变,则到(    ),幼儿园平均在园幼儿数可超过300名。", "type": "单选题", "options": "A. 2020年\nB. 2021年\nC. 2022年\nD. 2023年", "choice": "D", "keypoints": "现期追赶;文字资料", "most_wrong": "A", "human_count": 100692, "human_acc": 15.6536765582, "source": "2022年深圳市考公务员录用考试《行测》试题(网友回忆版)第87题", "difficulty": 5, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 2255785, "material": "2015年,在监测的我国338个城市中,城市空气质量达标的城市占$21.6\\%$,未达标的城市占$78.4\\%$。\n\n        在监测的321个城市中,城市区域声环境质量好的城市占$4.0\\%$,较好的占$68.5\\%$,一般的占$26.2\\%$,较差的占$0.9\\%$,差的占$0.3\\%$。\n\n        2015年末,城市污水处理厂日处理能力达到13784万立方米,比上年末增长$5.3\\%$;城市污水处理率达到$91.0\\%$。城市生活垃圾无害处理率达到$92.5\\%$,提高0.7个百分点。城市集中供热面积64.2亿平方米,增长$5.1\\%$。城市建成区绿地面积189万公顷,增长$3.7\\%$;建成区绿地率达到$36.3\\%$;人均公园绿地面积13.16平方米,增加0.08平方米。", "question": "2014年人均公园绿地面积多少平方米?", "type": "单选题", "options": "A. 13.1\nB. 13.08\nC. 13.24\nD. 0.08", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 125167, "human_acc": 95.7880271957, "source": "2016年江西省法检系统招录考试《行测》题第106题", "difficulty": 2, "formulas": 13, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 4283, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋中,农民人均年消费量高于城镇居民的是:", "type": "单选题", "options": "A. 雨鞋\nB. 布鞋\nC. 旧式球鞋\nD. 拖鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8064, "human_acc": 94.3204365079, "source": "2008年内蒙古自治区公务员录用考试《行测》题第126题", "difficulty": 5, "formulas": 4, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 588777, "material": "中国社科院世界社保研究中心发布《中国养老基金发展报告2012》。报告显示,2010年有15个省份收不抵支,缺口达679亿元;2011年收不抵支的省份虽然减少到14个,但收支缺口高于2010年,2011年达766.5亿元。\n\n        报告分析显示,我国养老金地区差异较大。到2011年,我国有辽宁、黑龙江、天津、上海等14个省份养老金收不抵支。但是,在面临亏损的同时,18个省份养老金收入则远远大于支出。其中,广东结余最多,达到519亿元;浙江、江苏、北京等省份结余也在二三百亿元。\n\n        养老金总缺口达到766.5亿元。其中,辽宁和黑龙江缺口均超过100亿元;天津、新疆兵团和吉林缺口在50亿元到100亿元之间;河南、陕西、江西、湖南、广西、上海、海南以及重庆的缺口在10亿元到50亿元之间;河北的缺口最少为1.62亿元。从区域来看,东北三省负结余395.5亿元;中南四省(河南、湖南、广西、海南负结余)123.9亿元;西北地区(陕西、新疆兵团)负结余100.98亿元。\n\n        从10年来的数据看,2002年,全国29个省份养老金收不抵支,随着时间推移,越来越多的省份走出了这一困境,到2011年则为14个,数量上呈逐年减少的趋势。不过值得注意的是,在出现收不抵支的省份中,其负结余规模不断扩大,亏损额由2002年的407.6亿元达到2011年的766.5亿元。而且在向少数省份集中,尤其是黑龙江、辽宁等老工业地区。\n\n        对比2010年和2011年排名前10的亏损省份显示,上海、黑龙江、广西的排名变化比较明显。其中,上海结余由2010年的139.5亿元减少到2011年的25亿元,排名从第2位下移到10位之外。主要原因是,上海市2011年将外来务工人员和城郊就业人员纳入养老保险制度,使得当年养老基金大幅增收。", "question": "2011年与2010年相比,全国养老金收支缺口增加了:", "type": "单选题", "options": "A. 88.5亿元\nB. 87.5亿元\nC. 86.5亿元\nD. 89.5亿元", "choice": "B", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 187381, "human_acc": 91.3614507341, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第92题", "difficulty": 3, "formulas": 0, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 2184645, "material": "2017年1~4月,S市对欧盟进出口总值为802.6亿元人民币,比去年同期(下同)增长$7.7\\%$,占我国对欧盟进出口总值的$6.5\\%$。其中,对欧盟出口621.2亿元,增长$5.9\\%$,占我国对欧盟出口总值的$8.3$$\\%$;自欧盟进口181.4亿元,增长$14.5\\%$。\n\n        1~4月,S市对欧盟以一般贸易方式进出口总值增长$4.5\\%$,占同期全市对欧盟进出口总值的$53.2\\%$;以加工贸易方式进出口总值下降$5.3\\%$,占同期全市对欧盟进出口总值的$22.6\\%$;以海关特殊监管方式进出口总值为139.3亿元,下降$0.3\\%$。\n\n        1~4月,在欧盟前5大贸易国中,S市对德国进出口164.3亿元,增长$7.6\\%$;对英国进出口123亿元,增长$3.1\\%$;对荷兰进出口108.1亿元,增长$12.1\\%$;对意大利进出口61.4亿元,增长$10.3\\%$;对法国进出口81.1亿元,下降$4.3\\%$。同期,对“一带一路”沿线欧盟国家进出口113.5亿元,增长$11.3\\%$。", "question": "2017年1~4月,S市除一般贸易、加工贸易和海关特殊监管方式进出口贸易之外,其余贸易方式对欧盟进出口约占其对欧盟进出口总值的:", "type": "单选题", "options": "A. $0\\%$\nB. $7\\%$\nC. $15\\%$\nD. $24\\%$", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 440837, "human_acc": 73.2960255151, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第107题", "difficulty": 5, "formulas": 351, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "文字资料"]]}, {"id": 4292843, "material": "2020年C市规模以上文化企业实现营业收入1588.9亿元,同比增长1.8%。从企业规模看,大中型企业实现营业收入780.3亿元,户均实现营业收入4亿元,是全市平均水平的2.9倍,是小微型企业平均水平的4.8倍;小微型企业实现营业收入808.7亿元。\n\n        从企业类别看,2020年全市规模以上文化企业中,1137家内资企业实现营业收入1574.5亿元。其中私营企业900家,实现营业收入921.6亿元。港澳台商和外商投资文化企业实现营业收入14.5亿元。\n\n        从各文化领域收入总量看,2020年全市规模以上文化企业中,文化消费终端生产、新闻信息服务、创意设计服务规模位居前三,分别实现营业收入641.4亿元、231.3亿元和202.4亿元,分别占全市规模以上文化企业营业收入的40.4%、14.6%和12.7%。从各文化领域收入增幅看,2020年全市规模以上文化企业中,新闻信息服务、创意设计服务和文化装备生产三个领域营业收入增幅突破两位数,分别为13%、12.9%和20.4%。\n\n        从产业类型看,2020年全市规模以上文化企业中,规模以上文化制造企业实现营业收入784.8亿元,同比下降1.5%;限额以上文化批零企业实现营业收入217.5亿元,同比增长3.5%;规模以上文化服务企业实现营业收入586.6亿元,同比增长5.7%。\n\n        从企业规模看,2020年全市规模以上文化企业中,营业收入突破亿元的企业有406家,占全市规模以上文化企业数的比重为35.2%,比2019年回落0.9个百分点。", "question": "2020年C市规模以上文化企业中,新闻信息服务实现营业收入同比增量约比创意设计服务:", "type": "单选题", "options": "A. 多3.5亿元\nB. 多6.7亿元\nC. 少7.7亿元\nD. 多28.9亿元", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 116134, "human_acc": 38.8396163053, "source": "2021下半年省考第二十二季行测模考大赛(陕西卷)第117题", "difficulty": 7, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 4452100, "material": "2020年,上海经济经受住了前所未有的严峻考验,经济运行韧性显著增强。全年实现上海市生产总值(GDP)38700.58亿元,同比增长1.7%,增速比一季度、上半年和前三季度分别提高8.4个、4.3个和2.0个百分点,显示出较强韧性。其中,第一产业增加值103.57亿元,下降8.2%;第二产业增加值10289.47亿元,增长1.3%;第三产业增加值28307.54亿元,增长1.8%。\n\n         全年地方一般公共预算收入7046.30亿元,同比下降1.7%;非税收入占全市地方一般公共预算收入的比重为17.1%。地方一般公共预算支出8102.11亿元,下降0.9%。\n\n         全年新设市场主体47.73万户,同比增长10.6%,新设市场主体注册资本(金)27681.18亿元,增长33.9%。其中,新设企业41.79万户,增长13.7%,注册资本27630.08亿元,增长34.0%;新设个体工商户5.91万户,减少7.0%,个体工商户资金总额45.67亿元,减少1.6%;新设农民专业合作社310户,减少11.2%,农民专业合作社出资总额5.4亿元,减少25.0%。至年末,上海市共有各类市场主体292.90万户,比上年末增长8.3%,注册资本(金)28.59万亿元,增长10.3%。其中,企业241.91万户,增长9.6%,注册资本28.54万亿元,增长10.3%;个体工商户49.93万户,增长2.8%,资金总额219.18亿元,增长9.5%;农民专业合作社1.06万户,减少0.9%,出资总额265.63亿元,减少15.9%。\n\n         以上年价格为100,2020年全年居民消费价格指数为101.7。其中,食品烟酒类价格指数为105.3,居住类价格指数为100.8,医疗保健类价格指数为101.2。以上年同期为100,2020年1月居民消费价格指数为104.3。其中,食品烟酒类价格指数为110.9,居住类价格指数为101.6,医疗保健类价格指数为103.0。以上月价格为100,2020年1月居民消费价格指数为101.1。其中,食品烟酒类价格指数为102.2,居住类价格指数为99.7,医疗保健类价格指数为100.1。", "question": "2020年,上海市下列各类新设市场主体平均每户的注册资本(金)从高到低排列正确的是:", "type": "单选题", "options": "A. 新设企业、新设农民专业合作社、新设个体工商户\nB. 新设企业、新设个体工商户、新设农民专业合作社\nC. 新设农民专业合作社、新设企业、新设个体工商户\nD. 新设个体工商户、新设农民专业合作社、新设企业", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 196874, "human_acc": 53.3193819397, "source": "2021下半年省考第二十五季行测模考大赛(深圳卷)第87题", "difficulty": 6, "formulas": 0, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 25719, "material": "2010年上半年,全国原油产量为9848万吨,同比增长$5.3\\%$,上年同期为下降$1\\%$。进口原油11797万吨(海关统计),增长$30.2\\%$。原油加工量20586万吨,增长$17.9\\%$,增速同比加快16.4个百分点。成品油产量中,汽油产量增长$6\\%$,增速同比减缓7.9个百分点;柴油产量增长$28.1\\%$,增速同比加快15.8个百分点。\n\n        据行业统计,2010年上半年成品油表观消费量10963万吨,同比增长$12.5\\%$。其中,一、二季度分别增长$16.3\\%$和$9.2\\%$。\n\n        2010年6月份,布伦特原油平均价格为75.28美元/桶,比上月回落1.75美元/桶,同比上涨$10.4\\%$。结合国际市场油价变化情况,国家于6月1日将汽油、柴油批发价格分别下调230元/吨和220元/吨。\n\n        2010年上半年,全国天然气产量459亿立方米,同比增长$10.8\\%$,增速同比加快3.2个百分点。国家于6月1日将国产陆上天然气出厂基准价格上调了230元/千立方米。\n\n        2010年1-5月,石油石化行业实现利润1645亿元,同比增长$76.4\\%$,上年同期为下降$35.4\\%$。其中,石油天然气开采业利润1319亿元,同比增长1.67倍,上年同期为下降$75.8\\%$,炼油行业利润326亿元,同比下降$25.7\\%$,上年同期为增长1.8倍。", "question": "2010年上半年全国原油产量比2008年同期约增长了:", "type": "单选题", "options": "A. $1.8\\%$\nB. $4.2\\%$\nC. $6.3\\%$\nD. $9.6\\%$", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 289547, "human_acc": 66.2673072075, "source": "2011年国家公务员录用考试《行测》题第126题", "difficulty": 5, "formulas": 349, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4933275, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "与2018年相比,2019年S省建筑业增加值约增长了:", "type": "单选题", "options": "A. 7.2%\nB. 8.0%\nC. 8.5%\nD. 19.3%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 299975, "human_acc": 65.7551462622, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第93题", "difficulty": 6, "formulas": 0}, {"id": 5198480, "material": "改革开放以来,S市作为中国第一个经济特区,凭借改革精神、政策红利以及地缘优势迅速发展成为国内最发达地区之一。2018-2020年S市实现生产总值分别为24221.98亿元、26927.09亿元和27670.24亿元,同比分别增长7.6%、6.7%和3.1%。分产业来看,2020年S市第一产业增加值25.79亿元,同比下降3.1%;第二产业增加值10454.01亿元,同比增长1.9%;第三产业增加值17190.44亿元,同比增长3.9%。第一、二、三产业增加值比例为0.1:37.8:62.1。\n\n        2020年全市现代服务业增加值同比增长6.4%,现代服务业增加值占第三产业增加值比重为76.1%,其中金融业增加值4189.63亿元,同比增长9.1%,信息传输、软件和信息技术服务业增加值2883.49亿元,同比增长11.3%,是拉动现代服务业增长的主要力量。\n\n        2020年全市货物贸易进出口总额30502.5亿元,同比增长2.4%,高于2019年增速3.0个百分点。其中,出口总额16972.7亿元,同比增长1.5%。", "question": "2020年全市货物贸易进出口总额比2018年约增长:", "type": "单选题", "options": "A. 1.79%\nB. 2.23%\nC. 3.01%\nD. 7.90%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 153985, "human_acc": 82.3346429847, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0}, {"id": 2028352, "material": "2015年我国钟表全行业实现工业总产值约675亿元,同比增长$3.2\\%$,增速比上年同期提高1.7个百分点。\n\n        全行业全年生产手表10.7亿只,同比增长$3.9\\%$,完成产值约417亿元,同比增长$4.3\\%$,增速提高1.9个百分点;生产时钟(含钟心)5.2亿只,同比下降$3.7\\%$,完成产值162亿元,同比下降$4.7\\%$,降幅扩大1.3个百分点;钟表零配件、定时器及其它计时仪器产值96亿元,同比增长$14.3\\%$,增速基本保持上年水平。\n\n        2015年我国钟表行业规模以上工业企业主营业务收入365.8亿元,同比增长$8.7\\%$;实现利润23.4亿元,与上年相比下降$1.5\\%$,而2015年轻工行业主营业务利润率(利润/主营业务收入)的平均水平为$7.57\\%$。\n\n        2015年我国钟表行业海关进出口总额为92.5亿美元,同比增长$4\\%$,完成出口总额为57.7亿美元,同比增长$8.3\\%$,进口额34.8亿美元。出口总额中加工贸易额占$47\\%$,较上年缩小2个百分点。", "question": "2015年我国钟表全行业生产时钟(含钟心)的产值与2013年相比约:", "type": "单选题", "options": "A. 上升了$11\\%$\nB. 下降了$11\\%$\nC. 上升了$8\\%$\nD. 下降了$8\\%$", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 2191826, "human_acc": 71.5692304042, "source": "2017年国家公务员录用考试《行测》题(地市级)第121题", "difficulty": 5, "formulas": 345}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 2377076, "material": "根据所给资料,回答下列问题。\n\n        2016年全国供用水总量为6040.2亿立方米,较上年减少63.0亿立方米。其中,地表水源供水量4912.4亿立方米,占供水总量的$81.3\\%$;地下水源供水量1057.0亿立方米,占供水总量的$17.5\\%$;其他水源供水量70.8亿立方米,占供水总量的$1.2\\%$。与2015年相比,地表水源供水量减少57.1亿立方米,地下水源供水量减少12.2亿立方米,其他水源供水量增加6.3亿立方米。\n\n        2016年,全国生活用水821.6亿立方米,占用水总量的$13.6\\%$;工业用水1308.0亿立方米,占用水总量的$21.6\\%$;农业用水3768.0亿立方米,占用水总量的$62.4\\%$;人工生态环境补水142.6亿立方米,占用水总量的$2.4\\%$。与2015年相比,农业用水量减少84.2亿立方米,生活用水量及人工生态环境补水量分别增加28.1亿立方米和19.9亿立方米。\n\n        2016年全国万元国内生产总值(当年份)用水量81立方米,万元工业增加值(当年份)用水量52.8立方米,农田灌溉水有效利用系数0.542。按可比价计算,万元国内生产总值用水量和万元工业增加值用水量分别比2015年下降$7.2\\%$和$7.6\\%$。\n\n        注:$供用水总量=$$用水总量=生活用水量$$+工业用水量$$+农业用水量$$+人工生态环境补水量$", "question": "2015年,我国万元国内生产总值用水量和万元工业增加值用水量之比约为:", "type": "单选题", "options": "A. $3\\colon2$\nB. $4\\colon3$\nC. $5\\colon3$\nD. $2\\colon1$", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 1117706, "human_acc": 65.4472643074, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第104题", "difficulty": 5, "formulas": 349, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 2271067, "material": "日前,A市市场监管局发布内资企业半年度分析报告。\n\n        2014年上半年,该市新设内资企业19674户,注册资本(金)1179.4亿元,同比分别增长$37.7\\%$和$166\\%$。其中私营企业19167户,注册资本(金)1046.76亿元,同比分别增长$39.7\\%$和$213\\%$。\n\n        从设立总量来看,批发零售业、制造业、租赁商务服务业仍位居前三,三个行业新设户数占上半年新设企业总量的$73.9\\%$。但从增长率来看,信息传输及软件信息技术服务业、农林牧渔业、文化创意业居前,分别比去年同期增长了$94\\%$、$77.5\\%$和$50.1\\%$。\n\n        自3月1日实施注册资本改革登记起至6月30日,该市新设公司制企业12505家。注册资本440亿元,日均登记140余家,较去年同期分别增长了$68\\%$和$58\\%$,呈明显放量增长态势。\n\n        3~6月,全市新设一人有限责任公司为2680户,注册资本88.67亿元,分别为去年同期的5.3倍和1.7倍。尤其是自然人独资公司登记量暴增,新设2467家,占一人公司的$92\\%$,去年同期仅339家,增速达6倍以上。大多由原来准备设立个体工商户和个人独资企业的投资者出资设立,注册资本低于10万元(含10万元)的有707家,占$29\\%$。\n\n        截至2014年6月底,A市累计实有内资企业204990户,注册资本(金)9930.84亿元;其中私营企业187644户,注册资本(金)6523.36亿元。累计实有个体工商户378822户,资金数额231.74亿元。累计实有农民专业合作社4636户,成员出资总额52.7亿元。", "question": "A市2014年上半年新设私营企业平均注册资本(金)约是上年的(    )倍。", "type": "单选题", "options": "A. 1.4\nB. 2.2\nC. 4.2\nD. 5.4", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 3700, "human_acc": 67.0, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第80题", "difficulty": 4, "formulas": 12, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 5627710, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "根据上述材料,以下说法正确的是:", "type": "单选题", "options": "A. 2021年全国渔业产值比渔业工业和建筑业产值多2倍多\nB. 2020年,全国水产品平均价格约为20元/斤\nC. 2021年,全国水产捕捞业产量中,国内淡水流域水产捕捞产量占比不到一成\nD. 如果2021年全国远洋水产捕捞产量占水产捕捞业产量的比重与上一年相同,则2020年全国远洋水产捕捞产量约为220万吨", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 41242, "human_acc": 62.9673633674, "source": "2023下半年省考第十季行测模考大赛(北京卷)第135题", "difficulty": 6, "formulas": 0, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 3938709, "material": "2020年D市水果总产量116.5万吨,比去年同期减少2.1万吨,同比下降1.9%,D市水果种植面积59.1万亩,同比提高4.1%。\n\n        全年园林水果产量同比增长0.6%。增产的品种主要有梨、桃、樱桃等。梨种植面积5.2万亩,增加0.3万亩,产量11.1万吨,增长1.5万吨;桃种植面积9.6万亩,增加0.5万亩,产量14.0万吨,增长1.2万吨;樱桃种植面积快速增长,年末面积7.3万亩,同比增长28.7%,产量4.2万吨,同比增长11.8%。减产的品种主要是苹果,产量25.2万吨,减产2.9万吨,其中富士苹果减产3.1万吨,同比下降12.4%,国光苹果增产8.7%。苹果种植面积12.4万亩,同比下降0.5%。\n\n        D市瓜果播种面积12.3万亩,同比下降1.5%;总产量41.5万吨,同比下降5.9%。分品种看,草莓种植面积2.9万亩,同比增长12.4%,草莓产量6.7万吨,同比增长12%;西瓜种植面积5.6万亩,同比下降9%,西瓜产量23.2万吨,同比下降11.8%;甜瓜产量11.2万吨,同比下降3.3%。\n\n        水果种植结构更加合理。园林类水果产量较高的品种为苹果、葡萄、桃、梨,产量分别为25.2万吨、15.5万吨、14.0万吨、11.1万吨,四种园林水果占园林类水果总产量87.9%,占比较2019年下降1.7个百分点。园林水果产量增长较快的品种有红枣、梨、樱桃、桃,同比分别增长62.3%、15.0%、11.8%、9.7%;园林水果产量下降较大的品种有苹果、柿子、猕猴桃,产量分别下降2.9万吨、202吨、130吨,降幅分别为10.3%、9.0%、6.5%。", "question": "2020年,D市富士苹果产量为多少万吨?", "type": "单选题", "options": "A. 28.1\nB. 25.0\nC. 23.6\nD. 21.9", "choice": "D", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 133137, "human_acc": 53.759661101, "source": "2021下半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 6, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 1542031, "material": "2014年1-2月,我国金融市场总体运行平稳。\n\n\n(一)债券市场发行情况\n\n1月份,债券市场发行债券4041.7亿元,同比减少24.8%,环比减少27.1%。其中,银行间债券市场发行债券3927.9亿元,环比减少19.6%。2月份,债券市场发行债券5880.9亿元,同比增加15.7%。其中,银行间债券市场发行债券5780.5亿元,环比增加47.2%。\n\n1-2月,债券市场累计发行债券同比减少5.1%,其中,银行间债券市场累计发行债券同比减少4.7%。\n\n(二)货币市场运行情况\n\n1月份,货币市场成交总量共计14.4万亿元,同比减少18.6%,环比减少14.5%。其中,同业拆借市场成交2.3万亿元,同比减少40.2%,环比增加2.8%;质押式回购成交11.6万亿元,同比减少14.1%,环比减少16.7%;买断式回购成交5650.3亿元,同比增加30.6%,环比减少26.4%。\n\n1-2月,货币市场成交量共计26.2万亿元,同比减少14.4%。其中,同业拆借市场累计成交4.0万亿元,同比减少39.4%;质押式回购累计成交21.2万亿元,同比减少8.9%;买断式回购累计成交1.0万亿元,同比增加35.1%。\n\n(三)债券市场运行情况\n\n1月份,银行间债券市场现券交易累计成交1.9万亿元,同比减少76.1%,环比减少1.6%。1月末,银行间债券总指数为145.35,环比上升0.98%。交易所国债指数为139.58,较去年12月末上升0.04%。\n\n1-2月,银行间债券市场现券交易累计成交4.0万亿元,同比减少69.6%。", "question": "2013年12月份银行间债券市场发行债券占债券市场发行总额的比重约为:", "type": "单选题", "options": "A. 97%\nB. 99%\nC. 62%\nD. 88%", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "A", "human_count": 400357, "human_acc": 60.1990223725, "source": "2015年山东省公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2795757, "material": "2019年全国广播节目制作时间801.87万小时,与2018年基本持平;播出时间1553.40万小时,同比增长$1.75\\%$。电视节目制作时间345.58万小时,同比下降$3.40\\%$;播出时间1950.99万小时,同比增长$1.35\\%$。\n\n        2019年全国新闻资讯类广播节目制作时间141.88万小时,同比下降$0.93\\%$;播出时间302.15万小时,同比增长$0.91\\%$。新闻资讯类电视节目制作时间108.61万小时,同比增长$0.61\\%$;播出时间279.72万小时,同比增长$0.27\\%$。\n\n        全国农村广播节目制作时间128.68万小时,同比增长$3.24\\%$;播出时间451.64万小时,同比增长$2.31\\%$。农村电视节目制作时间67.60万小时,同比增长$1.59\\%$;播出时间424.83万小时,同比增长$1.69\\%$。\n\n        全国专题服务类广播节目制作时间217.99万小时,同比增长$0.60\\%$,播出时间333.29万小时,同比增长$2.30\\%$;专题服务类电视节目制作时间87.03万小时,同比下降$3.00\\%$,播出时间256.20万小时,与2018年基本持平。全国少儿广播节目播出时间26.64万小时,同比增长$0.23\\%$,少儿电视节目播出时间57.41万小时,同比增长$0.14\\%$。\n\n        全国广播广告节目制作时间71.92万小时,同比下降$4.00\\%$,播出时间134.49万小时,同比下降$1.05\\%$;电视广告节目制作时间43.74万小时,同比下降$7.37\\%$,播出时间211.97万小时,同比下降$0.80\\%$。其中,广播公益广告节目制作时间10.73万小时,同比增长$3.67\\%$,播出时间38.52万小时,同比增长$17.51\\%$;电视公益广告节目制作时间6.35万小时,同比增长$0.32\\%$,播出时间69.03万小时,同比增长$29.44\\%$。", "question": "2019年全国农村电视节目制作时间占全国电视节目制作总时间的比重约比去年:", "type": "单选题", "options": "A. 下降5个百分点\nB. 下降1个百分点\nC. 上升5个百分点\nD. 上升1个百分点", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 228347, "human_acc": 65.9575120321, "source": "2022年国考第一季行测模考大赛(副省级)第118题", "difficulty": 6, "formulas": 24, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 3555682, "material": "2019年末,全国收费公路里程17.11万公里,占公路总里程的$3.4\\%$,比上年末增长了$1.8\\%$。其中,高速公路14.28万公里,净增加4954公里;一级公路1.86万公里,净减少1014公里;二级公路0.87万公里,净减少992公里;独立桥梁及隧道1024公里,净增加73公里。\n\n        2019年末,全国收费公路共有主线收费站1267个,比上年末净减少49个。其中,高速公路753.5个,一级公路323个,二级公路132个,独立桥梁及隧道58.5个。2019年度,全国收费公路通行费收入5937.9亿元,比上年增长$6.9\\%$;支出总额10787.7亿元,增长$12.1\\%$。\n\n        2019年末,全国经营性公路里程7.72万公里,比上年增长$3.2\\%$;累计建设投资总额48546.1亿元,占收费公路累计建设投资总额的$51.0\\%$,增长$10.5\\%$;债务余额28387.6亿元,占收费公路债务余额的$46.1\\%$,增长$7.6\\%$;年通行费收入3628.9亿元,比上年增长$6.4\\%$;年支出总额5963.8亿元,增长$9.2\\%$。2019年度经营性公路通行费收支缺口2334.9亿元,其中,高速公路缺口2284.7亿元,一级公路缺口53.1亿元,二级公路缺口3.7亿元,独立桥梁及隧道盈余6.6亿元。\n\n        2019年度,全国收费公路共减免车辆通行费1009.7亿元,占2019年度应收通行费总额的$14.5\\%$,比上年增长$10\\%$。其中,鲜活农产品运输“绿色通道”减免350.8亿元,比上年增长$1.7\\%$;重大节假日免收小型客车通行费343.7亿元,增长$11.6\\%$;高速公路差异化收费、ETC通行费优惠、抢险救灾车辆免费等其他政策性减免315.3亿元,增长$19\\%$。", "question": "2019年末,全国经营性公路通行费收支缺口同比约增长了:", "type": "单选题", "options": "A. $13.9\\%$\nB. $12.0\\%$\nC. $9.0\\%$\nD. $5.2\\%$", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 85058, "human_acc": 35.8179124832, "source": "2021下半年省考第四季行测模考大赛(广东县级卷)第99题", "difficulty": 7, "formulas": 351, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 5647284, "material": "2022年1-10月,A省外贸进出口总额7182.8亿元,比上年同期增长15.9%,较2020年同期增长55.8%。其中,出口4427.1亿元,同比增长17.5%;进口2755.7亿元,同比增长13.4%;贸易顺差1671.4亿元,同比增长25.0%。1-10月,A省外贸进出口同比增速比全国外贸进出口同比增速高6.4个百分点。\n\n        2022年10月,A省外贸进出口额985.6亿元,同比增长41.7%,环比下降4.8%。其中,出口591.3亿元,同比增长42.3%,环比下降10.8%;进口394.3亿元,同比增长40.7%,环比增长5.7%。10月当月A省外贸进出口同比增速比全国外贸进出口同比增速高34.8个百分点。\n\n        2022年1-10月,A省加工贸易进出口4343.3亿元,同比增长15.6%;一般贸易进出口2481.4亿元,同比增长13.7%;保税物流进出口312.9亿元,同比增长46.1%。\n\n        2022年1-10月,A省对美国进出口1526.1亿元,同比增长11.3%;对东盟进出口967.6亿元,同比增长39.7%;对欧盟进出口786.8亿元,同比增长20.6%;对韩国进出口686.4亿元,同比增长26.2%。\n\n        2022年1-10月,A省机电产品出口2827.6亿元,同比增长15.9%,其中,手机出口2224.2亿元,同比增长11.8%;汽车出口93.9亿元,同比增长169.6%。劳动密集型产品出口287.7亿元,同比增长16.4%,其中,纺织品出口75.4亿元,同比增长17.4%;家具出口67.9亿元,同比下降0.8%;服装出口62.1亿元,同比增长18.6%。农产品出口161.1亿元,同比增长48.5%,其中,罐头出口63.5亿元,同比增长117.8%。", "question": "2022年1-10月,A省对下列国家或地区进出口额的同比增量按从低到高排序正确的是:", "type": "单选题", "options": "A. 美国、韩国、欧盟、东盟\nB. 美国、欧盟、韩国、东盟\nC. 东盟、美国、韩国、欧盟\nD. 欧盟、韩国、美国、东盟", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 57079, "human_acc": 56.9333730444, "source": "2023下半年省考第十二季行测模考大赛(广东县级卷)第89题", "difficulty": 6, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 2024174, "material": "2015年保险公司原保险保费收入24282.52亿元,同比增长$20.00\\%$,比上一年高$2.51\\%$。其中,产险业务原保险保费收入7994.97亿元,同比增长$10.99\\%$;寿险业务原保险保费收入13241.52亿元,同比增长$21.46\\%$;健康险业务原保险保费收入2410.47亿元,同比增长$51.87\\%$;意外险业务原保险保费收入635.56亿元,同比增长$17.14\\%$。\n\n        2015年保险公司赔款和给付支出8674.14亿元,同比增长$20.20\\%$。其中,产险业务赔款4194.17亿元,同比增长$10.72\\%$;寿险业务给付3565.17亿元,同比增长$30.67\\%$;健康险业务赔款和给付762.97亿元,同比增长$33.58\\%$;意外险业务赔款151.84亿元,同比增长$18.24\\%$。\n\n        截至2015年末,保险公司资金运用余额111795.49亿元,较年初增长$19.81\\%$。其中,银行存款24349.67亿元,占比$21.78\\%$;债券38446.42亿元,占比$34.39\\%$;股票和证券投资基金16968.99亿元,占比$15.18\\%$;其他投资32030.41亿元,占比$28.65\\%$。\n\n        截至2015年末,保险公司总资产123597.76亿元,较年初增长$21.66\\%$。其中,产险公司总资产18481.13亿元,较年初增长$31.43\\%$;寿险公司总资产99324.83亿元,较年初增长$20.41\\%$;再保险公司总资产5187.38亿元,较年初增长$47.64\\%$;资产管理公司总资产352.39亿元,较年初增长$46.44\\%$。", "question": "2014年寿险业务原保险保费收入比其给付金额多:", "type": "单选题", "options": "A. 10902亿元\nB. 8174亿元\nC. 9676亿元\nD. 3800亿元", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "A", "human_count": 112567, "human_acc": 74.9269324047, "source": "2016年重庆市公务员录用考试《行测》题(下半年)第113题", "difficulty": 5, "formulas": 21, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 2555854, "material": "2019年前三季度,S省园林水果产量达547.3万吨,同比增长$7.3\\%$。其中早熟苹果、梨产量为281.0万吨和25.9万吨,分别增长$5.0\\%$和$4.2\\%$;桃、猕猴桃、葡萄和鲜食枣时令水果产量分别为77.6万吨、24.8万吨、56.8万吨、28.2万吨,增长$8.6\\%$、$26.8\\%$、$6.3\\%$和$16.2\\%$。\n\n        根据全省果业监测统计调查数据,前三季度苹果亩均投入达1993.11元,同比增幅$25.0\\%$,梨亩均投入1489.19元,增幅$12.9\\%$;柑橘亩均投入548.67元,增幅$3.2\\%$;猕猴桃亩均投入1369.39元,增幅$3.5\\%$;枣亩均投入135.94元,增幅$24.7\\%$。\n\n        肥料费投入上升。苹果肥料费亩均投入849.16元,同比增加110.65元;梨亩均投入547.07元,增加105.4元;猕猴桃亩均投入732.45元,增加37.24元;柑橘亩均投入173.70元,增加4.52元;红枣亩均投入70.71元,增加11.24元。\n\n        苹果、柑橘和红枣农药费投入增加,梨、猕猴桃农药费投入下降。苹果农药费亩均投入240.96元,同比增加30.45元;梨亩均投入211.36元,减少50.09元;猕猴桃亩均投入86.61元,减少0.79元;柑橘亩均投入89.64元,增加2.17元;红枣亩均投入19.47元,增加5.17元。\n\n        雇工费投入增幅较大。苹果雇工费亩均投入441.04元,同比增加112.97元;梨亩均投入318.43元,增加45.19元;猕猴桃亩均投入302.80元,减少4.17元;柑橘亩均投入228.87元,增加9.66元;红枣亩均投入32.18元,增加4.64元。\n\n        水电费投入大幅增加。苹果水电费亩均投入50.56元,同比增加18.46元;梨亩均投入179.84元,增加72.6元;猕猴桃亩均投入75.67元,增加1.92元。", "question": "2018年前三季度,S省桃产量约是猕猴桃的多少倍?", "type": "单选题", "options": "A. 2.1\nB. 2.7\nC. 3.1\nD. 3.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 423774, "human_acc": 72.4173734113, "source": "2021年国考第六季行测模考大赛(副省级)第124题", "difficulty": 6, "formulas": 12, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 5346036, "material": "2021年1-5月,全国到税务部门新办理税种认定、发票领用、申报纳税等涉税事项的企业、个体工商户等市场主体(以下简称“新办涉税市场主体”)共522.25万户,较2020年同期增长40.19%,较2019年同期增长24.75%。\n\n        分类型看,新办企业278.41万户,同比增长37.14%;新办个体工商户237.04万户,同比增长45.37%。\n\n        分所有制看,前五个月新办民营涉税市场主体共计516.32万户,占比持续攀升,达到98.86%,较2020年同期、2019年同期分别提高0.09、0.53个百分点。\n\n        分行业看,批发零售业、商务服务业、建筑业3个行业新办涉税市场主体合计292.74万户。信息技术服务业、科学研究和技术服务业等现代服务业新办涉税市场主体数量占比持续提高,分别从2020年1-5月的3.81%、5.49%提高至2021年1-5月的5.19%和6.08%。\n\n        分地区看,四大经济圈市场活力优势明显。长三角、珠三角、京津冀、成渝经济圈新办涉税市场主体分别为129.27万户、53.90万户、35.35万户、37.72万户,占全部新办涉税市场主体的49.06%。其中,S省新办涉税市场主体54.70万户,较2020年同期增长45.80%,较2019年同期增长57.80%。", "question": "2020年1-5月,全国平均每月约有新办涉税企业多少万户?", "type": "单选题", "options": "A. 203\nB. 163\nC. 16.9\nD. 40.6", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 293652, "human_acc": 73.6242218681, "source": "2022下半年省考第十六季行测模考大赛(深圳卷)第88题", "difficulty": 4, "formulas": 0, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 2136894, "material": "二、根据下列统计资料回答问题\n\n       2015年1~11月,北京市20个文化创意产业功能区实现收入7019.8亿元,同比增长$7.5\\%$,高于全市文化创意产业收入平均增速1.2个百分点,占全市文化创意产业收入的比重为$68.8\\%$。其中文化科技融合示范功能区实现收入3772.5亿元,同比增长$7.8\\%$,占20个功能区总收入的$53.7\\%$;文化金融融合功能区实现收入436.5亿元,同比增长$10\\%$,占20个功能区总收入的$6.2\\%$。\n\n       传媒影视板块中,CBD-定福庄国际传媒产业走廊功能区、新媒体产业功能区、影视产业功能区分别增长$8.9\\%$、$69.4\\%$和$27.9\\%$,三个功能区收入合计占20个功能区总收入的$17.1\\%$;文化休闲板块中,北京老字号品牌文化推广功能区、主题公园功能区分别增长$18\\%$和1.5倍,两个功能区收入合计占20个功能区总收入的$3\\%$。\n\n        2015年1~11月,规模以上互联网信息服务行业实现收入856.5亿元,同比增长$21.5\\%$,高于全市文化创意产业平均增速15.2个百分点;数字内容服务和其他互联网服务行业分别实现收入17.8亿元和6.3亿元,同比分别增长$25.3\\%$和$53\\%$;全市重点互联网出版单位实现收入373.2亿元,同比增长$5.9\\%$。", "question": "按照各功能区2015年1~11月的收入增速从高到低的顺序,以下选项中排序正确的是(  )", "type": "单选题", "options": "A. CBD-定福庄国际传媒产业走廊功能区、新媒体产业功能区、影视产业功能区\nB. 北京老字号品牌文化推广功能区、主题公园功能区、新媒体产业功能区\nC. 主题公园功能区、北京老字号品牌文化推广功能区、影视产业功能区\nD. 新媒体产业功能区、影视产业功能区、北京老字号品牌文化推广功能区", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 469957, "human_acc": 86.1661811613, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第123题", "difficulty": 4, "formulas": 16, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 163517, "material": "2012年,建材工业增加值同比增长$11.5\\%$,增速回落8个百分点,占全国工业增加值的$6.6\\%$。全年水泥产量21.8亿吨、同比增长$7.4\\%$,陶瓷砖92亿平方米、同比增长$9.4\\%$,天然花岗岩石材4.1亿平方米、同比增长$27.2\\%$,平板玻璃7.1亿重量箱、同比下降$3.2\\%$,卫生陶瓷产量1.6亿件、同比下降$13.1\\%$。\n\n        2012年底规模以上企业3.4万家,全年完成主营业务收入5.3万亿元,同比增长$13.4\\%$。尽管水泥、平板玻璃等行业利润总额同比分别下降$32.8\\%$、$66.6\\%$,但由于水泥制品、轻质建筑材料、建筑陶瓷、耐火材料制品、金属门窗和玻纤增强塑料材料等行业利润总额同比分别增长$22.5\\%$、$21.8\\%$、$33.8\\%$、$10.5\\%$、$26.9\\%$和$30.6\\%$,全行业利润总额仍创3750亿元新高,同比增长$3.5\\%$。\n\n        大宗产品产销率呈下降态势,水泥产销率$97.3\\%$、同比下降0.6个百分点,平板玻璃产销率$95.6\\%$、同比下降0.1个百分点。截至12月份,水泥制造业存货790亿元,同比增加$1.8\\%$;砖瓦、石材等建筑材料制造业存货590亿元,同比增加$15.7\\%$;玻璃制品制造业存货319亿元,同比增加$15.8\\%$。\n\n        2012年行业出口交货值约2250亿元,同比增长$7.9\\%$,出口商品离岸价格上涨$9.3\\%$。其中,建筑卫生陶瓷、建筑和技术玻璃、玻璃纤维及制品出口额同比分别增长$31.5\\%$、$10\\%$、$5.7\\%$。", "question": "如果2012年建筑卫生陶瓷商品出口价格同比涨幅与建材行业出口商品离岸价格同比涨幅相同,则2012年建筑卫生陶瓷商品出口量与上年相比:", "type": "单选题", "options": "A. 下降了$1\\%$\nB. 上升了$1\\%$\nC. 下降了$17\\%$\nD. 上升了$20\\%$", "choice": "D", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 180318, "human_acc": 45.7735777903, "source": "2014年北京市公务员录用考试《行测》题第124题", "difficulty": 5, "formulas": 361, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 2033352, "material": "2015年,全国文化及相关产业增加值27235亿元,比上年增长$11\\%$(未扣除价格因素)。在2014年增长$12.2\\%$的基础上继续保持两位数增长,呈快速增长态势。2015年文化及相关产业增加值占GDP的比重为$3.97\\%$,比上年提高0.16个百分点。\n\n       2015年,代表文化内容的“文化产品的生产”创造的增加值为17071亿元,而“文化相关产品的生产”创造的增加值为10165亿元;且“文化产品的生产”作为我国文化产业的主体,增速达$13.4\\%$,远高于“文化相关产品的生产”的$7.1\\%$的增速。从产品类型看,文化制造业增加值11053亿元,比上年增长$8.4\\%$,占$40.6\\%$,文化批发零售业增加值2542亿元,增长$6.6\\%$,占$9.3\\%$;文化服务业增加值13640亿元,增长$14.1\\%$,占$50.1\\%$。\n\n       2015年文化休闲娱乐服务业和以“互联网+”为主要形式的文化信息传输服务业实现增加值分别为2044亿元和2858亿元,增速分别达$19.4\\%$和$16.3\\%$,占文化及相关产业的比重分别为$7.5\\%$和$10.5\\%$,均比上年提高0.5个百分点;广播电视电影服务业实现增加值1227亿元,占比$4.5\\%$,比上年提高0.2个百分点,文化创意和设计服务业实现增加值4953亿元,增长$13.5\\%$,占比$18.2\\%$,比上年提高0.4个百分点。", "question": "2013年全国文化及相关产业的增加值约为多少万亿元?", "type": "单选题", "options": "A. 1.8\nB. 2.0\nC. 2.2\nD. 2.5", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 703485, "human_acc": 71.5061444096, "source": "2016年河南省公务员录用考试《行测》题第116题", "difficulty": 4, "formulas": 18, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 5568419, "material": "2021年,我国十种有色金属产量6454万吨,同比增长5.4%。2022年一季度,十种有色金属产量1617万吨,同比增长0.9%。其中,铜、铅、锌产量分别为264.4万吨、181.1万吨、165.5万吨,同比增长6.1%、1.2%、0.7%。电解铝产量为963.3万吨,同比下降0.4%。\n\n        2022年一季度,大宗有色金属价格持续高位运行,铜、铝、铅、锌现货均价分别为71672元/吨、22187元/吨、15440元/吨、25548元/吨,同比上涨14.4%、37.0%、0.6%、15.6%。受新能源产业需求增长、锂资源供应紧张等影响,一季度国内镍、钴、电池级碳酸锂均价分别为19万元/吨、52.5万元/吨、42.1万元/吨,同比上涨43.2%、54.4%、456%。\n\n        2022年一季度,整体呈现平稳状态。出口方面,一季度我国未锻轧铝及铝材出口162.8万吨,同比增长26.7%,出口金额64.8亿美元,同比增长65.0%。铅酸蓄电池出口5021万只,同比增长15.6%。进口方面,一季度铜精矿进口635万吨,同比增长6.7%,进口金额138.3亿美元,同比增长12.7%;未锻轧铜及铜材进口147.3万吨,同比增长2.6%,进口金额121.7亿美元,同比增长22.2%。铅精矿、锌精矿、精锌实物量分别进口21.4万吨、95万吨、4.2万吨,同比下降20.0%、8.7%、68.6%。钴精矿、钴湿法冶炼中间品分别进口7440吨、8.4万吨,同比增长277.8%、23.4%,电解镍进口5.58万吨,同比增长74.9%,碳酸锂进口2.75万吨,同比增长44%。镍精矿进口450万吨,同比下降5.3%,电解钴进口837吨,同比下降49.1%。", "question": "2021年一季度,下列选项中进口量最高的为:", "type": "单选题", "options": "A. 电解镍\nB. 精锌实物量\nC. 钴精矿\nD. 钴湿法冶炼中间品", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 55181, "human_acc": 43.6508943296, "source": "2023下半年省考第二季行测模考大赛(上海卷)第41题", "difficulty": 7, "formulas": 0, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 4548499, "material": "受去年新冠肺炎疫情导致基数较低因素影响,2021年一季度S省房地产市场呈现恢复性高增长。\n\n        一季度,全省房地产开发投资完成251.4亿元,增长28.9%,比2019年一季度增长27.5%。按构成分,建安工程投资完成212.8亿元,增幅比同期房地产开发投资增速快14.4个百分点;设备工器具购置2.5亿元,下降4.0%;以土地购置费为主的其它费用36.1亿元,下降17.9%。按工程用途分,商品住宅投资完成205.4亿元,增长33.1%,其中以改善性为主的90-144平方米住房136.2亿元,增长37.0%;办公楼投资完成5.0亿元,下降34.4%;商业营业用房投资完成18.4亿元,增长17.4%;其它住房投资完成22.7亿元,增长29.3%。\n\n        一季度,全省商品房销售面积446.6万平方米,增长82.2%,比2019年一季度增长29.2%;商品房销售额312.1亿元,增长69.6%,比2019年一季度增长26.2%。从住房用途看,商品住宅销售面积422.9万平方米,增长81.4%,销售额292.3亿元,增长70.0%;办公楼销售面积5.4万平方米,增长1.3倍,销售额4.6亿元,增长77.5%;商业营业用房销售面积7.7万平方米,增长54.2%,销售额9.3亿元,增长45.7%。从期现房看,商品房现房销售面积35.3万平方米,增长21.3%,销售额18.3亿元,增长43.8%;商品房期房销售面积411.3万平方米,增长90.4%,销售额293.8亿元,增长71.8%。截止3月底,全省商品房待售面积784.2万平方米,比2020年底减少1.2万平方米。\n\n        一季度,全省房地产开发企业到位资金448.7亿元,增长59.8%,比2019年一季度增长52.3%。其中,国内贷款40.5亿元,下降2.0%;自筹资金146.5亿元,增长18.2%;定金及预收款150.5亿元,增长1.55倍;个人按揭贷款84.2亿元,增长1.13倍。以销售回款为主的定金及预收款和个人按揭贷款合计占本年到位资金的比重由上年同期的35.0%提高到52.3%。", "question": "2021年一季度,S省办公楼销售单价同比约增长了:", "type": "单选题", "options": "A. -1950元\nB. -2520元\nC. 1950元\nD. 2520元", "choice": "B", "keypoints": "平均数的增长量;文字资料", "most_wrong": "A", "human_count": 298981, "human_acc": 46.8130081845, "source": "2022年国考第三十七季行测模考大赛(行政执法类)第124题", "difficulty": 6, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "平均数问题", "平均数的增长量"], ["资料分析", "文字资料"]]}, {"id": 5301673, "material": "国家统计局公布的全国粮食生产数据显示,2021年,全国粮食总产量13657亿斤,比上年增长2.0%,全年粮食产量再创新高,连续7年保持在1.3万亿斤以上。其中,秋粮产量10178亿斤,比上年增长1.9%。全国粮食播种面积17.64亿亩,比上年增长0.7%,连续两年实现增长。\n\n        玉米、小麦播种面积增加,稻谷略有减少。2021年,全国谷物播种面积15.03亿亩,比上年增长2.3%。去年以来,玉米价格大幅上涨,种植效益提高,农民种植玉米意愿增强,全国玉米播种面积达6.50亿亩,比上年增长5.0%。受播期土壤墒情适宜和种植效益趋好等有利因素影响,小麦播种面积3.54亿亩,比上年增长0.8%,扭转了面积连续4年下滑的势头。稻谷播种面积4.49亿亩,比上年下降0.5%。\n\n        2021年,全国谷物单产421公斤/亩,每亩产量比上年增长0.3%。其中,稻谷单产474公斤/亩,增长1.0%;小麦单产387公斤/亩,增长1.2%。受河南等黄淮海地区洪涝灾害影响,全国玉米单产419公斤/亩,下降0.4%。", "question": "若我国平均每亩粮食产量保持2021年的同比增量不变,则我国平均每亩粮食产量将在哪一年首次超过800斤?", "type": "单选题", "options": "A. 2023年\nB. 2024年\nC. 2025年\nD. 2026年", "choice": "B", "keypoints": "现期追赶;文字资料", "most_wrong": "C", "human_count": 201388, "human_acc": 38.7595090075, "source": "2022下半年省考第十二季行测模考大赛(深圳卷)第96题", "difficulty": 7, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}], "categories": [["资料分析", "基期与现期", "现期追赶"], ["资料分析", "文字资料"]]}, {"id": 4565648, "material": "", "question": "傲睨自若 对于 (    ) 相当于 (    ) 对于 贫穷", "type": "单选题", "options": "A. 傲慢;钟鸣鼎食\nB. 谦虚;家徒四壁\nC. 得意;穷山恶水\nD. 自大;箪食瓢饮", "choice": "D", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 303487, "human_acc": 83.6016040226, "source": "2021下半年省考第三十二季行测模考大赛(河南卷)第109题", "difficulty": 4, "formulas": 0, "history": [{"id": 50701, "material": "", "question": "观:看", "type": "单选题", "options": "A. 火:暖\nB. 水:船\nC. 近:远\nD. 叫:喊", "choice": "D", "keypoints": "语义关系-近义关系", "most_wrong": "A", "human_count": 1052197, "human_acc": 98.4512405947, "source": "2013年广东省公务员录用考试《行测》题(一)第46题", "difficulty": 5, "formulas": 0}, {"id": 5510014, "material": "", "question": "修缮:修葺", "type": "单选题", "options": "A. 淹留:逗留\nB. 休闲:休憩\nC. 履职:履任\nD. 赏识:赏玩", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 650668, "human_acc": 33.2867145764, "source": "2023年天津市公务员考试《行测》题(网友回忆版)第81题", "difficulty": 5, "formulas": 0}, {"id": 1749, "material": "", "question": "愉快:快活", "type": "单选题", "options": "A. 信任:信息\nB. 严肃:严谨\nC. 真诚:诚实\nD. 闲聊:休闲", "choice": "C", "keypoints": "语义关系-近义关系", "most_wrong": "B", "human_count": 61069, "human_acc": 75.5145818664, "source": "2008年江苏省公务员录用考试《行测》题(C类)第23题", "difficulty": 5, "formulas": 0}, {"id": 4621237, "material": "", "question": "杜撰:臆造", "type": "单选题", "options": "A. 彩礼:嫁妆\nB. 商榷:协商\nC. 保守:激进\nD. 罕见:荒诞", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "D", "human_count": 10106, "human_acc": 90.4710073224, "source": "2021下半年省考第三十五季行测模考大赛(甘肃卷)第84题", "difficulty": 3, "formulas": 0}, {"id": 1130059, "material": "", "question": "同情:怜悯", "type": "单选题", "options": "A. 当然:实际\nB. 宽恕:饶恕\nC. 偶然:必然\nD. 所有:有些", "choice": "B", "keypoints": "语义关系-近义关系", "most_wrong": "C", "human_count": 143672, "human_acc": 96.7620691575, "source": "2010年江苏省公务员录用考试《行测》题(C类)第36题", "difficulty": 2, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"]]}, {"id": 5411098, "material": "", "question": "某年级学生排成一个长和宽分别为a人和b人的长方形实心矩阵,若横、纵两个方向均增加两层,则还需120人;若所有学生排成一个边长为$\\frac{a+b}{2}$的正方形实心方阵,则还少1人。问该年级共有多少名学生?", "type": "单选题", "options": "A. 961\nB. 960\nC. 841\nD. 840", "choice": "D", "keypoints": "", "most_wrong": "B", "human_count": 22947, "human_acc": 18.6996121497, "source": "2022下半年省考第二十二季行测模考大赛(浙江C卷)第66题", "difficulty": 7, "formulas": 1, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 2187878, "material": "", "question": "小斑虎猫:虎猫属:猫科", "type": "单选题", "options": "A. 庄稼:粮食:谷物\nB. 卷尺:尺子:工具\nC. 小学:初中:高中\nD. 少尉:少校:少将", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "A", "human_count": 1048391, "human_acc": 91.7624245153, "source": "2018年421联考《行测》题(山东卷)(网友回忆版)第87题", "difficulty": 3, "formulas": 0, "history": [{"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 2050480, "material": "", "question": "蛇:腿", "type": "单选题", "options": "A. 鸡:翅膀\nB. 狮:爪子\nC. 牛:尾巴\nD. 鲸:鱼鳃", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 719045, "human_acc": 91.7188771217, "source": "2017年422联考《行测》题(吉林卷乙级)第71题", "difficulty": 3, "formulas": 0}, {"id": 2050404, "material": "", "question": "猪:猪肝", "type": "单选题", "options": "A. 鱼:鱼鳔\nB. 马:马蹄\nC. 虫:虫草\nD. 虾:虾须", "choice": "A", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 957770, "human_acc": 89.4237656222, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第81题", "difficulty": 4, "formulas": 0}, {"id": 17335, "material": "", "question": "花卉:花", "type": "单选题", "options": "A. 汽车:车\nB. 人口:人\nC. 山峰:山\nD. 粮食:米", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 144739, "human_acc": 21.1442665764, "source": "2010年贵州省公务员录用考试《行测》题第62题", "difficulty": 7, "formulas": 0}, {"id": 5510252, "material": "", "question": "章:节", "type": "单选题", "options": "A. 年:月\nB. 桌:椅\nC. 中考:高考\nD. 班主任:班长", "choice": "A", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 488174, "human_acc": 96.8574729502, "source": "2023年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 50433, "material": "", "question": "下列成语与人物对应错误的一项是:", "type": "单选题", "options": "A. 投笔从戎——班超\nB. 横槊赋诗——曹操\nC. 程门立雪——匡衡\nD. 扑朔迷离——花木兰", "choice": "C", "keypoints": "文化常识", "most_wrong": "A", "human_count": 352825, "human_acc": 54.4238645221, "source": "2013年河北省公务员录用考试《行测》题第124题", "difficulty": 6, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 4599303, "material": "", "question": "日月星辰的起起落落,伴随着古人的生活,因此星宿常是他们吟咏的对象。下列诗词中不涉及星宿的是(    )。", "type": "单选题", "options": "A. 更深月色半人家,北斗阑干南斗斜\nB. 五更鼓角声悲壮,三峡星河影动摇\nC. 会挽雕弓如满月,西北望,射天狼\nD. 人生不相见,动如参与商", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 94416, "human_acc": 54.2937637689, "source": "2021下半年省考第三十四季行测模考大赛(深圳卷)第16题", "difficulty": 6, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 2021676, "material": "", "question": "如果你“穿越”回汉代,你不可能吃到的食物是:", "type": "单选题", "options": "A. 葡萄、胡桃\nB. 土豆、地瓜\nC. 火腿、豆豉\nD. 粽子、米糕", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 408757, "human_acc": 50.4382799561, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第10题", "difficulty": 6, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 49505, "material": "", "question": "下列有关核能的表述,正确的是:", "type": "单选题", "options": "A. 氢弹爆炸发生轻核聚变,其威力比原子弹小\nB. 核电站使用的燃料一般是铀等放射性重金属\nC. 自然界只有在人为条件下才会发生热核反应\nD. 核电站的能量转换过程是直接从核能到电能", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 1222258, "human_acc": 75.1516455609, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第14题", "difficulty": 4, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 5491117, "material": "", "question": "小明出国旅游,在某地区看到了斑马、非洲象、狮子、猴面包树等动植物。下列关于他对该地区的天气情况描述正确的是(    )。", "type": "单选题", "options": "A. 一年分干、湿两季,湿季高温闷热,多雷雨,干季少雨,甚至滴雨不下\nB. 全年高温多雨,通常早晨天气晴朗,午后出现倾盆大雨\nC. 常年干旱少雨,日照强烈,气温高,水分蒸发强\nD. 夏季炎热干燥,冬季温和多雨", "choice": "A", "keypoints": "自然常识", "most_wrong": "C", "human_count": 25416, "human_acc": 27.4826880705, "source": "2023上半年省考第八季行测模考大赛(西藏卷)第74题", "difficulty": 7, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 18573, "material": "", "question": "关于等离子电视的使用,下列说法错误的是:", "type": "单选题", "options": "A. 避免与其他家电放在一起,否则会产生电磁波,出现噪音等干扰现象\nB. 不要频繁开关机,以减少显像管灯丝过热次数,延缓显像管的老化\nC. 不要放在强光照射的地方,这样会导致荧光粉发生变化,缩短使用寿命\nD. 连续开机时间过长后,可用冷水湿抹布擦拭电视荧屏,降低温度", "choice": "D", "keypoints": "化学常识", "most_wrong": "B", "human_count": 39153, "human_acc": 84.5733404848, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第119题", "difficulty": 5, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 5756193, "material": "", "question": "下列生物常识,说法有误的是(    )。", "type": "单选题", "options": "A. 人声调的高低与人声带的长短、厚薄、松弛程度有关\nB. 人体肺泡内的气体交换主要通过渗透作用完成\nC. 烟草中的有害物质会在肺泡中沉积,对人体造成伤害\nD. 每分钟内人工呼吸的次数,应与正常人呼吸的频率保持一致", "choice": "B", "keypoints": "生物常识", "most_wrong": "D", "human_count": 108982, "human_acc": 25.6666238461, "source": "2023下半年省考第二十一季行测模考大赛(广东县级卷)第10题", "difficulty": 7, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 1750330, "material": "", "question": "我国水能资源分布不均,水能资源最集中的地区是(    )。", "type": "单选题", "options": "A. 东北地区\nB. 中南地区\nC. 西南地区\nD. 东部沿海地区", "choice": "C", "keypoints": "国情社情", "most_wrong": "D", "human_count": 157176, "human_acc": 48.599658981, "source": "2015年北京市公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 4945, "material": "", "question": "下列关于“缓刑”的说法中,不适当的一项是:", "type": "单选题", "options": "A. 累犯不适用缓刑\nB. 缓刑只适用于被判处5年以下有期徒刑的犯罪分子\nC. 被宣告缓刑的犯罪分子,在缓刑考验期限内,由公安机关考察\nD. 如果没有法定的应当撤销缓刑的情形,缓刑考验期满,原判的刑罚就不再执行,并公开予以宣告", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 66046, "human_acc": 56.9603003967, "source": "2008年浙江省公务员录用考试《行测》题第97题", "difficulty": 5, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 2137184, "material": "", "question": "氯乙烷在常温常压下是气体,平时储存在压强较高的金属罐中。医护人员在对突然受伤的运动员实施急救时,常常会对着受伤部位喷氯乙烷雾状药剂,使受伤部位迅速降温并冷冻,神经被麻痹,疼痛感得以缓解。下列关于氯乙烷的说法正确的是________。", "type": "单选题", "options": "A. 氯乙烷的沸点比水高\nB. 从气体变成液体过程中,氯乙烷会吸收大量的热量\nC. 在金属罐中,氯乙烷一般处于液体状态\nD. 氯乙烷能使神经麻痹的原因是它含有使神经麻醉的药物成分", "choice": "C", "keypoints": "物理常识", "most_wrong": "B", "human_count": 318437, "human_acc": 52.6754114629, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第111题", "difficulty": 5, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 2051490, "material": "", "question": "下列说法中,正确的是:", "type": "单选题", "options": "A. 鱼在水中能自由沉浮,是因为有鱼鳍\nB. “黄山毛峰”是绿茶\nC. 秦岭的北坡有三十六峪\nD. 南美洲唯一以葡萄牙语作为官方语言的国家是智利", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 599413, "human_acc": 49.4824102914, "source": "2017年422联考《行测》题(陕西卷)第4题", "difficulty": 6, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 3561517, "material": "", "question": "考拉:树袋熊:无尾熊", "type": "单选题", "options": "A. 火碱:烧碱:强碱\nB. 马厩:马棚:木板\nC. 地瓜:山芋:番薯\nD. 鸟窝:鸟巢:鸟笼", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 80672, "human_acc": 58.7762792543, "source": "2021下半年省考第四季行测模考大赛(河南卷)第108题", "difficulty": 5, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}, {"id": 2601, "material": "", "question": "柳絮:杨花", "type": "单选题", "options": "A. 松子:榆钱\nB. 月华:幽兰\nC. 芙蓉:荷花\nD. 菊花:银甲", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 53007, "human_acc": 46.193898919, "source": "2008年辽宁省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0}, {"id": 11963, "material": "", "question": "报警:警报", "type": "单选题", "options": "A. 来回:回来\nB. 书写:写书\nC. 给付:付给\nD. 开水:水开", "choice": "D", "keypoints": "逻辑关系-全同关系", "most_wrong": "B", "human_count": 41134, "human_acc": 30.7798901152, "source": "2008年安徽省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"]]}, {"id": 5509459, "material": "", "question": "某小区业主王某拟将其自住用房改为民宿用房,物业公司和业主委员会不同意,为此发生争执。下列与之相关的说法正确的是:", "type": "单选题", "options": "A. 小区业主未经国家有关机关审批,不得将自住用房改为民宿用房\nB. 小区业主未经小区物业公司和业主委员会同意,不得将自住用房改为民宿用房\nC. 小区业主未经有利害关系的其他业主一致同意,不得将自住用房改为民宿用房\nD. 小区业主未经三分之二以上有利害关系的其他业主同意,不得将自住用房改为民宿用房", "choice": "C", "keypoints": "民法", "most_wrong": "D", "human_count": 603446, "human_acc": 20.9239931991, "source": "2023年青海省公务员录用考试《行测》题(网友回忆版)第13题", "difficulty": 4, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 20425, "material": "", "question": "(    ),法国人攻克巴士底狱,揭开了法国资产阶级革命的序幕。", "type": "单选题", "options": "A. 1789年7月12日\nB. 1789年7月14日\nC. 1789年7月16日\nD. 1789年12月12日", "choice": "B", "keypoints": "世界历史", "most_wrong": "A", "human_count": 216224, "human_acc": 54.7922524789, "source": "2010年湖北省公务员录用考试《行测》题第125题", "difficulty": 5, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 5333007, "material": "从2021年4月,根据全国人大常委会领导同志的指示安排,法工委着手启动研究反电信网络诈骗立法工作。在时间紧、任务重的情况下,抓紧开展相关工作。\n\n        为了让立法能“治住”花样翻新的电信网络诈骗犯罪,快速掌握电信网络诈骗的特点、趋势、作案方法等,立法初期,法工委到涉及打击治理电信网络诈骗的部门逐个进行调研,了解情况,围绕一些技术问题展开探讨,委托科研机构梳理并提供国外反电信网络诈骗相关立法和治理情况。与此同时,法工委也深入企业、地方进行调研,多次到北京、浙江、江苏、云南、湖北、福建等地通过召开专题座谈会、书面征求意见等方式,听取金融、电信、互联网企业及相关监管部门、司法部门等建议,先后两次专门召开互联网企业座谈会。并且在立法过程中,就一些重要问题和制度专题研讨,充分听取不同类型、不同规模的互联网企业意见,统筹发展和安全。在3个月时间内完成了法律案初稿,做好提请常委会审议准备工作。\n\n        为保证反电信网络诈骗立法全面贯彻落实全过程人民民主,在审议后,相关法律草案曾两次公开征求地方、高校、社会公众意见,让立法过程既问需于民也问计于民。\n\n        此外,立法机关还听取了相关行业一线工作人员、群众代表、专家学者、人大代表的意见建议,邀请提出相关反诈建议的代表参加座谈会,当面听取他们对草案的修改意见。", "question": "有权向全国人大常委会提出制定《中华人民共和国反电信网络诈骗法》法律案的包括(    )。", "type": "不定项", "options": "A. 全国人大常委会委员长\nB. 国务院各部委\nC. 全国人大常委会法制工作委员会\nD. 全国人大宪法和法律委员会", "choice": "D", "keypoints": "宪法", "most_wrong": "C", "human_count": 853, "human_acc": 4.6893317702, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第122题", "difficulty": 7, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 163481, "material": "", "question": "国家“十二五”规划纲要提出,处于区域发展总体战略优先位置的是:", "type": "单选题", "options": "A. 深入实施西部大开发战略\nB. 大力促进中部地区崛起\nC. 全面振兴东北老工业基地\nD. 积极支持东部地区率先发展", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 251382, "human_acc": 51.8056185407, "source": "2014年北京市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 2000862, "material": "", "question": "画家:作家", "type": "单选题", "options": "A. 工人:农民\nB. 土豆:山芋\nC. 绿茶:红茶\nD. 军人:诗人", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 528803, "human_acc": 58.4735714434, "source": "2012年安徽省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0, "history": [{"id": 2525038, "material": "", "question": "茶壶:陶器", "type": "单选题", "options": "A. 雕像:石膏\nB. 瓶子:圆口\nC. 喜剧:悲剧\nD. 屏风:漆器", "choice": "D", "keypoints": "逻辑关系-交叉关系", "most_wrong": "A", "human_count": 310735, "human_acc": 56.9530307175, "source": "2021年国考第二季行测模考大赛(副省级)第97题", "difficulty": 5, "formulas": 0}, {"id": 5585651, "material": "", "question": "主食:甜食", "type": "单选题", "options": "A. 剧团:戏班\nB. 商品:零食\nC. 戏剧:小说\nD. 动物:芍药", "choice": "B", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 43627, "human_acc": 49.1484631077, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第52题", "difficulty": 6, "formulas": 0}, {"id": 2034140, "material": "", "question": "律师:教授", "type": "单选题", "options": "A. 专家:吉林人\nB. 钢筋:房屋\nC. 歌手:乐队\nD. 人:社会", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "C", "human_count": 569161, "human_acc": 87.4676936754, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第77题", "difficulty": 4, "formulas": 0}, {"id": 2021824, "material": "", "question": "流行:高尚", "type": "单选题", "options": "A. 专家:学者\nB. 勇敢:品德\nC. 树根:树叶\nD. 闰月:春季", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "B", "human_count": 532077, "human_acc": 52.6615508658, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第65题", "difficulty": 5, "formulas": 0}, {"id": 5289672, "material": "", "question": "陶器:酒器", "type": "单选题", "options": "A. 童鞋:凉鞋\nB. 主食:副食\nC. 卧椅:躺椅\nD. 官窑:哥窑", "choice": "A", "keypoints": "逻辑关系-交叉关系", "most_wrong": "D", "human_count": 215948, "human_acc": 90.1254005594, "source": "2022下半年省考第十一季行测模考大赛(浙江C卷)第91题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"]]}, {"id": 2654115, "material": "", "question": "干净:纤尘不染", "type": "单选题", "options": "A. 炎热:古道热肠\nB. 敏捷:眼疾手快\nC. 乖巧:俯首帖耳\nD. 广阔:无边无际", "choice": "D", "keypoints": "语义-其他", "most_wrong": "B", "human_count": 221890, "human_acc": 77.7885438731, "source": "2021年国考第十八季行测模考大赛(副省级)第96题", "difficulty": 4, "formulas": 0, "history": [{"id": 15387, "material": "", "question": "选择:抉择", "type": "单选题", "options": "A. 爱好:嗜好\nB. 决定:决策\nC. 按时:准时\nD. 参加:参与", "choice": "B", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 217958, "human_acc": 41.2854770185, "source": "2010年深圳市公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}, {"id": 1503649, "material": "", "question": "豺狼:凶残", "type": "单选题", "options": "A. 喜鹊:报喜\nB. 小鸟:依人\nC. 蜜蜂:勤劳\nD. 梅花:坚强", "choice": "C", "keypoints": "语义-其他", "most_wrong": "D", "human_count": 826477, "human_acc": 92.5996730702, "source": "2015年四川省公务员录用考试《行测》题(上半年)第73题", "difficulty": 5, "formulas": 0}, {"id": 2685607, "material": "", "question": "遵守:恪守", "type": "单选题", "options": "A. 毁坏:损坏\nB. 风味:风光\nC. 瑕疵:缺陷\nD. 美好:美丽", "choice": "C", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 221684, "human_acc": 64.4272929034, "source": "2021年国考第二十二季行测模考大赛(副省级)第101题", "difficulty": 4, "formulas": 0}, {"id": 2004796, "material": "", "question": "表扬:恭维", "type": "单选题", "options": "A. 肯定:认可\nB. 相信:迷信\nC. 请教:求教\nD. 激动:生气", "choice": "B", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 26118, "human_acc": 85.4621333946, "source": "2010年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 2376460, "material": "", "question": "听:闻:聆", "type": "单选题", "options": "A. 看:瞥:瞪\nB. 咬:嚼:咽\nC. 买:购:租\nD. 打:揍:殴", "choice": "D", "keypoints": "语义-其他", "most_wrong": "A", "human_count": 1064168, "human_acc": 51.4701626059, "source": "2019年420联考《行测》题(吉林乙级)(网友回忆版)第63题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 4471, "material": "", "question": "某市人民政府作出有关规范该市食品产业生产秩序的决定,这一行为属于:", "type": "不定项", "options": "A. 行政立法行为\nB. 抽象行政行为\nC. 具体行政行为\nD. 行政许可行为", "choice": "AB", "keypoints": "行政法", "most_wrong": "C", "human_count": 2803, "human_acc": 15.733143061, "source": "2008年上海市公务员录用考试《行测》题第118题", "difficulty": 5, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 4670679, "material": "", "question": "凄然泪下:呼天抢地", "type": "单选题", "options": "A. 任劳任怨:吃苦耐劳\nB. 孜孜不倦:废寝忘食\nC. 繁花似锦:锦绣前程\nD. 见贤思齐:人心向善", "choice": "B", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "A", "human_count": 245998, "human_acc": 69.7355263051, "source": "2022上半年省考第一季行测模考大赛(四川卷)第74题", "difficulty": 4, "formulas": 0, "history": [{"id": 4807496, "material": "", "question": "辩论:争吵", "type": "单选题", "options": "A. 责备:诋毁\nB. 抱怨:埋怨\nC. 干扰:骚扰\nD. 支持:破坏", "choice": "C", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "A", "human_count": 1838, "human_acc": 52.0674646355, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第86题", "difficulty": 5, "formulas": 0}, {"id": 4800094, "material": "", "question": "顾此失彼:捉襟见肘", "type": "单选题", "options": "A. 挑肥拣瘦:先人后己\nB. 心灰意冷:灰心丧气\nC. 扬长避短:避实就虚\nD. 来因去果:有始无终", "choice": "B", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "C", "human_count": 336416, "human_acc": 72.6612289546, "source": "2022上半年省考第十一季行测模考大赛(广东乡镇卷)第59题", "difficulty": 5, "formulas": 0}, {"id": 4581716, "material": "", "question": "随机应变:见风使舵", "type": "单选题", "options": "A. 侃侃而谈:夸夸其谈\nB. 无微不至:无所不至\nC. 欢天喜地:喜气洋洋\nD. 不负众望:不孚众望", "choice": "A", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "C", "human_count": 10299, "human_acc": 65.4141178755, "source": "2021下半年省考第三十三季行测模考大赛(甘肃卷)第84题", "difficulty": 4, "formulas": 0}, {"id": 4487270, "material": "", "question": "利欲熏心:唯利是图", "type": "单选题", "options": "A. 死有余辜:死不瞑目\nB. 聚精会神:全神贯注\nC. 目不识丁:文不加点\nD. 自以为是:刚愎自用", "choice": "D", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "B", "human_count": 11069, "human_acc": 64.1069653989, "source": "2021下半年省考第二十六季行测模考大赛(甘肃卷)第84题", "difficulty": 4, "formulas": 0}, {"id": 4492885, "material": "", "question": "无所适从:莫衷一是", "type": "单选题", "options": "A. 沉鱼落雁:闭月羞花\nB. 獐头鼠目:贼眉鼠眼\nC. 杀鸡儆猴:指桑骂槐\nD. 摩肩接踵:熙熙攘攘", "choice": "D", "keypoints": "语义关系-近义关系;语义-其他", "most_wrong": "C", "human_count": 10885, "human_acc": 35.3789618741, "source": "2021下半年省考第二十七季行测模考大赛(甘肃卷)第84题", "difficulty": 7, "formulas": 0}], "categories": [["判断推理", "类比推理", "语义关系", "语义关系-近义关系"], ["判断推理", "类比推理", "语义关系", "语义-其他"]]}, {"id": 2365883, "material": "", "question": "2018年3月20日,第十三届全国人民代表大会第一次会议通过了《中华人民共和国监察法》。根据该法,以下关于监察工作的表述正确的是:\n\n①要坚持中国共产党对国家监察工作的领导\n\n②监察工作要坚持惩前毖后、治病救人和刚柔相济\n\n③监察机关对所有行使公权力的公职人员进行监察\n\n④监察工作要构建不敢腐、不能腐、不想腐的长效机制", "type": "单选题", "options": "A. ②④\nB. ①③\nC. ①③④\nD. ①②③④", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 11175, "human_acc": 69.2706935123, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第37题", "difficulty": 4, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 5394575, "material": "", "question": "2022年8月31日至9月5日,2022年中国国际服务贸易交易会在位于北京的国家会议中心和首钢园区举办,习近平主席致贺信。对此,下列说法错误的是(    )。", "type": "单选题", "options": "A. 中国服贸会是全球服务贸易领域规模最大的综合性展会\nB. 服贸会的永久口号是“全球服务 互惠共享”\nC. 服贸会是中国扩大开放、深化合作、引领创新的重要平台\nD. 本届服贸会的主题是“数字开启未来,服务促进发展”", "choice": "D", "keypoints": "时政", "most_wrong": "B", "human_count": 33192, "human_acc": 29.730055435, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第18题", "difficulty": 7, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 451101, "material": "", "question": "广东省司法厅对深圳市司法局的监督属于:", "type": "单选题", "options": "A. 职能监督\nB. 主管监督\nC. 司法监督\nD. 审计监督", "choice": "B", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 151068, "human_acc": 49.5756877697, "source": "2014年深圳市公务员录用考试《行测》题第9题", "difficulty": 6, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 2270883, "material": "", "question": "股份有限公司(    )。", "type": "多选题", "options": "A. 注册资本由等额股份构成\nB. 通过发行股票或债券来筹集资本\nC. 股东以其认购股份对公司承担无限责任\nD. 公司以其全部资产对公司债券承担有限责任", "choice": "ABD", "keypoints": "经济法", "most_wrong": "C", "human_count": 1021, "human_acc": 40.7443682664, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第112题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 44461, "material": "", "question": "下列可以分解为三个质数相乘的最小的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 105", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 178433, "human_acc": 62.964810321, "source": "2012年江苏省公务员录用考试《行测》题(B类)第90题", "difficulty": 5, "formulas": 0, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 4801487, "material": "", "question": "一个数有6个约数,其最小的3个约数之和为11,满足条件的所有数之和是多少?", "type": "单选题", "options": "A. 210\nB. 343\nC. 798\nD. 840", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 1577, "human_acc": 9.8287888396, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}, {"id": 13571, "material": "", "question": "将参与社会活动的108名学生平均分成若干小组,每组人数在8-30人之间,有多少种不同的分法:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 24574, "human_acc": 40.0016277366, "source": "2009年四川省公务员录用考试《行测》题(上半年)第10题", "difficulty": 5, "formulas": 0}, {"id": 9273, "material": "", "question": "整数64具有可被它的个位数字所整除的性质。\n\n试问在10和50之间有多少个整数具有这种性质?", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 18", "choice": "C", "keypoints": "公倍数与公约数问题", "most_wrong": "B", "human_count": 28057, "human_acc": 45.8994190398, "source": "2009年河南省公务员录用考试《行测》题第55题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"]]}, {"id": 2054188, "material": "", "question": "一条过圆心的铁丝把一个圆形铁环分成两个半圆周,在每个分点标上质数$m$;第二次用铁丝把两个半圆周的每一个分成两个相等的$\\frac{1}{4}$圆周,在新产生的分点标上相邻两数和的$\\frac{1}{2}$;第三次用铁丝把四个$\\frac{1}{4}$圆周的每一个分成两个相等的$\\frac{1}{8}$圆周,在新产生的分点标上相邻两数和的$\\frac{1}{3}$······如此进行了n次之后,铁环上的所有数字之和为6188,则m和n的值分别为(  )。", "type": "单选题", "options": "A. 2和80\nB. 3和70\nC. 5和60\nD. 7和50\nE. 11和40\nF. 13和30\nG. 17和20\nH. 19和10", "choice": "D", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 230586, "human_acc": 18.1095122861, "source": "2017年422联考《行测》题(陕西卷)第123题", "difficulty": 7, "formulas": 6, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 5307966, "material": "", "question": "小麦:粮食:被子植物", "type": "单选题", "options": "A. 老师:夫子:先生\nB. 群岛:半岛:列岛\nC. 菱形:平行四边形:四边形\nD. 三角钢琴:键盘乐器:击弦乐器", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "C", "human_count": 229535, "human_acc": 38.3427364019, "source": "2022下半年省考第十三季行测模考大赛(浙江C卷)第92题", "difficulty": 7, "formulas": 0, "history": [{"id": 2741980, "material": "", "question": "白鸽:母鸽:鸽", "type": "单选题", "options": "A. 柿饼:甜饼:饼\nB. 桃花:梨花:花\nC. 零售:网售:买\nD. 水桶:铁桶:桶", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1184474, "human_acc": 80.4456661776, "source": "2021年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第72题", "difficulty": 5, "formulas": 0}, {"id": 5408570, "material": "", "question": "四边形:矩形:菱形", "type": "单选题", "options": "A. 雄蕊:花药:花丝\nB. 固态:液态:气态\nC. 体裁:诗歌:散文\nD. 塑料:着色剂:稳定剂", "choice": "C", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1084353, "human_acc": 81.8456720275, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2188619, "material": "", "question": "扣子:西装:裤子", "type": "单选题", "options": "A. 鼠标:电脑:键盘\nB. 学生:青年:艺术家\nC. 窗帘:窗户:房子\nD. 方向盘:轿车:商务车", "choice": "D", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 1230062, "human_acc": 65.2997978964, "source": "2018年黑龙江省公务员考试(乡镇)题(网友回忆版)第85题", "difficulty": 5, "formulas": 0}, {"id": 4607741, "material": "", "question": "诗人:宋朝人:杜甫", "type": "单选题", "options": "A. 湖泊:海洋:西湖\nB. 液体:可燃物:酒精\nC. 书法家:哲学家:王羲之\nD. 运输:机翼:轮船", "choice": "C", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 6951, "human_acc": 48.9713710258, "source": "2021下半年省考第三十四季行测模考大赛(甘肃卷)第84题", "difficulty": 7, "formulas": 0}, {"id": 2741633, "material": "", "question": "天然气:气体:燃料", "type": "单选题", "options": "A. 读后感:感想:散文\nB. 量角器:圆规:文具\nC. 金银花:花卉:中药\nD. 互联网:网络:网站", "choice": "C", "keypoints": "逻辑关系-交叉关系;逻辑关系-包容关系", "most_wrong": "B", "human_count": 1195592, "human_acc": 94.37324773, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第64题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-交叉关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 4338859, "material": "", "question": "甲因犯盗窃罪在A地监狱服刑,其妻子乙住在B地,甲服刑前住在C地,甲、乙在D地结婚。乙欲提起离婚诉讼,应向(    )人民法院提起离婚诉讼。", "type": "单选题", "options": "A. A地\nB. B地\nC. C地\nD. D地", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "D", "human_count": 6152, "human_acc": 20.4973992198, "source": "2021下半年省考第二十三季行测模考大赛(湖南卷)第6题", "difficulty": 7, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 2456397, "material": "", "question": "9个人按1到9的顺序编号围坐在一起玩“数7”的游戏,从第1号开始依次报数,凡是报到7的倍数或者含有7的数字时,轮到的人都说“过”。当大家从1报到100时,几号说的“过”最少?", "type": "单选题", "options": "A. 5号\nB. 6号\nC. 7号\nD. 8号", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 28471, "human_acc": 24.9868287029, "source": "2020年度浙江省党政机关选调应届优秀大学毕业生《行测》题(网友回忆版)第6题", "difficulty": 4, "formulas": 0, "history": [{"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 2718068, "material": "", "question": "每周三和周五为文化馆活动日,甲每3天去一次文化馆、乙每5天去一次文化馆,7月1日周三这天两人同时去了文化馆,问7月份两人中有人去文化馆活动日的共多少天?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 60792, "human_acc": 46.0998157652, "source": "2020年下半年省考第十五季行测模考大赛(北京卷)第85题", "difficulty": 6, "formulas": 0}, {"id": 2948983, "material": "", "question": "某单位有值班人员甲、乙、丙、丁4人,每天安排1人值班,按照甲、乙、丙各值一天、丁值两天依次排班,本周一恰好是甲值班,问至少几周之后的周一至周四每天值班人员均不相同?", "type": "单选题", "options": "A. 5\nB. 4\nC. 3\nD. 2", "choice": "D", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 321401, "human_acc": 14.482842306, "source": "2022年国考第五季行测模考大赛(副省级)第67题", "difficulty": 7, "formulas": 0}, {"id": 2028394, "material": "", "question": "为维护办公环境,某办公室四人在工作日每天轮流打扫卫生,每周一打扫卫生的人给植物浇水。7月5日周五轮到小玲打扫卫生,下一次小玲给植物浇水是哪天?", "type": "单选题", "options": "A. 7月15日\nB. 7月22日\nC. 7月29日\nD. 8月5日", "choice": "C", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 1878396, "human_acc": 60.4374689895, "source": "2017年国家公务员录用考试《行测》题(地市级)第61题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"]]}, {"id": 2256418, "material": "", "question": "用6位数字表示日期,如170226表示的是2017年2月26日。如果用这种方法表示2019年的日期,则全年中六个数字都不相同的日期有多少天?", "type": "单选题", "options": "A. 12\nB. 24\nC. 30\nD. 36", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 23867, "human_acc": 50.1990195668, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第68题", "difficulty": 6, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 5074020, "material": "", "question": "真书:楷书:字体", "type": "单选题", "options": "A. 步辇:扁担:工具\nB. 会试:礼闱:考试\nC. 赔款:割地:侵略\nD. 起义:运动:革命", "choice": "B", "keypoints": "逻辑关系-全同关系;逻辑关系-包容关系", "most_wrong": "A", "human_count": 94849, "human_acc": 44.2956699596, "source": "2022下半年省考第一季行测模考大赛(安徽卷)第68题", "difficulty": 6, "formulas": 0, "history": [{"id": 3695, "material": "", "question": "上海:沪", "type": "单选题", "options": "A. 河南:豫\nB. 福建:鲁\nC. 江西:皖\nD. 河北:赣", "choice": "A", "keypoints": "逻辑关系-全同关系", "most_wrong": "C", "human_count": 24439, "human_acc": 83.0271287696, "source": "2008年贵州省公务员录用考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 3741, "material": "", "question": "鸟:翅膀", "type": "单选题", "options": "A. 羊:狗\nB. 鱼:鳍\nC. 蝉:知了\nD. 牛:草", "choice": "B", "keypoints": "逻辑关系-包容关系", "most_wrong": "C", "human_count": 29417, "human_acc": 97.9807594248, "source": "2008年贵州省公务员录用考试《行测》题第62题", "difficulty": 2, "formulas": 0}, {"id": 2036440, "material": "", "question": "儿童:孩子", "type": "单选题", "options": "A. 同学:朋友\nB. 兄长:哥哥\nC. 饭店:商场\nD. 玩具:游戏", "choice": "B", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 525257, "human_acc": 78.5295579117, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第49题", "difficulty": 5, "formulas": 0}, {"id": 2050480, "material": "", "question": "蛇:腿", "type": "单选题", "options": "A. 鸡:翅膀\nB. 狮:爪子\nC. 牛:尾巴\nD. 鲸:鱼鳃", "choice": "D", "keypoints": "逻辑关系-包容关系", "most_wrong": "B", "human_count": 719045, "human_acc": 91.7188771217, "source": "2017年422联考《行测》题(吉林卷乙级)第71题", "difficulty": 3, "formulas": 0}, {"id": 5112026, "material": "", "question": "墨鱼:乌贼", "type": "单选题", "options": "A. 蚱蜢:蝗虫\nB. 蜜蜂:黄蜂\nC. 知了:蝉\nD. 金龟子:天牛", "choice": "C", "keypoints": "逻辑关系-全同关系", "most_wrong": "A", "human_count": 220464, "human_acc": 71.7672726613, "source": "2022年河北省公务员录用考试《行测》题(网友回忆版)第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "类比推理", "逻辑关系", "逻辑关系-全同关系"], ["判断推理", "类比推理", "逻辑关系", "逻辑关系-包容关系"]]}, {"id": 4679882, "material": "", "question": "根据《劳动合同法》,下列关于特别规定的说法,错误的是(    )。", "type": "单选题", "options": "A. 企业职工一方与用人单位通过平等协商的方式就相关事项订立集体合同\nB. 劳动行政部门自收到集体合同文本之日起十五日内未提出异议的,集体合同即行生效\nC. 劳务派遣单位和用工单位应当向被派遣劳动者收取报名费、体检费等费用\nD. 非全日制用工双方当事人任何一方都可以随时通知对方终止用工", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 25834, "human_acc": 62.731284354, "source": "2022上半年省考第三季行测模考大赛(四川卷)第6题", "difficulty": 5, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 2456374, "material": "", "question": "箱子内有标号分别为1、2、3······25的25个乒乓球,问至少需要取出多少个乒乓球才能保证有两个的标号之差为6的倍数?", "type": "单选题", "options": "A. 6\nB. 7\nC. 9\nD. 10", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 241705, "human_acc": 59.2954221055, "source": "2020年度浙江省党政机关选调应届优秀大学毕业生《行测》题(网友回忆版)第2题", "difficulty": 4, "formulas": 0, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}, {"id": 21085, "material": "", "question": "有编号为1~13的卡片,每个编号有4张,共52张卡片。问至少摸出多少张,就可保证一定有3张卡片编号相连?", "type": "单选题", "options": "A. 27张\nB. 29张\nC. 33张\nD. 37张", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 297652, "human_acc": 26.7328961337, "source": "2012年浙江省公务员录用考试《行测》题第56题", "difficulty": 7, "formulas": 0}, {"id": 2021780, "material": "", "question": "有6种颜色的小球,数量分别为4,6,8,9,11,10,将它们放在一个盒子里,那么,拿到相同颜色的球最多需要的次数为:", "type": "单选题", "options": "A. 6\nB. 12\nC. 11\nD. 7", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 230605, "human_acc": 63.4201339954, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第94题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"]]}, {"id": 2731378, "material": "", "question": "有一座13.2万人口的城市,需要划分为11个投票区,任何一个区的人口不得超过其他区人口的$10\\%$,那么人口最少的地区可能有________人。", "type": "单选题", "options": "A. 9800\nB. 10500\nC. 10700\nD. 11000", "choice": "D", "keypoints": "构造数列", "most_wrong": "B", "human_count": 179423, "human_acc": 45.8976831287, "source": "2021年上海市公务员录用考试《行测》题(A类)(网友回忆版)第73题", "difficulty": 5, "formulas": 1, "history": [{"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 49329, "material": "", "question": "8名学生参加某项竞赛总得分是131分,已知最高分21分,每个人得分各不相同。则最低分为:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 5", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 323857, "human_acc": 60.7576800872, "source": "2013年江苏省公务员录用考试《行测》题(C类)第31题", "difficulty": 5, "formulas": 0}, {"id": 2264062, "material": "", "question": "假设七个相异正整数的平均数是17,中位数为20,则此七个正整数中的最大值可能为多少?", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "构造数列", "most_wrong": "C", "human_count": 8882, "human_acc": 58.5904075659, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第79题", "difficulty": 4, "formulas": 0}, {"id": 49169, "material": "", "question": "5名学生参加某学科竞赛,共得91分,已知每人得分各不相同且均为整数,且最高是21分,则最低分最低为:", "type": "单选题", "options": "A. 14\nB. 16\nC. 13\nD. 15", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 368572, "human_acc": 63.8995908533, "source": "2013年江苏省公务员录用考试《行测》题(A类)第27题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 4999706, "material": "", "question": "节日到来,单位发放水果福利,将相同的11箱苹果和9箱车厘子分给4个部门,要求每个部门至少分到2箱苹果和2箱车厘子。问一共有多少种不同的分配方法?", "type": "单选题", "options": "A. 60\nB. 80\nC. 100\nD. 120", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 278127, "human_acc": 45.8988160085, "source": "2022上半年省考第二十季行测模考大赛(北京卷)第74题", "difficulty": 7, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 1772334, "material": "", "question": "甲、乙二人同时上山砍柴,甲花6小时砍了一担柴,乙砍了一段时间后觉得刀比较钝,于是下山磨了一次刀,磨刀加上山下山共花了一个小时,磨完后效率提升了$50\\%$,总共也花费了6个小时砍了同样一担柴,如果甲、乙二人磨刀之前的效率是相同的,则乙磨刀之前已经砍了(  )个小时柴。", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "给效率比例型", "most_wrong": "B", "human_count": 338636, "human_acc": 68.3607177028, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第65题", "difficulty": 4, "formulas": 1, "history": [{"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 218787, "material": "", "question": "工程队计划150天完成建筑,现计划30天后新增设备,提高20%工作效率,可以提前几天完成:", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 45", "choice": "A", "keypoints": "给效率比例型", "most_wrong": "B", "human_count": 152130, "human_acc": 76.3623216985, "source": "2012年深圳市公务员录用考试《行测》题(上半年)第48题", "difficulty": 4, "formulas": 0}, {"id": 48217, "material": "", "question": "一项工程计划300天完工,开工100天后,由于施工人员减少,工作效率下降20%,问完成该工程比原计划推迟了多少天?", "type": "单选题", "options": "A. 40\nB. 50\nC. 60\nD. 70", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 186125, "human_acc": 79.400402955, "source": "2013年天津市公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2033314, "material": "", "question": "某农场原有300人,存储的粮食够吃80天。现调入若干人员,储存的粮食实际上只吃了60天,问实际上调入了多少人?", "type": "单选题", "options": "A. 100\nB. 200\nC. 300\nD. 400", "choice": "A", "keypoints": "给效率比例型", "most_wrong": "B", "human_count": 672021, "human_acc": 71.6196368863, "source": "2016年河南省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给效率比例型"]]}, {"id": 2343407, "material": "", "question": "国家公职人员如果没有底线思维,就不能做到严格自律。而只有不忘初心,才能始终保持底线思维。也只有始终坚守理想,才能不忘初心。根据以上信息可以得出:", "type": "单选题", "options": "A. 如果不能做到严格自律,就会丧失底线思维\nB. 公职人员只有不忘初心,才能做到严格自律\nC. 只有始终坚守理想信念,才能做到严格自律\nD. 公职人员只要不忘初心,就能做到严格自律", "choice": "B", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 28403, "human_acc": 60.1978664226, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第41题", "difficulty": 6, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 4658611, "material": "", "question": "某项工程,甲、乙、丙三个工程队如单独施工,分别需要12小时、10小时和8小时完成。现按“甲—乙—丙—甲······”的顺序让三个工程队轮班,每队施工1小时后换班,问该工程完成时,甲工程队的施工时间共计:", "type": "单选题", "options": "A. 2小时54分\nB. 3小时\nC. 3小时54分\nD. 4小时", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 652008, "human_acc": 71.013085729, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第51题", "difficulty": 4, "formulas": 0, "history": [{"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 5867, "material": "", "question": "一个游泳池,甲管注满水需6小时,甲、乙两管同时注水,注满要4小时。如果只用乙管注水,那么注满水需多少小时:", "type": "单选题", "options": "A. 14\nB. 12\nC. 10\nD. 8", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 127732, "human_acc": 87.2490840197, "source": "2008年河南省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}, {"id": 3431, "material": "", "question": "要折叠一批纸飞机,若甲单独折叠要半个小时完成,乙单独折叠需要45分钟完成。若两人一起折,需要多少分钟完成:", "type": "单选题", "options": "A. 10\nB. 15\nC. 16\nD. 18", "choice": "D", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 59989, "human_acc": 76.2139725616, "source": "2008年广东省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 49325, "material": "", "question": "一项工程,甲、乙合作16天完成,乙、丙合作12天完成,丙、丁合作16天完成,如果甲、丁合作完成这项工程需要多少天:", "type": "单选题", "options": "A. 21\nB. 24\nC. 26\nD. 27", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "A", "human_count": 368874, "human_acc": 77.7297939134, "source": "2013年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"]]}, {"id": 5510268, "material": "", "question": "自其变者而观之,则天地没有一瞬间不会发生变化。历史已经不属于这片天地,所以历史是永恒不变的。\n\n以下选项的逻辑结构与题干最为相似的是(    )。", "type": "单选题", "options": "A. 玫瑰是红色的,这朵花是白色的,所以这朵花不是玫瑰\nB. 羊都是有角的,被锯掉角的羊没有角,所以被锯掉角的羊不再是羊\nC. 地球是行星,有自己的卫星,火星是行星,所以火星也有自己的卫星\nD. 有明确奋斗目标的人都是幸福的,他没有明确的奋斗目标,所以他不幸福", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 375137, "human_acc": 55.3832333254, "source": "2023年广东省公务员录用考试《行测》题(县级卷)(网友回忆版)第64题", "difficulty": 5, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 5742916, "material": "", "question": "某单位需要在10月1号至6号每天安排小张、小王、小李、小赵中的一人值班,每人至少需要值班1天。要求小张连续值班3天,小王不在1号值班,则共有多少种不同的安排方式?", "type": "单选题", "options": "A. 16\nB. 17\nC. 18\nD. 19", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 25742, "human_acc": 56.4330665838, "source": "2023下半年省考第二十季行测模考大赛(北京卷)第79题", "difficulty": 5, "formulas": 0, "history": [{"id": 2261761, "material": "", "question": "4名学生和2名教师排成一排照相,2名教师不在两端且要相邻的排法共有多少种?", "type": "单选题", "options": "A. 72\nB. 108\nC. 144\nD. 288", "choice": "C", "keypoints": "相邻问题", "most_wrong": "D", "human_count": 22905, "human_acc": 71.0849159572, "source": "2017年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 8099, "material": "", "question": "3名学生和2名老师站成一排照相,2名老师必须站在一起且不在边上的不同排法共有:", "type": "单选题", "options": "A. 12种\nB. 24种\nC. 36种\nD. 48种", "choice": "B", "keypoints": "相邻问题", "most_wrong": "A", "human_count": 142697, "human_acc": 66.8682593187, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第8题", "difficulty": 5, "formulas": 0}, {"id": 455201, "material": "", "question": "四对情侣排成一队买演唱会门票,已知每对情侣必须排在一起,问共有多少种不同的排队顺序:", "type": "单选题", "options": "A. 24\nB. 96\nC. 384\nD. 40320", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 454303, "human_acc": 64.360569928, "source": "2014年浙江省公务员录用考试《行测》题(B类)第47题", "difficulty": 5, "formulas": 0}, {"id": 5647201, "material": "", "question": "壮壮给平板电脑设置了仅由数字5和6组成的六位数密码,且其中恰好有连续三位数字都是6。则壮壮设置的密码有多少种可能?", "type": "单选题", "options": "A. 10\nB. 9\nC. 12\nD. 11", "choice": "C", "keypoints": "相邻问题", "most_wrong": "B", "human_count": 50144, "human_acc": 54.2756860243, "source": "2023下半年省考第十二季行测模考大赛(广东县级卷)第40题", "difficulty": 6, "formulas": 0}, {"id": 5365372, "material": "", "question": "春节期间,单位安排甲、乙、丙三人在初一到初六值班,要求每人值班两天,且甲必须连续两天值班,则共有多少种值班方案?", "type": "单选题", "options": "A. 30\nB. 60\nC. 120\nD. 240", "choice": "A", "keypoints": "相邻问题", "most_wrong": "C", "human_count": 11719, "human_acc": 20.0870381432, "source": "2022下半年省考第十八季行测模考大赛(浙江C卷)第66题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "相邻问题"]]}, {"id": 4670399, "material": "", "question": "在公铁两用大桥的同一点,一列火车开始匀速驶上大桥,与此同时,甲汽车以20米/秒的速度驶上大桥,乙汽车以15米/秒的速度驶出大桥。8秒后,乙汽车到达火车的车尾;再经过28秒,甲汽车和火车同时完全驶出大桥。问火车的长度是多少米?(不计甲、乙汽车的长度,且汽车和火车速度均保持不变)", "type": "单选题", "options": "A. 720\nB. 320\nC. 360\nD. 400", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 214250, "human_acc": 51.731621937, "source": "2022上半年省考第一季行测模考大赛(四川卷)第48题", "difficulty": 6, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 4629982, "material": "", "question": "王和张现在是同小区的邻居,3年之后,王比张年龄的3倍少2岁,再过5年王比张年龄的两倍多五岁,再在此基础上过10年王的年龄是多少岁?", "type": "单选题", "options": "A. 31\nB. 34\nC. 39\nD. 49", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 275118, "human_acc": 53.349471863, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第57题", "difficulty": 3, "formulas": 0, "history": [{"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 4517, "material": "", "question": "父亲今年44岁,儿子今年16岁,当父亲的年龄是儿子的年龄的8倍时,父子的年龄和是多少岁:", "type": "单选题", "options": "A. 36\nB. 54\nC. 99\nD. 162", "choice": "A", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 16717, "human_acc": 79.8408805408, "source": "2009年北京市公务员录用考试《行测》题(社招)第17题", "difficulty": 5, "formulas": 0}, {"id": 5185, "material": "", "question": "哥哥5年后的年龄和弟弟3年前的年龄和是29岁,弟弟现在的年龄是两人年龄差的4倍。哥哥今年几岁?", "type": "单选题", "options": "A. 10\nB. 12\nC. 15\nD. 18", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 30233, "human_acc": 80.4551318096, "source": "2009年北京市公务员录用考试《行测》题(应届)第24题", "difficulty": 4, "formulas": 0}, {"id": 8161, "material": "", "question": "父亲与两个儿子的年龄和为84岁,12年后父亲的年龄等于两个儿子的年龄之和,请问父亲现在多少岁:", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 60", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 51483, "human_acc": 74.1837111279, "source": "2009年广东省公务员录用考试《行测》题第14题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "年龄问题"]]}, {"id": 4490788, "material": "", "question": "某足球队有23名队员,某次比赛结束后,所有队员与4名教练一起站成两排合影留念。4名教练站在第一排正中间的位置,第二排比第一排少1人,队员中小王和小陈不能左右相邻,则小王和小陈二人的站位可有多少种情况?", "type": "单选题", "options": "A. 130\nB. 260\nC. 466\nD. 932", "choice": "C", "keypoints": "不相邻问题", "most_wrong": "B", "human_count": 185519, "human_acc": 50.9451862073, "source": "2021下半年省考第二十七季行测模考大赛(深圳卷)第50题", "difficulty": 6, "formulas": 0, "history": [{"id": 8039, "material": "", "question": "将三盆同样的红花和四盆同样的黄花摆放成一排,要求三盆红花互不相邻,共有多少种不同的方法:", "type": "单选题", "options": "A. 8\nB. 10\nC. 15\nD. 20", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 110402, "human_acc": 65.6038839876, "source": "2009年黑龙江省公务员录用考试《行测》题(A、B类)第13题", "difficulty": 5, "formulas": 0}, {"id": 2365993, "material": "", "question": "因电路改造,电力公司计划未来十天对某小区选择三天停电,要求不能连续两天停电,则共有多少种停电方案?", "type": "单选题", "options": "A. 35\nB. 56\nC. 84\nD. 120", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 18278, "human_acc": 46.2632673159, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第94题", "difficulty": 6, "formulas": 0}, {"id": 1587229, "material": "", "question": "小区内空着一排相邻的8个车位,现有4辆车随机停进车位,恰好没有连续空位的停车方式共有多少种?", "type": "单选题", "options": "A. 48\nB. 120\nC. 360\nD. 1440", "choice": "B", "keypoints": "不相邻问题", "most_wrong": "A", "human_count": 252761, "human_acc": 39.8712617848, "source": "2015年黑龙江省公务员录用考试《行测》题(公检法卷)第67题", "difficulty": 6, "formulas": 0}, {"id": 5483972, "material": "", "question": "某车库有10个并排的车位,有3辆不同的车要停进这10个车位之中,而且彼此不能相邻,则有多少种不同的停放方法?", "type": "单选题", "options": "A. 336\nB. 246\nC. 156\nD. 66", "choice": "A", "keypoints": "不相邻问题", "most_wrong": "B", "human_count": 25608, "human_acc": 19.9429865667, "source": "2023年北京市公务员录用考试《行测》题(网友回忆版)第78题", "difficulty": 4, "formulas": 0}, {"id": 2042510, "material": "", "question": "两公司为召开联欢晚会,分别编排了3个和2个节目,要求同一公司的节目不能连续出场,则安排节目出场顺序的方案共有:", "type": "单选题", "options": "A. 12种\nB. 18种\nC. 24种\nD. 30种", "choice": "A", "keypoints": "不相邻问题", "most_wrong": "C", "human_count": 528474, "human_acc": 63.2664993926, "source": "2017年江苏省公务员录用考试《行测》题(C类)第64题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"]]}, {"id": 1688486, "material": "", "question": "软瘾是指那些强迫性的习惯、行为或回复性的情绪。它不涉及任何具有直接生物效应的物质,而是以某些有强烈心理和行为效应的现象为基础。下列不属于软瘾现象的是(  )。", "type": "单选题", "options": "A. 小张由于频繁而毫无节制地刷卡购物,陷入了财政危机\nB. 小周习惯于喝止咳糖浆,如果没喝就觉得浑身不自在\nC. 小郑沉迷于看韩剧并在生活中不时模仿,影响了夫妻关系\nD. 小王老把自己迷恋的养生知识发到朋友圈,引起朋友反感", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 85154, "human_acc": 37.4838527844, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第73题", "difficulty": 5, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 1688534, "material": "", "question": "某项工程由甲、乙、丙三个工程队负责施工,他们将工程总量等额分成了三份同时开始施工。当乙队完成了自己任务的一半时,甲队派出一半的人力加入丙队工作。最后三队同时完成任务,则甲、乙、丙三队的施工速度比为:", "type": "单选题", "options": "A. 3:2:1\nB. 4:2:1\nC. 4:3:2\nD. 6:3:2", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 113668, "human_acc": 52.3146356054, "source": "2015年9月政法干警联考《行政职业能力测验》试卷(专科整理版)第61题", "difficulty": 5, "formulas": 0, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 5391739, "material": "", "question": "老张平时从家步行去公司上班,全程花费24分钟。某日老张从家出发,步行3分钟后收到会议消息,立刻改骑共享单车,5分钟后到达公司。问老张骑行速度比步行快几倍?(查看消息的时间忽略不计)", "type": "单选题", "options": "A. 3.2\nB. 4.2\nC. 3\nD. 2", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 69556, "human_acc": 21.8586462706, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第83题", "difficulty": 7, "formulas": 0, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 2367964, "material": "", "question": "逆城镇化:指由于工作、生活、环境等原因,城市居民主动从城区流向郊区或农村生活的现象。\n\n下列属于逆城镇化的是:", "type": "单选题", "options": "A. 市民李先生在市中心工作生活多年,去年跳槽到郊区一家企业,并在单位附近买了一套房,感觉工作生活十分方便\nB. 随着业务量扩大,某物流企业的库房不能满足业务需要,在城里另租场地成本太高,公司在租金较低的农村租用了一处大型库房\nC. 近年来,因为城里交通拥堵,压力太大,不少城市白领纷纷到周边乡村度假,享受田园生活的乐趣\nD. 由于编制体制调整,林女士的丈夫从大城市换防到千里之外的戈壁滩,为了支持丈夫工作,林女士打算带着儿子到新的驻地附近安家", "choice": "A", "keypoints": "原因结果", "most_wrong": "D", "human_count": 825644, "human_acc": 75.3327099815, "source": "2019年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第108题", "difficulty": 4, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 5721894, "material": "", "question": "某视频APP随机选取125名用户进行问卷调查,问卷回收率为80%。问卷调查结果显示:调查对象中喜欢看综艺的有87人,喜欢看动漫的有55人,喜欢看电影的有71人,则参与本次问卷调查的用户中三种都喜欢看的至少有多少人?", "type": "单选题", "options": "A. 13\nB. 18\nC. 25\nD. 37", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 22968, "human_acc": 16.5229885057, "source": "2023下半年省考第十八季行测模考大赛(北京卷)第77题", "difficulty": 7, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 5600638, "material": "", "question": "某小区临街5个相邻的商铺准备出租给A、B、C、D、E5个不同的租户。租户要求:A不在第1家,B、C必须相邻,D、E不相邻,则共有多少种不同的安排方式?", "type": "单选题", "options": "A. 16\nB. 20\nC. 24\nD. 32", "choice": "B", "keypoints": "不相邻问题;相邻问题", "most_wrong": "C", "human_count": 43168, "human_acc": 38.9316160119, "source": "2023下半年省考第七季行测模考大赛(广东县级卷)第40题", "difficulty": 7, "formulas": 0, "history": [{"id": 5730459, "material": "", "question": "三位作家和三位画家随机站成一排合影留念,则在任意两位作家之间最多有一位画家的站法有多少种?", "type": "单选题", "options": "A. 144\nB. 288\nC. 360\nD. 432", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 104417, "human_acc": 40.9138358696, "source": "2023下半年省考第十九季行测模考大赛(四川卷)第50题", "difficulty": 6, "formulas": 0}, {"id": 2819560, "material": "", "question": "现将奥运会吉祥物五个福娃排成一列,要求贝贝和晶晶必须相邻,但迎迎和妮妮不相邻,那么共有多少种排列方式?", "type": "单选题", "options": "A. 72\nB. 48\nC. 24\nD. 12", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 223456, "human_acc": 50.8471466418, "source": "2022年国考第二季行测模考大赛(副省级)第70题", "difficulty": 6, "formulas": 0}, {"id": 5460817, "material": "", "question": "某班级有2名男生和3名女生参演校元旦晚会,每人表演一个节目。要求3名女生中有且仅有2名女生的节目能够相邻,问有多少种不同的节目表演顺序?", "type": "单选题", "options": "A. 24\nB. 48\nC. 72\nD. 144", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 379521, "human_acc": 43.9121945821, "source": "2023上半年省考第六季行测模考大赛(深圳卷)第53题", "difficulty": 6, "formulas": 0}, {"id": 2047800, "material": "", "question": "单位工会组织拔河比赛,每支参赛队都由3名男职工和3名女职工组成。假设比赛时要求3名男职工的站位不能全部连在一起,则每支队伍有几种不同的站位方式?", "type": "单选题", "options": "A. 432\nB. 504\nC. 576\nD. 720", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 903875, "human_acc": 61.125708754, "source": "2016年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 5301575, "material": "", "question": "有一排8个连续的空车位,甲、乙两辆车停在不连续的2个空车位中,又来了3辆车停在连续的3个空车位中,问5辆车停好后没有连续空车位且最多有3辆车连续的情况有多少种?", "type": "单选题", "options": "A. 12\nB. 24\nC. 72\nD. 80", "choice": "C", "keypoints": "不相邻问题;相邻问题", "most_wrong": "B", "human_count": 186772, "human_acc": 44.3337331077, "source": "2022下半年省考第十二季行测模考大赛(深圳卷)第54题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "不相邻问题"], ["数量关系", "数学运算", "排列组合问题", "相邻问题"]]}, {"id": 24639, "material": "", "question": "斯德哥尔摩综合症是指被害者被犯罪者控制一段时间后,对犯罪者产生情感,甚至反过来帮助犯罪者的一种情绪。\n\n根据上述定义,下列表述不属于斯德哥尔摩综合症的是:", "type": "单选题", "options": "A. 某银行职员被歹徒劫持数日,获救后在歹徒服刑期间与其订婚\nB. 某甲入户行窃时被主人乙发现,甲持刀威胁乙并逼问其银行卡密码,在对峙中甲被乙制服。乙得知甲因急需大笔钱给母亲治病后深感同情,放走甲并给其一笔钱\nC. 某年轻姑娘被绑架数年,受尽虐待,侥幸逃离后却不愿报案,并一直和绑架者保持联系\nD. 甲男以找工作为诱饵,将乙女骗至家乡。乙女几次试图逃脱都未成功,在生了孩子之后便安心在当地生活,并协助甲男从事拐卖人口的活动", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 45476, "human_acc": 57.9866303105, "source": "2010年福建省公务员录用考试《行测》题(春季)第68题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5543, "material": "", "question": "行为罚亦称能力罚,是行政主体对违反行政法律规范的行政相对方所采取的限制或剥夺其特定行为能力或资格的一种处罚措施。\n\n下列属于行为罚的是:", "type": "单选题", "options": "A. 行政拘留\nB. 没收财物\nC. 吊销营业执照\nD. 劳动教养", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 14256, "human_acc": 70.8543771044, "source": "2009年北京市公务员录用考试《行测》题(应届)第54题", "difficulty": 5, "formulas": 0}, {"id": 1163, "material": "", "question": "产权是指主体对物的排他性权利,它的本质是人们在社会中发生的对劳动成果的权利。\n\n根据以上定义,下列不属于产权的是:", "type": "单选题", "options": "A. 所有权、占有权\nB. 收益权、转让权\nC. 劳动选择权、劳动交换转让权\nD. 支配权、使用权", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 32630, "human_acc": 82.7152926755, "source": "2008年山东省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2452831, "material": "", "question": "应激性是指生物对外来刺激(如温度、声音)在短时间内所做出的反应。\n\n根据上述定义,以下属于应激性的是:", "type": "单选题", "options": "A. 篮球触地后高高弹起\nB. 含羞草被碰触后叶子收缩\nC. 鲜牛奶常温放置24小时后发酸\nD. 纸张遇到明火燃烧", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 107843, "human_acc": 94.2314290218, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 19327, "material": "", "question": "四位厨师聚餐时各做了一道拿手菜。现在要求每个人去品尝一道菜,但不能尝自己做的那道菜。问共有几种不同的尝法?", "type": "单选题", "options": "A. 6种\nB. 9种\nC. 12种\nD. 15种", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 99939, "human_acc": 51.6815257307, "source": "2011年浙江省公务员录用考试《行测》题第50题", "difficulty": 5, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 2004684, "material": "", "question": "目前,一种叫做“驾驶员警报器”的产品被开发出来,计划在12个月内投入市场。它可能使因驾驶疲劳而导致交通事故的风险降低20%-40%。从这段文章可以推导出,“驾驶员警报器”(    )。", "type": "单选题", "options": "A. 是为了降低因疲劳而导致的交通事故\nB. 是为了阻止司机打瞌睡\nC. 已经通过实验测试\nD. 已经销售了12个月", "choice": "A", "keypoints": "实词", "most_wrong": "C", "human_count": 4360, "human_acc": 87.7064220183, "source": "2008年湖北省公务员录用考试《行测》题(A类)第14题", "difficulty": 5, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2621392, "material": "", "question": "某公司开展读书活动,公司为员工提供不同种类的书籍。已知:所有选择文化类书籍的员工都选择了历史类书籍;所有选择社会科学类书籍的员工都没有选择历史类书籍;选择法律类书籍的员工也都选择了社会科学类书籍;而没有选择法律类书籍的员工也都没有选择哲学类书籍。\n\n如果上述信息为真,则以下哪项一定为真?", "type": "单选题", "options": "A. 有些选择历史类书籍的员工没有选择文化类书籍\nB. 有些没有选择文化类书籍的员工选择了社会科学类书籍\nC. 有些选择法律类书籍的员工没有选择哲学类书籍\nD. 所有选择文化类书籍的员工都选择了哲学类书籍", "choice": "B", "keypoints": "集合推理", "most_wrong": "C", "human_count": 23998, "human_acc": 44.5370447537, "source": "2020年下半年省考第三季行测模考大赛(江苏卷)第94题", "difficulty": 6, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 2191, "material": "", "question": "有人断言:“近日股市可能会上涨。”\n\n下列哪项判断的意思和该人判断最为相近?", "type": "单选题", "options": "A. 近日股市必然上涨\nB. 近日股市必然不上涨\nC. 近日股市必然下跌\nD. 近日股市不必然不上涨", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 26933, "human_acc": 92.421935915, "source": "2008年江苏省公务员录用考试《行测》题(C类)第47题", "difficulty": 5, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 2066200, "material": "", "question": "错觉是一种视觉误差,是人们观察物体时,由于物体受到形、光、色的干扰,加上人们生理、心理原因而误认物象,会产生与实际不符的判断。\n\n根据上述定义,下列不属于错觉的是:", "type": "单选题", "options": "A. 一个突然失去儿子的母亲,有时觉得自己看到了儿子的身影\nB. 坐在行驶的火车上看车窗外的树木时,会以为树木在移动\nC. 身材偏胖的人穿竖条纹服装会显得苗条一些\nD. 杯弓蛇影", "choice": "A", "keypoints": "拆词", "most_wrong": "B", "human_count": 44008, "human_acc": 47.2777676786, "source": "2015年甘肃省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 5440790, "material": "", "question": "某次竞赛共设置了10个单选题,其中4个历史题、3个地理题、3个政治题。每题均有4个选项,答对1题可得2分,不答或答错1题均倒扣1分。假如选手小明10个题都答了,且历史题都能选出正确选项,地理题每题只能排除2个错误选项,政治题每题只能排除1个错误选项,那么小明最终成绩为17分的概率为:", "type": "单选题", "options": "A. $\\frac{1}{72}$\nB. $\\frac{1}{36}$\nC. $\\frac{1}{24}$\nD. $\\frac{1}{12}$", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 54940, "human_acc": 43.5074626866, "source": "2023上半年省考第三季行测模考大赛(北京卷)第83题", "difficulty": 6, "formulas": 418, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 2448538, "material": "", "question": "斑头雁在飞行中有一个特点,就是它们经常以某种队形来飞,通常是后面的鸟飞在前一只鸟的侧后方,因此就有了常见的“人”字形队形。一些研究者认为这一队形可减小空气阻力、降低飞行能耗,然而反对者认为如果是为了减小阻力,鸟更应该选择直线的队形,因为一个紧跟一个飞行能最大程度地减小跟随者需要克服的空气阻力。\n\n以下哪项如果为真,最能质疑反对者的结论?", "type": "单选题", "options": "A. 飞行过程中,领头雁会不时地与后方同伴换位,否则它们很容易精疲力尽\nB. 斑头雁飞行时偏移于前面的同伴,虽不能最大限度减小空气阻力,但能极大地减少上升时所需的体能消耗\nC. 斑头雁在飞行时会有确定方向的需求,所以并不会一直排成“人”字形飞行\nD. 速滑比赛中,运动员常以“人”字形前进,一名运动员在前,另外三名紧随其后,后三名队员因阻力变小而受益", "choice": "B", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 1752991, "human_acc": 52.5277654021, "source": "2020年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 5, "formulas": 0, "history": [{"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 586205, "material": "", "question": "一个老人告诉医生,说他的右腿疼,医生说:“这是上了年纪的缘故。”\n\n以下最能反驳医生说法的是:", "type": "单选题", "options": "A. 老人年轻的时候右腿也疼\nB. 比老人年纪小的人腿也疼\nC. 比老人年纪大的人腿不疼\nD. 老人现在左腿不疼", "choice": "A", "keypoints": "削弱论点", "most_wrong": "C", "human_count": 304321, "human_acc": 75.76210646, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第85题", "difficulty": 5, "formulas": 0}, {"id": 1324939, "material": "", "question": "海水经过海水淡化技术的处理可变成淡水,而海水的量是极其巨大的。因此,无须节约使用淡水资源。最能质疑上述结论的是:", "type": "单选题", "options": "A. 近海海水的污染比较严重\nB. 海水淡化成本高昂\nC. 冰川水储量巨大,可替代海水淡化\nD. 地球上的水资源总量是恒定的", "choice": "B", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 642943, "human_acc": 59.8899124806, "source": "2015年广东省公务员录用考试《行测》题(县级以上)第58题", "difficulty": 5, "formulas": 0}, {"id": 1324965, "material": "", "question": "据统计,和去年相比,今年1月以来流感患者的数量有明显的下降。这得益于新型特效药的发明和投入使用。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 2月份为流感的高发期\nB. 流感患者很少到医院去治疗\nC. 流感病毒具有抗药性\nD. 新型特效药定价高,患者使用少", "choice": "D", "keypoints": "削弱论点", "most_wrong": "A", "human_count": 712250, "human_acc": 66.1293085293, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第56题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 764299, "material": "", "question": "一艘船往返于甲乙两港口之间,已知水速为8千米/时,该船从甲到乙需6小时,从乙返回甲需9小时,问甲乙两港口的距离为多少千米:", "type": "单选题", "options": "A. 216\nB. 256\nC. 288\nD. 196", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 195596, "human_acc": 73.7075400315, "source": "2014年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 4, "formulas": 0, "history": [{"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1679372, "material": "", "question": "两艘船相对划行,一船从A到B顺水,一船从B到A逆水,结果所用时间相同(假设水流速、行船速恒定,快船速是慢船速2倍)。则慢船速是水流速的几倍?", "type": "单选题", "options": "A. 1\nB. 4\nC. 3\nD. 2​", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 307203, "human_acc": 65.1679833856, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第92题", "difficulty": 5, "formulas": 0}, {"id": 44089, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要几天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 93842, "human_acc": 76.8600413461, "source": "2012年上海市公务员录用考试《行测》题(A类)第60题", "difficulty": 5, "formulas": 0}, {"id": 43449, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要多少天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 73831, "human_acc": 77.2223049938, "source": "2012年上海市公务员录用考试《行测》题(B类)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 44999, "material": "", "question": "某军训部队到打靶场进行射击训练,队员甲每次射击的命中率为50%,队员乙每次射击的命中率为80%,教练规定今天的训练规则是,每个队员射击直到击中一靶一次则停止射击,则队员甲今天平均射击次数为:", "type": "单选题", "options": "A. 2次\nB. 1.25次\nC. 2.5次\nD. 1.5次", "choice": "A", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 150821, "human_acc": 39.6715311528, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第7题", "difficulty": 5, "formulas": 0, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 19397, "material": "", "question": "静脉产业指运用先进的技术,将生产和消费过程中产生的废物转化为可重新利用的资源和产品,实现各类废物的再利用和资源化的产业,如同人体血液循环中的静脉一样。\n下列不属于静脉产业的是:", "type": "单选题", "options": "A. 某企业用“资源—产品—废弃物”的经济模式开采原生自然资源,并注重资源利用,关注经济系统对自然生态系统的影响\nB. 德国的绿点公司负责社区黄色垃圾箱和垃圾袋中垃圾的收集、分类、回收和再利用,处理费用由获得“绿点”标志认证的企业或销售商支付\nC. 某企业规定,生产者对其产品的整个生命周期负责,并明确废弃物的管理原则,避免产生—循环使用—最终处置\nD. 当今,世界发展遇到两个共同难题:垃圾过剩和资源短缺。变废为宝是解决的有效途径,如某企业利用花生壳生产夹板作为建材,具有较好的抗震效果", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 60381, "human_acc": 47.1125022772, "source": "2011年江苏省公务员录用考试《行测》题(A类)第74题", "difficulty": 6, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 4981965, "material": "", "question": "痛风本质上是一种代谢紊乱的疾病,主要与体内嘌呤代谢紊乱、尿酸排泄减少所致的高尿酸血症直接相关。而人体内的尿酸有内源性和外源性两种,其中80%的尿酸是内源性的,因此假如没有解决好代谢的问题,那么忌口也无法减少内源性的尿酸。其次,尿酸主要靠肠道和肾脏进行排泄,其中最重要的是依靠肾脏,因此尿酸高的核心问题在于代谢、排泄出了问题。这就是许多患者忌口了,但痛风依然频繁发作或尿酸居高不下的原因。\n\n下列说法与文意不符的是:", "type": "单选题", "options": "A. 忌口对痛风患者来说毫无作用\nB. 代谢和排泄紊乱导致尿酸偏高\nC. 人体外源性尿酸只有一小部分\nD. 尿酸主要由肾脏以及肠道排出", "choice": "A", "keypoints": "细节判断题", "most_wrong": "B", "human_count": 61221, "human_acc": 89.9282925793, "source": "2022上半年省考第十九季行测模考大赛(山西卷)第58题", "difficulty": 3, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 2385090, "material": "", "question": "小孟驾驶汽车沿一条笔直公路匀速行驶。某一时刻,小孟先看到路边的第一个里程碑,上面刻的公里数X为两位数。半小时后,他又看到第二个里程碑,上面刻的公里数Y恰好由X的十位数和个位数交换位置所成。又过了半小时,他看到第三个里程碑,上面刻的公里数Z恰好由X的两位数中间添一个0所成。再过一小时,小孟自看到第一个里程碑起共驾驶了(  )公里。", "type": "单选题", "options": "A. 120\nB. 150\nC. 180\nD. 200", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 68461, "human_acc": 58.6041687968, "source": "2019深圳市公务员录用考试《行测》题(网友回忆版)第51题", "difficulty": 5, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 5102598, "material": "", "question": "研究人员招募150名被试参与研究并将其分为两组,每组被试随机收到一个关于A公司形象的介绍材料,温暖型品牌材料为:A品牌为了进一步保持竞争力,常年致力于慈善事业,传达关爱的理念;效能型品牌的材料为:A品牌为了进一步保持竞争力,一直致力于新工艺和新技术的研发。两组被试分别阅读A品牌公司设计的怀旧广告文案与非怀旧广告文案,并填写广告口碑传播测量量表。结果表明,温暖型的品牌形象采用怀旧广告时需谨慎。\n\n以下哪项如果为真,能够支持上述结论?", "type": "单选题", "options": "A. 越来越多的企业选择打“感情牌”,采用怀旧型情感广告策略拉近和消费者之间的距离,促进品牌传播\nB. 温暖型品牌的怀旧广告降低了消费者的孤独感,消费者不用寻求社交联系来排解孤独,因此可能更少地使用社交网络展示产品\nC. 消费者对怀旧广告会产生品牌历史感的感知,悠久的历史可以让消费者更加信任该品牌\nD. 对于效能型品牌,消费者对怀旧广告的感知更偏理性,怀旧广告会促进消费者的口碑传播", "choice": "B", "keypoints": "补充论据", "most_wrong": "D", "human_count": 896071, "human_acc": 68.8334964528, "source": "2022年天津市公务员录用考试《行测》试题(网友回忆版)第69题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 1723420, "material": "", "question": "某研究员认为,人类语言最初直接来源于鸟类和灵长类。因为如果重新审视现代人类语言,我们可以看到人类的相互交流是如何从鸟类和其他灵长类古老的交流模式系统演化而来的。他宣称,从鸟类身上,我们获得了语言的旋律部分;从其他灵长类身上,我们获得了语言的实用性内容部分。在过去10万年里的某个时候,这些能力最终演化成我们今天所知的人类语言。\n\n上述结论还需基于以下哪一前提?", "type": "单选题", "options": "A. 人类的交流与其他动物的交流之间的相似度比我们一般认为的要多\nB. 人类语言包含两个不同层面:与句子可变结构相关的表达层面以及表达句子核心内容的词汇层面\nC. 人类语言的交流在过去和现在变化不大\nD. 鸟类和除人类以外的其他哺乳动物有自己的交流语言", "choice": "B", "keypoints": "搭桥", "most_wrong": "C", "human_count": 500465, "human_acc": 38.0743908165, "source": "2015年河南省公务员录用考试《行测》题第73题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2377142, "material": "", "question": "假设“如果张楠和林枫不是志愿者,那么杨梅是志愿者”是前提,“林枫是志愿者”为结论。\n\n那么,下列各项中,是其必要前提的是:", "type": "单选题", "options": "A. 张楠是志愿者\nB. 杨梅不是志愿者\nC. 杨梅和张楠都是志愿者\nD. 杨梅和张楠都不是志愿者", "choice": "D", "keypoints": "搭桥", "most_wrong": "B", "human_count": 1547257, "human_acc": 57.6758095132, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2387377, "material": "", "question": "有报道称,已婚者一般比独身者寿命长,所以独身的压力一定对健康有损耗。\n\n以下哪项如果为真,最能支持上述论证?", "type": "单选题", "options": "A. 独身者寿命短于同龄已婚者\nB. 独身者会比已婚者的压力更大\nC. 已婚者寿命不尽相同\nD. 人的寿命受多种因素影响", "choice": "B", "keypoints": "搭桥", "most_wrong": "A", "human_count": 31582, "human_acc": 63.0739028561, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第99题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"]]}, {"id": 5353006, "material": "", "question": "____________________。农业职业教育有其自身鲜明的特点,即以农业技术技能教育为主。但随着现代产业技术复杂性的增强,其背后的科学支撑需要跟上,因此农业职业教育的高等理论教学需要增强。为了应对未来快速发展的职业变化,农业职业教育也需要提升学生的思维能力,以此为背景,国家层面印发关于职业教育发展及改革的相关文件,明确提出开展本科层次职业教育、引导普通本科高校向应用(技术)型高校转型等要求。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 农业职业教育的农业技术技能无法应对职业变化\nB. 国家大力支持普通本科高校转型到高级技术院校\nC. 农业职业教育与普通高等教育的融合发展势在必行\nD. 职业教育发展的背后离不开科学技术的理论支撑", "choice": "C", "keypoints": "开头", "most_wrong": "D", "human_count": 353737, "human_acc": 68.4158004393, "source": "2022下半年省考第十七季行测模考大赛(浙江C卷)第36题", "difficulty": 5, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 2816789, "material": "", "question": "2020年,黑龙江鸡西市“酸汤子”中毒致9人死亡的消息引起很多人关注。这是一起因家庭聚餐食用酸汤子引发的食物中毒事件,现已查明致病食物是被致病菌污染的酸汤子。夏秋季节制作发酵米面制品容易被椰毒假单胞菌污染,该菌能产生致命的米酵菌酸,高温煮沸不能破坏毒性,病死率达$50\\%$以上。研究人员通过毒性基因组筛查发现,蝾螈肝脏细胞内的神经毒素可以抑制米酵菌酸对人体的伤害,因此专家建议,可以尝试服用蝾螈神经毒素制剂治疗米酵菌酸中毒。\n\n以下哪项可以作为上述论证的前提?", "type": "单选题", "options": "A. 蝾螈肝脏细胞内的神经毒素可以与米酵菌酸发生化学反应\nB. 蝾螈神经毒素制剂不会被胃液中的强酸分解为其他物质\nC. 椰毒假单胞菌感染蝾螈后,米酵菌酸不能使其中毒\nD. 研究人员通过毒性基因组筛查的结果十分准确", "choice": "B", "keypoints": "必要条件", "most_wrong": "A", "human_count": 220586, "human_acc": 57.4270352606, "source": "2022年国考第二季行测模考大赛(副省级)第112题", "difficulty": 6, "formulas": 1, "history": [{"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2133678, "material": "", "question": "扶贫必扶智。让贫困地区的孩子们接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n以上观点的前提是:", "type": "单选题", "options": "A. 贫困的代际传递导致教育的落后\nB. 富有阶层大都受过良好教育\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就财富", "choice": "D", "keypoints": "必要条件", "most_wrong": "A", "human_count": 2721802, "human_acc": 71.5025927676, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 4, "formulas": 0}, {"id": 2271348, "material": "", "question": "扶贫先扶智,让贫困地区的孩子接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n上述观点最恰当的前提是(  )。", "type": "单选题", "options": "A. 贫困地区与非贫困地区教育发展不均衡\nB. 贫困代际传递导致教育落后\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就未来", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 21632, "human_acc": 63.6094674556, "source": "广西2019年定向招录选调生笔试第32题", "difficulty": 5, "formulas": 0}, {"id": 47687, "material": "", "question": "西双版纳傣族的竹楼都用方形柱子将房子架空来防止潮湿及蚊虫骚扰,之所以用方形柱子而不是圆形柱子,是为了防止蛇攀爬进入竹楼。\n\n下列哪项最有可能是上述陈述的假设:", "type": "单选题", "options": "A. 傣族人喜欢把东西做成方形的\nB. 蛇喜欢攀爬圆形的柱子\nC. 西双版纳热带雨林中有很多蛇\nD. 蛇不能缠绕着方形的柱子爬行", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 372360, "human_acc": 84.9487055538, "source": "2013年浙江省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 2144557, "material": "", "question": "防御中的攻势行动是指在有利的时机和态势下,防御部队采取的进攻性行动。\n\n根据上述定义,下列军事行动不属于防御中的攻势行动的是:", "type": "单选题", "options": "A. 对突入阵地之敌实施冲击,消灭突入之敌,改善或恢复防御态势\nB. 防御的军队对小股进攻之敌实施主动攻击,击退敌人的进攻\nC. 直接抗击敌人冲击的分队,对冲击受挫滞留于阵地前沿之敌实施主动攻击,以出击消灭敌人,稳定防御态势\nD. 被包围的部队组织精干小分队,跳出包围圈,插到敌人侧后袭扰敌人,钳制围攻之敌", "choice": "D", "keypoints": "大前提", "most_wrong": "A", "human_count": 816725, "human_acc": 57.4474884447, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第97题", "difficulty": 5, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}, {"id": 9009, "material": "", "question": "体液是指人体体内含有的大量以水为基础的液体,包括细胞内液和细胞外液,其中除含有大量的水外,还有许多离子和化合物。\n以下不属于体液的是:", "type": "单选题", "options": "A. 炎热环境中排出的汗液\nB. 血管中流动的血浆\nC. 组织细胞间隙的组织液\nD. 淋巴管内流动的淋巴", "choice": "A", "keypoints": "大前提", "most_wrong": "D", "human_count": 18888, "human_acc": 42.095510377, "source": "2009年江西省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 2440235, "material": "", "question": "注意分配是指在同一时间内,把注意指向不同的对象,同时从事几种不同活动的现象。\n\n根据上述定义,下列不属于注意分配的是:", "type": "单选题", "options": "A. 学生边听讲边做笔记\nB. 歌手自拉自唱\nC. 工人边观察仪表边控制调节\nD. 运动员一鼓作气完成了躲避、转身、投篮的动作", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 198157, "human_acc": 86.5591424981, "source": "2019年青海省法院、检察院录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 4712777, "material": "", "question": "史书载,汉麻是人类最早用于织物的天然纤维。在显微镜下,汉麻纤维纵向形态像竹子一样平直且具有横节,还有许多的裂纹和小孔,截面形态有多种不规则形状,呈现中空结构,中腔与外形不一样,中间的孔隙很大,与纤维表面的缝隙和空洞相连。较多的裂纹、小孔和中腔使麻纤维具有优良的吸波消音、吸湿透气和吸附性能。汉麻纤维的排列并不整齐、纵横交错,但不同层次间整齐堆叠,____使汉麻对紫外线的吸收效果好,无需特殊整理,即可屏蔽95%以上的紫外线。汉麻纤维是目前已知的防紫外线性能最佳的天然纤维。\n\n画横线处汉麻纤维的“这种结构”指的是:", "type": "单选题", "options": "A. 平直且有横节的纵向结构\nB. 中腔与表面相连的中空结构\nC. 截面形态有不规则堆叠的结构\nD. 纤维排列取向不同但层次分明", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 50322, "human_acc": 76.9742856007, "source": "2022上半年省考第七季行测模考大赛(陕西卷)第58题", "difficulty": 4, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 2654109, "material": "", "question": "为解决未成年人网络沉迷问题,近年来,国家多次出台相关规定,重拳整治网络空间秩序,规范未成年人网络使用行为。但未成年人网络沉迷的状况并未得到有效改善,暴露了硬法规制在预防未成年人网络沉迷方面的局限性。究其原因在于,国家立法的滞后性与互联网的飞速发展间存在一种潜在矛盾,加之“命令与服从”、“强制与制裁”的规制模式不符合未成年人的身心特点和成长规律,难以有效回应预防未成年人网络沉迷的现实需求。\n\n这段文字接下来最可能介绍:", "type": "单选题", "options": "A. 应当如何应对未成年人网络沉迷的现实需求\nB. 全社会需要形成合力以防未成年人沉迷网络\nC. 硬法规制为什么难以预防未成年人沉迷网络\nD. 运用互联网“软法”预防未成年人网络沉迷", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 155533, "human_acc": 34.322619637, "source": "2021年国考第十八季行测模考大赛(副省级)第39题", "difficulty": 7, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 2759169, "material": "", "question": "比兴是古代诗歌的常用技巧。对此,宋代朱熹有比较准确的解释。他认为:“比者,以彼物比此物也”,“兴者,先言他物以引起所咏之词也。” 通俗地讲,“比”就是比喻,是对人或物加以形象的比喻,使其特征更加鲜明突出。“兴”就是起兴,即借助其他事物作为诗歌发端,以引起所要歌咏的内容。“比”与“兴”常常连用,专用于诗有寄托之意。\n\n根据上述定义,下列不属于比兴的是:", "type": "单选题", "options": "A. 乱花渐欲迷人眼,浅草才能没马蹄\nB. 关关雎鸠,在河之洲。窈窕淑女,君子好逑\nC. 孔雀东南飞,五里一徘徊\nD. 江南可采莲,莲叶何田田,鱼戏莲叶间", "choice": "A", "keypoints": "常规问法", "most_wrong": "D", "human_count": 158373, "human_acc": 30.1541298075, "source": "2021上半年省考第四季行测模考大赛(四川卷)第63题", "difficulty": 7, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 2133748, "material": "", "question": "开车斗气、胡乱变线、强行超车等“路怒症”是一种被称为间歇性、暴发性障碍(IED)的心理疾病。有研究发现,IED患者弓形虫检测呈阳性的比例是非IED组的两倍。研究者认为,弓形虫感染有可能是导致包括“路怒症”在内的IED的罪魁祸首。\n\n以下哪项如果为真,无法支持研究者的观点?", "type": "单选题", "options": "A. 感染了弓形虫的老鼠往往更大胆、更敢于冒险,也因此更容易被猫抓到\nB. 弓形虫使大脑中控制威胁反应的神经元受到过度刺激,易引发攻击行为\nC. 对弓形虫检测呈阳性的IED患者施以抗虫感染治疗之后,冲动行为减少\nD. 弓形虫是猫身上的一种原生动物寄生虫,但猫是比较温顺的动物", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 1843773, "human_acc": 91.4991162144, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第112题", "difficulty": 5, "formulas": 0, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 2730661, "material": "", "question": "近年来,化妆品消费市场上,国产化妆品的市场占有率显著提升,品牌效应日益凸显。一项关于国产化妆品购买意愿的调查显示,$74\\%$的被调查者表示赞成购买国产化妆品。但是当问及这些被调查者是否曾购买国产化妆品自用,却有$70\\%$的人表示“没有”。\n\n如果以下各项为真,最能够解释上述看似矛盾的现象的是(    )。", "type": "单选题", "options": "A. $70\\%$的被调查者表示,欧美化妆品的历史更久,品牌更大,更能够引领时尚\nB. 大部分被调查者在购买自用化妆品时,主要考虑其功效及自身肤况,不太考虑产地\nC. 购买国产化妆品的消费者中,$70\\%$的人将其作为礼物送人,只有$30\\%$的人选择自用\nD. 大部分被调查者表示,会将每年的化妆品消费支出控制在1000元以内", "choice": "C", "keypoints": "原因解释", "most_wrong": "B", "human_count": 278762, "human_acc": 65.3270531852, "source": "2020年深圳市考公务员录用考试《思维能力测验》试题(网友回忆版)第79题", "difficulty": 5, "formulas": 253, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 2388001, "material": "", "question": "口红效应是指在经济危机时消费者更愿意购买相对廉价的非必需品。经济不景气时,口红的销量反而会直线上升,这是因为在不景气的情况下,人们仍然会有强烈的消费欲望,而口红作为一种“廉价的非必需之物”,可以对消费者起到一定的“安慰”作用。\n\n根据上述定义,下列符合口红效应的是:", "type": "单选题", "options": "A. 张三现在收入很高,但生活简朴的他还是喜欢购买100元左右的衣服\nB. 李四近半年基本没有收入,但他用父母的积蓄购买了一辆35万元的轿车\nC. 王五还房贷压力很大,单位食堂饭菜价格较高,他经常到路边摊吃10元的盒饭\nD. 赵六最近业绩不好,收入较低,为释放压力,每周六晚上都喝50元1瓶的白酒半斤", "choice": "D", "keypoints": "故事类", "most_wrong": "C", "human_count": 778460, "human_acc": 87.2690953935, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第84题", "difficulty": 4, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 2262040, "material": "", "question": "当前,乡村教师留不住是个大问题。对此,有人认为,只要大幅提升乡村教师待遇,就能让他们安心留下来,从而有效解决这一问题。\n\n以下选项中无法削弱上述论断的是(  )。", "type": "单选题", "options": "A. 不是所有乡村教师都看重待遇\nB. 有的乡村教师收入很高\nC. 乡村教师收入普遍偏低\nD. 不少乡村教师由于生活环境差而辞职", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "B", "human_count": 197701, "human_acc": 74.0507129453, "source": "广东省2019年选调优秀大学毕业生笔试 思维能力测验(网友回忆版)第11题", "difficulty": 5, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 4783, "material": "", "question": "有学者在对一些成功的女性秘书调查研究表明,女性秘书具有强烈的现代意识和敏锐的现代眼光,而且她们具有娴熟的公关技巧。正是因为她们具有上述两大优点,使她们在社会舞台上扮演着当之无愧的重要角色,她们在化解矛盾、排除难局等方面有着极其出色的表现。据此,该学者得出结论,领导者用女性秘书要比用男性秘书好。\n以下哪项最能削弱上述论证:", "type": "单选题", "options": "A. 女性秘书也有一些显而易见的缺点\nB. 个别的调查结果不能得出普遍的结论\nC. 合格的秘书不仅要具有强烈的现代意识和娴熟的公关技巧,还有一些更重要的素质\nD. 据一项对男秘书的调查结果显示,男性秘书也同样具有强烈的现代意识和娴熟的公关技巧", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 60772, "human_acc": 69.6060685842, "source": "2008年广东省公务员录用考试《行测》题第68题", "difficulty": 5, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}, {"id": 1324947, "material": "", "question": "有甲、乙两家公司,甲公司售后服务部门接到的产品投诉电话是乙公司的3倍。因此,甲公司产品的质量没有乙公司的好。以下最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙公司的产品操作相对来说更为简单\nB. 甲公司接到电话大多数是咨询电话\nC. 甲公司的咨询电话机数量比乙公司多\nD. 甲公司产品的市场占有率达到$76\\%$", "choice": "D", "keypoints": "拆桥", "most_wrong": "B", "human_count": 793211, "human_acc": 70.0645855895, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第58题", "difficulty": 5, "formulas": 83}, {"id": 22459, "material": "", "question": "由于在乐业天坑中最大的天坑——大石围的底部的原始森林中发现了与恐龙同时代的植物桫椤,有人据此推测,大石围应形成于恐龙时代,即6500万年前。\n\n如果下列各项为真,哪项最能反驳上述推测:", "type": "单选题", "options": "A. 桫椤至今仍然存在\nB. 在其他乐业天坑中未发现桫椤\nC. 恐龙无法进入这个极深的天坑\nD. 没有在大石围中发现恐龙化石", "choice": "A", "keypoints": "拆桥", "most_wrong": "D", "human_count": 423565, "human_acc": 53.8413230555, "source": "2012年安徽省公务员录用考试《行测》题第113题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"]]}, {"id": 5435055, "material": "", "question": "方向决定一切。在当今世界社会主义与资本主义两种社会制度对立共存的时代背景下,军事现代化不是一个单纯的军事概念,有着深层次的政治内涵。这涉及到两个根本性问题:军事现代化是为了谁?军事力量听谁领导指挥?不同制度下的军事现代化,在这两个问题上是截然不同的。中国式的军事现代化,是社会主义国家的军事现代化。中国的武装力量是人民的武装力量,服务人民是其根本宗旨,所以中国共产党是中国武装力量唯一的、绝对的领导指挥者。可以说____________________。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 坚持社会主义制度是中国式军事现代化的最大制度优势\nB. 听党指挥,中国特色强军之路才能够行稳致远持续推进\nC. 不同的政治制度决定了各国的军事现代化道路发展方向各有不同\nD. 离开我党的领导和社会主义制度,中国式军事现代化将步入歧途", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 115735, "human_acc": 27.3339957662, "source": "2023上半年省考第二季行测模考大赛(四川卷)第40题", "difficulty": 7, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}, {"id": 2036608, "material": "", "question": "简单恢复历史旧貌,绝不可能实现复兴的目标。只有创造一种融合古今的新兴文明,才能恢复曾经有过的世界一流的兴盛状态。因此,(    )。\n\n下列选项中,最适合填入上述括号内的是:", "type": "单选题", "options": "A. 复兴之道,应当是改革创新之道\nB. 要复兴,就要敞开胸怀学习全世界\nC. 要复兴,就要批判地继承历史遗产\nD. 复兴之道,需要敢想、敢干、能干", "choice": "A", "keypoints": "结尾", "most_wrong": "C", "human_count": 30850, "human_acc": 72.9270664506, "source": "2014年广东省公务员录用考试《行测》题(乡镇)第22题", "difficulty": 4, "formulas": 0}, {"id": 2010448, "material": "", "question": "对于构建当代中国人文精神的路径,学术界曾做出多种探索,有人试图从中国传统文化中挖掘资源。有人则主张借鉴西方近现代的人文、人道文化传统,也有人主张二者并举,________。 填入横线上最恰当的一句是( )。", "type": "单选题", "options": "A. 这些探索都有客观的真理性\nB. 这些探索都是极为难能可贵的\nC. 这些探索都具有时代特色\nD. 这些探索都有一定的合理性", "choice": "D", "keypoints": "结尾", "most_wrong": "C", "human_count": 9317, "human_acc": 72.2979499839, "source": "2008年河南省公务员录用考试《行测》题第32题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"]]}, {"id": 2443108, "material": "", "question": "在一块草场上老李养了若干头牛和若干只羊。如果只有羊吃草,够吃16天;如果第一天牛吃,第二天羊吃,这样交替,正好整数天吃完;如果第一天羊吃,第二天牛吃,这样交替,那么比上次轮流的做法多吃半天;牛单独吃能够吃________天。", "type": "单选题", "options": "A. 8\nB. 7\nC. 6\nD. 5", "choice": "A", "keypoints": "周期问题-其他;给效率比例型", "most_wrong": "B", "human_count": 238285, "human_acc": 31.3158612586, "source": "2019年辽宁省公务员录用考试《行测》题(网友回忆版)第69题", "difficulty": 5, "formulas": 0, "history": [{"id": 15699, "material": "", "question": "从1开始的自然数中,第100个不能被3整除的数是:", "type": "单选题", "options": "A. 149\nB. 152\nC. 123\nD. 142", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "B", "human_count": 77989, "human_acc": 52.1906935593, "source": "2010年江苏省公务员录用考试《行测》题(A类)第31题", "difficulty": 4, "formulas": 0}, {"id": 5519, "material": "", "question": "一项工程原计划450人100天完成,现在需要提前10天,需要增加的人数是:", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "A", "human_count": 198495, "human_acc": 80.2176377239, "source": "2008年福建省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 4668684, "material": "", "question": "在某次班级活动中,所有学生围成一圈做游戏,恰好每个学生左右相邻的两个同学性别均不相同。问该班可能有多少个学生?", "type": "单选题", "options": "A. 52\nB. 53\nC. 54\nD. 55", "choice": "A", "keypoints": "周期问题-其他", "most_wrong": "C", "human_count": 359451, "human_acc": 41.9217083831, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第61题", "difficulty": 5, "formulas": 0}, {"id": 1839, "material": "", "question": "一项工程,工作效率提高四分之一,完成这项工程的时间将由原来的十小时缩短到几小时?", "type": "单选题", "options": "A. 4\nB. 8\nC. 12\nD. 16", "choice": "B", "keypoints": "给效率比例型", "most_wrong": "C", "human_count": 34403, "human_acc": 89.2974449903, "source": "2008年陕西省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2730470, "material": "", "question": "某喷绘机每次同时单面印刷2张广告布,每印1面需要1分钟,广告布印后需晾干2分钟,现需双面印刷15张广告布,则至少需(    )分钟的印刷时间。", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 19", "choice": "A", "keypoints": "周期问题-其他;统筹规划问题", "most_wrong": "C", "human_count": 187738, "human_acc": 24.2492196572, "source": "2020年深圳市考公务员录用考试《行测1》试题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "周期问题", "周期问题-其他"], ["数量关系", "数学运算", "工程问题", "给效率比例型"]]}, {"id": 5122147, "material": "在元宵节来临之际,某老字号餐馆为吸引顾客,特在正月十四、正月十五、正月十六三天赠送六款特色汤圆,分别是桂花汤圆、蛋黄汤圆、花生汤圆、红豆汤圆、榴莲汤圆、紫薯汤圆。为增强顾客的新鲜感,餐馆负责人决定每天赠送两款不同的汤圆,且每款汤圆都只赠送一天。已知:\n\n(1)桂花汤圆和蛋黄汤圆不在同一天赠送;\n\n(2)红豆汤圆和榴莲汤圆必须在同一天赠送;\n\n(3)只有在正月十五赠送桂花汤圆,才会在正月十四赠送花生汤圆;\n\n(4)如果在正月十六赠送紫薯汤圆,那么在正月十五赠送蛋黄汤圆。", "question": "如果正月十五赠送榴莲汤圆,则可以推出:", "type": "单选题", "options": "A. 正月十五赠送蛋黄汤圆\nB. 正月十四赠送桂花汤圆\nC. 正月十四赠送紫薯汤圆\nD. 正月十四赠送蛋黄汤圆", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 73132, "human_acc": 79.8296231472, "source": "2022下半年省考第三季行测模考大赛(江苏卷)第105题", "difficulty": 4, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 4828095, "material": "", "question": "巨灾保险,是针对重大突发性灾害事件可能产生的损失而提供的保险保障。从经济学视角看,巨灾保险具有一定的公共物品属性,灾后保险公司的及时定损与赔付可以减轻地方政府的救援压力,提升社会救灾与恢复重建的效率。因而,____________________,将难以解决供需双不足的矛盾,即需求方居民投保意愿低,供给方保险公司必须设置高保费来维持盈利这一根本矛盾,进而无法让巨灾保险市场保持活力。让政府发挥作用,是实现公共物品市场均衡的方法之一,这也是世界各国的普遍经验。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 制定出合理的供需平衡机制就显得尤为重要\nB. 单纯依靠市场来实现巨灾保险的供给与需求\nC. 巨灾保险机制的建立与研究离不开政府助力\nD. 将不符合定价法则的巨灾保险拒于市场之外", "choice": "B", "keypoints": "中间", "most_wrong": "C", "human_count": 40964, "human_acc": 84.3130553657, "source": "2022上半年省考第十二季行测模考大赛(山东卷)第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}, {"id": 11185, "material": "", "question": "1999年起,我国普通高校开始实行扩招。大幅度的扩招____________________,因此出现了高校学生质量滑坡现象。填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 使入学门槛骤然降低\nB. 缓解了学生和家长的思想压力\nC. 给就业带来了巨大的压力\nD. 使更多的学生有了上学的机会", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 65897, "human_acc": 96.1576399533, "source": "2008年湖北省公务员录用考试《行测》题(B类)第18题", "difficulty": 5, "formulas": 0}, {"id": 2256378, "material": "", "question": "如果怀念过去的书信形式,最好的做法是重新拾起情怀,即在写电子邮件或者使用其他即时通讯工具的时候,______,拒绝被新媒体时代轻快、浮躁的交流形式所侵袭。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 尽量让表达多点诗意\nB. 能够勇敢地说“不”\nC. 能够多一点郑重感\nD. 尽量让交际慢下来", "choice": "C", "keypoints": "中间", "most_wrong": "D", "human_count": 29886, "human_acc": 37.5292779228, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第16题", "difficulty": 5, "formulas": 0}, {"id": 16273, "material": "", "question": "中国人对小说的欣赏习惯,讲究的是无巧不成书,(  ),也就是不喜欢一般化,而喜欢特殊化。", "type": "单选题", "options": "A. 爱看不知道的事情,而不爱看已经清楚知道了的事情\nB. 爱看新鲜的事情,而不爱看已经清楚知道了的事情\nC. 不爱看已经清楚知道了的事情,而爱看不知道的事情\nD. 不爱看陈旧的事情,而爱看新鲜的事情", "choice": "C", "keypoints": "中间", "most_wrong": "D", "human_count": 51816, "human_acc": 40.3388914621, "source": "2009年山西省党群机关录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 2187639, "material": "", "question": "美国斯坦福大学的研究人员对130名同时患有血脂异常、高血压(并未服用降压药)的患者进行了长达12年的试验。在试验中,研究人员将这130名研究对象随机分成人数相等的两组,并让其中的一组研究对象服用松树皮提取物(每天服用的剂量为200毫克),另一组研究对象服用安慰剂。在这12年中,研究人员每6周测量1次研究对象的血压、血糖、胆固醇及C反应蛋白的水平。试验结果显示,服用松树皮提取物人员的上述各项指标与服用安慰剂人员的上述各项指标并无明显的差别。由此可知,松树皮提取物无降血压、降血糖、降血脂以及预防心血管疾病等功效。\n\n以下各项如果为真,最能反驳上述结论的是:", "type": "单选题", "options": "A. 两组试验患者仅人数相等,其血压和血脂等的原始指标差异较大\nB. 对照组服用安慰剂,对高血压和高血脂患者有心理暗示作用\nC. 12年的实验时间太长,这有可能使一些重要的实验数据失真\nD. 参加实验的患者人数仅130人,样本太小,代表性不够", "choice": "A", "keypoints": "削弱论据", "most_wrong": "D", "human_count": 1118608, "human_acc": 76.5773175232, "source": "2018年云南省选调生录用考试《行测》试题(网友回忆版)第101题", "difficulty": 4, "formulas": 0, "history": [{"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 4004840, "material": "", "question": "某公司发生失窃案,公安机关经过调查锁定了犯罪嫌疑人是该公司会计张某。办案民警小王说:“一定不是他”,办案民警小李发表了反对观点:“当其他可能性被排除了,剩下的不管看起来多么不可能,但一定是事情的真相。”\n\n以下哪项如果为真,最能削弱小李的说法?", "type": "单选题", "options": "A. 追究违法行为最重要的是用证据说话\nB. 办案民警无法极尽所有可能性\nC. 办案民警小王比小李更了解案件经过\nD. 公司职员评价张某平时为人老实诚恳", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 178912, "human_acc": 76.9590636738, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第91题", "difficulty": 5, "formulas": 0}, {"id": 4658543, "material": "", "question": "德国的一项研究显示,长期居住在天寒地冻、杳无人烟的南极洲,人的大脑平均会缩小7%,学习、记忆以及与人交往能力随之减弱。因此,生活在炎热地区的人比生活在寒冷地区的人更聪明。\n\n以下哪项如果为真,最能削弱上述论证?", "type": "单选题", "options": "A. 该项研究成果尚未公开发表\nB. 气候会对人的智力产生巨大的影响\nC. 寒冷令人们为保存更多能量,倾向于减少学习及社交活动\nD. 该研究结果是可逆的,离开南极洲一段时间后人的大脑基本恢复正常水平", "choice": "D", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 1126762, "human_acc": 52.4565968678, "source": "2021年四川下半年公务员录用考试《行测》试题(网友回忆版)第78题", "difficulty": 5, "formulas": 0}, {"id": 1679314, "material": "", "question": "一项民意调查结果显示,在1000多名参与投票的网友中,六成网友支持延长女性产假至三年,以便更好地照顾宝宝;四成网友表示反对,认为产假太长,会增加企业负担,进而增加女性就业难度,不可行。\n\n以下哪项如果为真,最能质疑上述反对者的观点?", "type": "单选题", "options": "A. 企业除了追求利润之外,也应当承担社会责任\nB. 女性产假延长的成本,由财政或社保基金来承担\nC. 这份调查样本量不够大,不足以代表真正的民意\nD. 法律应强制规定企业必须招聘一定比例的女性", "choice": "B", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 485630, "human_acc": 84.9737454441, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第79题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 5588063, "material": "", "question": "长期来看,地球自转趋于变慢,科学家预计再过1亿年,一天可以增加半小时。可是在2022年的6月29日,有科学家利用高精度原子钟发现地球自转一周的时间比24小时少了1.59毫秒,成为原子钟计时以来最短的一天。地球自转一周的时间缩短,意味着地球的自转加速。科学家们认为此次地球的自转加速是由钱德勒摆动导致的。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 钱德勒摆动是指地球自转轴相对于地球表面的小幅度运动,此次地球自转加速会改变地球内核的质量分布,进而对钱德勒摆动幅度造成影响\nB. 地球系统内部的物质迁移和角动量交换均可导致地球自转轴的位置和自转的速率发生变化\nC. 钱德勒摆动作为地球摆动的一部分,其激发机制是地球科学界的百年难题。潮汐作用、与液态地核的动量交换、大地震等机制,都会导致钱德勒摆动\nD. 钱德勒摆动和地球自转加速虽然有一定的相关性,但目前还没有研究可以证明钱德勒摆动会导致地球自转加速", "choice": "A", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 406, "human_acc": 41.6256157635, "source": "2023下半年省考第五季行测模考大赛(内蒙古卷)第105题", "difficulty": 7, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 4671668, "material": "", "question": "①早期先民利用各种绮丽多彩的神话故事,将中华各民族的文化精神保留并传承下来\n\n②火种神话展示了中华民族的创造精神。火是人类初民最重要的发明,也是人类迈向文明的重要标志物\n\n③在中华各民族的神话传说中,炎帝、祝融、夸父等民族领袖或民族英雄都与取火传说有关\n\n④直到文字出现以后,人们才用书写文本的形式将其汇聚成中华民族的集体精神\n\n⑤初民极为珍重传世的光明火种,也极为崇拜发明火种的英雄\n\n⑥神话是民族的血脉,是民族精神的灵魂。换句话说,神话是中华各民族文化的最初形式\n\n对以上6个句子进行排序,语序正确的一项是:", "type": "单选题", "options": "A. ①⑥⑤②③④\nB. ②③⑤⑥①④\nC. ③⑤②①④⑥\nD. ⑥①④②⑤③", "choice": "D", "keypoints": "首句特征", "most_wrong": "A", "human_count": 15193, "human_acc": 63.4634371092, "source": "2023年国考第四季行测模考大赛(地市级)第58题", "difficulty": 5, "formulas": 0, "history": [{"id": 15087, "material": "", "question": "①无论一个人在哪儿,只要他在一扇关着的门的后面,他就能使自己不受拘束。\n\n②没有门的屋子不是屋子,而是走廊。\n\n③在关着的门内,头脑的工作最为有效。\n\n④人不是在一起放牧的马群。\n\n⑤门是隐秘、回避的象征,是心灵躲进极乐的静谧或悲伤的秘密搏斗的象征。", "type": "单选题", "options": "A. ②①③④⑤\nB. ④①③②⑤\nC. ①③④⑤②\nD. ⑤②①③④", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 7175, "human_acc": 43.2891986063, "source": "2008年重庆市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 2271375, "material": "", "question": "①土地流转应该是一个水到渠成的过程,并不是越快越好。\n\n②要稳妥审慎推进,政府要充当好“向导”和“服务”的角色。\n\n③因此,农村土地问题一直是社会各界关注的热点。\n\n④土地是农民最基本的生产资料,也是农民最基本的生活保障。\n\n⑤警惕农村土地流转中“越俎代庖”。\n\n⑥土地流转不流转,要什么价格,流转多长时间,都应该由农民说了算。\n\n上述语句的顺序排列为:", "type": "单选题", "options": "A. ①③②④⑤⑥\nB. ⑥④②③①⑤\nC. ④③①⑤②⑥\nD. ⑤④③①②⑥", "choice": "C", "keypoints": "首句特征", "most_wrong": "D", "human_count": 983, "human_acc": 85.2492370295, "source": "2015年山东省选调应届优秀高校毕业生到基层工作考试《行测》试卷(精选)第45题", "difficulty": 3, "formulas": 0}, {"id": 1797870, "material": "", "question": "①最早的单质碘便是法国人从海藻中发现的,海藻也是最早的碘生产原料 \n\n②我国大部分地区都缺碘,碘不足可能会引起甲状腺肿病和地方性克汀病 \n\n③近年来,随着人们对食品纯天然的追求,海藻碘盐越来越受到欢迎 \n\n④碘在自然界中比较稀少,但是海洋中的藻类却有较高的含碘量 \n\n⑤碘是人体必需的微量元素之一,有“智力元素”之称 \n\n⑥因此从1995年起,我国开始实施食盐强制加碘 \n\n将以上六个句子重新排列,语序正确的是:(  )", "type": "单选题", "options": "A. ②⑤⑥③①④\nB. ③①④⑤②⑥\nC. ④③①⑤⑥②\nD. ⑤②⑥④①③", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 1541637, "human_acc": 73.2556367031, "source": "2016年423联考《行测》题(贵州卷)第43题", "difficulty": 5, "formulas": 0}, {"id": 163351, "material": "", "question": "①经调查,失读症在西方人中比较多见,而在中国人极其少见\n\n②让思考者先学习汉语,再将语言材料用英文和汉字分两边认读,丧失的英文阅读能力竟然得到了部分恢复\n\n③失读症指人因大脑局部受到损伤而丧失文字阅读能力\n\n④根据文字认知的特点,西方发明了一种奇特的失读症治疗法\n\n⑤所以使用汉字的人因局部脑损伤而导致失读的可能性也就大大减少了\n\n⑥其原因就在于汉字的认知是左右脑并用,而非只有左脑在单独发挥作用\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①②⑥③⑤④\nB. ②③⑤④⑥①\nC. ③①⑥⑤④②\nD. ④②⑥③①⑤", "choice": "C", "keypoints": "首句特征", "most_wrong": "D", "human_count": 511670, "human_acc": 91.3885903023, "source": "2013年四川公务员录用考试《行测》题(下半年)第39题", "difficulty": 5, "formulas": 0}, {"id": 5187733, "material": "", "question": "下列几个句子按顺序排列,语意最连贯的是:\n\n①原始设计是一台1200千瓦的活塞发动机,高压性能很差,故障很多\n\n②在运输、救援、反潜、观光、攻击、侦察、医疗救援等方面,直升机应用广泛\n\n③虽然如此,有还是比没有强太多,我国生产了500多架,应用于军民各个方面,直5直升机在自卫反击战时用于运输受伤士兵,几乎降低了90%的死亡率\n\n④我国在1958年引进苏联米4直升机,仿制后改称直5直升机,虽然仿制成功了,但是质量很差,非常不可靠\n\n⑤直升机是重要的交通运输工具,可以在任意地点垂直起飞,任意地点垂直着陆", "type": "单选题", "options": "A. ②⑤①④③\nB. ②④③①⑤\nC. ⑤④①③②\nD. ⑤②④①③", "choice": "D", "keypoints": "首句特征", "most_wrong": "C", "human_count": 5207, "human_acc": 84.0215095064, "source": "2022下半年省考第六季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "首句特征"]]}, {"id": 2616035, "material": "", "question": "心理学家考察了450位中年男性和女性,他们中有白领阶层,也有蓝领阶层;有技能判断型人群,也有决策制定型人群。结果发现,那些身居重要职位的高管人士普遍比一般员工更胖。研究者认为,做出许多决定所承受的压力通过饮食方式得到排解,这最终在一定程度上改变了高管人士之前的饮食习惯,如果你的职位幸运地得到晋升,你将发现不仅是薪水变多,自己的腰围也在变粗,伴随着体重上升。\n\n以下哪项如果为真,最能质疑上述结论?(    )", "type": "单选题", "options": "A. 比较而言,技能判断型人群的腰围较小,决策制定型人群的腰围较大\nB. 比较而言,身居要职的高管人士更难抽出时间投入锻炼以缩小腰围\nC. 每晋升一次,技能判断型人群的腰围平均会减少0.5厘米\nD. 每晋升一次,决策制定型人群的腰围平均会增大0.28厘米", "choice": "B", "keypoints": "他因削弱", "most_wrong": "C", "human_count": 2120974, "human_acc": 56.6008824248, "source": "2020年青海省公务员录用考试《行测》试题(B卷)(网友回忆版)第90题", "difficulty": 5, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 2011758, "material": "", "question": "中国人民正在为实现中华民族伟大复兴的中国梦而奋斗。实现中国梦,是物质文明和精神文明均衡发展、相互促进的结果,没有文明的继承和发展,没有文化的弘扬和繁荣,就没有中国梦的实现;实现中国梦,是物质文明和精神文明比翼双飞的发展过程,随着中国经济社会不断发展,中华文明也必将顺应时代发展焕发出更加蓬勃的生命力。\n\n最适合做这段文字标题的是(     )。", "type": "单选题", "options": "A. 为实现中国梦而奋斗\nB. 伟大复兴的中国梦\nC. 中国人民与中国梦\nD. 中华民族的梦想", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 439844, "human_acc": 68.2105473759, "source": "2014年河北省公务员录用考试《行测》题第1题", "difficulty": 5, "formulas": 0, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 2557990, "material": "", "question": "网上流传着这样一则消息:某知名歌手录制节目时突发心脏病,立即含服了硝酸甘油,在关键时刻救了自己一命。因此,网友纷纷表示,身上要常带硝酸甘油,如果胸痛发作,含服即可保命。\n\n以下各项如果为真,能削弱上述网友观点的有:", "type": "不定项", "options": "A. 胸痛的原因有很多,除了心脏病,还可能是肺栓塞、胃食管反流病等\nB. 若是患者首次出现胸痛,切莫擅自服药,否则很可能会出现严重后果\nC. 每个人的血管宽度不同,血管狭窄的人在服用硝酸甘油时需要特别注意\nD. 突发心梗或心绞痛的人血压高压低于90mmHg或者昏迷,不可服用硝酸甘油", "choice": "ABD", "keypoints": "拆桥;削弱论点", "most_wrong": "C", "human_count": 15122, "human_acc": 23.2575056209, "source": "2020年上半年省考第三十季行测模考大赛(陕西卷)第110题", "difficulty": 7, "formulas": 0, "history": [{"id": 163909, "material": "", "question": "统计表明,某国的火车事故多发生在南部地区,因此在北部地区坐火车更安全。\n\n以下哪项最能反驳上述论证:", "type": "单选题", "options": "A. 该国北部的火车车速较慢\nB. 该国南部的火车线路比北部多得多\nC. 该国南部的许多线路已经使用动车组了\nD. 该国北部大部分地区为山区,更适合汽车行驶", "choice": "B", "keypoints": "拆桥", "most_wrong": "D", "human_count": 721333, "human_acc": 65.1030799922, "source": "2014年北京市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2229, "material": "", "question": "有人说:“这段材料是真的,因为它来自公开出版物。”\n\n假定下列各项判断为真,则下列哪项判断是对该人观点最有力的反驳?", "type": "单选题", "options": "A. 公开出版物上的材料都是真的\nB. 有的公开出版物上的材料是真的\nC. 有的公开出版物上的材料不是真的\nD. 有的真材料并不来自公开出版物", "choice": "C", "keypoints": "拆桥", "most_wrong": "D", "human_count": 29685, "human_acc": 86.9934310258, "source": "2008年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 48203, "material": "", "question": "地球和火星相比,有许多共同属性,如同隶属于太阳系,都是较规则球体,有公转和自转。既然地球有生命存在,火星也很有可能有生命存在。哪项为真最可能削弱上述判断的可靠性:", "type": "单选题", "options": "A. 地球距离火星过远,火星很难有生命\nB. 地球和火星生成时间不同\nC. 地球和火星转速不同\nD. 火星上目前没有发现液态水", "choice": "D", "keypoints": "拆桥", "most_wrong": "A", "human_count": 237037, "human_acc": 72.0735581365, "source": "2013年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "拆桥"], ["判断推理", "逻辑判断", "削弱题型", "削弱论点"]]}, {"id": 2172163, "material": "", "question": "近代以来,中华民族遭受的苦难之重、付出的牺牲之大,在世界历史上都是罕见的,可谓“_________”。改革开放以来,我们不断艰辛探索,终于找到了实现中华民族伟大复兴的正确道路,正是“___________”。而现在,我们比历史上任何时期都更接近中华民族伟大复兴的目标,比历史上任何时期都更有信心、有能力实现这个目标,一定是“___________”。\n\n依次填入划横线部分最恰当的是(  )。", "type": "单选题", "options": "A. 雄关漫道真如铁,人间正道是沧桑,长风破浪会有时\nB. 人间正道是沧桑,雄关漫道真如铁,长风破浪会有时\nC. 长风破浪会有时,人间正道是沧桑,雄关漫道真如铁\nD. 长风破浪会有时,雄关漫道真如铁,人间正道是沧桑", "choice": "A", "keypoints": "结尾;中间", "most_wrong": "B", "human_count": 860487, "human_acc": 44.2551717806, "source": "2018年广州市公务员录用考试 《行测》题(3月24日网友回忆版)第24题", "difficulty": 6, "formulas": 0, "history": [{"id": 16439, "material": "", "question": "“春眠不觉晓”,这种逍遥,自古以来就是“悠闲阶级”独享和提倡的情怀和境界。今天看来,特别对处于竞争激烈环境下的现代人来讲,(  )。\n\n填入括号部分最恰当的一项是:", "type": "单选题", "options": "A. 只有欣赏的心情了\nB. 只能是一种奢望了\nC. 只有在周末享受了\nD. 只是孩时的记忆了", "choice": "B", "keypoints": "结尾", "most_wrong": "D", "human_count": 394227, "human_acc": 91.6872766198, "source": "2010年贵州省公务员录用考试《行测》题第29题", "difficulty": 3, "formulas": 0}, {"id": 4768473, "material": "", "question": "改革为中国电影产业激发活力、释放新动能,但改革是____________________,只有进行时没有完成时,中国电影正处在一个摸索自己独特类型的阶段。\n\n填入划横线部分最恰当的一句是:", "type": "单选题", "options": "A. 一山放过一山拦\nB. 乘风破浪会有时\nC. 忽如一夜春风来\nD. 万水千山只等闲", "choice": "A", "keypoints": "中间", "most_wrong": "B", "human_count": 122641, "human_acc": 87.7854877243, "source": "2017年四川省公务员考试《行测》题(定向乡镇)第31题", "difficulty": 4, "formulas": 0}, {"id": 43981, "material": "", "question": "在生活中出现摩擦、不快和委屈是常有的事,我们不能以针尖对麦芒,因为怨恨就像是一只气球,越吹越大,最后膨胀到无法控制的地步。要消除怨恨,我们应该不念旧恶,不计新怨, ______ 。", "type": "单选题", "options": "A. 退一步海阔天空\nB. 得饶人处且饶人\nC. 偷得浮生半日闲\nD. 直挂云帆济沧海", "choice": "B", "keypoints": "结尾", "most_wrong": "A", "human_count": 393696, "human_acc": 37.6907563196, "source": "2012年上海市公务员录用考试《行测》题(B类)第2题", "difficulty": 6, "formulas": 0}, {"id": 5435, "material": "", "question": "所谓科学精神,不过是哲学上的多元主义的另一种说法而已。哲学上的多元主义,就是_________,否认有什么事物第一原因和宇宙、人类的什么终极目的。\n\n填入横线上最恰当的是:", "type": "单选题", "options": "A. 否认绝对真理的存在\nB. 认为这个世界无须认识\nC. 政治上权威主义的根据\nD. 一种绝对化的主张", "choice": "A", "keypoints": "中间", "most_wrong": "D", "human_count": 84776, "human_acc": 77.0996508446, "source": "2019年1月天津市定向招录选调生考试综合能力测试试卷(精选)第19题", "difficulty": 4, "formulas": 0}, {"id": 2187447, "material": "", "question": "法国大革命前,化学家拉瓦锡用巨大的凸透镜把阳光聚焦在钻石上,结果钻石飘逸地烧掉了,和石墨一样。拉瓦锡有一颗坚硬的心,他的实验击穿了“________”这一美丽的谎言。\n\n填入横线部分最恰当的广告词是:", "type": "单选题", "options": "A. 爱她就给她最好的\nB. 爱可倾城,钻石永恒\nC. 不在乎天长地久,只在乎曾经拥有\nD. 钻石恒久远,一颗永留传", "choice": "D", "keypoints": "结尾", "most_wrong": "B", "human_count": 857416, "human_acc": 74.9121779859, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第36题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "结尾"], ["言语理解与表达", "语句表达", "语句填空题", "中间"]]}, {"id": 5431073, "material": "", "question": "①为司法审判工作带来了新气象,也为加快推进社会治理现代化提供了优质司法服务和保障\n\n②信息化为人类古老的审判事业插上了科技翅膀,波澜壮阔的司法改革离不开信息化建设\n\n③而电子诉讼体系使得纠纷解决呈现与以往截然不同的“智能化”面貌,加速形成了人民法院全业务网上办理、全流程依法公开、全方位智能服务的新格局、新形态\n\n④人民法院借助科技的力量,推动信息技术与审判执行工作深度融合,便捷高效的网上立案、网上缴费、网上开庭等“互联网+”在线诉讼模式就是信息化建设的成果体现\n\n⑤“司法改革和信息化是司法事业车之两轮、鸟之两翼”\n\n⑥它们相互融合、相辅相成、相互促进,让公正司法步入了“快车道”\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤⑥④①③\nB. ③④⑥①⑤②\nC. ⑤②⑥④③①\nD. ⑥①③②⑤④", "choice": "C", "keypoints": "非首句特征", "most_wrong": "A", "human_count": 188972, "human_acc": 73.3161526575, "source": "2023上半年省考第一季行测模考大赛(新疆区考卷)第35题", "difficulty": 4, "formulas": 0, "history": [{"id": 6609, "material": "", "question": "①其中包括他们的肤色、相貌、身材、线条、姿态、气质、风度等许多方面\n\n②这样的美,才是广大女性更加向往、追求和渴望的\n\n③真正的女性美,应该是结实、精干、肌肉强健,具有区别于男子的特有曲线美\n\n④越来越多的人们现在都倾向于认为:现代女性人体美,绝不是苗条、柔软、纤细\n\n⑤当代青年人心目中美的典型,已不再是一个或一种人,而是一个多层次、多因素的复杂模式\n\n⑥既不失女性的妩媚,又足以承担生活竞争的压力,担当起社会责任\n\n排列组合最连贯的是:", "type": "单选题", "options": "A. ⑤⑥③②④①\nB. ⑤④⑥②①③\nC. ⑤①④③⑥②\nD. ②⑤①③④⑥", "choice": "C", "keypoints": "非首句特征", "most_wrong": "B", "human_count": 92466, "human_acc": 85.1058767547, "source": "2008年江苏省公务员录用考试《行测》题(A类)第71题", "difficulty": 5, "formulas": 0}, {"id": 4840106, "material": "", "question": "①就这样,日复一日,年复一年,我在平凡的岗位上奉献着,也收获着\n\n②我的家乡地处鄂东大别山支脉的深山僻岭,那里交通不便、曾经生活贫困\n\n③高中毕业后,我开始了梦寐以求的职业生涯,走上了“传道授业解惑”之路\n\n④知识打开了我的眼界,也给我幼小的心灵播下种子:长大后我要当一名教师,用知识改变偏远的山乡\n\n⑤能与乡村教育结缘,还得从小时候的梦想说起\n\n⑥用实际行动改变一个又一个孩子,点燃他们对于生活和未来的希望\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①⑤②⑥④③\nB. ⑤②④③①⑥\nC. ②⑤③④①⑥\nD. ④②⑤③⑥①", "choice": "B", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 246048, "human_acc": 87.6910196384, "source": "2022上半年省考第十三季行测模考大赛(河南卷)第27题", "difficulty": 3, "formulas": 0}, {"id": 2033074, "material": "", "question": "①提起“小清新”,或许很多人不屑。\n\n②“人生一场小清新,此生不改是天真。”\n\n③天真,含义有褒有贬。既有纯真、简单之意,也有幼稚、不成熟之意。\n\n④这位“网络红人”却难能可贵地在“小清新”中,发现了它最可爱又可贵的内核——天真。\n\n⑤天真是好是坏?是多一点好还是少一点好?在不同的语境中答案当然不同。但在当前,窃以为这种品质不是太泛滥,而是太稀缺。 \n\n⑥这是不久前一位“网络红人”与网友互动时,在微博上写下的一句俏皮的“禅语”。\n\n下列语序排列正确的是:", "type": "单选题", "options": "A. ①⑥②④⑤③\nB. ⑥④①⑤③②\nC. ②⑥①④③⑤\nD. ③⑤②⑥①④", "choice": "C", "keypoints": "非首句特征", "most_wrong": "D", "human_count": 512840, "human_acc": 81.1087278683, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第50题", "difficulty": 5, "formulas": 0}, {"id": 5355308, "material": "", "question": "①它们也是人类赖以生存的生态系统的重要组成部分,与人类的衣食住行密切相关\n\n②开花是其区别于其它植物大类群最重要的特征,是其成为陆地生态系统主导类群的重要优势特征\n\n③花的起源和演化是认识和理解被子植物的起源,及与其它种子植物大类群谱系发育关系的关键\n\n④这一类群对人类和地球上的其它生命有着至关重要的影响,其起源和早期演化一直都是演化生物学中重要的科学问题\n\n⑤被子植物被认为是植物界进化完善、种类丰富、生态习性复杂的大类群\n\n⑥食物、棉麻衣服、建筑木材,绝大多数直接或间接地取自被子植物\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑤①⑥④②③\nB. ⑥⑤①②④③\nC. ②③①④⑥⑤\nD. ③④②①⑥⑤", "choice": "A", "keypoints": "非首句特征", "most_wrong": "D", "human_count": 2414, "human_acc": 75.2692626346, "source": "2022下半年省考第十七季行测模考大赛(新疆区考卷)第49题", "difficulty": 6, "formulas": 0}, {"id": 5570233, "material": "", "question": "①这种研究不再局限于传统对于地域文学的简单外部地理关注\n\n②以空间为导向的文学研究在实质上极大地促进了当代文学批评的变革,把越来越多的评论目光吸引到空间、地方和文学的动态关系上\n\n③随着空间概念日益前景化,我们看待和研究作家创作的角度也有了全新发展\n\n④还拓展到地图和地理意识在作家创作过程中的重要意义、空间在文本结构和意义再现中的重要功能等\n\n⑤通过在相关期刊数据库中以“空间性”为关键词搜索发现,相关研究成果在21世纪以来出现大幅增长并一直居高不下\n\n⑥这说明空间文学研究已经成为文学研究新的增长点\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤⑥③①④\nB. ③①⑤⑥④②\nC. ⑤⑥③①②④\nD. ⑥③①⑤④②", "choice": "A", "keypoints": "非首句特征", "most_wrong": "C", "human_count": 42575, "human_acc": 57.9424544921, "source": "2023下半年省考第三季行测模考大赛(四川卷)第30题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"]]}, {"id": 5694520, "material": "", "question": "①外语是人们进行跨文化交流的重要工具,只有通过学习外语才能更好地理解和融入不同文化背景下的群体\n\n②中国正处于百年未有之大变局中,具备足够的外语能力才可以更好地参与到国际竞争中去,从而提高国家在国际社会中的地位和影响力\n\n③非传统安全观将传统的军事安全、政治安全扩展到经济、社会、环境、科技、文化等方面。在此安全观念下,外语教育显得尤为必要\n\n④随着全球化的加速和国际化的深入,跨文化交流变得越来越频繁和紧密\n\n⑤外语作为国际交流的重要工具,只有具备足够的外语能力,才能更好地参与到国际竞争中去\n\n⑥与此同时,现代战争、冲突已经从传统的军事冲突,而转向在多个领域进行的全方位竞争,其中经济、科技、文化等方面的竞争尤为激烈\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②①③⑤④⑥\nB. ③②④①⑥⑤\nC. ⑤②③①⑥④\nD. ⑥⑤④②①③", "choice": "B", "keypoints": "尾句特征", "most_wrong": "A", "human_count": 99809, "human_acc": 57.4607500326, "source": "2023下半年省考第十六季行测模考大赛(四川卷)第30题", "difficulty": 5, "formulas": 0, "history": [{"id": 1791732, "material": "", "question": "①回顾人类法律发展史,我们也能看到法律的发展过程在很大程度上是法官不断补充完善法律规则、填补法律漏洞的过程。\n\n②即使法律再完备也不能包罗万象,总是会给法官留下大量的解释空间。\n\n③法律只有借助法官的解释才能实现对社会生活的有效规范。\n\n④法典由法律语言构成,法律语言描述功能和信息载体功能十分有限,无法涵盖与描述全部的社会生活。\n\n⑤有的立法者希望通过立法本身的高度完善去消除法律解释活动的必要性,但事实证明是徒劳的。\n\n将以上5个句子重新排序,语序正确的一项是:", "type": "单选题", "options": "A. ②①⑤④③\nB. ①⑤④③②\nC. ①④⑤③②\nD. ②①③④⑤", "choice": "A", "keypoints": "尾句特征", "most_wrong": "B", "human_count": 441043, "human_acc": 37.0242810792, "source": "2016年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}, {"id": 2452717, "material": "", "question": "①文化是每个民族每个国家的生命体现\n\n②文化的积淀是一个社会、一个民族最可宝贵的精神财富\n\n③“不同”“多元”是社会发展的必然,更是现代社会文明进步的标志\n\n④如若所有的民族、所有的国家都强求一律,很可能导致人类文明僵化衰落\n\n⑤中国道路的成功充分说明,各个国家必须根据自己的国情建设精神家园\n\n⑥中国有句古话说得好,“和实生物,同则不继”\n\n将以上6个句子重新排列,语序最恰当的是", "type": "单选题", "options": "A. ②⑤④⑥③①\nB. ⑥②③④⑤①\nC. ③⑥④①②⑤\nD. ④⑥①⑤②③", "choice": "C", "keypoints": "尾句特征;确定顺序", "most_wrong": "B", "human_count": 1057850, "human_acc": 46.9145909155, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 27403, "material": "", "question": "为下列句子排列顺序,使其意思连贯。正确的一项是:\n\n①面对身边诸多纠结,多一点智慧和勇气,保持一份平和心态,可助我们削弱“纠结”的纠缠\n\n②随着现代生活节奏的加快,生活压力的增大,“纠结”的事越来越多\n\n③如今,随着信息技术的快速发展,“纠结”一词率先在网络上爆红,不但使用率颇高,而且使用更加广泛灵活\n\n④纠结的本意就是“相互缠绕”,常作动词用。语出唐代诗人李白的《古意》一诗:“枝枝相纠结,叶叶竞飘扬。”", "type": "单选题", "options": "A. ③②④①\nB. ③④①②\nC. ②①④③\nD. ②④③①", "choice": "D", "keypoints": "尾句特征;确定顺序", "most_wrong": "A", "human_count": 417327, "human_acc": 39.5133791966, "source": "2012年河北省公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"]]}, {"id": 2377321, "material": "", "question": "有研究声称:癌细胞怕热,高体温可以抗癌。人体最容易罹患癌症的器官包括肺、胃、大肠、乳腺等都是体温较低的部位,心脏之类的“高温器官”不容易得癌症。因此,可以用运动、喝热水、泡澡等方法提高体温来抗癌。\n\n以下各项如果为真,能够反驳上述论断的有(    )。", "type": "不定项", "options": "A. 受呼吸、饮食等影响,人的口腔温度一般比直肠温度低,而世界范围内直肠癌的发生率要高于口腔癌\nB. 人的体温存在精准的调控机制,基本保持平稳状态,体内各个脏器之间并没有什么明显的温度差异\nC. 热疗或许可以帮助放疗或一些化疗发挥更好的作用,但证明其可靠性的研究数据依然不足\nD. 心脏很少发生恶性肿瘤,是因为这里的心肌细胞不再进行分裂增殖,而与温度高低无关", "choice": "ABD", "keypoints": "削弱论点;削弱论据", "most_wrong": "C", "human_count": 94303, "human_acc": 36.1388290935, "source": "2019年420联考《行测》题(陕西卷)(网友回忆版)第109题", "difficulty": 5, "formulas": 0, "history": [{"id": 2540063, "material": "", "question": "为了精确探索人类老化的海马体体积,研究人员对28名年龄在14至79岁之间、突发猝死的男性和女性进行了全面的尸检。其中没有人有长期的健康问题或认知缺陷,并且在他们生命的最后三个月里,也没有出现明显的生活压力。科学家发现,年龄较大的男性和女性可以生成与年轻人相同数量水平的新脑细胞。因此,研究人员认为即使人变老了,脑细胞也依然会继续生长。\n\n以下各项如果为真,能够削弱上述观点的有(    )。", "type": "不定项", "options": "A. 随着寿命的增加,海马体内脑细胞之间的联系会逐渐减少,氧气和营养的供应也将减少\nB. 在啮齿类动物和灵长类动物中,海马体内生长新神经元细胞的能力随着年龄的增长而降低\nC. 研究人员在最老化的实验对象的大脑中没有发现中间神经前期细胞和未成熟神经元细胞\nD. 部分实验对象在实验期间长期服用抗抑郁药物,而抗抑郁药会对脑细胞的形成产生影响", "choice": "CD", "keypoints": "削弱论点;削弱论据", "most_wrong": "B", "human_count": 12433, "human_acc": 19.8423550229, "source": "2020年上半年省考第二十八季行测模考大赛(陕西卷)第109题", "difficulty": 7, "formulas": 0}, {"id": 10047, "material": "", "question": "雨后的山色是美丽的,即使没有人欣赏它。\n\n上述文字是对下列哪项的反驳:", "type": "单选题", "options": "A. 美丽是肤浅的\nB. 味道是不可数的\nC. 美丽只在人的眼里\nD. 人们只想看喜欢的东西", "choice": "C", "keypoints": "削弱论点", "most_wrong": "D", "human_count": 27587, "human_acc": 81.9153949324, "source": "2009年安徽省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2255770, "material": "", "question": "某高校就业处汪处长说:“最近,哲学专业的毕业生到其他专业岗位就业去了。这说明该专业岗位不受欢迎,所以这种专业应该限制招生人数。”最能削弱汪处长看法的是:", "type": "单选题", "options": "A. 哲学专业的就业岗位本来数量就很少\nB. 哲学专业毕业的学生本来就很少\nC. 哲学专业毕业的学生综合素质都很高\nD. 很多高校没有开设哲学专业", "choice": "A", "keypoints": "削弱论据", "most_wrong": "C", "human_count": 10508, "human_acc": 75.1427483822, "source": "2016年江西省法检系统招录考试《行测》题第99题", "difficulty": 5, "formulas": 0}, {"id": 2035294, "material": "", "question": "有人说:“动物的血液都是红色的。”\n\n以下最能驳斥上述判断的是:", "type": "单选题", "options": "A. 蜗牛是动物,但血是蓝色的\nB. 可能有的动物的血液不是红色的\nC. 没有见到过非红色血液的动物\nD. 血液不是红色的不大可能是动物", "choice": "A", "keypoints": "削弱论点", "most_wrong": "B", "human_count": 330447, "human_acc": 90.7864196074, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第83题", "difficulty": 4, "formulas": 0}, {"id": 2033416, "material": "", "question": "小丽一大早到公司,发现自己桌子上有一束玫瑰花,同事小王经过仔细分析,认为是客户张总送的,小丽则认为不可能。但是小王说,其他的可能性都被排除了,剩下的可能性不管看起来多荒谬,都是真的。\n\n以下哪项如果为真,最能削弱小王的说法?", "type": "单选题", "options": "A. 小王不可能比小丽更了解张总\nB. 逻辑推理不一定能得出更多答案\nC. 张总是公认的浪漫的人\nD. 小王不可能穷尽所有的可能性", "choice": "D", "keypoints": "削弱论据", "most_wrong": "A", "human_count": 1211147, "human_acc": 85.2889863906, "source": "2016年河南省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱论点"], ["判断推理", "逻辑判断", "削弱题型", "削弱论据"]]}, {"id": 2668981, "material": "", "question": "①这是典型的神话宇宙观的表现\n\n②提起中国的神话,人们会联想到“女娲补天”“后羿射日”“嫦娥奔月”等故事\n\n③但神话是作为文化基因而存在的,比如构成我们国名的两个汉字,“中”和“国”,均出于神话想象,华夏先民把大地想象成四方形的,四边之外有海环绕(所谓“四海五洲”),而自认为是大地上的中央之国(九州或神州)\n\n④从这个意义上讲,神话遗产,是我们进入中国传统本源的有效门径\n\n⑤神话是文化和文学的源头\n\n⑥许多人认为,与西方神话相比,中国的神话只是远古时代人类的思考与探索自然并结合自己的想象所产生的并不成体系的东西\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ⑥②③①④⑤\nB. ④⑤⑥②③①\nC. ②①⑥③⑤④\nD. ⑤②⑥③①④", "choice": "D", "keypoints": "非首句特征;首句特征", "most_wrong": "C", "human_count": 567398, "human_acc": 70.2991550904, "source": "2019年重庆市选调优秀大学生到基层工作考试《行测》题第26题", "difficulty": 4, "formulas": 0, "history": [{"id": 15119, "material": "", "question": "①每当普希金诗情洋溢时,形象便在脑海里缤纷涌现。\n\n②这是他独有的一种绘画状态。\n\n③绘画是普希金的一种表达方式。\n\n④所以普希金的画大多画得很快,是他瞬间形象想象的灵性记录。\n\n⑤他大量的画,是绘在他诗作的手稿上。", "type": "单选题", "options": "A. ③⑤①②④\nB. ①②③⑤④\nC. ②①③④⑤\nD. ①④③②⑤", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "D", "human_count": 7007, "human_acc": 73.0983302412, "source": "2008年重庆市公务员录用考试《行测》题第49题", "difficulty": 5, "formulas": 0}, {"id": 15087, "material": "", "question": "①无论一个人在哪儿,只要他在一扇关着的门的后面,他就能使自己不受拘束。\n\n②没有门的屋子不是屋子,而是走廊。\n\n③在关着的门内,头脑的工作最为有效。\n\n④人不是在一起放牧的马群。\n\n⑤门是隐秘、回避的象征,是心灵躲进极乐的静谧或悲伤的秘密搏斗的象征。", "type": "单选题", "options": "A. ②①③④⑤\nB. ④①③②⑤\nC. ①③④⑤②\nD. ⑤②①③④", "choice": "D", "keypoints": "首句特征", "most_wrong": "B", "human_count": 7175, "human_acc": 43.2891986063, "source": "2008年重庆市公务员录用考试《行测》题第47题", "difficulty": 5, "formulas": 0}, {"id": 1689102, "material": "", "question": "①在大比例尺的地图上有详细的地理背景资料时\n\n②在小比例尺的地图上很难做到真正意义上的定位布点\n\n③可以准确地布点以反映其实际分布\n\n④定位布点的精确程度取决于地图比例尺和资料的详细程度\n\n将以上几个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④①③②\nB. ③①②④\nC. ①②③④\nD. ②①③④", "choice": "A", "keypoints": "非首句特征;确定顺序", "most_wrong": "D", "human_count": 16069, "human_acc": 94.1377808202, "source": "2015年重庆市公务员录用考试《行测》题(下半年)第30题", "difficulty": 3, "formulas": 0}, {"id": 25197, "material": "", "question": "①它们没有超过一千年的家谱\n\n②金鱼是世界上养殖最普遍的宠物鱼类\n\n③不过有一件事是可以确定的\n\n④却没有多少证据证实它们是什么时候被驯养的\n\n⑤只有少数几个国家还没有引进\n\n⑥尽管我们知道金鱼原产于中国\n\n将以上6个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ②⑤③①⑥④\nB. ②⑤③⑥④①\nC. ②⑤⑥④③①\nD. ⑥④③①②⑤", "choice": "C", "keypoints": "首句特征;确定顺序;确定捆绑", "most_wrong": "A", "human_count": 433895, "human_acc": 68.2326369283, "source": "2011年国家公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0}, {"id": 2066950, "material": "", "question": "①但是,在读书中,就是要过河拆桥\n\n②既然知道了那个意思以后\n\n③这就是古人所说的“得意忘言”\n\n④语言文字是帮助了解书的意思的拐棍\n\n⑤最好扔了拐棍\n\n⑥在人与人的关系中,过河拆桥是不道德的事\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ④②⑤③⑥①\nB. ⑥①③④②⑤\nC. ④⑤②⑥①③\nD. ②⑤⑥③①④", "choice": "A", "keypoints": "非首句特征;确定捆绑", "most_wrong": "B", "human_count": 337420, "human_acc": 46.5165076166, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第36题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "非首句特征"], ["言语理解与表达", "语句表达", "语句排序题", "首句特征"]]}, {"id": 2015302, "material": "2015年保险公司原保险保费收入24282.52亿元,同比增长$20.00\\%$,比上一年高$2.51\\%$。其中,产险业务原保险保费收入7994.97亿元,同比增长$10.99\\%$;寿险业务原保险保费收入13241.52亿元,同比增长$21.46\\%$,健康险业务原保险保费收入2410.47亿元,同比增长$51.87\\%$;意外险业务原保险保费收入635.56亿元,同比增长$17.14\\%$。\n\n        2015年保险公司赔款和给付支出8674.14亿元,同比增长$20.20\\%$。其中,产险业务赔款4194.17亿元,同比增长$10.72\\%$;寿险业务给付3565.17亿元,同比增长$30.67\\%$;健康险业务赔款和给付762.97亿元,同比增长$33.58\\%$;意外险业务赔款151.84亿元,同比增长$18.24\\%$。\n\n        截至2015年末,保险公司资金运用余额111795.49亿元,较年初增长$19.81\\%$。其中,银行存款24349.67亿元,占比$21.78\\%$;债券38446.42亿元,占比$34.39\\%$;股票和证券投资基金16968.99亿元,占比$15.18\\%$;其他投资32030.41亿元,占比$28.65\\%$。\n\n        截至2015年末,保险公司总资产123597.76亿元,较年初增长$21.66\\%$。其中,产险公司总资产18481.13亿元,较年初增长$31.43\\%$;寿险公司总资产99324.83亿元,较年初增长$20.41\\%$;再保险公司总资产5187.38亿元,较年初增长$47.64\\%$;资产管理公司总资产352.39亿元,较年初增长$46.44\\%$。", "question": "2015年年初,再保险公司总资产约为:", "type": "单选题", "options": "A. 3514亿元\nB. 3738亿元\nC. 3947亿元\nD. 4264亿元", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 25524, "human_acc": 82.8827769942, "source": "2016年9月政法干警联考《行政职业能力测验》(本硕网友回忆版)第84题", "difficulty": 4, "formulas": 21, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 6329, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市儿童在服装消费比例支出最大的是:", "type": "单选题", "options": "A. 婴儿期\nB. 幼儿期\nC. 学龄前期\nD. 学龄期后", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "C", "human_count": 11037, "human_acc": 94.0291745945, "source": "2008年湖北省公务员录用考试《行测》题(A类)第118题", "difficulty": 5, "formulas": 7, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 5510133, "material": "2021年中国雨季特征为华南前汛期于4月26日开始,7月2日结束,雨季长度为67天,总雨量494.6毫米。与正常年份相比,开始偏晚20天,结束偏早4天,雨季长度偏短24天,雨量偏少31%。\n\n        西南雨季于6月4日开始,10月4日结束,雨季长度为122天,总雨量634.5毫米。与正常年份相比,开始偏晚9天,结束偏早10天,雨季长度偏短19天,雨量偏少15%。\n\n        华北雨季于7月12日开始,9月9日结束,雨季长度为59天,总雨量276.4毫米。与正常年份相比,开始偏早6天,结束偏晚22天,雨季长度偏长28天,为1961年以来第二长;雨量偏多103%,为1961年以来第三多。\n\n        东北雨季于6月5日开始,8月29日结束,雨季长度为85天,总雨量364.3毫米。与正常年份相比,开始偏早17天,结束偏晚4天,雨季长度偏长21天,雨量偏多23%。\n\n        华西秋雨于8月23日开始,雨季长度为77天,总雨量379.9毫米。与正常年份相比,开始偏早8天,结束偏晚7天,雨季长度偏长15天,雨量偏多87%,为1961年以来最多。\n\n        梅雨于6月9日开始,7月11日出梅,梅雨期32天,梅雨量267.2毫米;与正常年份相比,入梅时间偏晚1天,出梅时间偏早7天,梅雨期偏短8天,梅雨量偏少22%,与2020年梅雨量780.9毫米相比差距明显。江南入梅时间偏晚1天,出梅偏晚3天,雨量偏少15%;长江中下游入梅偏早4天,出梅偏早2天,雨量偏少8%;江淮区入梅时间偏早8天,出梅时间偏早4天,梅雨量偏少14%。", "question": "华西秋雨正常年份结束的时间是:", "type": "单选题", "options": "A. 11月8日\nB. 11月6日\nC. 11月1日\nD. 10月30日", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 91309, "human_acc": 59.1836511187, "source": "2023年陕西省公务员录用考试《行测》题(网友回忆版)第112题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 270499, "material": "2002年底,全国在运管部门登记注册的公路运输汽车达826.3万辆,比上年增加61.9万辆。运力结构继续调整。全国拥有大型运输客车16.1万辆,大型普通运输货车183.5万辆,分别比上年减少0.6万辆和2.6万辆;专用载货汽车16.5万辆,增长$30.8\\%$。其中集装箱货车增加了0.7万辆,增长$28.2\\%$。\n\n        公路运输总量继续增长。2002年全社会完成公路客运量147.5亿人,旅客周转量7805.8亿人公里,分别比上年增长$5.1\\%$和$8.3\\%$;全社会完成公路货运量111.6亿吨,货物周转量6782.5亿吨公里,分别比上年增长$5.7\\%$和$7.1\\%$。公路客运量、旅客周转量在综合运输体系中所占比重分别为$91.8\\%$和$55.3\\%$;公路运输量、货物周转量在综合运输体系中所占比重分别为$75.3\\%$和$13.4\\%$。\n\n        水路货运总量持续增长。2002年全社会完成水路货运量14.2亿吨,货物周转量27510.6亿吨公里,分别比上年增长$6.8\\%$和$5.9\\%$。水路客运量持续下降的局面得到扭转,但旅客周转量的下降趋势仍在延续。2002年全社会完成水路客运量1.9亿人,比上年增长$0.5\\%$,旅客周转量81.8亿人公里,比上年下降$9.0\\%$。水路客运量、旅客周转量在综合运输体系中所占比重分别为$1.2\\%$和$0.6\\%$;水路货运量、货物周转量在综合运输中所占比重分别为$9.6\\%$和$54.5\\%$。\n\n        在全社会水路货运中,内河运输完成货运量7.6亿吨、货物周转量1508.7亿吨,分别占全社会水路货运量、货物周转量的$53.3\\%$和$5.5\\%$;沿海运输完成货运量3.6亿吨、货物周转量4269.2亿吨公里,分别占$25.6\\%$和$15.5\\%$;远洋运输完成货运量3.0亿吨、货物周转量21732.7亿吨公里,分别占$21.1\\%$和$79.0\\%$。", "question": "2002年综合运输体系共完成旅客周转量:", "type": "单选题", "options": "A. 11347.5亿人公里\nB. 12568.9亿人公里\nC. 14115.4亿人公里\nD. 14876.5亿人公里", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 9423, "human_acc": 76.4300116736, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第78题", "difficulty": 5, "formulas": 24, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "文字资料"]]}, {"id": 5268789, "material": "2020年末,全国各类文化和旅游单位比上年末减少0.63万个,降幅为1.81%,其中,各级文化和旅游部门所属单位比上年末减少221个,降幅为0.33%。\n\n        2020年末,全国共有各类文物机构11314个,比上年末增加752个,其中,文物保护管理机构3373个;博物馆5452个,占48.2%。年末全国文物机构从业人员17.57万人,比上年末增加1.34万人,其中,高级职称11072人;中级职称22165人,占12.6%;中级以下职称142505人。\n\n        2020年末,全国共有文化市场经营单位20.89万个,从业人员160.91万人,营业收入9967.49亿元,营业利润1699.70亿元。其中,娱乐场所6.54万个,从业人员53.23万人,营业收入419.25亿元,营业利润5.33亿元;互联网上网服务营业场所10.62万个,从业人员24.71万人,营业收入181.53亿元;演出市场单位2.23万个,从业人员49.52万人,营业收入2157.50亿元,营业利润351.15亿元;艺术品经营机构0.53万个,从业人员1.94万人,营业收入71.99亿元,营业利润9.29亿元;经营性互联网文化单位0.97万个,从业人员31.49万人,营业收入7137.22亿元,营业利润1331.13亿元。\n\n        2019年末,全国文化市场经营单位共计22.02万个,较上年末减少1.91万个,从业人员164.59万人,营业收入8467.90亿元,营业利润1046.58亿元。其中,娱乐场所67367个,从业人员54.25万人,营业收入535.50亿元,营业利润71.55亿元;互联网上网服务营业场所116809个,从业人员31.19万人,营业收入243.85亿元,营业利润41.28亿元;演出市场单位22944个,从业人员49.94万人,营业收入1551.87亿元,营业利润134.80亿元;艺术品经营机构6036个,从业人员2.44万人,营业收入89.30亿元,营业利润20.30亿元;经营性互联网文化单位7002个,从业人员26.78万人,营业收入6035.15亿元,营业利润776.20亿元。", "question": "2020年末,全国演出市场单位数的同比减少量约比娱乐场所:", "type": "单选题", "options": "A. 少0.13万个\nB. 多0.13万个\nC. 少0.18万个\nD. 多0.18万个", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 170963, "human_acc": 75.7128735457, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 2049302, "material": "下面是关于我国年轻人2016年各项消费的数据统计:\n\n        2016年(全年366天),全国年轻人人均月收入为6726元。同时,存款额度也在增加,2016年年轻人的人均月存款为2340元,较2015年同比增加$15.3\\%$,而2015年的人均月存款较2014年增加$32.7\\%$。在贷款方面,月收入4000元以上的办理信用卡比例超过$76\\%$,而贷款年龄段比例则为:18-25岁占$29.6\\%$、26-35岁占$49.1\\%$、36-45岁占$21.3\\%$。年轻人每月平均记账次数约为41笔,其中上海以1.672笔的人均日记账次数居榜首。在消费方面,KTV的年人均消费由2014年的699.9元增加到2016年的814.6元;在旅游方面,人均年度交通支出达4985元。年轻人2016年在书本上的人均支出达到168元,相对于2015年的155元,同比增长$8.4\\%$。2016年,年轻人与雾霾相关的支出较2015年多出$8.7\\%$,人均支出达到998.7元;每日人均食品消费45.9元,比去年增加8.8元,早餐平均花费4.5元。", "question": "在2016年,上海年轻人人均全年记账次数多出全国年轻人:", "type": "单选题", "options": "A. 118次\nB. 120次\nC. 122次\nD. 124次", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 561812, "human_acc": 41.8002819448, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第117题", "difficulty": 6, "formulas": 8, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 4874601, "material": "2021年前三季度,我国规模以上互联网和相关服务企业(简称互联网企业)完成业务收入11633亿元,同比增长25.4%,两年平均增速为19.4%。实现营业利润966亿元,同比增长16.8%,增速较上半年和1-8月份分别回落10.6和20.7个百分点,但仍高出去年同期3.2个百分点。\n\n        2021年前三季度,投入研发费用529亿元,同比增长11.9%,增速较上半年回落2个百分点,仍高出去年同期0.7个百分点。完成信息服务收入6414亿元,同比增长19.8%,增速较上半年提高4.4个百分点。互联网平台服务完成收入4181亿元,同比增长41%。完成互联网接入及相关服务收入304.9亿元,同比增长1%,增速较上半年和一季度分别回落11.2和7.3个百分点;完成互联网数据服务(包括云服务、大数据服务等)收入180.5亿元,同比增长27.3%,增速较上半年提高3.9个百分点。\n\n        截止到2021年9月末,移动应用规模排在前4位的APP数量占比达59.2%,占比较6月末提高了1个百分点,其他生活服务、教育等10类APP占比为40.8%。其中,游戏APP数量继续领先,达67.9万款,占全部APP的比重为24.8%。日常工具类、电子商务类和社交通讯类APP数量分别达41.1万款、27.8万款和25.1万款,分列第二至四位。\n\n        截止到2021年9月末,我国第三方应用商店在架应用分发总量达到20164亿次,其中,游戏类下载量排第一位,达2873亿次;日常工具类下载量排第二位,达2801亿次;社交通讯类、音乐视频类、生活服务类、新闻阅读类、系统工具类和电子商务类分别以2576亿次、2247亿次、1850亿次、1585亿次、1485亿次、1319亿次分列第三至八位。在其余各类应用中,下载总量超过500亿次的应用还有金融类(979亿次)和拍照摄影类(759亿次)。", "question": "2021年前三季度,投入研发费用比2019年同期约增长了:", "type": "单选题", "options": "A. 23.1%\nB. 24.4%\nC. 25.8%\nD. 27.5%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "D", "human_count": 270475, "human_acc": 57.9602551068, "source": "2022上半年省考第十四季行测模考大赛(广东县级卷)第98题", "difficulty": 6, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4933275, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "与2018年相比,2019年S省建筑业增加值约增长了:", "type": "单选题", "options": "A. 7.2%\nB. 8.0%\nC. 8.5%\nD. 19.3%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 299975, "human_acc": 65.7551462622, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第93题", "difficulty": 6, "formulas": 0}, {"id": 5198480, "material": "改革开放以来,S市作为中国第一个经济特区,凭借改革精神、政策红利以及地缘优势迅速发展成为国内最发达地区之一。2018-2020年S市实现生产总值分别为24221.98亿元、26927.09亿元和27670.24亿元,同比分别增长7.6%、6.7%和3.1%。分产业来看,2020年S市第一产业增加值25.79亿元,同比下降3.1%;第二产业增加值10454.01亿元,同比增长1.9%;第三产业增加值17190.44亿元,同比增长3.9%。第一、二、三产业增加值比例为0.1:37.8:62.1。\n\n        2020年全市现代服务业增加值同比增长6.4%,现代服务业增加值占第三产业增加值比重为76.1%,其中金融业增加值4189.63亿元,同比增长9.1%,信息传输、软件和信息技术服务业增加值2883.49亿元,同比增长11.3%,是拉动现代服务业增长的主要力量。\n\n        2020年全市货物贸易进出口总额30502.5亿元,同比增长2.4%,高于2019年增速3.0个百分点。其中,出口总额16972.7亿元,同比增长1.5%。", "question": "2020年全市货物贸易进出口总额比2018年约增长:", "type": "单选题", "options": "A. 1.79%\nB. 2.23%\nC. 3.01%\nD. 7.90%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 153985, "human_acc": 82.3346429847, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0}, {"id": 2028352, "material": "2015年我国钟表全行业实现工业总产值约675亿元,同比增长$3.2\\%$,增速比上年同期提高1.7个百分点。\n\n        全行业全年生产手表10.7亿只,同比增长$3.9\\%$,完成产值约417亿元,同比增长$4.3\\%$,增速提高1.9个百分点;生产时钟(含钟心)5.2亿只,同比下降$3.7\\%$,完成产值162亿元,同比下降$4.7\\%$,降幅扩大1.3个百分点;钟表零配件、定时器及其它计时仪器产值96亿元,同比增长$14.3\\%$,增速基本保持上年水平。\n\n        2015年我国钟表行业规模以上工业企业主营业务收入365.8亿元,同比增长$8.7\\%$;实现利润23.4亿元,与上年相比下降$1.5\\%$,而2015年轻工行业主营业务利润率(利润/主营业务收入)的平均水平为$7.57\\%$。\n\n        2015年我国钟表行业海关进出口总额为92.5亿美元,同比增长$4\\%$,完成出口总额为57.7亿美元,同比增长$8.3\\%$,进口额34.8亿美元。出口总额中加工贸易额占$47\\%$,较上年缩小2个百分点。", "question": "2015年我国钟表全行业生产时钟(含钟心)的产值与2013年相比约:", "type": "单选题", "options": "A. 上升了$11\\%$\nB. 下降了$11\\%$\nC. 上升了$8\\%$\nD. 下降了$8\\%$", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 2191826, "human_acc": 71.5692304042, "source": "2017年国家公务员录用考试《行测》题(地市级)第121题", "difficulty": 5, "formulas": 345}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 2188891, "material": "根据以下资料,回答下列小题。\n\n        2016年,全年原创首演剧目1423个,扶持了100名京剧、地方戏表演艺术家向200名青年演员传授经典折子戏。第十一届中国艺术节共汇聚67台参评参演剧目和1000余件美术作品,观众达40万人次。国家艺术基金2016年共有966个项目获得立项资助,较2015年增长了$32.7\\%$,资助资金总额7.3亿元。\n\n        2016年末全国共有艺术表演团体12301个,比上年末增加1514个,从业人员33.27万人,增加3.08万人。其中各级文化部门所属的艺术表演团体2031个,占$16.5\\%$;从业人员11.52万人,占$34.6\\%$。\n\n        全年全国艺术表演团体共演出230.60万场,比上年增长$9.4\\%$,其中赴农村演出151.60万场,增长$9.0\\%$;国内观众11.81亿人次,增长$23.3\\%$,其中农村观众6.21亿人次,比上年增长$6.2\\%$;总收入311.23亿元,比上年增长$20.8\\%$,其中演出收入130.86亿元,增长$39.3\\%$。\n\n        全年全国各级文化部门所属艺术表演团体共组织政府采购公益演出13.90万场,观众1.17亿人次。利用流动舞台车演出11.31万场次,观众10381万人次。中央直属院团全年开展公益性演出1335场,其中赴老少边穷地区演出241场,面向老红军、留守儿童等演出132场。\n\n        年末全国共有艺术表演场馆2285个,观众坐席数168.93万个。全年馆内艺术演出19.09万场次,增长$39.5\\%$;艺术演出观众3098万人次,增长$8.6\\%$。其中各级文化部门所属艺术表演场馆1265个,全年共举行艺术演出6.81万场次,增长$25.0\\%$,艺术演出观众2589万人次,增长$8.4\\%$。\n\n        年末全国国有美术馆462个,比上年末增加44个,从业人员4597人,增加502人。全国共举办展览6146次,比上年增长$16.8\\%$,参观人次3237万,增长$4.8\\%$。", "question": "2016年,全国艺术表演团体平均从业人员数和各级文化部门所属艺术表演团体从业人员平均数之比约为:", "type": "单选题", "options": "A. 1:0.346\nB. 6:1\nC. 1:2\nD. 2:3", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 651592, "human_acc": 66.9787228818, "source": "2018年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第104题", "difficulty": 5, "formulas": 15, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 3889, "material": "根据我国农村和城市郊区农业生产结构特征,南方农作物主要为早稻和晚稻,北方主要为小麦和玉米,大中城市郊区主要以蔬菜为主。2005年,南方早、晚稻每公顷平均年产值为1.23万元,北方小麦和玉米每公顷平均年产值为1.04万元,大中城市郊区蔬菜每公顷平均年产值为3.89万元。按照现行征地补偿最高标准30倍,南方每公顷耕地的最高征地补偿为36.9万元,北方每公顷耕地的最高征地补偿为31.2万元,大中城市郊区每公顷耕地的最高征地补偿为116.7万元。根据国家农调队统计数据,2005年农户人均从耕地(即种植业)中获得的纯收入为1098元,农户人均耕地面积为0.14公顷,即每公顷耕地的纯收入为7842元。以预期寿命70岁计算,农民一生从1公顷耕地中获得的纯收入为54.89万元,这还没有考虑农产品价格上涨因素和土地增值、保值因素(即70年后土地还可用于农业生产)。在实际征地时,通常不按最高标准进行补偿,大中城市郊区也仍然以价值较低的粮食作物产值作为补偿依据。因此,我国目前的征地补偿严重偏低。", "question": "2005年,大中城市郊区蔬菜每亩年平均产值是南方早、晚稻每亩年均产值的约多少倍:", "type": "单选题", "options": "A. 3.16\nB. 4.23\nC. 4.52\nD. 5.08", "choice": "A", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 8442, "human_acc": 88.0241648898, "source": "2008年辽宁省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 2049584, "material": "根据以下资料,回答下列小题。\n\n        2015年国家自然科学基金委全年共接收173017项各类申请,同比增长约$10\\%$,择优资助各类项目40668项,比上年增加1579项,资助直接费用218.8亿元,平均资助强度(资助直接费用与资助项数的比值)53.8万元,各项工作取得新进展新成效。\n\n        在研究项目系列方面,面上项目资助16709项,比上年增加1709项,占总项数的$41\\%$,直接费用102.41亿元,平均资助率(资助项目占接收申请项目的比重)$22.9\\%$,同比下降2.5个百分点。重点项目资助625项,同比增长约$3.3\\%$,直接费用17.88亿元。重大项目资助20项,直接费用3.18亿元。\n\n        在人才项目系列方面,青年科学基金资助16155项,比上年减少266项,占总项数的$40\\%$,直接费用31.95亿元,平均资助率$24.6\\%$,同比下降0.7个百分点。地区科学基金资助2829项,比上年增加78项,直接费用10.96亿元,有力推进了欠发达区域人才稳定与培养。优秀青年科学基金资助400人,国家杰出青年科学基金资助198人,新资助创新研究群体项目38项,促进了优秀人才和团队成长。", "question": "能够从上述资料中推出的是:", "type": "单选题", "options": "A. 2015年重点项目的平均资助强度多于重大项目\nB. 2014年面上项目资助项数多于青年科学基金项目\nC. 2015年面上项目的平均资助率高于青年科学基金项目\nD. 2015年重点项目资助项数的同比增长率高于地区科学基金", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 950066, "human_acc": 66.3206556176, "source": "2017年422联考《行测》题(新疆卷)第110题", "difficulty": 5, "formulas": 6, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 2062828, "material": "2012年,A国取得了$6.2\\%$的经济增长速度,超过世界平均水平近1倍。2012年,A国的进出口总额为3816.5亿美元,同比增长$0.2\\%$;其中出口1900亿美元,同比降低$6.6\\%$,进口1916.5亿美元,同比增长$8.1\\%$。\n\n       2012年,A国吸引的外国直接投资接近200亿美元,全球排名第17位,较上年上升4位。来自A国的官方投资统计机构的数据显示,2012年吸引外资前五的行业分别是采矿业、金属机械及电子业、交通通信业、化工制药业和机动车及运输设备制造业;排名前五名的国家分别是新加坡(49亿美元)、日本(25亿美元)、韩国(19亿美元)、美国(12亿美元)和毛里求斯(11亿美元)。\n\n       2012年,B国GDP为2828亿美元,经济增长速度比上年略有降低,但依然超过$6\\%$。2012年,B国的进出口总额1790.1亿美元,比上年降低了$4.3\\%$;其中进口358.7亿美元,同比降低$43.1\\%$,出口1431.4亿美元,同比增长$15.5\\%$。B国的贸易顺差由上年的608.9亿美元,增长到2012年的1072.7亿美元,增长了$76.2\\%$,其中进口较上年减少272.2亿美元,占贸易顺差的$58.7\\%$。一方面,B国不断采取措施,改善国内投资环境,吸引外资进入;另一方面,B国在电力、电信、交通运输、法律法规执行力、政治局势和安全等方面存在许多不足,因此,B国的外资流入表现出波动大且增长迅速的特征。2011年,B国外资净流入为89.2亿美元,比上一年增长$46.2\\%$,比2004年增长了$319\\%$;在2004—2011年,最高增长率达到了$134\\%$,最低的增长率为$-29.5\\%$,波动幅度大。\n\n       2012年,C国的经济增长达到$3.9\\%$。该国国际贸易的增速快于国内经济的增速,进出口总额为7857.3亿美元,同比增长$5.3\\%$,其中出口3859.3亿美元,同比增长$5.7\\%$,进口3998亿美元,同比增长$5\\%$。\n\n       2012年,C国的对外投资和吸引外资呈现出两种截然不同的趋势。数据显示,2012年,C国对外投资额约为260亿美元,世界排名由上年的第28位上升到2012年的第15位。2012年,C国吸引外国直接投资126.6亿美元,同比减少$34.9\\%$,为近12年来最低。从投资来源国来看,来自美国的占$58.5\\%$,日本占$13.1\\%$,加拿大占$8.2\\%$,德国占$5.9\\%$,荷兰占$5.7\\%$。", "question": "2012年,A国机动车及运输设备制造业吸引外国直接投资最多不可能超过(    )亿美元。", "type": "单选题", "options": "A. 40\nB. 30\nC. 20\nD. 10", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 247423, "human_acc": 71.8469988643, "source": "2016年广州市公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 24, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 2307731, "material": "2018年1-7月份,社会消费品零售总额210752亿元,同比增长$9.3\\%$。其中,限额以上单位消费品零售额81125亿元,同比增长$7.3\\%$。\n\n        按经营单位所在地分,7月份,城镇消费品零售额26388亿元,同比增长$8.6\\%$;乡村消费品零售额4345亿元。1-7月份,城镇消费品零售额180480亿元,同比增长$9.1\\%$;乡村消费品零售额30272亿元,同比增长$10.4\\%$。\n\n        按消费类型分,7月份,餐饮收入3343亿元,同比增长$9.4\\%$;商品零售27391亿元,同比增长$8.7\\%$。1-7月份,餐饮收入22800亿元,同比增长$9.8\\%$;商品零售187951亿元,同比增长$9.2\\%$。\n\n        2018年1-7月份,全国网上零售额47863亿元,同比增长$29.3\\%$。其中,实物商品网上零售额36461亿元,同比增长$29.1\\%$,占社会消费品零售总额的比重为$17.3\\%$;在实物商品网上零售额中,吃、穿和用类商品分别同比增长$41.6\\%$、$29.9\\%$和$29.7\\%$。", "question": "2017年1-7月,限额以上单位消费品零售额占社会消费品零售总额比重约为:", "type": "单选题", "options": "A. $33.4\\%$\nB. $37.6\\%$\nC. $38.5\\%$\nD. $39.2\\%$", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 484656, "human_acc": 58.3737743884, "source": "2018年辽宁省公务员录用考试《行测》题(网友回忆版)第102题", "difficulty": 5, "formulas": 349, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2773680, "material": "2019年1-2月,全国固定资产投资(不含农户)44849亿元,同比增长$6.1\\%$,增速比2018年全年提高0.2个百分点。从环比速度看,2月固定资产投资(不含农户)增长$0.43\\%$。其中,民间固定资产投资26963亿元,同比增长$7.5\\%$,增速回落1.2个百分点。\n\n        2019年1-2月,全国房地产开发投资12090亿元,同比增长$11.6\\%$,增速比2018年全年提高2.1个百分点。其中,住宅投资8711亿元,增长$18.0\\%$,增速提高4.6个百分点;办公楼投资669亿元,增长$11.6\\%$;商业营业用房投资1315亿元,下降$9.0\\%$。\n\n        2019年1-2月,分产业看,第一产业投资950亿元,同比增长$3.7\\%$,增速比2018年全年回落9.2个百分点;第二产业投资13864亿元,增长$5.5\\%$,增速回落0.7个百分点;第三产业投资30035亿元,增长$6.5\\%$,增速提高1个百分点。第三产业中,基础设施投资(不含电力、热力、燃气及水生产和供应业)同比增长$4.3\\%$,增速比2018年全年提高0.5个百分点。其中,水利管理业投资下降$1.8\\%$,降幅收窄3.1个百分点;公共设施管理业投资下降$2.9\\%$,2018年全年为增长$2.5\\%$;道路运输业投资增长$13\\%$,增速提高4.8个百分点;铁路运输业投资增长$22.5\\%$,2018年全年为下降$5.1\\%$。\n\n        2019年1-2月,东部地区固定资产投资同比增长$3.3\\%$,增速比2018年全年回落2.4个百分点;中部地区投资增长$9.4\\%$,增速回落0.6个百分点;西部地区投资增长$7.6\\%$,增速提高2.9个百分点;东北地区投资增长$5.7\\%$,增速提高4.7个百分点。", "question": "2018年,三大产业投资占全国固定资产投资(不含农户)的比重超过上年同期的类别有几个?", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "B", "human_count": 134643, "human_acc": 66.0264551443, "source": "2021上半年省考第六季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 21, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 5370393, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2022年4月,上海市高新技术产品进出口总额与上年同期相比的降幅约为:", "type": "单选题", "options": "A. 39.0%\nB. 46.8%\nC. 49.0%\nD. 56.0%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 350988, "human_acc": 81.0155902766, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第88题", "difficulty": 4, "formulas": 0, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 5560622, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2020年,H省增加值较去年相比增长量最大的行业是:", "type": "单选题", "options": "A. 住宿和餐饮业\nB. 金融业\nC. 房地产业\nD. 信息传输、软件和信息技术服务业", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 32796, "human_acc": 82.8088791316, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第119题", "difficulty": 4, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 5515292, "material": "2020年,全国全社会用电量75110亿千瓦时,同比增长3.1%。分产业看,第一产业用电量859亿千瓦时,同比增长10.2%;第二产业用电量51215亿千瓦时,同比增长2.5%;第三产业用电量12087亿千瓦时,同比增长1.9%;城乡居民生活用电量10949亿千瓦时,同比增长6.9%。\n\n        2020年,全国6000千瓦及以上电厂发电设备平均利用小时同比减少70小时。其中,水电设备平均利用小时为3827小时,同比增加130小时;火电设备平均利用小时为4216小时,同比减少92小时。\n\n        2021年,全国全社会用电量83128亿千瓦时。分产业看,第一产业用电量1023亿千瓦时;第二产业用电量56131亿千瓦时,其中工业用电量55090亿千瓦时,同比增长9.1%;第三产业用电量14231亿千瓦时;城乡居民生活用电量11743亿千瓦时。\n\n        2021年,全国6000千瓦及以上电厂发电设备平均利用小时3817小时,比上年同期增加59小时。全国主要发电企业电源工程建设投资完成5530亿元,同比增长4.5%,其中,水电988亿元,同比下降7.4%。", "question": "2020年,第二产业用电量中非工业用电量约为多少亿千瓦时?", "type": "单选题", "options": "A. 720\nB. 831\nC. 1041\nD. 50495", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 39852, "human_acc": 60.7071163304, "source": "2023上半年省考第十季行测模考大赛(四川卷)第88题", "difficulty": 6, "formulas": 0, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 3010695, "material": "2020年1-10月,我国进出口总额259521亿元,同比(下同)增长$1.1\\%$,增速较上年同期收窄1.3个百分点。其中出口143296亿元,增长$2.4\\%$;进口116224亿元,下降$0.5\\%$。10月当月,我国进出口总额28370亿元,增长$4.6\\%$。其中出口16194亿元,增长$7.6\\%$;进口12176亿元,增长$0.9\\%$。\n\n        1-10月,我国服务进出口总额37257.8亿元,下降$16.1\\%$。其中,服务出口15489.5亿元,下降$1.8\\%$;进口21768.3亿元。服务出口降幅小于进口22.1个百分点,带动服务贸易逆差下降$51.1\\%$至6278.8亿元。\n\n        1-10月,我国知识密集型服务进出口16390.3亿元,增长$8.3\\%$,占服务进出口总额的比重达到$44.0\\%$,提升9.9个百分点。其中,知识密集型服务出口8609.4亿元,增长$8.2\\%$,占服务出口总额的比重达到$55.6\\%$,提升5.1个百分点。出口增长较快的领域是知识产权使用费、保险服务、电信计算机和信息服务,增幅分别为$27.2\\%$、$18.4\\%$和$14.4\\%$。知识密集型服务进口7780.9亿元,增长$8.4\\%$,占服务进口总额的比重达到$35.7\\%$,提升10.7个百分点。进口增长较快的领域是金融服务、电信计算机和信息服务、保险服务,增幅分别为$35\\%$、$23.4\\%$和$18.6\\%$。\n\n        1-10月,我国旅行服务进出口8732.8亿元,下降$47.1\\%$,其中出口下降$48.5\\%$,进口下降$46.9\\%$。", "question": "2019年1-10月我国旅行服务进口额大约是出口额的多少倍?", "type": "单选题", "options": "A. 2\nB. 3\nC. 5\nD. 7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 345684, "human_acc": 40.0429293806, "source": "2022年国考第六季行测模考大赛(副省级)第129题", "difficulty": 7, "formulas": 24, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 2453204, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "2016年平均每所民办中等职业学校在校生人数约为", "type": "单选题", "options": "A. 871人\nB. 991人\nC. 1091人\nD. 1181人", "choice": "A", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 738600, "human_acc": 71.1623341457, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第114题", "difficulty": 4, "formulas": 12, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 2448578, "material": "2018年前三季度,S省社会物流总额35357.26亿元,同比增长$6.4\\%$,增速比上半年放缓0.7个百分点。其中,工业品物流总额16636.15亿元,同比增长$0.2\\%$,增速比上半年放缓2.1个百分点;外部流入(含进口)货物物流总额17357.31亿元,同比增长$12.1\\%$,增速比上半年加快0.8个百分点;农产品物流总额875.06亿元,同比增长$11.6\\%$,增速比上半年加快0.5个百分点;单位与居民物品物流总额457.86亿元,同比增长$40.7\\%$,增速比上半年放缓3个百分点;再生资源物流总额30.88亿元,同比下降$7.0\\%$,降幅比上半年扩大4.3个百分点。\n\n        2018年前三季度,S省物流相关行业实现总收入1912.8亿元,同比增长$6.6\\%$。其中:运输环节收入1321.9亿元,同比增长$6.0\\%$;保管环节收入226.2亿元,同比增长$6.4\\%$;邮政业收入82.8亿元,同比增长$16.7\\%$;配送、加工、包装业收入98.8亿元,同比增长$6.4\\%$。\n\n        2018年前三季度,S省社会物流总费用2682.1亿元,同比增长$6.3\\%$,比上半年放缓0.9个百分点。其中:物流运输环节总费用1854.6亿元,同比增长$6.3\\%$;保管环节总费用612.4亿元,同比增长$6.4\\%$;管理环节总费用214.9亿元,同比增长$6.4\\%$。", "question": "将2018年前三季度S省物流相关行业不同类型的收入按照同比增量从高到低排列,以下正确的是:", "type": "单选题", "options": "A. 运输收入$\\gt$保管收入$\\gt$邮政业收入$\\gt$配送、加工、包装业收入\nB. 运输收入$\\gt$配送、加工、包装业收入$\\gt$邮政业收入$\\gt$保管收入\nC. 运输收入$\\gt$保管收入$\\gt$配送、加工、包装业收入$\\gt$邮政业收入\nD. 运输收入$\\gt$邮政业收入$\\gt$配送、加工、包装业收入$\\gt$保管收入", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 1382487, "human_acc": 69.66358454, "source": "2020年国家公务员录用考试《行测》题(副省级网友回忆版)第134题", "difficulty": 5, "formulas": 1019, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 5370404, "material": "2020年,北京市农林牧渔业总产值为263.4亿元,比上年下降6.5%,降幅较1-3季度收窄1.4个百分点。2021年前三季度,全市农林牧渔业总产值为171.3亿元,同比下降0.6%。\n\n        分行业看,2020年北京市农林牧渔业产值“一升三降”。其中,在蔬菜与粮食生产快速恢复带动下,种植业产值达到107.6亿元,比上年增长5.1%,占农林牧渔业总产值的40.8%;林业产值为97.7亿元,下降15.5%,占比37.1%;牧业产值为45.2亿元,下降8.3%。2021年前三季度,全市种植业产值为82.0亿元,同比增长13.8%;林业产值为46.5亿元,同比下降22.3%;牧业产值为34.6亿元,同比增长13.4%;渔业产值为2.7亿元,同比增长73.2%。\n\n        北京市统计局指出,随着疫情防控形势趋稳,休闲农业与乡村旅游加快回暖。2020年北京市观光园和乡村旅游的总接待人次为1877.5万人,总收入为25亿元。其中4季度观光园收入同比降幅较3季度收窄12.2个百分点,乡村旅游收入自疫情发生以来首次实现正增长,同比增长4.5%。2021年前三季度,全市休闲农业与乡村旅游收入为24亿元;接待1790.4万人次,同比增长53.1%;平均每人次创造收入134元,较去年同期减少4.8%。", "question": "2021年前三季度,北京市休闲农业与乡村旅游收入与去年同期相比增长约:", "type": "单选题", "options": "A. 43.2%\nB. 45.8%\nC. 48.3%\nD. 53.1%", "choice": "B", "keypoints": "平均数的增长率;文字资料", "most_wrong": "C", "human_count": 335105, "human_acc": 54.7780546396, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第97题", "difficulty": 6, "formulas": 0, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 2526997, "material": "2020年1-3月,M省房地产开发投资1132.93亿元,比上年同期下降$13.3\\%$,增速比上年同期回落31.1个百分点。其中,住宅投资837.39亿元,下降$6.2\\%$,占房地产开发投资的比重为$73.9\\%$。\n\n        1-3月,房地产开发企业房屋施工面积28360.84万平方米,同比下降$0.7\\%$;其中,住宅施工面积18798.30万平方米,增长$2.2\\%$。房屋新开工面积787.47万平方米,下降$24.4\\%$;其中,住宅新开工面积560.23万平方米,下降$24.9\\%$。房屋竣工面积567.61万平方米,下降$17.4\\%$;其中,住宅竣工面积380.66万平方米,下降$9.6\\%$。房地产开发企业土地购置面积32.86万平方米,同比增长$39.0\\%$。\n\n        1-3月,商品房销售面积961.82万平方米,同比下降$30.1\\%$;其中,住宅销售面积730.31万平方米,下降$31.5\\%$。商品房销售额1040.75亿元,下降$30.8\\%$;其中,住宅销售额872.23亿元,下降$24.6\\%$。3月末,商品房待售面积2015.05万平方米,同比增长$5.9\\%$。其中,住宅待售面积618.62万平方米,增长$2.3\\%$。\n\n        1-3月,房地产开发企业到位资金1546.88亿元,同比下降$6.4\\%$。其中,国内贷款264.69亿元,增长$16.8\\%$;利用外资0.12亿元,下降$93.2\\%$;自筹资金678.71亿元,增长$3.2\\%$;其他资金53.66亿元,下降$50.7\\%$。", "question": "2018年1-3月M省房地产开发投资约多少亿元?", "type": "单选题", "options": "A. 2345\nB. 1590\nC. 1307\nD. 1109", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "C", "human_count": 332776, "human_acc": 65.965394139, "source": "2021年国考第三季行测模考大赛(副省级)第121题", "difficulty": 4, "formulas": 21, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 2549, "material": "总体看来,2004年世界各国的石油探明储量基本变化不大。但是由于BP公司修正了前苏联、哈萨克斯坦、伊朗、利比亚和苏丹等国的数据,特别是哈萨克斯坦从12亿吨修正到54亿吨,从而使各国在全球石油储量分布中所占的比例发生了一些变化。尽管如此这并没有影响到欧佩克在全球石油储量中的地位,其石油储量约占全球的$74.9\\%$。若从地区来看,中东石油资源最为集中,占全球的$61.7\\%$,其中仅沙特阿拉伯就达$22.1\\%$,占世界石油储量的$\\frac{1}{5}$以上,其次是伊朗($11.1\\%$)、伊拉克($9.7\\%$)、科威特($8.3\\%$)和阿联酋($8.2\\%$)。在中南美地区,石油储量最多的委内瑞拉(占世界的$6.5\\%$)在该地区占有$\\frac{4}{5}$的石油资源。在欧洲及前苏联地区,修正后前苏联的石油储量占世界的$6.1\\%$,哈萨克斯坦占世界的$3.3\\%$,其后是挪威($0.8\\%$)和阿塞拜疆($0.6\\%$)。在非洲,修正后利比亚所占的份额达到了$3.3\\%$,其次是尼日利亚($3.0\\%$)阿尔及利亚($1.0\\%$),苏丹修正后也从$0.1\\%$升高到了$0.5\\%$。北美三国、美国、加拿大和墨西哥的石油储量份额分别为$2.5\\%$、$1.4\\%$和$1.2\\%$。在亚太地区,石油储量最多的是中国,占世界的$1.4\\%$,其次是印度、印度尼西亚和马来西亚,均在$0.4\\%$~$0.5\\%$之间。2004年世界石油产量达38.68亿吨,比上年增长了$4.5\\%$。欧佩克的产量增长了$7.7\\%$,达到15.88亿吨,从而继续赢得市场份额。伊拉克(增长了$50.8\\%$)和委内瑞拉(增长了$13.8\\%$)的供应有所反弹,但仍低于先前的最高水平。沙特阿拉伯的产量达到5.06亿吨,增长了$3.7\\%$,创历史新高。中东其他产油国产量也分别有所提高。伊朗增长了$2.3\\%$,达到2.03亿吨;阿联酋增长了$5.2\\%$,达到1.26亿吨;科威特增长了$8.7\\%$,达到1.20亿吨。俄罗斯也比上年增长了$8.9\\%$,达4.58亿吨。而美国由于墨西哥湾飓风的影响,产量下降了$2.5\\%$,但仍达3.30亿吨,排名其后的是伊朗和墨西哥(1.91亿吨)。石油产量居世界第六位的是中国,达1.75亿吨。", "question": "2003年阿联酋的石油产量比科威特:", "type": "单选题", "options": "A. 高\nB. 低\nC. 一样\nD. 无法判断", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 15625, "human_acc": 79.4496, "source": "2008年江西省公务员录用考试《行测》题第109题", "difficulty": 4, "formulas": 35, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 17957, "material": "2008年,我国全年建设占用耕地19.16万公顷,灾毁耕地2.48万公顷,生态退耕0.76万公顷,因农业结构调整减少耕地2.49万公顷。土地整理复垦开发补充耕地22.96万公顷。\n\n        全年水资源总量27127亿立方米,比上年增加7.4%;人均水资源2048立方米,增加6.9%;全年平均降水量659毫米,增加8.0%;年末全国大型水库蓄水总量1962亿立方米,比上年末多蓄水93亿立方米;全年总用水量5840亿立方米,比上年增长0.4%。其中,生活用水增长0.6%,工业用水增长1.8%,农业用水减少0.2%,生态补水减少0.7%。万元国内生产总值用水量231.8立方米,比上年下降7.9%;万元工业增加值用水量130.3立方米,下降7.0%。\n\n        全年完成造林面积477万公顷。其中,人工造林329万公顷,林业重点工程完成造林面积312万公顷,占全部造林面积的65.4%。全民义务植树23.1亿株。截至2008年底,自然保护区达到2538个,其中国家级自然保护区303个。新增综合治理水土流失面积4.7万平方公里,新增实施水土流失地区封育保护面积2.6万平方公里。\n\n        初步测算,全年能源消费总量28.5亿吨标准煤,比上年增长4.0%。其中,煤炭消费量27.4亿吨,增长3.0%;原油消费量3.6亿吨,增长5.1%;天然气消费量807亿立方米,增长10.1%;电力消费量34502亿千瓦时,增长5.6%。全国万元国内生产总值能耗下降4.59%。主要原材料消费中,钢材消费量5.4亿吨,增长4.2%;精炼钢消费量538万吨,增长6.9%;电解铝消费量1260万吨,增长4.3%;乙烯消费量998万吨,下降2.9%;水泥消费量13.7亿吨,增长3.5%。", "question": "2007年全年我国水资源总量约为:", "type": "单选题", "options": "A. 24780亿立方米\nB. 25260亿立方米\nC. 25630亿立方米\nD. 26120亿立方米", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "A", "human_count": 68765, "human_acc": 83.903148404, "source": "2010年浙江省公务员录用考试《行测》题(A类)第116题", "difficulty": 4, "formulas": 0, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 1746786, "material": "截至2014年12月底,全国实有各类市场主体6932.22万户,比上年末增长$14.35\\%$,增速较上年同期增加4.02个百分点;注册资本(金)129.23万亿元,比上年末增长$27.70\\%$。其中,企业1819.28万户,个体工商户4984.06万户,农民专业合作社128.88万户。\n\n        2014年,全国新登记注册市场主体1292.5万户,比上年同期增加160.97万户;注册资本(金)20.66万亿元,比上年同期增加9.66万亿元。其中,企业365.1万户,个体工商户896.45万户,农民专业合作社30.95万户。\n\n        2014年,新登记注册现代服务业企业114.10万户,同比增长$61.41\\%$。其中,信息传输、软件和信息技术服务业14.67万户,同比增长$97.87\\%$;科学研究和技术服务业26.26万户,同比增长$70.32\\%$;文化、体育和娱乐业6.59万户,同比增长$83.51\\%$;教育业0.68万户,同比增长$86.17\\%$。\n\n        2014年,新登记注册外商投资企业3.84万户,同比增长$5.76\\%$。投资总额2763.31亿美元,同比增长$15.05\\%$;注册资本1796.39亿美元,同比增长$23.87\\%$。", "question": "2014年,以下哪个现代服务业新登记注册企业的户数同比增速最快?", "type": "单选题", "options": "A. 科学研究和技术服务业\nB. 教育业\nC. 文化、体育和娱乐业\nD. 信息传输、软件和信息技术服务业", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 1816439, "human_acc": 90.1755027281, "source": "2016年国家公务员录用考试《行测》题(副省级)第128题", "difficulty": 4, "formulas": 10, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 2139376, "material": "二、根据下列文字资料回答106~110题\n\n       世界煤储量在世界能源总储量中占$90\\%$,按目前规模可持续开采200年左右。据19世纪80年代初世界能源会议等组织的资料,世界煤资源地质储量为14.3万亿吨,其中探明储量为3.5万亿吨,约占$24.5\\%$;在总储量中硬煤占$75\\%$,褐煤占$25\\%$。按硬煤经济可采储量以美国、俄罗斯、中国最为丰富,分别占世界总量的$24.8\\%$、$21.5\\%$、$19.6\\%$,共占三分之二。", "question": "在世界煤炭资源地质储量中,未探明储量占总储量的:", "type": "单选题", "options": "A. $25.1\\%$\nB. $74.9\\%$\nC. $75.5\\%$\nD. $25\\%$", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 31759, "human_acc": 95.1635756793, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第106题", "difficulty": 3, "formulas": 341, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 3728695, "material": "建国70周年以来,四川省基本公共文化设施稳步增长,逐渐完善。2018年,全省共有文化馆207个,比1952年增加59个;公共图书馆204个,比1952年增加200个;文化站4574个,比1952年增加4428个;博物馆252个,比1952年增加251个。\n\n        广播电视覆盖面持续扩大,全覆盖目标基本实现。2018年,全省共有广播电视台(站)171个,比1957年增加91个;全省广播综合人口覆盖率$97.8\\%$,比1952年提高77.7个百分点;全省电视综合人口覆盖率$98.8\\%$,比1962年提高94.9个百分点。\n\n        四川省公共文化投入持续快速增加。一般公共预算文化体育与传媒支出快速增长,2018年,全省一般公共预算文化体育与传媒支出145.2亿元,比2007年增长$407.9\\%$。文化事业费43.0亿元,比2006年增长$732.1\\%$。文化事业费占财政支出的比重为$0.44\\%$,比2006年提高0.06个百分点;人均文化事业费51.6元,比2006年增长$716.1\\%$。全省群众文化业务活动专项经费5.3亿元,比2010年增长$442.3\\%$。", "question": "与1952年相比,2018年四川省文化馆、公共图书馆、文化站、博物馆个数的增长率排序正确的是:", "type": "单选题", "options": "A. 公共图书馆$\\gt$博物馆$\\gt$文化馆$\\gt$文化站\nB. 公共图书馆$\\gt$博物馆$\\gt$文化站$\\gt$文化馆\nC. 博物馆$\\gt$公共图书馆$\\gt$文化站$\\gt$文化馆\nD. 博物馆$\\gt$公共图书馆$\\gt$文化馆$\\gt$文化站", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "D", "human_count": 97858, "human_acc": 89.3866623066, "source": "2021下半年省考第十一季行测模考大赛(广东乡镇卷)第86题", "difficulty": 3, "formulas": 1014, "history": [{"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 48511, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度三大产业增加值中,增长速度最快的是:", "type": "单选题", "options": "A. 第一产业\nB. 第二产业\nC. 第三产业\nD. 无法确定", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 67399, "human_acc": 66.0054303476, "source": "2009年湖南省公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}, {"id": 4351, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1985年与1981年相比,海外来中国大陆访问者人数增加了多少?", "type": "单选题", "options": "A. 12.8%\nB. 128%\nC. 56%\nD. 228%", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 6586, "human_acc": 73.2159125418, "source": "2008年内蒙古自治区公务员录用考试《行测》题第135题", "difficulty": 5, "formulas": 0}, {"id": 5692303, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年来,j国普通家庭的税费支出变化,正确的说法是________。", "type": "单选题", "options": "A. 2013年是50年前的1832%\nB. 2013年是50年前的1732%\nC. 2013年比50年前增加了1832%\nD. 2013年比50年前增加了1732%", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 104, "human_acc": 68.2692307692, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第43题", "difficulty": 4, "formulas": 0}, {"id": 7389, "material": "请根据下列文字资料,完成以下各题:\n\n        2005年我国对外贸易出口总额达到7620亿美元,占全球贸易出口总额的比重由2001年的4.3%提高到2005年的7.3%。2005年,我国对外贸易进出口总额为14221亿美元,居世界第三位,占全球贸易进出口总额的6.7%。2005年我国吸引外国直接投资额由2001年的469亿美元增加到603亿美元,居世界第三位。\n\n        近年来,我国外汇储备持续大幅增长,2001年我国外汇储备2122亿美元,2005年比2001年增长了2.9倍,居世界第二位,为我国经济持续、稳定发展奠定了重要基础。", "question": "2005年我国吸引外资直接投资较2001年增长的百分比是:", "type": "单选题", "options": "A. 128.57\nB. 228.57\nC. 28.57\nD. 70.31", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 17029, "human_acc": 85.7360972459, "source": "2008年河南省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 5761275, "material": "2022年1-8月,天津口岸进口汽车19.7万辆,与上年同期相比增加9%,占同期我国汽车进口总量的33.3%,居全国第二,低于第一名黄埔口岸3.3个百分点,高于第三名上海口岸7.1个百分点,为排名前六的口岸中唯一正增长的口岸。进口价值847.7亿元,同比增长26.9%。\n\n        2022年8月,天津口岸进口汽车24400辆,同比增加54.7%,环比增加21.5%;进口均价为每辆44万元,同比上涨13.6%,环比上涨3.4%。\n\n        2022年1-8月,天津口岸汽车进口中,一般贸易进口13.9万辆,同比减少13.3%,占同期天津口岸汽车进口总量的(下同)70.6%;保税物流进口5.7万辆,增加190.9%,占29.1%。\n\n        2022年1-8月,天津口岸汽车进口来源主要为欧盟、美国和日本,三个国家和地区进口量分别为9.3万辆、4.6万辆和4.4万辆,分别同比增加23.5%、3.1%和1.5%,三者合计占比92.5%。第一季度,三个国家和地区进口量分别为2.3万辆、1.9万辆和2.0万辆,分别同比减少9.4%、增加15.2%和增加31.4%,三者合计占比92.7%。", "question": "2022年1-8月,黄埔口岸汽车进口量比上海口岸约多多少万辆?", "type": "单选题", "options": "A. 6.2\nB. 7.9\nC. 9.5\nD. 12.2", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 108133, "human_acc": 74.9854346037, "source": "2023下半年省考第二十二季行测模考大赛(北京卷)第131题", "difficulty": 4, "formulas": 0, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "文字资料"]]}, {"id": 220719, "material": "国家统计局2010年2月25日发布2009年国民经济和社会发展统计公报,称中国去年全面落实应对国际金融危机的一揽子计划和政策措施,国民经济形势总体回升向好,各项社会事业取得新的进展。初步核算,全年国内生产总值335353亿元,比上年增长8.7%。\n\n        统计公报分综合、农业、工业和建筑业、固定资产投资、国内贸易、对外经济、交通邮电和旅游、金融、教育和科学技术、文化卫生和体育、人口人民生活和社会保障,以及资源、环境和安全生产等十二部分,展示了2009年中国国民经济和社会发展状况。\n\n        公报显示,截至2009年年末,国家外汇储备23992亿美元,比上年末增加4531亿美元,增速减慢4个百分点;全年财政收入68477亿元,比上年增加7147亿元,增长11.7%;全国就业人员77995万人,比2008年末增加515万人,比2007年末增加1005万人。\n\n        中国政府2009年推出四万亿元的刺激计划。公报显示,2009年全年全社会固定资产投资224846亿元,比上年增长30.1%。其中,中西部投资增长高于东部和东北地区。", "question": "根据2009年国民经济和社会发展统计公报初步核算的结果,2009年全年国内生产总值比上年增加了约:", "type": "单选题", "options": "A. 26841亿元\nB. 26897亿元\nC. 26954亿元\nD. 26995亿元", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 29239, "human_acc": 64.0411778789, "source": "2011年深圳市公务员录用考试《行测》题第76题", "difficulty": 5, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 4637142, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2021年1-5月,全国平均每天拦截诈骗短信约多少万条?", "type": "单选题", "options": "A. 545\nB. 571\nC. 603\nD. 659", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 1322400, "human_acc": 84.3382486388, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第128题", "difficulty": 3, "formulas": 0, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 3789839, "material": "2019年,全国机动车保有量达3.48亿辆,同比增长6.4%,增速比去年同期提高0.9个百分点;汽车保有量达2.6亿辆,同比增长8.8%。全国66个城市汽车保有量超过百万辆,30个城市超200万辆,其中,北京、成都、重庆、苏州、上海、郑州、深圳、西安、武汉、东莞、天津11个城市超300万辆。\n\n        与2018年底相比,全国新能源汽车保有量增加120万辆,同比增长46.0%。其中,纯电动汽车保有量310万辆,同比增长46.9%;插电式混合动力和燃料电池汽车保有量同比增长42.0%。新能源汽车增量连续两年超过100万辆,呈快速增长趋势。\n\n        全国汽车产销量分别为2572.1万辆和2576.9万辆,同比下降7.5%和8.2%;汽车出口122万辆,同比增长6.1%;汽车进口105万辆,同比下降7.6%。其中,重型货车产销量分别为119.3万辆和117.4万辆,同比增长7.3%和2.3%。\n\n        全国新能源汽车产销量分别为124.2万辆和120.6万辆,其中,纯电动汽车产销量分别为102.0万辆和97.2万辆;插电式混合动力汽车产销量分别为22.0万辆和23.2万辆;燃料电池汽车产销量分别为2833辆和2737辆。", "question": "2019年,全国机动车保有量较2017年增加了约:", "type": "单选题", "options": "A. 11.9%\nB. 12.3%\nC. 12.5%\nD. 12.1%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "A", "human_count": 72215, "human_acc": 65.1900574673, "source": "2021下半年省考第十四季行测模考大赛(陕西卷)第117题", "difficulty": 6, "formulas": 0, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4933275, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "与2018年相比,2019年S省建筑业增加值约增长了:", "type": "单选题", "options": "A. 7.2%\nB. 8.0%\nC. 8.5%\nD. 19.3%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 299975, "human_acc": 65.7551462622, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第93题", "difficulty": 6, "formulas": 0}, {"id": 5198480, "material": "改革开放以来,S市作为中国第一个经济特区,凭借改革精神、政策红利以及地缘优势迅速发展成为国内最发达地区之一。2018-2020年S市实现生产总值分别为24221.98亿元、26927.09亿元和27670.24亿元,同比分别增长7.6%、6.7%和3.1%。分产业来看,2020年S市第一产业增加值25.79亿元,同比下降3.1%;第二产业增加值10454.01亿元,同比增长1.9%;第三产业增加值17190.44亿元,同比增长3.9%。第一、二、三产业增加值比例为0.1:37.8:62.1。\n\n        2020年全市现代服务业增加值同比增长6.4%,现代服务业增加值占第三产业增加值比重为76.1%,其中金融业增加值4189.63亿元,同比增长9.1%,信息传输、软件和信息技术服务业增加值2883.49亿元,同比增长11.3%,是拉动现代服务业增长的主要力量。\n\n        2020年全市货物贸易进出口总额30502.5亿元,同比增长2.4%,高于2019年增速3.0个百分点。其中,出口总额16972.7亿元,同比增长1.5%。", "question": "2020年全市货物贸易进出口总额比2018年约增长:", "type": "单选题", "options": "A. 1.79%\nB. 2.23%\nC. 3.01%\nD. 7.90%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 153985, "human_acc": 82.3346429847, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0}, {"id": 2028352, "material": "2015年我国钟表全行业实现工业总产值约675亿元,同比增长$3.2\\%$,增速比上年同期提高1.7个百分点。\n\n        全行业全年生产手表10.7亿只,同比增长$3.9\\%$,完成产值约417亿元,同比增长$4.3\\%$,增速提高1.9个百分点;生产时钟(含钟心)5.2亿只,同比下降$3.7\\%$,完成产值162亿元,同比下降$4.7\\%$,降幅扩大1.3个百分点;钟表零配件、定时器及其它计时仪器产值96亿元,同比增长$14.3\\%$,增速基本保持上年水平。\n\n        2015年我国钟表行业规模以上工业企业主营业务收入365.8亿元,同比增长$8.7\\%$;实现利润23.4亿元,与上年相比下降$1.5\\%$,而2015年轻工行业主营业务利润率(利润/主营业务收入)的平均水平为$7.57\\%$。\n\n        2015年我国钟表行业海关进出口总额为92.5亿美元,同比增长$4\\%$,完成出口总额为57.7亿美元,同比增长$8.3\\%$,进口额34.8亿美元。出口总额中加工贸易额占$47\\%$,较上年缩小2个百分点。", "question": "2015年我国钟表全行业生产时钟(含钟心)的产值与2013年相比约:", "type": "单选题", "options": "A. 上升了$11\\%$\nB. 下降了$11\\%$\nC. 上升了$8\\%$\nD. 下降了$8\\%$", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 2191826, "human_acc": 71.5692304042, "source": "2017年国家公务员录用考试《行测》题(地市级)第121题", "difficulty": 5, "formulas": 345}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 2547726, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年,高职(专科)院校的学校数量与成人高等学校之比约为:", "type": "单选题", "options": "A. 5:1\nB. 24:5\nC. 9:2\nD. 27:4", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 391509, "human_acc": 63.5328945184, "source": "2021年国考第五季行测模考大赛(副省级)第126题", "difficulty": 6, "formulas": 7, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 24081, "material": "2010年,我国共投入研究与试验发展(R&D,以下简称R&D)经费7062.6亿元,比上年增长21.7%;R&D经费投入强度(与国内生产总值之比)为1.76%,比上年的1.70%有所提高。\n\n        分活动类型看,全国用于基础研究的经费投入为324.5亿元,比上年增长20.1%;应用研究经费893.8亿元,增长22.3%;试验发展经费5844.3亿元,增长21.7%。\n\n        分执行部门看,各类企业投入R&D经费5185.5亿元,比上年增长22.1%;政府属研究机构投入1186.4亿元,增长19.1%;高等学校投入597.3亿元,增长27.6%。企业、政府属研究机构、高等学校经费所占比重分别为73.4%、16.8%、8.5%。\n\n        分产业部门看,R&D经费投入强度(与主营业务收入之比)最高的行业是专用设备制造业,为2.04%;投入强度在1.5%-2%的有4个行业,分别是医药制造业(1.82%)、通用设备制造业(1.59%),电气机械及器标制造业(1.59%)和仪器仪表及文化、办公用机械制造业(1.5%)。\n\n        分地区看,R&D经费超过300亿元的有江苏、广东、北京、山东、浙江和上海6个省(市),共投入经费4136.5亿元,占全国经费投入总量的58.6%。R&D经费投入强度(与地区生产总值之比)达到或超过全国水平的有北京、上海、天津、陕西、江苏、浙江和广东7个省(市)。", "question": "分执行部门看,2010年企业投入R&D经费约是政府属研究机构和高等学校经费总和的:", "type": "单选题", "options": "A. 2.9倍\nB. 2.6倍\nC. 2.5倍\nD. 2.2倍", "choice": "A", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 238397, "human_acc": 88.2330734028, "source": "2012年浙江省公务员录用考试《行测》题第127题", "difficulty": 5, "formulas": 0, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 10965, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "下面哪一项是正确的:", "type": "单选题", "options": "A. 2009年4月,我国原油生产出现了负增长\nB. 资料中的“比去年同期增长”就是环比发展速度\nC. 2009年1~4月,我国钢材生产增长速度趋缓\nD. 2009年1~4月,我国原煤、原油生产保持着较快的增长速度", "choice": "A", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 14852, "human_acc": 67.4117963911, "source": "2009年河北省公务员录用考试《行测》题第125题", "difficulty": 4, "formulas": 6, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 5613, "material": "F省2007年全年实现地区生产总值9160.14亿元,其中,第一产业生产值1038.38亿元,增长4.0%;第二产业生产值4508.02亿元,增长18.6%;第三产业生产值3613.74亿元,增长13.8%。人均地区生产总值25662元,比上年增长14.3%。\n\n        居民消费价格总水平比上年上涨5.2%。其中,服务价格上涨1.9%,商品零售价格上涨4.3%,工业品出厂价格上涨0.8%,原材料、燃料、动力购进价格上涨4.3%,农业生产资料价格上涨10.3%,比上年提高9.4个百分点。F省A、B、C三市房屋销售价格分别上涨6.8%、7.0%和6.7%。\n\n        城镇新增就业人员68万人,比预期目标多3万人。全年有9.8万下岗人员实现了再就业。年末城镇登记失业率为3.89%,与上年末同比下降0.04个百分点,控制在预期目标4%以内。\n\n        财政总收入1284.27亿元,按可比口径,比上年增长26.8%,其中,地方级财政收入700.03亿元,可比增长29.4%,财政支出901.22亿元,增长23.7%。全省国税税收收入(含进口税收)856亿元,增长22.6%;全省地税系统组织各项收入644.29亿元,增长29.1%。", "question": "按照2007年的增长率,第一产业在2009年可实现生产值是:", "type": "单选题", "options": "A. 1038.38亿元\nB. 1079.92亿元\nC. 998.44亿元\nD. 1123.11亿元", "choice": "D", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 12515, "human_acc": 78.042349181, "source": "2008年福建省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 2402471, "material": "2017年,我国发明专利申请量为138.2万件,同比增长$14.2\\%$。共授权发明专利42.0万件,同比增长$9.2\\%$。其中,国内发明专利授权32.7万件,同比增长$8.2\\%$。在国内发明专利授权中,职务发明为30.4万件,占$92.8\\%$;非职务发明为2.3万件,占$7.2\\%$。\n\n        截至2017年底,我国国内(不含港澳台)发明专利拥有量共计135.6万件,每万人口发明专利拥有量达到9.8件。我国每万人口发明专利拥有量排名前十位的省(区、市)依次为:北京(94.5件)、上海(41.5件)、江苏(22.5件)、浙江(19.7件)、广东(19.0件)、天津(18.3件)、陕西(8.9件)、福建(8.0件)、安徽(7.7件)和辽宁(7.6件)。\n\n        2017年,我国在“一带一路”沿线国家(不含中国)专利申请公开量为5608件,同比增长$16.0\\%$。其中,在印度专利申请公开量为2724件,在俄罗斯专利申请公开量为1354件,专利申请初具规模。2017年,“一带一路”沿线国家在华申请专利4319件,同比增长$16.8\\%$;在华申请专利的“一带一路”沿线国家数达到41个,较2016年增加4个。\n\n        2017年,全国专利行政执法办案总量6.7万件,同比增长$36.3\\%$。其中,专利纠纷办案2.8万件(包括专利侵权纠纷办案2.7万件),同比增长$35.0\\%$;查处假冒专利案件3.9万件,同比增长$37.2\\%$。", "question": "2016年,国内发明专利授权占我国授权发明专利的比例为:", "type": "单选题", "options": "A. $23.7\\%$\nB. $25\\%$\nC. $77.9\\%$\nD. $78.6\\%$", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 398274, "human_acc": 53.5611162165, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 345, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2949021, "material": "2020年1-6月份,T市实际利用外资金额17.0亿美元,完成序时进度$67.9\\%$;协议外资金额26.8亿美元;签订外商直接投资合同项目86个,其中3000万美元以上的大项目32个,其协议投资额占总量的$88.1\\%$。\n\n        第一季度全市实际利用外资8.6亿美元,同比增长$5.0\\%$。第二季度全市实际利用外资8.4亿美元,同比下降$20.6\\%$,导致上半年累计增速由第一季度的$5.0\\%$下探至上半年的$-9.4\\%$,低于全省18.7个百分点。第一季度全市协议利用外资8.9亿美元,第二季度全市协议利用外资17.8亿美元,5月当月新增协议金额12.1亿美元。\n\n        1-6月份,全市实现外贸进出口1185.5亿元,同比下降$1.6\\%$。其中出口789.2亿元,同比下降$3.8\\%$,进口396.2亿元,同比增长$3.1\\%$。与第一季度相比,进出口和出口降幅分别收窄5.4和7.5个百分点,回暖迹象明显。\n\n        一般贸易好于加工贸易。从贸易方式看,上半年全市一般贸易实现进出口873.8亿元,同比增长$0.7\\%$;实现出口576.9亿元,同比下降$2.1\\%$。加工贸易实现进出口242.4亿元,同比下降$8.2\\%$;实现出口170.7亿元,同比下降$13.1\\%$。一般贸易进出口占比$73.7\\%$,比第一季度提高1.9个百分点;加工贸易进出口占比$20.5\\%$,比第一季度下降2.4个百分点。", "question": "2020年上半年,T市一般贸易实现出口额占全市外贸出口额的比重比上年同期约:", "type": "单选题", "options": "A. 下降1.6个百分点\nB. 下降1.3个百分点\nC. 上升1.6个百分点\nD. 上升1.3个百分点", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 146249, "human_acc": 45.5093710042, "source": "2022年国考第五季行测模考大赛(副省级)第133题", "difficulty": 7, "formulas": 15, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 5035892, "material": "2021年5月份,全国社会消费品零售总额3.6万亿元,同比增长12.4%,比2019年同期增长9.3%。1-5月份,社会消费品零售总额17.4万亿元,同比增长25.7%,比2019年同期增长8.7%。\n\n        5月份,商品零售额同比增长10.9%。其中,限额以上单位金银珠宝、化妆品零售额同比分别增长31.5%和14.6%。1-5月份,海南离岛免税销售额同比增长3.1倍,北京、上海一些大型商场销售额同比增长60%以上。\n\n        5月份,限额以上单位汽车、家具、建材零售额同比分别增长6.3%、12.6%和20.3%。新能源汽车销量21.7万辆,同比增长1.6倍,占当月汽车销量比重达10.2%;二手车交易量146.2万辆,同比增长24.7%。\n\n        5月份,餐饮收入同比增长26.6%,比2019年同期增长2.7%。1-5月份,同比增长56.8%,基本达到2019年同期水平。5月份,电影票房收入比2019年同期增长31%。“五一”假期,国内旅游出游2.3亿人次,同比增长1.2倍,比2019年同期增长3.2%。\n\n        5月份,居民消费价格同比上涨1.3%,环比下降0.2%。分结构来看,食品价格同比上涨0.3%,其中猪肉价格下降23.8%,非食品价格上涨1.6%;消费品价格上涨1.6%,服务价格上涨0.9%。1-5月份,居民消费价格同比上涨0.4%。", "question": "2021年1-5月,全国社会消费品零售总额同比增速约比当年1-4月:", "type": "单选题", "options": "A. 低4个百分点\nB. 低14个百分点\nC. 低26个百分点\nD. 高3个百分点", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 195525, "human_acc": 51.6921109833, "source": "2022上半年省考第二十二季行测模考大赛(陕西卷)第117题", "difficulty": 7, "formulas": 0, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 4004829, "material": "2019年前三季度,全国居民人均可支配收入22882元,比上年同期名义增长8.8%。其中,城镇居民人均可支配收入31939元,增长(以下如无特别说明,均为同比名义增长)7.9%;农村居民人均可支配收入11622元,增长9.2%。\n\n        前三季度,全国居民人均可支配收入中位数19882元,增长9.0%,中位数是平均数的86.9%。其中,城镇居民人均可支配收入中位数29304元,增长7.6%,是平均数的91.8%;农村居民人均可支配收入中位数10172元,增长10.0%,是平均数的87.5%。\n\n        按收入来源分,前三季度,全国居民人均工资性收入13020元,增长8.6%;人均经营净收入3757元,增长9.3%;人均财产净收入1949元,增长12.3%;人均转移净收入4157元,增长7.2%。\n\n        2019年前三季度,全国居民人均消费支出15464元,比上年同期名义增长8.3%。其中,城镇居民人均消费支出20379元,增长7.2%;农村居民人均消费支出9353元,增长9.5%。\n\n        前三季度,全国居民人均食品烟酒消费支出4310元,增长6.1%;人均衣着消费支出962元,增长3.8%;人均居住消费支出3607元,增长10.3%;人均生活用品及服务消费支出926元,增长3.2%;人均交通通信消费支出2078元,增长7.6%;人均教育文化娱乐消费支出1766元,增长13.5%;人均医疗保健消费支出1414元,增长10.9%;人均其他用品及服务消费支出401元,增长11.1%。", "question": "2019年前三季度,四种收入来源中收入同比增量最高的是:", "type": "单选题", "options": "A. 人均工资性收入\nB. 人均经营净收入\nC. 人均财产净收入\nD. 人均转移净收入", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 456668, "human_acc": 87.4081389543, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第97题", "difficulty": 4, "formulas": 0, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 2616095, "material": "2019年6月,全国发行地方政府债券8996亿元,同比增长$68.37\\%$,环比增长$195.63\\%$。其中,发行一般债券3178亿元,同比减少$28.33\\%$,环比增长$117.08\\%$,发行专项债券5818亿元,同比增长$540.04\\%$,环比增长$268.46\\%$;按用途划分,发行新增债券7170亿元,同比增长$127.11\\%$,环比增长$332.71\\%$,发行置换债券和再融资债券1826亿元,同比减少$16.47\\%$,环比增长$31.75\\%$。\n\n        2019年6月,地方政府债券平均发行期限11.1年,其中新增债券10.4年,置换债券和再融资债券13.4年;地方政府债券平均发行利率$3.55\\%$,其中新增债券$3.52\\%$,置换债券和再融资债券$3.65\\%$。\n\n        2019年1至6月,全国发行地方政府债券28372亿元,同比增长$101.09\\%$。其中,发行一般债券12858亿元,同比增长$23.21\\%$,发行专项债券15514亿元,同比增长$322.38\\%$;按用途划分,发行新增债券21765亿元,同比增长$553.80\\%$,发行置换债券和再融资债券6607亿元,同比减少$38.71\\%$。\n\n        2019年1至6月,地方政府债券平均发行期限9.3年,其中一般债券11.2年,专项债券7.8年;地方政府债券平均发行利率$3.47\\%$,其中一般债券$3.53\\%$,专项债券$3.43\\%$。\n\n        2019年全国地方政府债务限额为240774.3亿元。其中,一般债务限额133089.22亿元,专项债务限额107685.08亿元。截至2019年6月末,全国地方政府债务余额205477亿元,其中,一般债务118397亿元,专项债务87080亿元。", "question": "2018年1至5月,全国发行地方政府债券约:", "type": "单选题", "options": "A. 23029亿元\nB. 19376亿元\nC. 14109亿元\nD. 8766亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 1602891, "human_acc": 73.2394779183, "source": "2020年云南公务员录用考试《行测》试题(网友回忆版)第113题", "difficulty": 5, "formulas": 21, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 2819642, "material": "2019年,N省全年地区生产总值24909.5亿元。其中,第一产业增加值2177.8亿元,增长$3.5\\%$;第二产业增加值9531.2亿元,增长$5.7\\%$;第三产业增加值13200.4亿元,增长$5.6\\%$。全年人均地区生产总值57191元,比上年增长$5.7\\%$。\n\n        2019年,N省全年粮食作物播种面积3488.7千公顷,比上年增加4.7千公顷。其中,水稻播种面积507.1千公顷,增加18.7千公顷;玉米播种面积2675.0千公顷,减少38.0千公顷;其他谷物播种面积118.7千公顷,增加11.2千公顷;豆类播种面积93.4千公顷,增加10.6千公顷。全年经济作物播种面积728.4千公顷,比上年增加5.3千公顷。其中,油料作物播种面积293.5千公顷,增加2.6千公顷;蔬菜及食用菌播种面积312.2千公顷,减少1.3千公顷。全年果园面积352.7千公顷,比上年增加0.7千公顷。\n\n        2019年,N省全年猪牛羊禽肉产量365.6万吨,比上年下降$2.4\\%$。其中,猪肉产量189.4万吨,下降$9.9\\%$;牛肉产量29.6万吨,增长$7.6\\%$;羊肉产量6.8万吨,增长$3.2\\%$;禽肉产量139.8万吨,增长$7.1\\%$。全年禽蛋产量307.9万吨,比上年增长$3.6\\%$。全年生牛奶产量133.9万吨,比上年增长$1.6\\%$。全年生猪出栏2240.2万头,比上年下降$10.2\\%$;年末生猪存栏1055.2万头,下降$16.4\\%$。\n\n        2019年,N省全年商品房销售面积3696.3万平方米,比上年下降$6.1\\%$,其中住宅销售面积3412.5万平方米,下降$4.0\\%$;商品房销售额3049.1亿元,增长$2.8\\%$,其中住宅销售额2814.9亿元,增长$7.6\\%$。年末商品房待售面积2909.3万平方米,比上年末下降$10.5\\%$。", "question": "2018年N省全年生猪出栏量约为年末生猪存栏量的:", "type": "单选题", "options": "A. 2.0倍\nB. 2.5倍\nC. 2.8倍\nD. 3.0倍", "choice": "A", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 296763, "human_acc": 84.0124948191, "source": "2022年国考第二季行测模考大赛(副省级)第118题", "difficulty": 4, "formulas": 18, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 2578806, "material": "2017年,S市服务业小微样本企业总体实现营业收入105.39亿元,同比增长$3.1\\%$ ,比2016年回落了15.7个百分点,户均实现营业收入510.63万元。\n\n        2017年,S市服务业小微样本企业总体资产938.58亿元,同比增长$4.2\\%$ ,增速比2016年下降0.9个百分点,户均资产4547.40万元。分门类看,除房地产业,交通运输、仓储和邮政业,教育业资产总计比2016年分别下降$3.1\\%$、$5.4\\%$和$6.8\\%$外,其他行业资产总计同比均有不同程度的增长。\n\n        2017年,S市服务业小微样本企业总体营业税金及附加为1.09亿元,同比下降$29.5\\%$;缴纳增值税2.30亿元,同比增长$11.6\\%$,户均缴纳增值税11.16万元。\n\n        2017年,S市服务业小微样本企业总体应付职工薪酬19.28亿元,比2016年增长$9.3\\%$。户均应付职工薪酬93.50万元。从业人员人数29028人,人均年薪酬6.64万元,比2016年增加0.60万元。", "question": "S市服务业小微样本企业2016年从业人员总数最接近以下哪个数字?", "type": "单选题", "options": "A. 26565\nB. 27001\nC. 29205\nD. 35015", "choice": "C", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 799528, "human_acc": 69.7577820914, "source": "2020年四川省公务员考试《行测》试题(网友回忆版)第99题", "difficulty": 4, "formulas": 8, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 5597141, "material": "2021年1-11月,J区纺织企业增加值比上年同期增长18.0%,两年平均增长7.4%。其中:规模以上纺织企业占98.3%,增长18.2%。\n\n        J区纺织业完成增加值比上年同期增长20.4%,增速比上年同期提高17.1个百分点。其中:棉纺织及印染精加工增长22.9%,家用纺织制成品制造增长2.9%,产业用纺织制成品制造下降7.1%,毛纺织及染整精加工增长87.5%,麻纺织及染整精加工下降4.1%,化纤织造及印染精加工增长43.7%。\n\n        J区就主要产品产量完成情况来看,布60714.80万米,比上年同期增长41.0%;化学纤维70.47万吨,增长24.6%;化学纤维用浆粕19.26万吨,增长22.7%;纱204.22万吨,增长17.9%;服装5724.00万件,增长1.7%;非织造布(无纺布)19169.17吨,下降2.0%;印染布2991.00万米,下降19.6%。\n\n        J区纺织产品实现出口交货值7.50亿元,比上年同期下降32.4%。其中:纺织业实现出口交货值3.20亿元;纺织服装、服饰业实现出口交货值4.30亿元,下降1.3%。\n\n        同年1-10月,J区纺织企业实现营业收入543.83亿元,比上年同期增长42.2%,实现利润13.61亿元,比1-9月增加2.16亿元;平均用工人数10.99万人,比上年同期下降3.1%,降幅比1-9月收窄1.3个百分点。", "question": "2021年1-11月J区纺织业各领域完成增加值的同比增速由低到高排序正确的是:", "type": "单选题", "options": "A. 毛纺织及染整精加工、化纤织造及印染精加工、棉纺织及印染精加工\nB. 产业用纺织制成品制造、化纤织造及印染精加工、棉纺织及印染精加工\nC. 家用纺织制成品制造、麻纺织及染整精加工、棉纺织及印染精加工\nD. 产业用纺织制成品制造、麻纺织及染整精加工、家用纺织制成品制造", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 51353, "human_acc": 75.0219071914, "source": "2023下半年省考第六季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 4597149, "material": "2020年全国邮政行业业务总量完成21053.2亿元,同比增长29.7%。全年邮政行业业务收入完成11037.8亿元,同比增长14.5%。\n\n        2020年全国邮政寄递服务业务量完成255.4亿件,同比增长3.3%;邮政寄递服务业务收入完成406.3亿元,同比下降5.2%。其中,函件业务量完成14.2亿件,同比下降34.6%;包裹业务量完成2030.6万件,同比下降5.8%;订销报纸业务完成165.4亿份,同比下降1.6%;订销杂志业务完成7.1亿份,同比下降2.3%;汇兑业务完成960.7万笔,同比下降41.4%。\n\n        2020年全国快递服务企业业务量完成833.6亿件,同比增长31.2%;快递业务收入完成8795.4亿元,同比增长17.3%。其中,同城快递业务量完成121.7亿件,同比增长10.2%;实现业务收入766.4亿元,同比增长1.9%。全年异地快递业务量完成693.6亿件,同比增长35.9%;实现业务收入4531.3亿元,同比增长15.0%。国际/港澳台快递业务量完成18.4亿件,同比增长27.7%;实现业务收入1073.4亿元,同比增长43.6%。\n\n        东、中、西部地区各项快递业务均保持了持续稳定的增长势头,中部地区业务增长持续提速,市场份额继续上升。全年东部地区完成快递业务量661.9亿件,同比增长30.8%;实现业务收入6999.5亿元,同比增长16.4%。中部地区完成快递业务量111.2亿件,同比增长36.1%;实现业务收入1045亿元,同比增长23.8%。西部地区完成快递业务量60.5亿件,同比增长27.7%;实现业务收入750.9亿元,同比增长17.7%。\n\n注:邮政行业业务收入统计数据不包括邮政储蓄银行直接营业收入。", "question": "2020年中部地区平均每件快递业务实现收入比上年约:", "type": "单选题", "options": "A. 增长9.0%\nB. 增长9.9%\nC. 下降9.0%\nD. 下降9.9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 272856, "human_acc": 64.4453484622, "source": "2021下半年省考第三十四季行测模考大赛(深圳卷)第99题", "difficulty": 6, "formulas": 0, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 5742947, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2019年深圳市实现地区生产总值约多少亿元?", "type": "单选题", "options": "A. 27763\nB. 27875\nC. 28721\nD. 29476", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 125345, "human_acc": 68.6840320715, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第96题", "difficulty": 4, "formulas": 0, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 411003, "material": "(一)根据下列资料,回答第76-79题。\n\n        2013年1-7月份,某市规模以上工业增加值同比增长12.0%,增速比去年同期提高1.4个百分点。\n\n        1-7月份,全市国有及国有控股企业完成增加值同比下降$3.5\\%$;民营企业完成增加值同比增长$24.8\\%$;外商控股企业完成增加值同比下降$3.1\\%$。三者增加值占全市规模以上工业增加值总量的比重为20:62:18。轻工业完成增加值同比增长$17.4\\%$;重工业完成增加值同比增长$10.1\\%$。轻重工业增加值占全市规模工业总量的比重为28:72,与去年同期持平。\n\n        在37个行业中,向上拉动全市工业经济增长较大的行业有:化工行业完成增加值176.2亿元,同比增长$81.3\\%$;医药制造业完成增加值21.2亿元,同比增长$24.7\\%$;农副食品加工业完成增加值223.5亿元,同比增长$19.6\\%$;服装行业完成增加值56.7亿元,同比增长$19.4\\%$;专用设备制造业完成增加值118.4亿元,同比增长$16.0\\%$;通用设备制造业完成增加值272.9亿元,同比增长$15.5\\%$;汽车制造业完成增加值57.4亿元,同比增长$9.3\\%$。向下拉动工业经济增长较大的行业有:石油加工业完成增加值168.5亿元,同比下降$1.5\\%$;电子信息业完成增加值63.4亿元,同比下降$12.2\\%$;铁路船舶制造业完成增加值89.2亿元,同比下降$26.9\\%$。\n\n         1-7月份,全市完成销售产值6258.1亿元,同比增长$12.7\\%$,其中,完成国内销售产值4995.2亿元,同比增长$15.7\\%$;完成出口交货值1262.9亿元。\n\n         1-7月份,全市实现软件销售收入712亿元,同比增长$25.8\\%$,出口22亿美元,同比增长$19.5\\%$。实现利润50.8亿元,同比增长$20.9\\%$,实现税金51.2亿元,同比增长$26.8\\%$。", "question": "以下对该市各行业按2012年1-7月份完成增加值从高到低排序正确的是:", "type": "单选题", "options": "A. 专用设备制造业、农副食品加工业、电子信息业\nB. 铁路船舶制造业、医药制造业、通用设备制造业\nC. 石油加工业、化工行业、汽车制造业\nD. 服装行业、汽车制造业、电子信息业", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 245863, "human_acc": 62.8028617563, "source": "2014年上海市公务员录用考试《行测》题(B类)第87题", "difficulty": 5, "formulas": 21, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}, {"id": 5667105, "material": "", "question": "锤锤开了一家家具厂,下列成本中,与其他三项类型不同的是(    )。", "type": "单选题", "options": "A. 工厂生产家具的电费\nB. 工厂包装家具的包装费\nC. 工厂为购买设备借入资金所需支付的利息\nD. 工厂为推广产品支付的广告费", "choice": "C", "keypoints": "", "most_wrong": "D", "human_count": 3393, "human_acc": 71.9717064545, "source": "2023下半年省考第十三季行测模考大赛(天津卷)第52题", "difficulty": 4, "formulas": 0, "history": [{"id": 2032916, "material": "", "question": "5,6,19,33,(    ),101", "type": "单选题", "options": "A. 55\nB. 60\nC. 65\nD. 70", "choice": "B", "keypoints": "", "most_wrong": "C", "human_count": 261601, "human_acc": 75.7630895906, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第57题", "difficulty": 4, "formulas": 0}, {"id": 2452804, "material": "", "question": "7,14,21,35,56,(  )", "type": "单选题", "options": "A. 72\nB. 80\nC. 96\nD. 91", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 91879, "human_acc": 88.691648799, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第33题", "difficulty": 4, "formulas": 0}, {"id": 5759688, "material": "", "question": "下列公文标题写法正确的是(    )。", "type": "单选题", "options": "A. 深圳市工业和信息化局关于印发《深圳市工业和信息化局制造业数字化转型咨询诊断项目扶持计划操作规程》的通知\nB. 广东省人民政府关于公布第四批广东省历史文化街区名单的通报\nC. 中共中央办公厅,国务院办公厅印发《关于进一步完善医疗卫生服务体系的意见》\nD. 国务院办公厅优化调整稳就业政策措施全力促发展惠民生的通知", "choice": "A", "keypoints": "", "most_wrong": "C", "human_count": 178, "human_acc": 44.9438202247, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第25题", "difficulty": 6, "formulas": 0}, {"id": 27281, "material": "", "question": "近年来,“瘦肉精”、“地沟油”等食品安全恶性事件不断发生,食品安全防线的失守告诉我们,光是整治企业,问题并不能得到根本解决,在监管方面,还有大量的难题需要攻关。这表明:", "type": "单选题", "options": "A. 内因要通过外因起作用\nB. 外因在事物发展中起决定性作用\nC. 内因是事物发展的条件\nD. 事物的发展是内外因共同作用的结果", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 437473, "human_acc": 90.9967015107, "source": "2012年河北省公务员录用考试《行测》题第124题", "difficulty": 3, "formulas": 0}, {"id": 3515495, "material": "", "question": "1,1,$\\frac{5}{2}$,$\\frac{7}{3}$,$\\frac{11}{2}$,(    )", "type": "单选题", "options": "A. $\\frac{13}{5}$\nB. $\\frac{9}{2}$\nC. $\\frac{17}{3}$\nD. $\\frac{13}{3}$", "choice": "D", "keypoints": "", "most_wrong": "C", "human_count": 7603, "human_acc": 70.4327239248, "source": "2021下半年省考第一季行测模考大赛(浙江卷)第52题", "difficulty": 6, "formulas": 421}], "categories": [[""]]}, {"id": 163553, "material": "", "question": "先秦时期,诸子百家提出了各种治国的主张,下列观点属于法家政治思想的是:", "type": "单选题", "options": "A. 人法地,地法天,天法道,道法自然\nB. 境内之民,其言谈者必轨于法,为勇者尽之于军\nC. 凡入国,必择务而从事焉\nD. 易其田畴,薄其税敛,民可使富也", "choice": "B", "keypoints": "文化常识", "most_wrong": "A", "human_count": 268047, "human_acc": 74.1616209098, "source": "2014年北京市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0, "history": [{"id": 19645, "material": "", "question": "西游记中的西天是指:", "type": "单选题", "options": "A. 埃及\nB. 印度\nC. 西藏\nD. 新疆", "choice": "B", "keypoints": "文化常识", "most_wrong": "C", "human_count": 155938, "human_acc": 91.4991855738, "source": "2010年安徽省公务员录用考试《行测》题第106题", "difficulty": 3, "formulas": 0}, {"id": 1797794, "material": "", "question": "新疆有多少个世居民族?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "C", "keypoints": "文化常识", "most_wrong": "B", "human_count": 319898, "human_acc": 46.5038856135, "source": "2016年423联考《行测》题(新疆卷)第11题", "difficulty": 6, "formulas": 0}, {"id": 2262504, "material": "", "question": "“兰桂齐芳”的“兰桂”指:", "type": "单选题", "options": "A. 子孙\nB. 花草\nC. 理想\nD. 人才", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 8598, "human_acc": 26.924866248, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第4题", "difficulty": 5, "formulas": 0}, {"id": 2031156, "material": "", "question": "下列选项中,属于绘画中三原色的有:", "type": "多选题", "options": "A. 黄\nB. 蓝\nC. 绿\nD. 红", "choice": "ABD", "keypoints": "文化常识", "most_wrong": "C", "human_count": 59902, "human_acc": 66.5954392174, "source": "2017年北京市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 21015, "material": "", "question": "以画虾著称的画家是:", "type": "单选题", "options": "A. 齐白石\nB. 徐悲鸿\nC. 吴冠中\nD. 张大千", "choice": "A", "keypoints": "文化常识", "most_wrong": "D", "human_count": 513390, "human_acc": 86.4492880656, "source": "2012年安徽省公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "人文常识", "文化常识"]]}, {"id": 5510245, "material": "", "question": "以下诗句描写的节气或节日,发生在秋季的是(    )。", "type": "单选题", "options": "A. 玉律传佳节,青阳应此辰\nB. 岁阴穷暮纪,献节启新芳\nC. 西北望乡何处是,东南见月几回圆\nD. 节分端午自谁言,万古传闻为屈原", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 322871, "human_acc": 65.3356913442, "source": "2023年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第29题", "difficulty": 4, "formulas": 0, "history": [{"id": 19663, "material": "", "question": "《三字经》的派别是:", "type": "单选题", "options": "A. 儒家\nB. 道家\nC. 法家\nD. 墨家", "choice": "A", "keypoints": "文学常识", "most_wrong": "B", "human_count": 133465, "human_acc": 78.5187127711, "source": "2010年安徽省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 11557, "material": "", "question": "中国现代话剧的奠基人是:", "type": "单选题", "options": "A. 鲁迅\nB. 曹禺\nC. 夏衍\nD. 郭沫若", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 41474, "human_acc": 78.3358248541, "source": "2009年广西壮族自治区公务员录用考试《行测》题第30题", "difficulty": 4, "formulas": 0}, {"id": 10239, "material": "", "question": "四书不包括:", "type": "单选题", "options": "A. 《论语》\nB. 《孟子》\nC. 《楚辞》\nD. 《中庸》", "choice": "C", "keypoints": "文学常识", "most_wrong": "B", "human_count": 66943, "human_acc": 95.1107658754, "source": "2009年河南省公务员录用考试《行测》题第107题", "difficulty": 5, "formulas": 0}, {"id": 5835, "material": "", "question": "下列诗人,以边塞诗著称于世的是:", "type": "单选题", "options": "A. 曹操\nB. 岑参\nC. 李白\nD. 陆游", "choice": "B", "keypoints": "文学常识", "most_wrong": "D", "human_count": 56758, "human_acc": 85.7658832235, "source": "2009年北京市公务员录用考试《行测》题(应届)第75题", "difficulty": 5, "formulas": 0}, {"id": 2255688, "material": "", "question": "被称为“东方莎士比亚”的是:", "type": "单选题", "options": "A. 关汉卿\nB. 柳宗元\nC. 汤显祖\nD. 马致远", "choice": "C", "keypoints": "文学常识", "most_wrong": "A", "human_count": 16222, "human_acc": 61.6631734681, "source": "2016年江西省法检系统招录考试《行测》题第51题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "文学常识"]]}, {"id": 1378587, "material": "", "question": "下列雕塑作品表现唐太宗李世民生平战功的是:", "type": "单选题", "options": "A. 马踏匈奴\nB. 击鼓说唱俑\nC. 昭陵六骏\nD. 乾陵石雕", "choice": "C", "keypoints": "中国历史", "most_wrong": "A", "human_count": 1377213, "human_acc": 60.301202501, "source": "2015年河南省从大学生村干部中考录乡镇机关公务员、省选调生考试《行政职业能力测验》试卷(精选)第86题", "difficulty": 5, "formulas": 0, "history": [{"id": 15283, "material": "", "question": "\"文景之治\"出现在哪个朝代:", "type": "单选题", "options": "A. 周\nB. 汉\nC. 唐\nD. 宋", "choice": "B", "keypoints": "中国历史", "most_wrong": "C", "human_count": 281535, "human_acc": 74.3225531461, "source": "2010年425联考《行测》题(云南/湖南/海南/山东/内蒙古/重庆/广西/辽宁/宁夏/陕西/天津)第107题", "difficulty": 4, "formulas": 0}, {"id": 4809423, "material": "", "question": "战国时期的墓葬中不可能出土:", "type": "单选题", "options": "A. 简牍\nB. 漆器\nC. 铁制农具\nD. 宣纸", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 1628, "human_acc": 79.914004914, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第8题", "difficulty": 4, "formulas": 0}, {"id": 503, "material": "", "question": "解放以来,广西第一任政府主席是:", "type": "单选题", "options": "A. 张云逸\nB. 韦国清\nC. 覃应机\nD. 韦纯东", "choice": "A", "keypoints": "中国历史", "most_wrong": "B", "human_count": 59962, "human_acc": 33.0359227511, "source": "2008年广西壮族自治区公务员录用考试《行测》题第16题", "difficulty": 6, "formulas": 0}, {"id": 38215, "material": "", "question": "“中国”作为我国国名的简称,开始于:", "type": "单选题", "options": "A. 夏朝\nB. 秦朝\nC. 清朝\nD. 辛亥革命后", "choice": "D", "keypoints": "中国历史", "most_wrong": "B", "human_count": 36079, "human_acc": 73.6245461349, "source": "2008年河北省公务员录用考试《行测》题第112题", "difficulty": 5, "formulas": 0}, {"id": 7835, "material": "", "question": "新文化运动的主要内容是提倡:", "type": "单选题", "options": "A. 文学革命\nB. 思想解放\nC. 民主和自由\nD. 民主和科学", "choice": "D", "keypoints": "中国历史", "most_wrong": "C", "human_count": 52104, "human_acc": 73.8292645478, "source": "2009年云南省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "人文常识", "中国历史"]]}, {"id": 455037, "material": "", "question": "下列关于科技常识的表述中,不正确的是:", "type": "单选题", "options": "A. 弗莱明发现了青霉素\nB. 魏格纳提出了大陆漂移学说\nC. 爱因斯坦创立了狭义相对论\nD. 麦克斯韦发现了电磁感应", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 402445, "human_acc": 37.4008870777, "source": "2014年浙江省公务员录用考试《行测》题(B类)第98题", "difficulty": 5, "formulas": 0, "history": [{"id": 3377, "material": "", "question": "光年是什么计量单位:", "type": "单选题", "options": "A. 时间\nB. 长度\nC. 体积\nD. 质量", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "A", "human_count": 94666, "human_acc": 68.4638624216, "source": "2008年福建省公务员录用考试《行测》题第2题", "difficulty": 4, "formulas": 0}, {"id": 754313, "material": "", "question": "我国已有或正在建设的航天发射场不包括:", "type": "单选题", "options": "A. 文昌\nB. 西安\nC. 酒泉\nD. 太原", "choice": "B", "keypoints": "科技理论与成就", "most_wrong": "D", "human_count": 467143, "human_acc": 61.7930697881, "source": "2014年山东省公务员录用考试《行测》题第40题", "difficulty": 5, "formulas": 0}, {"id": 4790265, "material": "", "question": "下列人体生理特征中,不可能成为身份鉴定的是:", "type": "单选题", "options": "A. 指纹\nB. 眼纹\nC. 基因\nD. 声音", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 966, "human_acc": 45.3416149068, "source": "2014年新疆维吾尔自治区公务员录用考试《行测》题(网友回忆版)第11题", "difficulty": 4, "formulas": 0}, {"id": 4738958, "material": "", "question": "世界最大的单口径射电望远镜位于:", "type": "单选题", "options": "A. 贵州黔南\nB. 安徽凤阳\nC. 甘肃酒泉\nD. 海南文昌", "choice": "A", "keypoints": "科技理论与成就", "most_wrong": "C", "human_count": 3254, "human_acc": 59.926244622, "source": "2017年福建省选调生考试《行政职业能力测验》第11题", "difficulty": 3, "formulas": 0}, {"id": 19877, "material": "", "question": "人类利用太阳能的方式有:", "type": "单选题", "options": "A. 生物化学转换\nB. 热化学转换\nC. 聚合反应\nD. 光化学转换", "choice": "D", "keypoints": "科技理论与成就", "most_wrong": "B", "human_count": 489649, "human_acc": 54.7751552643, "source": "2012年江西省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "科技理论与成就"]]}, {"id": 4948168, "material": "", "question": "假设柏林时间为9月24日21时50分。则按照标准时差计算,当时的北京时间是(    )。", "type": "单选题", "options": "A. 9月24日15:50\nB. 9月24日04:50\nC. 9月25日15:50\nD. 9月25日04:50", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 49563, "human_acc": 38.1998668361, "source": "2022上半年省考第十七季行测模考大赛(云南卷)第15题", "difficulty": 7, "formulas": 0, "history": [{"id": 11585, "material": "", "question": "北回归线在我国大陆穿过几个省:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "C", "keypoints": "自然常识", "most_wrong": "D", "human_count": 45162, "human_acc": 47.8654621142, "source": "2009年广西壮族自治区公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 8623, "material": "", "question": "引起潮起潮落的主要原因是:", "type": "单选题", "options": "A. 月亮\nB. 太阳\nC. 海风\nD. 季节", "choice": "A", "keypoints": "自然常识", "most_wrong": "B", "human_count": 84976, "human_acc": 79.6201280362, "source": "2009年广东省公务员录用考试《行测》题第81题", "difficulty": 4, "formulas": 0}, {"id": 14191, "material": "", "question": "我国的地势是:", "type": "单选题", "options": "A. 东高西低\nB. 南高北低\nC. 西北走\nD. 西高东低", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 168014, "human_acc": 85.8118966277, "source": "2008年湖北省公务员录用考试《行测》题(B类)第95题", "difficulty": 4, "formulas": 0}, {"id": 197705, "material": "", "question": "深圳中部和西北部主要为:", "type": "单选题", "options": "A. 低山\nB. 平原\nC. 平缓台地\nD. 丘陵", "choice": "D", "keypoints": "自然常识", "most_wrong": "C", "human_count": 514110, "human_acc": 39.9367839567, "source": "2013年深圳市公务员录用考试《行测》题第13题", "difficulty": 6, "formulas": 0}, {"id": 7303, "material": "", "question": "山东、山西的“山”是指:", "type": "单选题", "options": "A. 祁连\nB. 五台山\nC. 武夷\nD. 太行山", "choice": "D", "keypoints": "自然常识", "most_wrong": "A", "human_count": 59800, "human_acc": 69.9949832776, "source": "2008年云南省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "自然常识"]]}, {"id": 2645268, "material": "", "question": "关于生活中的化学知识,下列说法正确的是(    )。", "type": "单选题", "options": "A. 氟利昂是一类有毒的气体\nB. 可燃冰只分布在西太平洋\nC. 燃气出租车使用的是氢气\nD. 聚变核燃料主要是氘和氚", "choice": "D", "keypoints": "化学常识", "most_wrong": "C", "human_count": 34068, "human_acc": 57.9165199014, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第14题", "difficulty": 5, "formulas": 0, "history": [{"id": 451111, "material": "", "question": "下列元素,空气中含量最多的是:", "type": "单选题", "options": "A. 氧\nB. 氖\nC. 氦\nD. 氮", "choice": "D", "keypoints": "化学常识", "most_wrong": "A", "human_count": 307527, "human_acc": 66.4344919308, "source": "2014年深圳市公务员录用考试《行测》题第14题", "difficulty": 5, "formulas": 0}, {"id": 6213, "material": "", "question": "科学揭示燃烧现象的是:", "type": "单选题", "options": "A. 哥白尼\nB. 牛顿\nC. 拉瓦锡\nD. 爱迪生", "choice": "C", "keypoints": "化学常识", "most_wrong": "A", "human_count": 28992, "human_acc": 92.104718543, "source": "2009年广西壮族自治区公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2367968, "material": "", "question": "下列词语隐含化学变化的是", "type": "单选题", "options": "A. 春风化雨\nB. 腐草为萤\nC. 积沙成塔\nD. 滴水成冰", "choice": "B", "keypoints": "化学常识", "most_wrong": "D", "human_count": 599628, "human_acc": 93.6877530736, "source": "2019年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第13题", "difficulty": 3, "formulas": 0}, {"id": 1796550, "material": "", "question": "以下适合于建设防火林带的树种是(   )。", "type": "单选题", "options": "A. 木荷\nB. 松树\nC. 樟树\nD. 杉木", "choice": "A", "keypoints": "化学常识", "most_wrong": "C", "human_count": 837919, "human_acc": 35.5611938624, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第2题", "difficulty": 6, "formulas": 0}, {"id": 15815, "material": "", "question": "“西气东输”输送的气体的主要成分是:", "type": "单选题", "options": "A. 一氧化碳\nB. 氢气\nC. 甲烷\nD. 二氧化碳", "choice": "C", "keypoints": "化学常识", "most_wrong": "B", "human_count": 193257, "human_acc": 83.7910140383, "source": "2010年黑龙江省公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "科技常识", "化学常识"]]}, {"id": 2050972, "material": "", "question": "运用试管苹果技术来推广优良苹果品种,这种技术属于:", "type": "单选题", "options": "A. 基因工程\nB. 细胞工程\nC. 酶工程\nD. 发酵工程", "choice": "B", "keypoints": "生物常识", "most_wrong": "A", "human_count": 434399, "human_acc": 37.8113209285, "source": "2017年422联考《行测》题(江西卷)第64题", "difficulty": 5, "formulas": 0, "history": [{"id": 18153, "material": "", "question": "以下属于单子叶植物的是:", "type": "单选题", "options": "A. 花生\nB. 西瓜\nC. 黄豆\nD. 小米", "choice": "D", "keypoints": "生物常识", "most_wrong": "B", "human_count": 33281, "human_acc": 39.3167272618, "source": "2009年山西省党群机关录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 636745, "material": "", "question": "婴儿的以下行为属于本能的是:", "type": "单选题", "options": "A. 说话\nB. 走路\nC. 笑\nD. 吸奶", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 351586, "human_acc": 87.9488944383, "source": "2014年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 11499, "material": "", "question": "阳光中能引起皮肤癌的是:", "type": "单选题", "options": "A. 红外线\nB. 绿光\nC. 蓝光\nD. 紫外线", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 50867, "human_acc": 93.6776298976, "source": "2009年山西省公务员录用考试《行测》题第5题", "difficulty": 5, "formulas": 0}, {"id": 17707, "material": "", "question": "抗生素主要是针对(  )的。", "type": "单选题", "options": "A. 感冒\nB. 发烧\nC. 传染病\nD. 细菌感染", "choice": "D", "keypoints": "生物常识", "most_wrong": "C", "human_count": 353115, "human_acc": 87.1523441372, "source": "2010年四川省公务员录用考试《行测》题(下半年)第84题", "difficulty": 5, "formulas": 0}, {"id": 48139, "material": "", "question": "人体汗腺分布最多的部位是:", "type": "单选题", "options": "A. 腋窝\nB. 腹股沟\nC. 阴部\nD. 手掌和脚部", "choice": "D", "keypoints": "生物常识", "most_wrong": "A", "human_count": 264636, "human_acc": 33.6133405886, "source": "2013年天津市公务员录用考试《行测》题第53题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "科技常识", "生物常识"]]}, {"id": 3886243, "material": "", "question": "下列关于我国地理常识的说法正确的是(    )。", "type": "单选题", "options": "A. 修建青藏铁路所面临的主要地貌障碍是冰川纵横\nB. 准噶尔盆地是我国地势最低的盆地\nC. 我国领土最东端所在省份是辽宁,最北端所在省份是黑龙江\nD. “姑苏城外寒山寺,夜半钟声到客船”中的“寒山寺”位于江苏省", "choice": "D", "keypoints": "国情社情", "most_wrong": "C", "human_count": 13753, "human_acc": 68.3050970697, "source": "2021下半年省考第十六季行测模考大赛(四川卷)第10题", "difficulty": 4, "formulas": 0, "history": [{"id": 49481, "material": "", "question": "与我国接壤的金砖国家有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 1297183, "human_acc": 49.1814185046, "source": "2013年413联考《行测》题(辽宁/湖南/湖北/安徽/四川/福建/云南/黑龙江/江西/广西/贵州/海南/内蒙古/山西/重庆/宁夏/西藏)第2题", "difficulty": 6, "formulas": 0}, {"id": 2264043, "material": "", "question": "中国古代丝绸之路的起点是:", "type": "单选题", "options": "A. 敦煌\nB. 长安\nC. 玉门关\nD. 天水", "choice": "B", "keypoints": "国情社情", "most_wrong": "A", "human_count": 5087, "human_acc": 56.9294279536, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第69题", "difficulty": 5, "formulas": 0}, {"id": 2393751, "material": "", "question": "广西最大贸易合作伙伴是:", "type": "单选题", "options": "A. 美国\nB. 东盟\nC. 中东地区\nD. 欧盟", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 10108, "human_acc": 90.6806489909, "source": "2016年423联考《行测》题(广西卷)第24题", "difficulty": 5, "formulas": 0}, {"id": 2271245, "material": "", "question": "下列中不属于我国经济特区的是:", "type": "单选题", "options": "A. 厦门\nB. 威海\nC. 深圳\nD. 海南岛", "choice": "B", "keypoints": "国情社情", "most_wrong": "D", "human_count": 7598, "human_acc": 78.0600157936, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第9题", "difficulty": 4, "formulas": 0}, {"id": 5052936, "material": "", "question": "下列哪个大洲没有横跨东西半球?", "type": "单选题", "options": "A. 亚洲\nB. 南美洲\nC. 北美洲\nD. 南极洲", "choice": "B", "keypoints": "国情社情", "most_wrong": "C", "human_count": 35563, "human_acc": 59.1035626916, "source": "2022上半年省考第二十三季行测模考大赛(湖南卷)第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "地理国情", "国情社情"]]}, {"id": 5254426, "material": "", "question": "下列不成立抢劫罪的是(    )。", "type": "单选题", "options": "A. 赵某走在路上被甲持棍棒打晕并拿走钱财\nB. 乙因觊觎苏某的钻石项链,请苏某喝酒,灌醉苏某后,将钻石项链拿走\nC. 丙去冯某家盗窃,窃得财物出门时被冯某发现,为抗拒抓捕,将冯某打成重伤\nD. 王某和朋友在酒吧喝醉,丁看到王某的手表十分昂贵,趁二人大醉,将手表拿走", "choice": "D", "keypoints": "刑法", "most_wrong": "C", "human_count": 63962, "human_acc": 49.3308526938, "source": "2022下半年省考第八季行测模考大赛(深圳卷)第19题", "difficulty": 6, "formulas": 0, "history": [{"id": 18339, "material": "", "question": "下列不属于刑事处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 管制\nC. 拘留\nD. 拘役", "choice": "C", "keypoints": "刑法", "most_wrong": "A", "human_count": 358123, "human_acc": 44.9912460244, "source": "2011年内蒙古自治区公务员录用考试《行测》题第6题", "difficulty": 6, "formulas": 0}, {"id": 824849, "material": "", "question": "我国《刑法》规定的完全刑事责任年龄是:", "type": "单选题", "options": "A. 14岁\nB. 16岁\nC. 18岁\nD. 20岁", "choice": "B", "keypoints": "刑法", "most_wrong": "C", "human_count": 299675, "human_acc": 50.644197881, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第130题", "difficulty": 5, "formulas": 0}, {"id": 2270878, "material": "", "question": "犯罪的主观方面包括(  )。", "type": "多选题", "options": "A. 犯罪的主体\nB. 犯罪表示\nC. 犯罪的目的\nD. 犯罪的故意", "choice": "CD", "keypoints": "刑法", "most_wrong": "A", "human_count": 1033, "human_acc": 21.8780251694, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第107题", "difficulty": 5, "formulas": 0}, {"id": 18893, "material": "", "question": "犯罪构成的共同要件一般包括:", "type": "多选题", "options": "A. 犯罪主体\nB. 犯罪主观方面\nC. 犯罪客体\nD. 犯罪客观方面", "choice": "ABCD", "keypoints": "刑法", "most_wrong": "", "human_count": 35899, "human_acc": 54.8037549792, "source": "2012年北京市公务员录用考试《行测》题第35题", "difficulty": 5, "formulas": 0}, {"id": 254161, "material": "", "question": "在我国刑罚执行中,对判处哪种刑法采取吸收原则?", "type": "单选题", "options": "A. 有期徒刑\nB. 无期徒刑\nC. 拘役\nD. 管制", "choice": "B", "keypoints": "刑法", "most_wrong": "D", "human_count": 129636, "human_acc": 32.7964454318, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第87题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "法律常识", "刑法"]]}, {"id": 10421, "material": "", "question": "热传递的各种方式中,热辐射是以(    )形式传递热量的。", "type": "单选题", "options": "A. 光波\nB. 电磁波\nC. 介质流动\nD. 物体接触", "choice": "B", "keypoints": "物理常识", "most_wrong": "C", "human_count": 30881, "human_acc": 55.6685340501, "source": "2009年湖南省公务员录用考试《行测》题第24题", "difficulty": 5, "formulas": 0, "history": [{"id": 19695, "material": "", "question": "声音在哪个介质中传播最快:", "type": "单选题", "options": "A. 空气\nB. 金属\nC. 玻璃\nD. 水", "choice": "B", "keypoints": "物理常识", "most_wrong": "A", "human_count": 158092, "human_acc": 69.0616856008, "source": "2010年安徽省公务员录用考试《行测》题第110题", "difficulty": 4, "formulas": 0}, {"id": 2271022, "material": "", "question": "应用斜面原理省力的是:", "type": "单选题", "options": "A. 开瓶器\nB. 扳手\nC. 订书机\nD. 螺丝钉", "choice": "D", "keypoints": "物理常识", "most_wrong": "A", "human_count": 218930, "human_acc": 33.4074818435, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第77题", "difficulty": 5, "formulas": 0}, {"id": 7341, "material": "", "question": "计算机的运算采用:", "type": "单选题", "options": "A. 六十进位制\nB. 十进位制\nC. 八进位制\nD. 二进位制", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 67617, "human_acc": 77.3385391248, "source": "2008年云南省公务员录用考试《行测》题第108题", "difficulty": 4, "formulas": 0}, {"id": 19379, "material": "", "question": "核电站利用核能进行发电,其所使用的核燃料是:", "type": "单选题", "options": "A. 镭\nB. 氢\nC. 氦\nD. 铀", "choice": "D", "keypoints": "物理常识", "most_wrong": "B", "human_count": 271489, "human_acc": 73.513107345, "source": "2011年吉林省公务员录用考试《行测》题第86题", "difficulty": 4, "formulas": 0}, {"id": 51855, "material": "", "question": "以下各项中,不属于太阳能利用的主要形式的是:", "type": "单选题", "options": "A. 光热\nB. 光电\nC. 风热\nD. 光化学", "choice": "C", "keypoints": "物理常识", "most_wrong": "D", "human_count": 409427, "human_acc": 75.4598499855, "source": "2013年陕西省公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "物理常识"]]}, {"id": 48135, "material": "", "question": "下列关于合理饮食有利于健康的说法,正确的是:", "type": "单选题", "options": "A. 没有水就没有生命\nB. 饮用水越纯净越好\nC. 调味剂和营养剂加得越多越好\nD. 养成良好的饮食习惯,多吃蔬菜、水果", "choice": "D", "keypoints": "生活常识", "most_wrong": "A", "human_count": 241255, "human_acc": 86.0467140577, "source": "2013年天津市公务员录用考试《行测》题第51题", "difficulty": 4, "formulas": 0, "history": [{"id": 27645, "material": "", "question": "下列不属于哺乳类的动物是:", "type": "单选题", "options": "A. 蝙蝠\nB. 鲸\nC. 蜂鸟\nD. 海豹", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 14356, "human_acc": 78.5943159654, "source": "2012年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0}, {"id": 1679600, "material": "", "question": "下列不能用来酿酒的农作物是:", "type": "单选题", "options": "A. 谷子\nB. 黄豆\nC. 红薯\nD. 玉米", "choice": "B", "keypoints": "生活常识", "most_wrong": "C", "human_count": 333605, "human_acc": 47.9297372641, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第15题", "difficulty": 5, "formulas": 0}, {"id": 19263, "material": "", "question": "下列物质中,不能用来酿酒的是:", "type": "单选题", "options": "A. 玉米\nB. 高粱\nC. 黄豆\nD. 谷子", "choice": "C", "keypoints": "生活常识", "most_wrong": "A", "human_count": 205336, "human_acc": 76.400144154, "source": "2011年吉林省公务员录用考试《行测》题第78题", "difficulty": 4, "formulas": 0}, {"id": 1663, "material": "", "question": "城市民用天然气的主要成分是:", "type": "单选题", "options": "A. 甲烷\nB. 一氧化碳\nC. 硫化氢\nD. 乙烷", "choice": "A", "keypoints": "生活常识", "most_wrong": "B", "human_count": 70238, "human_acc": 84.0997750505, "source": "2008年湖南省公务员录用考试《行测》题第85题", "difficulty": 4, "formulas": 0}, {"id": 46195, "material": "", "question": "下列食品中,不属于发酵类食品的是:", "type": "单选题", "options": "A. 白酒\nB. 饼干\nC. 面包\nD. 腐乳", "choice": "B", "keypoints": "生活常识", "most_wrong": "D", "human_count": 241131, "human_acc": 79.7371553222, "source": "2013年北京市公务员录用考试《行测》题第25题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "科技常识", "生活常识"]]}, {"id": 2261670, "material": "", "question": "下列关于民事法律行为,阐述错误的一项是(    )。", "type": "单选题", "options": "A. 民事法律行为是意思表示行为\nB. 民事法律行为是合法行为\nC. 民事法律行为包括合法行为和不合法行为两个要素\nD. 民事法律行为不包括无效民事法律行为或可撤销、可变更民事行为以及效力未定民事行为", "choice": "C", "keypoints": "民法", "most_wrong": "B", "human_count": 2597, "human_acc": 23.7196765499, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第70题", "difficulty": 5, "formulas": 0, "history": [{"id": 250257, "material": "", "question": "著作财产权包括:", "type": "单选题", "options": "A. 发表权\nB. 署名权\nC. 修改权\nD. 演绎权", "choice": "D", "keypoints": "民法", "most_wrong": "B", "human_count": 136010, "human_acc": 28.7567090655, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第88题", "difficulty": 6, "formulas": 0}, {"id": 2271007, "material": "", "question": "被国际司法界誉为东方经验的是:", "type": "单选题", "options": "A. 调解\nB. 仲裁\nC. 诉讼\nD. 和解", "choice": "A", "keypoints": "民法", "most_wrong": "B", "human_count": 3327, "human_acc": 55.2750225428, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第63题", "difficulty": 5, "formulas": 0}, {"id": 19789, "material": "", "question": "下列权利中,属于请求权的是:", "type": "单选题", "options": "A. 债权\nB. 物权\nC. 人身权\nD. 知识产权", "choice": "A", "keypoints": "民法", "most_wrong": "D", "human_count": 502985, "human_acc": 47.7688201437, "source": "2012年江西省公务员录用考试《行测》题第45题", "difficulty": 5, "formulas": 0}, {"id": 2259, "material": "", "question": "发明专利在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 47011, "human_acc": 63.9935334283, "source": "2008年山东省公务员录用考试《行测》题第101题", "difficulty": 4, "formulas": 0}, {"id": 15461, "material": "", "question": "下列权利中属于法人应该享有的权利是:", "type": "单选题", "options": "A. 生命健康权\nB. 亲权\nC. 肖像权\nD. 商标权", "choice": "D", "keypoints": "民法", "most_wrong": "C", "human_count": 37894, "human_acc": 74.7479812107, "source": "2008年湖北省公务员录用考试《行测》题(B类)第108题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "民法"]]}, {"id": 20495, "material": "", "question": "1949年,以美国为首的15个西方国家成立了(    ),对社会主义国家实施经济封锁。", "type": "单选题", "options": "A. 北大西洋公约组织\nB. 国际货币基金组织\nC. 华盛顿委员会\nD. 巴黎委员会", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 224739, "human_acc": 76.2528978059, "source": "2010年湖北省公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0, "history": [{"id": 9207, "material": "", "question": "世界上最早种植棉花的国家是:", "type": "单选题", "options": "A. 中国\nB. 美国\nC. 印度\nD. 埃及", "choice": "C", "keypoints": "世界历史", "most_wrong": "A", "human_count": 170676, "human_acc": 40.0448803581, "source": "2009年河北省公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 0}, {"id": 2050976, "material": "", "question": "最早创造数字的是:", "type": "单选题", "options": "A. 印度人\nB. 希腊人\nC. 阿拉伯人\nD. 罗马人", "choice": "A", "keypoints": "世界历史", "most_wrong": "C", "human_count": 712678, "human_acc": 38.3623459683, "source": "2017年422联考《行测》题(江西卷)第65题", "difficulty": 7, "formulas": 0}, {"id": 7313, "material": "", "question": "古埃及文明的一大遗憾是没有留下:", "type": "单选题", "options": "A. 史书\nB. 文字\nC. 历法\nD. 艺术", "choice": "A", "keypoints": "世界历史", "most_wrong": "B", "human_count": 177109, "human_acc": 60.4893031975, "source": "2008年云南省公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 0}, {"id": 20501, "material": "", "question": "第一个从欧洲到印度的人是:", "type": "单选题", "options": "A. 拿破仑\nB. 麦哲伦\nC. 达·伽马\nD. 迪亚士", "choice": "C", "keypoints": "世界历史", "most_wrong": "B", "human_count": 320158, "human_acc": 39.3971101769, "source": "2010年湖北省公务员录用考试《行测》题第134题", "difficulty": 6, "formulas": 0}, {"id": 2050918, "material": "", "question": "下列国家中,不是实行总统共和制的是:", "type": "单选题", "options": "A. 巴西\nB. 美国\nC. 埃及\nD. 德国​", "choice": "D", "keypoints": "世界历史", "most_wrong": "C", "human_count": 547587, "human_acc": 42.8839618179, "source": "2017年422联考《行测》题(江西卷)第58题", "difficulty": 6, "formulas": 0}], "categories": [["常识判断", "人文常识", "世界历史"]]}, {"id": 10541, "material": "", "question": "在我国,“公民”一词的含义是指(  )。", "type": "单选题", "options": "A. 年满18周岁具有我国国籍的人\nB. 具有我国国籍的人\nC. 享有政治权力的人\nD. 出生在我国的人", "choice": "B", "keypoints": "宪法", "most_wrong": "A", "human_count": 43275, "human_acc": 66.6088965916, "source": "2009年甘肃省公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0, "history": [{"id": 18837, "material": "", "question": "下列选项中,属于我国一级政府的有:", "type": "多选题", "options": "A. 州\nB. 旗\nC. 盟\nD. 民族乡", "choice": "ABCD", "keypoints": "宪法", "most_wrong": "", "human_count": 38393, "human_acc": 14.0806917928, "source": "2012年北京市公务员录用考试《行测》题第29题", "difficulty": 8, "formulas": 0}, {"id": 9889, "material": "", "question": "全国人大代表根据什么组成代表团?", "type": "单选题", "options": "A. 民族\nB. 职业\nC. 选举单位\nD. 地域", "choice": "C", "keypoints": "宪法", "most_wrong": "D", "human_count": 54307, "human_acc": 28.4714677666, "source": "2009年河南省公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2031102, "material": "", "question": "按照当前我国法律规定,地方各级人民政府每届任期几年?", "type": "单选题", "options": "A. 三\nB. 四\nC. 五\nD. 六", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 341783, "human_acc": 77.9032309974, "source": "2017年北京市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 4756580, "material": "", "question": "下列与行政机关有分工与合作关系的机构是:", "type": "单选题", "options": "A. 政党机关\nB. 工会\nC. 人民政协\nD. 法院", "choice": "D", "keypoints": "宪法", "most_wrong": "A", "human_count": 685, "human_acc": 25.1094890511, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第75题", "difficulty": 5, "formulas": 0}, {"id": 2365861, "material": "", "question": "土地集体所有权的权利主体是:", "type": "单选题", "options": "A. 村党组织\nB. 村民委员会\nC. 农民集体\nD. 村“两委”", "choice": "C", "keypoints": "宪法", "most_wrong": "B", "human_count": 11387, "human_acc": 80.5479933257, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第31题", "difficulty": 4, "formulas": 0}], "categories": [["常识判断", "法律常识", "宪法"]]}, {"id": 1750300, "material": "", "question": "如果其他各种不变,人民币对美元升值理论上会导致(  )。", "type": "单选题", "options": "A. 我国对美国出口增加\nB. 我国对美国出口减少\nC. 美国从我国进口增加\nD. 美国对我国出口减少", "choice": "B", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 376573, "human_acc": 66.8975205339, "source": "2015年北京市公务员录用考试《行测》题第7题", "difficulty": 4, "formulas": 0, "history": [{"id": 25049, "material": "", "question": "下列哪项不属于第三产业?", "type": "单选题", "options": "A. 教育\nB. 社会福利\nC. 邮电通信\nD. 航天", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 267509, "human_acc": 58.7726020433, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第104题", "difficulty": 5, "formulas": 0}, {"id": 2271244, "material": "", "question": "下列各项中,属于虚拟经济的是:", "type": "单选题", "options": "A. 通信业\nB. 农业\nC. 建筑业\nD. 收藏业", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "A", "human_count": 7608, "human_acc": 39.1430073607, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第8题", "difficulty": 6, "formulas": 0}, {"id": 2028262, "material": "", "question": "在银行的资产负债表中,客户存款属于:", "type": "单选题", "options": "A. 资产\nB. 权益\nC. 资金\nD. 负债", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "C", "human_count": 2828647, "human_acc": 53.2221235099, "source": "2017年国家公务员录用考试《行测》题(地市级)第8题", "difficulty": 5, "formulas": 0}, {"id": 14271, "material": "", "question": "以下哪个行业不属于周期性行业:", "type": "单选题", "options": "A. 钢铁\nB. 煤炭\nC. 有色金属\nD. 商业连锁", "choice": "D", "keypoints": "宏观经济与调控政策", "most_wrong": "B", "human_count": 130653, "human_acc": 78.1941478573, "source": "2010年江西省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 22835, "material": "", "question": "下列不属于金融市场的是:", "type": "单选题", "options": "A. 拍卖市场\nB. 期货市场\nC. 股票市场\nD. 外汇市场", "choice": "A", "keypoints": "宏观经济与调控政策", "most_wrong": "D", "human_count": 178114, "human_acc": 91.0798701955, "source": "2010年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "经济常识", "宏观经济与调控政策"]]}, {"id": 12595, "material": "", "question": "下列处罚方式中,不属于治安管理处罚的是:", "type": "多选题", "options": "A. 罚款\nB. 罚金\nC. 拘役\nD. 剥夺政治权利", "choice": "BCD", "keypoints": "行政法", "most_wrong": "A", "human_count": 22026, "human_acc": 32.4389358031, "source": "2011年北京市公务员录用考试《行测》题第32题", "difficulty": 6, "formulas": 0, "history": [{"id": 11447, "material": "", "question": "具体行政行为的效力不包括:", "type": "单选题", "options": "A. 执行力\nB. 拘束力\nC. 确定力\nD. 公信力", "choice": "D", "keypoints": "行政法", "most_wrong": "C", "human_count": 125084, "human_acc": 31.8961657766, "source": "2009年福建省公务员录用考试《行测》题(春季)第13题", "difficulty": 5, "formulas": 0}, {"id": 4739041, "material": "", "question": "下列属于行政强制措施的是:", "type": "单选题", "options": "A. 罚金\nB. 扣押财物\nC. 划拨存款\nD. 代履行", "choice": "B", "keypoints": "行政法", "most_wrong": "A", "human_count": 53250, "human_acc": 62.0169014085, "source": "2017年福建省选调生考试《行政职业能力测验》第30题", "difficulty": 3, "formulas": 0}, {"id": 250275, "material": "", "question": "行政复议的原则不包括:", "type": "单选题", "options": "A. 便民原则\nB. 公开原则\nC. 调解原则\nD. 及时原则", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 93664, "human_acc": 55.794115135, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第94题", "difficulty": 5, "formulas": 0}, {"id": 1849, "material": "", "question": "下列各项中,属于行政处罚的是:", "type": "单选题", "options": "A. 罚金\nB. 拘役\nC. 责令停产停业\nD. 管制", "choice": "C", "keypoints": "行政法", "most_wrong": "A", "human_count": 77760, "human_acc": 63.2265946502, "source": "2008年山西省公务员录用考试《行测》题第93题", "difficulty": 5, "formulas": 0}, {"id": 220379, "material": "", "question": "行政法律关系的客体不包括:", "type": "单选题", "options": "A. 物质财富\nB. 权利和义务\nC. 智力成果\nD. 行为", "choice": "B", "keypoints": "行政法", "most_wrong": "C", "human_count": 112093, "human_acc": 36.0022481332, "source": "2011年深圳市公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "行政法"]]}, {"id": 5430286, "material": "", "question": "根据《中华人民共和国社会保险法》,下列说法不正确的是:", "type": "单选题", "options": "A. 治疗工伤期间的工资福利由用人单位支付\nB. 生育保险费由用人单位和职工个人按比例共同缴纳\nC. 城镇居民基本医疗保险实行个人缴费和政府补贴相结合\nD. 失业人员领取失业保险金的期限与失业保险费的累计缴费时间有关", "choice": "B", "keypoints": "其他法律法规", "most_wrong": "D", "human_count": 348823, "human_acc": 36.4032761601, "source": "2023年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第20题", "difficulty": 3, "formulas": 0, "history": [{"id": 14295, "material": "", "question": "专利发明在我国受保护的期限是:", "type": "单选题", "options": "A. 5年\nB. 10年\nC. 15年\nD. 20年", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 38658, "human_acc": 60.3756014279, "source": "2008年湖北省公务员录用考试《行测》题(B类)第102题", "difficulty": 5, "formulas": 0}, {"id": 5505, "material": "", "question": "党政领导辞职制度包括:", "type": "多选题", "options": "A. 因公辞职\nB. 自愿辞职\nC. 责令辞职\nD. 引咎辞职", "choice": "ABCD", "keypoints": "其他法律法规", "most_wrong": "", "human_count": 4648, "human_acc": 42.6419965577, "source": "2009年北京市公务员录用考试《行测》题(社招)第78题", "difficulty": 5, "formulas": 0}, {"id": 2377304, "material": "", "question": "下列哪部法律不涉及公民个人信息保护?", "type": "单选题", "options": "A. 刑法\nB. 网络安全法\nC. 民法总则\nD. 婚姻法", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "A", "human_count": 601000, "human_acc": 56.4309484193, "source": "2019年420联考《行测》题(黑龙江县乡卷)(网友回忆版)第7题", "difficulty": 6, "formulas": 0}, {"id": 2392941, "material": "", "question": "《中华人民共和国环境保护法》中所指的“环境”不包括:", "type": "单选题", "options": "A. 大气\nB. 人文遗迹\nC. 城市\nD. 星球", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "B", "human_count": 8920, "human_acc": 69.0358744395, "source": "2015年黑龙江省公务员录用考试《行测》题(边远地区卷)第17题", "difficulty": 5, "formulas": 0}, {"id": 2262958, "material": "", "question": "在我国,公有公共设施致害导致的赔偿属于:", "type": "单选题", "options": "A. 行政赔偿\nB. 司法赔偿\nC. 国家赔偿\nD. 民事赔偿", "choice": "D", "keypoints": "其他法律法规", "most_wrong": "C", "human_count": 2247, "human_acc": 17.1339563863, "source": "2016年天津选调生选拔考试 综合知识试卷(精选)第57题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "其他法律法规"]]}, {"id": 2261792, "material": "", "question": "2017年中央一号文件见物也见人,提出在美丽乡村建设、乡村旅游发展中,要_____培养一批专业人才,扶持一批乡村工匠。", "type": "单选题", "options": "A. 实施农业科技杰出人才培养计划\nB. 推进现代青年农场主,林场主培养计划\nC. 推进新型农业经营主体带头人轮训计划\nD. 鼓励高等学校、职业院校开设乡村规划建设、乡村住宅设计等相关专业和课程", "choice": "D", "keypoints": "时政", "most_wrong": "A", "human_count": 5569, "human_acc": 49.4523253726, "source": "2017年湖北省选调生行测题(精选)第25题", "difficulty": 5, "formulas": 0, "history": [{"id": 2271018, "material": "", "question": "依法治国的主体是:", "type": "单选题", "options": "A. 国家\nB. 中国共产党\nC. 人民群众\nD. 人民代表大会", "choice": "C", "keypoints": "时政", "most_wrong": "B", "human_count": 3303, "human_acc": 42.3554344535, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第73题", "difficulty": 5, "formulas": 0}, {"id": 2261790, "material": "", "question": "首个正式申请加入亚投行的主要西方国家是:", "type": "单选题", "options": "A. 法国\nB. 德国\nC. 英国\nD. 意大利", "choice": "C", "keypoints": "时政", "most_wrong": "D", "human_count": 5670, "human_acc": 34.1093474427, "source": "2017年湖北省选调生行测题(精选)第23题", "difficulty": 6, "formulas": 0}, {"id": 1756306, "material": "", "question": "下列哪项不属于非战争军事行动?", "type": "单选题", "options": "A. 反恐维稳\nB. 安保警戒\nC. 国际援助\nD. 防空反导", "choice": "D", "keypoints": "时政", "most_wrong": "C", "human_count": 703516, "human_acc": 38.4463182074, "source": "2016年国家公务员录用考试《行测》题(副省级)第9题", "difficulty": 5, "formulas": 0}, {"id": 2365810, "material": "", "question": "党的根本性建设是:", "type": "单选题", "options": "A. 党的思想建设\nB. 党的作风建设\nC. 党的政治建设\nD. 党的组织建设", "choice": "C", "keypoints": "时政", "most_wrong": "A", "human_count": 13238, "human_acc": 65.0778063152, "source": "2019年湖北省选调生招录考试《综合知识和行政职业能力测验》题第4题", "difficulty": 5, "formulas": 0}, {"id": 18097, "material": "", "question": "国民教育的根本任务是:", "type": "单选题", "options": "A. 提高国民素质\nB. 普及科技知识\nC. 培养精英人才\nD. 追求升学率", "choice": "A", "keypoints": "时政", "most_wrong": "C", "human_count": 43800, "human_acc": 95.1255707763, "source": "2009年山西省党群机关录用考试《行测》题第102题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "时政"]]}, {"id": 5540172, "material": "", "question": "关于我国新时代外交思想,下列对应关系错误的是(    )。", "type": "单选题", "options": "A. 全球治理观——共建共治共享\nB. 全球伙伴关系——平等、开放、合作\nC. 新型国际关系——相互尊重、公平正义、合作共赢\nD. 大国关系格局——和平共处、总体稳定、均衡发展", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "D", "human_count": 40204, "human_acc": 23.0200975027, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第1题", "difficulty": 7, "formulas": 0, "history": [{"id": 12397, "material": "", "question": "下列机构(简称)不属于我国民主党派的是:", "type": "单选题", "options": "A. 侨联\nB. 民革\nC. 台盟\nD. 民盟", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 62161, "human_acc": 57.2931580895, "source": "2011年安徽省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 455029, "material": "", "question": "下列不属于行政外部监督的是:", "type": "单选题", "options": "A. 立法监督\nB. 司法监督\nC. 政党监督\nD. 审计监督", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "C", "human_count": 307600, "human_acc": 44.6566970091, "source": "2014年浙江省公务员录用考试《行测》题(B类)第95题", "difficulty": 5, "formulas": 0}, {"id": 8359, "material": "", "question": "对国家机关的舆论监督,实质上是:", "type": "不定项", "options": "A. 行政监督\nB. 专门监督\nC. 群众监督\nD. 人大监督", "choice": "C", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 4856, "human_acc": 69.1103789127, "source": "2009年上海市公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 2439971, "material": "", "question": "“五位一体”的总体布局是一个有机整体,其中文化建设是:", "type": "单选题", "options": "A. 根本\nB. 条件\nC. 保证\nD. 灵魂", "choice": "D", "keypoints": "中国特色社会主义建设", "most_wrong": "A", "human_count": 2560, "human_acc": 76.5234375, "source": "2019年青海省法院、检察院录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2261683, "material": "", "question": "党的十八大报告指出,(  )是中国特色社会主义的本质属性。", "type": "单选题", "options": "A. 社会和谐\nB. 公有制\nC. 市场经济\nD. 公平正义", "choice": "A", "keypoints": "中国特色社会主义建设", "most_wrong": "B", "human_count": 63606, "human_acc": 18.0124516555, "source": "2017年天津市选调生选拔考试 综合知识试卷(精选)第85题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "政治常识", "中国特色社会主义建设"]]}, {"id": 7083, "material": "", "question": "根据企业破产法律制度的规定,不属于破产费用的一项是:", "type": "单选题", "options": "A. 破产案件受理费\nB. 债权人会议费\nC. 清算组催收债务所需费用\nD. 清算期间破产企业职工生活费", "choice": "D", "keypoints": "经济法", "most_wrong": "B", "human_count": 154137, "human_acc": 37.5308978376, "source": "2008年河南省公务员录用考试《行测》题第104题", "difficulty": 6, "formulas": 0, "history": [{"id": 2139372, "material": "", "question": "我国公司制企业中最高权力机构是:", "type": "单选题", "options": "A. 股东会\nB. 董事会\nC. 监事会\nD. 经理层", "choice": "A", "keypoints": "经济法", "most_wrong": "B", "human_count": 30180, "human_acc": 48.8071570577, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第49题", "difficulty": 6, "formulas": 0}, {"id": 2597, "material": "", "question": "下列可以免税的个人收入是:", "type": "单选题", "options": "A. 稿酬所得\nB. 国债和国家发行的金融债券利息\nC. 财产转让所得\nD. 偶然所得", "choice": "B", "keypoints": "经济法", "most_wrong": "D", "human_count": 80376, "human_acc": 62.5945555887, "source": "2008年四川省公务员录用考试《行测》题第83题", "difficulty": 5, "formulas": 0}, {"id": 2139368, "material": "", "question": "虚列出口货物数量,虚报出口货物价格,涂改、伪造出口退税凭证的行为属于:", "type": "单选题", "options": "A. 偷税\nB. 抗税\nC. 欠税\nD. 骗税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 30180, "human_acc": 51.2690523526, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第47题", "difficulty": 5, "formulas": 0}, {"id": 49865, "material": "", "question": "当事人因以下协议发生争议,不能适用合同法的是:", "type": "单选题", "options": "A. 商品房买卖协议\nB. 收养协议\nC. 赠与协议\nD. 政府采购协议", "choice": "B", "keypoints": "经济法", "most_wrong": "C", "human_count": 776690, "human_acc": 60.7618226062, "source": "2013年山东省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 2672060, "material": "", "question": "根据我国税收法法律制度,下列不属于我国现行税收种类的是:", "type": "单选题", "options": "A. 耕地占用税\nB. 个人所得税\nC. 车船使用税\nD. 农村土地使用税", "choice": "D", "keypoints": "经济法", "most_wrong": "A", "human_count": 2540, "human_acc": 61.7322834646, "source": "2018年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第56题", "difficulty": 5, "formulas": 0}], "categories": [["常识判断", "法律常识", "经济法"]]}, {"id": 2388034, "material": "", "question": "三个自然数分别是一位数、两位数和三位数,其积为3930,其和最小为多少?", "type": "单选题", "options": "A. 144\nB. 146\nC. 148\nD. 162", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 433131, "human_acc": 51.8515183628, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第61题", "difficulty": 5, "formulas": 0, "history": [{"id": 44779, "material": "", "question": "下列可以分解为三个不同质数相乘的三位数是:", "type": "单选题", "options": "A. 100\nB. 102\nC. 104\nD. 125", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "D", "human_count": 176431, "human_acc": 73.0642574151, "source": "2012年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 5, "formulas": 0}, {"id": 2172823, "material": "", "question": "用全部156个边长为1的小正方形,最多可以拼成(  )种形状不同的长方形。", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 366191, "human_acc": 40.700891065, "source": "2018年广州市公务员录用考试 《行测》题(3月25日网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 4801487, "material": "", "question": "一个数有6个约数,其最小的3个约数之和为11,满足条件的所有数之和是多少?", "type": "单选题", "options": "A. 210\nB. 343\nC. 798\nD. 840", "choice": "A", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 1577, "human_acc": 9.8287888396, "source": "2013年重庆市公务员录用考试《行测》题(下半年)(网友回忆版)第59题", "difficulty": 5, "formulas": 0}, {"id": 13571, "material": "", "question": "将参与社会活动的108名学生平均分成若干小组,每组人数在8-30人之间,有多少种不同的分法:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "公倍数与公约数问题", "most_wrong": "C", "human_count": 24574, "human_acc": 40.0016277366, "source": "2009年四川省公务员录用考试《行测》题(上半年)第10题", "difficulty": 5, "formulas": 0}, {"id": 9273, "material": "", "question": "整数64具有可被它的个位数字所整除的性质。\n\n试问在10和50之间有多少个整数具有这种性质?", "type": "单选题", "options": "A. 15\nB. 16\nC. 17\nD. 18", "choice": "C", "keypoints": "公倍数与公约数问题", "most_wrong": "B", "human_count": 28057, "human_acc": 45.8994190398, "source": "2009年河南省公务员录用考试《行测》题第55题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "公倍数与公约数问题"]]}, {"id": 4674667, "material": "", "question": "有6个人围绕圆桌就坐并召开了第一次会议,之后第二次召开会议时,安排每个人就坐原座位或与原座位相邻的座位,问第二次会议有多少种就坐方案?", "type": "单选题", "options": "A. 20\nB. 17\nC. 15\nD. 12", "choice": "A", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 92514, "human_acc": 6.141773137, "source": "2022上半年省考第二季行测模考大赛(河南卷)第63题", "difficulty": 7, "formulas": 0, "history": [{"id": 52291, "material": "", "question": "公司安排6位新员工共同参加一次为期两天的活动,6个人围成一个圆桌进行交流。为促进新员工间的互动,如果要求第二天每个人身边坐着的两个人都与第一天不同,则新员工们有多少种座位安排方式:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "环形排列问题", "most_wrong": "C", "human_count": 155354, "human_acc": 55.3078774927, "source": "2012年广州市公务员录用考试《行测》题第85题", "difficulty": 5, "formulas": 0}, {"id": 2377184, "material": "", "question": "某学校举行迎新篝火晚会,100名新生随机围坐在篝火四周,其中,小张与小李是同桌,他俩坐在一起的概率为:", "type": "单选题", "options": "A. $\\frac{2}{97}$\nB. $\\frac{2}{98}$\nC. $\\frac{2}{99}$\nD. $\\frac{2}{100}$", "choice": "C", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 675795, "human_acc": 62.6163259568, "source": "2019年420联考《行测》题(宁夏卷)(网友回忆版)第19题", "difficulty": 5, "formulas": 419}, {"id": 25299, "material": "", "question": "有5对夫妇参加一场婚宴,他们被安排在一张10个座位的圆桌就餐,但是婚礼操办者并不知道他们彼此之间的关系,只是随机安排座位。问5对夫妇恰好都被安排在一起相邻而坐的概率是多少:", "type": "单选题", "options": "A. 在1‰到5‰之间\nB. 在5‰到1%之间\nC. 超过1%\nD. 不超过1‰", "choice": "A", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "B", "human_count": 510557, "human_acc": 28.9239007594, "source": "2012年国家公务员录用考试《行测》题第70题", "difficulty": 5, "formulas": 0}, {"id": 2742003, "material": "", "question": "某次圆桌会议共设8个座位,有4个部门参加,每个部门2人,排座位时,要求同一部门的两人相邻,若小李和小王代表不同部门参加会议,则他们座位相邻的概率是:", "type": "单选题", "options": "A. $\\frac{1}{48}$\nB. $\\frac{1}{24}$\nC. $\\frac{1}{12}$\nD. $\\frac{1}{6}$", "choice": "D", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "C", "human_count": 459877, "human_acc": 24.8492531699, "source": "2021年江苏省公务员录用考试《行测》题(A类)(网友回忆版)第56题", "difficulty": 5, "formulas": 398}, {"id": 2377373, "material": "", "question": "主人随机安排10名客人坐成一圈就餐,这10名客人中有两对情侣,那么这两对情侣恰好都被安排相邻而坐的概率约在(  )。", "type": "单选题", "options": "A. $0$到$2\\%$之间\nB. $2\\%$到$3\\%$之间\nC. $3\\%$到$4\\%$之间\nD. $4\\%$到$5\\%$之间\nE. $5\\%$到$6\\%$之间\nF. $6\\%$到$7\\%$之间\nG. $7\\%$到$8\\%$之间\nH. $8\\%$以上", "choice": "E", "keypoints": "环形排列问题;相邻问题;给情况求概率", "most_wrong": "D", "human_count": 363840, "human_acc": 17.7242744063, "source": "2019年420联考《行测》题(陕西卷)(网友回忆版)第116题", "difficulty": 8, "formulas": 1258}], "categories": [["数量关系", "数学运算", "排列组合问题", "环形排列问题"]]}, {"id": 21315, "material": "", "question": "某路公交车单程共有10个车站,从始发站出发时,车上共有乘客20人,之后中间每站新上5人,且车上所有乘客最多坐3站下车。\n\n问最多会有多少名乘客在终点站下车:", "type": "单选题", "options": "A. 20\nB. 10\nC. 5\nD. 15", "choice": "D", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 294364, "human_acc": 52.433042084, "source": "2012年山东省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0, "history": [{"id": 17623, "material": "", "question": "一个队伍7个人,小明首先站在第3位,那么向后转以后是第几位:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 7", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 21549, "human_acc": 77.2240011137, "source": "2009年贵州省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}, {"id": 826797, "material": "", "question": "从1到400的自然数中,不含数字2的自然数有多少个:", "type": "单选题", "options": "A. 242\nB. 243\nC. 244\nD. 245", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "C", "human_count": 133488, "human_acc": 50.8038175716, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第46题", "difficulty": 5, "formulas": 0}, {"id": 25199, "material": "", "question": "假设67代表C,7179代表GO,6778代表CN,那么687389代表:", "type": "单选题", "options": "A. FIY\nB. BOY\nC. DIY\nD. DOG", "choice": "C", "keypoints": "数学运算-其他", "most_wrong": "D", "human_count": 61021, "human_acc": 77.704396847, "source": "2010年福建省公务员录用考试《行测》题(春季)第99题", "difficulty": 4, "formulas": 0}, {"id": 5837, "material": "", "question": "用10张同样长的纸条粘接成一条长61厘米的纸条,如果每个接头处都重叠1厘米,那么每张纸条长多少厘米:", "type": "单选题", "options": "A. 7\nB. 6.9\nC. 6.1\nD. 7.1", "choice": "A", "keypoints": "数学运算-其他", "most_wrong": "B", "human_count": 32622, "human_acc": 59.7694807185, "source": "2008年河南省公务员录用考试《行测》题第53题", "difficulty": 5, "formulas": 0}, {"id": 3089, "material": "", "question": "在等比数列中,已知首项为$\\frac{9}{8}$,末项为$\\frac{1}{3}$,公比为$\\frac{2}{3}$,则项数为:", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "数学运算-其他", "most_wrong": "A", "human_count": 18022, "human_acc": 67.0791255133, "source": "2008年上海市公务员录用考试《行测》题第3题", "difficulty": 5, "formulas": 3}], "categories": [["数量关系", "数学运算", "数学运算-其他"]]}, {"id": 2264330, "material": "", "question": "关于我国诉讼程序中的鉴定,下列说法错误的是:", "type": "单选题", "options": "A. 对于鉴定所形成的结果,当事人有异议的可申请重新鉴定\nB. 鉴定人在鉴定意见上的签名或盖章均具有法律效力\nC. 民事诉讼中,基于意思自治原则,鉴定只能由当事人申请\nD. 刑事诉讼中,鉴定人是否有必要出庭由人民法院决定", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "D", "human_count": 3076304, "human_acc": 64.8337095424, "source": "2019年国家公务员录用考试《行测》题(地市级网友回忆版)第9题", "difficulty": 5, "formulas": 0, "history": [{"id": 2270876, "material": "", "question": "诉讼的构成必须有(  )方。", "type": "多选题", "options": "A. 原告(控)\nB. 被告(被控)\nC. 证(证明人)\nD. 审判(法庭)", "choice": "ABD", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 1028, "human_acc": 66.2451361868, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第106题", "difficulty": 5, "formulas": 0}, {"id": 2136876, "material": "", "question": "人民法院审理民事案件时,会将举证、质证过程安排在:", "type": "单选题", "options": "A. 庭审准备阶段\nB. 法庭辩论阶段\nC. 法庭调查阶段\nD. 法庭合议阶段", "choice": "C", "keypoints": "民事诉讼法", "most_wrong": "B", "human_count": 490390, "human_acc": 28.1011032036, "source": "2018年北京市公务员录用考试《行测》题(网友回忆版)第12题", "difficulty": 5, "formulas": 0}, {"id": 9493, "material": "", "question": "法官甲在审理民事案件时,下列哪一项情形可以不予回避:", "type": "单选题", "options": "A. 甲是案件当事人\nB. 甲是当事人的表哥\nC. 当事人是甲的妻子\nD. 当事人是甲的同学", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 54173, "human_acc": 81.7252136673, "source": "2009年江西省公务员录用考试《行测》题第93题", "difficulty": 4, "formulas": 0}, {"id": 9315, "material": "", "question": "甲出售伪劣“良种”,被农民乙丙丁起诉。甲应诉答辩后突然失踪。对此法院应当如何处理:", "type": "单选题", "options": "A. 中止诉讼\nB. 终结诉讼\nC. 延期审理\nD. 缺席判决", "choice": "D", "keypoints": "民事诉讼法", "most_wrong": "C", "human_count": 50147, "human_acc": 59.4571958442, "source": "2009年江西省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}, {"id": 2625200, "material": "", "question": "赵某驾驶车辆不慎,撞上了前面的车辆,赵某用手机拍了事故现场的照片。本案中,照片属于(    )。", "type": "单选题", "options": "A. 物证\nB. 书证\nC. 勘验笔录\nD. 电子数据", "choice": "B", "keypoints": "民事诉讼法", "most_wrong": "A", "human_count": 27709, "human_acc": 14.1434191057, "source": "2020年下半年省考第六季行测模考大赛(江苏卷)第12题", "difficulty": 7, "formulas": 0}], "categories": [["常识判断", "法律常识", "民事诉讼法"]]}, {"id": 2166022, "material": "", "question": "某机关要编辑论文集,共收录十五篇论文,各篇论文的页数分别是一页,二页,三页······十四页,十五页稿纸。如果将这些论文按某种顺序装订成册,并统一编上页码,则每篇文章的第一页是偶数页码的最多篇数是:", "type": "单选题", "options": "A. 5篇\nB. 6篇\nC. 7篇\nD. 8篇", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 376522, "human_acc": 28.0868050207, "source": "天津市选调2018年应届优秀大学毕业生到基层培养锻炼考试题(网友回忆版)第39题", "difficulty": 5, "formulas": 0, "history": [{"id": 248949, "material": "", "question": "从3、5、7、11四个数中任取两个数相乘,可以得到多少个不相等的积?", "type": "单选题", "options": "A. 5\nB. 4\nC. 6\nD. 7", "choice": "C", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 16939, "human_acc": 88.6829210697, "source": "2008年深圳市公务员录用考试《行测》题(上半年)第12题", "difficulty": 3, "formulas": 0}, {"id": 2035226, "material": "", "question": "宴会上有10个人,要求每个人都要和别人握手但不重复,已知每人最多握手8次,则10个人共握手多少次?", "type": "单选题", "options": "A. 90\nB. 44\nC. 45\nD. 40", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "B", "human_count": 219701, "human_acc": 17.1146239662, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第58题", "difficulty": 6, "formulas": 0}, {"id": 5391736, "material": "", "question": "办公室将20个相同的文件夹分给8名实习生,要求每人至少分得2个、至多分得3个文件夹,问共有多少种分配方法?", "type": "单选题", "options": "A. 28\nB. 35\nC. 42\nD. 70", "choice": "D", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 71225, "human_acc": 26.1958581959, "source": "2022下半年省考第二十季行测模考大赛(北京卷)第81题", "difficulty": 7, "formulas": 0}, {"id": 8397, "material": "", "question": "某单位职员在健身活动中举行乒乓球比赛,每个选手都要和其他选手各赛一场,一共120场比赛,则该单位参加人数是多少人:", "type": "单选题", "options": "A. 18\nB. 16\nC. 15\nD. 14", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 23946, "human_acc": 61.28789777, "source": "2009年四川省公务员录用考试《行测》题(下半年)第9题", "difficulty": 4, "formulas": 0}, {"id": 3523596, "material": "", "question": "一块实验田被划分为36小块,每小块上种植3种不同的植物,任意两小块上种植的植物种类均不完全相同,问至少种植了多少种不同的植物?", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "B", "keypoints": "排列组合问题-其他", "most_wrong": "C", "human_count": 633765, "human_acc": 48.2055651543, "source": "2021年四川省公务员录用考试《行测》题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "排列组合问题-其他"]]}, {"id": 4948118, "material": "", "question": "下列符合《中华人民共和国劳动合同法》规定的是(    )。", "type": "单选题", "options": "A. 赵某因个人原因离职,后入职甲公司,签订了一份期限为两年的劳动合同,试用期三个月\nB. 钱某与乙公司在劳动合同中约定完成公司即将进行研发的新项目,项目完成后解除劳动关系,试用期一个月\nC. 孙某与丙公司签订劳动合同时,除了合同本身含有的条款,孙某有权要求添加与公司约定的每两年晋升一次的事项\nD. 李某大学毕业后进入丁公司,与丁公司签订了三年的劳动合同,试用期三个月,试用期不包含在三年的劳动合同期限内", "choice": "C", "keypoints": "劳动法", "most_wrong": "A", "human_count": 25267, "human_acc": 33.8702655638, "source": "2022上半年省考第十七季行测模考大赛(内蒙古卷)第10题", "difficulty": 7, "formulas": 0, "history": [{"id": 1927, "material": "", "question": "《劳动法》规定,用人单位安排劳动者每月的加班时间不得超过(  )小时。", "type": "单选题", "options": "A. 10\nB. 24\nC. 36\nD. 48", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 80431, "human_acc": 35.6380002735, "source": "2008年山西省公务员录用考试《行测》题第98题", "difficulty": 5, "formulas": 0}, {"id": 163801, "material": "", "question": "劳动者依法享受以下哪些假期时,用人单位应按劳动合同规定的标准支付劳动者工资:", "type": "多选题", "options": "A. 年休假\nB. 探亲假\nC. 婚假\nD. 丧假", "choice": "ABCD", "keypoints": "劳动法", "most_wrong": "", "human_count": 44884, "human_acc": 51.5551198645, "source": "2014年北京市公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 5347682, "material": "", "question": "小张中秋节期间在公司加班三天,且未调休,其日工资为200元,则小张中秋节期间一共可以获得的劳动报酬最低为(    )。", "type": "单选题", "options": "A. 600元\nB. 1200元\nC. 1400元\nD. 1800元", "choice": "C", "keypoints": "劳动法", "most_wrong": "D", "human_count": 160391, "human_acc": 16.6143985635, "source": "2022下半年省考第十六季行测模考大赛(上海卷)第102题", "difficulty": 7, "formulas": 0}, {"id": 2270861, "material": "", "question": "关于人事争议仲裁,以下说法正确的是(  )。", "type": "单选题", "options": "A. 提交仲裁以双方自愿为前提\nB. 一方申请仲裁就可以受理\nC. 仲裁委员会的组成人员人数应当是三人以上\nD. 仲裁裁决并不是向法院起诉的前置程序", "choice": "B", "keypoints": "劳动法", "most_wrong": "A", "human_count": 1162, "human_acc": 37.6075731497, "source": "2015年天津市选调生选拔考试 综合知识试卷(精选)第91题", "difficulty": 5, "formulas": 0}, {"id": 5014847, "material": "", "question": "下列情况可以被认定为劳动关系并适用我国劳动法的是:", "type": "单选题", "options": "A. 在校生小王在某机构兼职培训师\nB. 郭某应聘华为公司并签订了劳动合同\nC. 张阿姨受雇于孙某在其家做保姆\nD. 某企业返聘退休职工老王为顾问", "choice": "B", "keypoints": "劳动法", "most_wrong": "C", "human_count": 28404, "human_acc": 90.5400647796, "source": "2022上半年省考第二十一季行测模考大赛(内蒙古卷)第10题", "difficulty": 3, "formulas": 0}], "categories": [["常识判断", "法律常识", "劳动法"]]}, {"id": 1686082, "material": "", "question": "有软件设计专业学生90人,市场营销专业学生80人,财务管理专业学生20人及人力资源管理专业学生16人参加求职招聘会,问至少有多少人找到工作就一定保证有30名找到工作的人专业相同?", "type": "单选题", "options": "A. 59\nB. 75\nC. 79\nD. 95", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 364631, "human_acc": 64.9045199119, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第70题", "difficulty": 5, "formulas": 0, "history": [{"id": 11427, "material": "", "question": "从一副完整的扑克牌中至少抽出多少张牌,才能保证至少有5张牌的花色相同:", "type": "单选题", "options": "A. 17\nB. 18\nC. 19\nD. 20", "choice": "C", "keypoints": "最不利构造", "most_wrong": "A", "human_count": 29065, "human_acc": 54.4813349389, "source": "2009年广西壮族自治区公务员录用考试《行测》题第13题", "difficulty": 4, "formulas": 0}, {"id": 21557, "material": "", "question": "将25台笔记本电脑奖励给不同的单位,每个单位奖励的电脑数量均不等,最多可以奖励几个单位:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "B", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 366319, "human_acc": 71.6361968667, "source": "2012年安徽省公务员录用考试《行测》题第60题", "difficulty": 4, "formulas": 0}, {"id": 5283, "material": "", "question": "将104张桌子分别放到14个办公室,每个人办公室至少放一张桌子,不管怎样分至少有几个办公室的桌子数是一样多:", "type": "单选题", "options": "A. 2\nB. 3\nC. 7\nD. 无法确定", "choice": "A", "keypoints": "最不利构造", "most_wrong": "C", "human_count": 43463, "human_acc": 47.8706025815, "source": "2008年江苏省公务员录用考试《行测》题(A类)第17题", "difficulty": 5, "formulas": 0}, {"id": 21085, "material": "", "question": "有编号为1~13的卡片,每个编号有4张,共52张卡片。问至少摸出多少张,就可保证一定有3张卡片编号相连?", "type": "单选题", "options": "A. 27张\nB. 29张\nC. 33张\nD. 37张", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 297652, "human_acc": 26.7328961337, "source": "2012年浙江省公务员录用考试《行测》题第56题", "difficulty": 7, "formulas": 0}, {"id": 2021780, "material": "", "question": "有6种颜色的小球,数量分别为4,6,8,9,11,10,将它们放在一个盒子里,那么,拿到相同颜色的球最多需要的次数为:", "type": "单选题", "options": "A. 6\nB. 12\nC. 11\nD. 7", "choice": "D", "keypoints": "最不利构造", "most_wrong": "B", "human_count": 230605, "human_acc": 63.4201339954, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第94题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "最不利构造"]]}, {"id": 5510002, "material": "", "question": "某小区物业准备了230盒口罩免费派发给10栋楼,要求任意两栋楼派发的口罩数量都不相同,但最多相差不超过1倍。假设口罩不拆盒发放,那么派发口罩数量最少的那栋楼最少可派发口罩:", "type": "单选题", "options": "A. 18盒\nB. 15盒\nC. 14盒\nD. 12盒", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 392802, "human_acc": 47.0440578205, "source": "2023年陕西省公务员录用考试《行测》题(网友回忆版)第91题", "difficulty": 4, "formulas": 0, "history": [{"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 49329, "material": "", "question": "8名学生参加某项竞赛总得分是131分,已知最高分21分,每个人得分各不相同。则最低分为:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 5", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 323857, "human_acc": 60.7576800872, "source": "2013年江苏省公务员录用考试《行测》题(C类)第31题", "difficulty": 5, "formulas": 0}, {"id": 2264062, "material": "", "question": "假设七个相异正整数的平均数是17,中位数为20,则此七个正整数中的最大值可能为多少?", "type": "单选题", "options": "A. 45\nB. 50\nC. 55\nD. 60", "choice": "B", "keypoints": "构造数列", "most_wrong": "C", "human_count": 8882, "human_acc": 58.5904075659, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第79题", "difficulty": 4, "formulas": 0}, {"id": 49169, "material": "", "question": "5名学生参加某学科竞赛,共得91分,已知每人得分各不相同且均为整数,且最高是21分,则最低分最低为:", "type": "单选题", "options": "A. 14\nB. 16\nC. 13\nD. 15", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 368572, "human_acc": 63.8995908533, "source": "2013年江苏省公务员录用考试《行测》题(A类)第27题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 2255793, "material": "", "question": "把7支笔分给参加会议的4名教师,每人至少1支,至多3支,共有多少种分法?", "type": "单选题", "options": "A. 32\nB. 20\nC. 16\nD. 10", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 13953, "human_acc": 50.4120977568, "source": "2015年江西省法检系统招录考试《行测》题第62题", "difficulty": 6, "formulas": 0, "history": [{"id": 51993, "material": "", "question": "某领导要把20项任务分配给三个下属,每个下属至少分得三项任务,则共有多少种不同的分配方式:", "type": "单选题", "options": "A. 28\nB. 36\nC. 54\nD. 78", "choice": "D", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 289766, "human_acc": 44.2722748701, "source": "2013年陕西省公务员录用考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 4706597, "material": "", "question": "学校将一定数量的笔记本分给8名学生,若每人至少分得2本,则共有36种分法,问笔记本共有多少本?", "type": "单选题", "options": "A. 20\nB. 19\nC. 18\nD. 17", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 126986, "human_acc": 55.1800985935, "source": "2022上半年省考第六季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}, {"id": 22619, "material": "", "question": "某单位订阅了30份学习材料发放给3个部门,每个部门至少发放9份材料。问一共有多少种不同的发放方法?", "type": "单选题", "options": "A. 7\nB. 9\nC. 10\nD. 12", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 211387, "human_acc": 54.1002994508, "source": "2010年国家公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}, {"id": 2694980, "material": "", "question": "某幼儿园老师把25本相同的笔记本发给班里的5名小朋友,要求每名小朋友至少可以分4本,则共有多少种不同的分配方案?", "type": "单选题", "options": "A. 115\nB. 120\nC. 126\nD. 131", "choice": "C", "keypoints": "同素分堆问题", "most_wrong": "B", "human_count": 228643, "human_acc": 49.693627183, "source": "2021年国考第二十三季行测模考大赛(副省级)第63题", "difficulty": 6, "formulas": 0}, {"id": 5151087, "material": "", "question": "某学校将18个三好学生指标分配给3个班级,则每个班级至少分得一个指标且各班级分得的指标互不相同的分配方法共有多少种?", "type": "单选题", "options": "A. 112\nB. 114\nC. 115\nD. 136", "choice": "B", "keypoints": "同素分堆问题", "most_wrong": "C", "human_count": 90817, "human_acc": 37.6955856282, "source": "2022下半年省考第四季行测模考大赛(上海卷)第40题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "同素分堆问题"]]}, {"id": 3938434, "material": "", "question": "某单位共100人,现组织人员参加公文写作培训。其中,参加第一期培训的人数比参加第二期的多40%,两期培训都参加的人数占参加培训总人数的$\\frac{1}{3}$,未参加培训的人数比只参加第二期培训的多12人。问只参加第一期培训的有多少人?", "type": "单选题", "options": "A. 32\nB. 44\nC. 20\nD. 56", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 40740, "human_acc": 16.7501227295, "source": "2021下半年省考第十七季行测模考大赛(河南卷)第61题", "difficulty": 7, "formulas": 1, "history": [{"id": 6001, "material": "", "question": "$1\\sim200$这200个自然数中,能被4或能被6整除的数有多少个:", "type": "单选题", "options": "A. 65\nB. 66\nC. 67\nD. 68", "choice": "C", "keypoints": "两集合", "most_wrong": "B", "human_count": 25589, "human_acc": 56.4304974794, "source": "2008年云南省公务员录用考试《行测》题第6题", "difficulty": 5, "formulas": 1}, {"id": 1130069, "material": "", "question": "某部门共有82人,其中男性62人,本省籍42人,不是本省籍的女性11人,则本省籍的男性人数有:", "type": "单选题", "options": "A. 33\nB. 21\nC. 22\nD. 23", "choice": "A", "keypoints": "两集合", "most_wrong": "C", "human_count": 55491, "human_acc": 84.125353661, "source": "2010年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 3, "formulas": 0}, {"id": 3581, "material": "", "question": "某单位职工24人中,有女性11人,已婚的有16人。在已婚的16人中有女性6人。问这个单位的未婚男性有多少人:", "type": "单选题", "options": "A. 1\nB. 3\nC. 9\nD. 12", "choice": "B", "keypoints": "两集合", "most_wrong": "C", "human_count": 42461, "human_acc": 91.2107581074, "source": "2008年安徽省公务员录用考试《行测》题第8题", "difficulty": 3, "formulas": 0}, {"id": 8417, "material": "", "question": "某医院统计某天求诊的病人,内科150人,外科90人,内外科都求诊的20人,这天一共有多少病人:", "type": "单选题", "options": "A. 240\nB. 220\nC. 200\nD. 170", "choice": "B", "keypoints": "两集合", "most_wrong": "C", "human_count": 26095, "human_acc": 87.2006131443, "source": "2009年四川省公务员录用考试《行测》题(下半年)第11题", "difficulty": 3, "formulas": 0}, {"id": 11229, "material": "", "question": "某单位有78个人,站成一排,从左向右数,小王是第50个,从右向左数,小张是第48个,则小王小张之间有多少人:", "type": "单选题", "options": "A. 16\nB. 17\nC. 18\nD. 20", "choice": "C", "keypoints": "两集合", "most_wrong": "D", "human_count": 28449, "human_acc": 55.073992056, "source": "2009年山东省公务员录用考试《行测》题第107题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "容斥原理问题", "两集合"]]}, {"id": 4630410, "material": "", "question": "(1)如果新的市政府大楼要建在交通特别便捷的地方,那么它必须选址在靠近城市中心的位置。(2)如果这个新的市政府大楼要想发挥它高效的行政功能,那么它必须建成一个足以容纳绝大部分政府机构的大厦。(3)如果该大楼既要选址在市中心又要建成一个大厦,那么它的建造成本将会超过一亿元。(4)但是根据政府预算,这个大楼的成本不能超过一亿元。\n\n由此可以推出:", "type": "单选题", "options": "A. 新的政府大楼不会建在交通特别便捷的地方并且也不会发挥它高效的行政功能\nB. 如果新的政府大楼要想发挥它高效的行政功能,就不能建在交通特别便捷的地方\nC. 新的政府大楼只有建在交通特别便捷的地方,才能发挥它高效的行政功能\nD. 如果新的政府大楼不建在交通特别便捷的地方,那么就不能发挥它高效的行政功能", "choice": "B", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 720376, "human_acc": 68.094994836, "source": "2021年新疆公务员录用考试《行测》试题(网友回忆版)第88题", "difficulty": 5, "formulas": 0, "history": [{"id": 1772292, "material": "", "question": "以下(  )前项不是后项的充分条件。", "type": "单选题", "options": "A. 无规矩不成方圆\nB. 人若犯我,我必犯人\nC. 人心齐,泰山移\nD. 招手即停", "choice": "A", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 342249, "human_acc": 47.0546298163, "source": "2016年深圳市公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 6721, "material": "", "question": "“萧贺或者是教师,或者是公务员。”\n\n上述判断是以下哪种情况:", "type": "单选题", "options": "A. 无所谓真假\nB. 真的\nC. 假的\nD. 或者是真的,或者是假的", "choice": "D", "keypoints": "常规翻译", "most_wrong": "A", "human_count": 25592, "human_acc": 62.3476086277, "source": "2008年河北省公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 975, "material": "", "question": "“并非只有上大学才能成才。”与这一判断等值的是:", "type": "单选题", "options": "A. 不上大学就不能成才\nB. 不上大学但也能成才\nC. 如果上大学,就能成才\nD. 并非如果不成才就是没上大学", "choice": "B", "keypoints": "常规翻译", "most_wrong": "D", "human_count": 44592, "human_acc": 73.4346968066, "source": "2008年湖南省公务员录用考试《行测》题第62题", "difficulty": 5, "formulas": 0}, {"id": 5394328, "material": "", "question": "老子曰:识不足则多虑,威不足则多怒,信不足则多言。\n\n由此可以推出:", "type": "单选题", "options": "A. 多怒则识不足\nB. 不多虑则识不足\nC. 威不足是多怒的关键\nD. 信足是不多言的前提", "choice": "D", "keypoints": "常规翻译", "most_wrong": "C", "human_count": 346557, "human_acc": 65.0966507674, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第39题", "difficulty": 4, "formulas": 0}, {"id": 1324927, "material": "", "question": "只有遇到下雨天,客车才不会准时到达。现在,客车没有准时到达,所以(    )遇到下雨天。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 没有\nB. 可能\nC. 一定\nD. 不可能", "choice": "C", "keypoints": "常规翻译", "most_wrong": "B", "human_count": 612947, "human_acc": 79.0190669014, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第61题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "常规翻译"]]}, {"id": 2452740, "material": "", "question": "一项工程由甲、乙工程队单独完成,分别需50天和80天。若甲、乙工程队合作20天后,剩余工程量由乙、丙工程队合作需12天完成,则丙工程队单独完成此项工程所需的时间是", "type": "单选题", "options": "A. 40天\nB. 45天\nC. 50天\nD. 60天", "choice": "D", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 662930, "human_acc": 71.7077217806, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第53题", "difficulty": 4, "formulas": 0, "history": [{"id": 591, "material": "", "question": "一项工程,甲单独做,6天可完成;甲乙合做,2天可完成;则乙单独做,多少天可完成?", "type": "单选题", "options": "A. 1.5\nB. 3\nC. 4\nD. 5", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 238111, "human_acc": 83.0259836799, "source": "2008年湖南省公务员录用考试《行测》题第35题", "difficulty": 4, "formulas": 0}, {"id": 44769, "material": "", "question": "一项工程甲单独完成需12天,乙单独完成需9天,若甲先做若干天后,改由乙接着做共用10天完成,则甲做的天数是:", "type": "单选题", "options": "A. 6\nB. 5\nC. 4\nD. 3", "choice": "C", "keypoints": "给完工时间型", "most_wrong": "B", "human_count": 176267, "human_acc": 82.8476118616, "source": "2012年江苏省公务员录用考试《行测》题(C类)第27题", "difficulty": 4, "formulas": 0}, {"id": 5867, "material": "", "question": "一个游泳池,甲管注满水需6小时,甲、乙两管同时注水,注满要4小时。如果只用乙管注水,那么注满水需多少小时:", "type": "单选题", "options": "A. 14\nB. 12\nC. 10\nD. 8", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 127732, "human_acc": 87.2490840197, "source": "2008年河南省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}, {"id": 3431, "material": "", "question": "要折叠一批纸飞机,若甲单独折叠要半个小时完成,乙单独折叠需要45分钟完成。若两人一起折,需要多少分钟完成:", "type": "单选题", "options": "A. 10\nB. 15\nC. 16\nD. 18", "choice": "D", "keypoints": "给完工时间型", "most_wrong": "C", "human_count": 59989, "human_acc": 76.2139725616, "source": "2008年广东省公务员录用考试《行测》题第10题", "difficulty": 5, "formulas": 0}, {"id": 49325, "material": "", "question": "一项工程,甲、乙合作16天完成,乙、丙合作12天完成,丙、丁合作16天完成,如果甲、丁合作完成这项工程需要多少天:", "type": "单选题", "options": "A. 21\nB. 24\nC. 26\nD. 27", "choice": "B", "keypoints": "给完工时间型", "most_wrong": "A", "human_count": 368874, "human_acc": 77.7297939134, "source": "2013年江苏省公务员录用考试《行测》题(C类)第29题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "工程问题", "给完工时间型"]]}, {"id": 4096157, "material": "", "question": "熬夜的人通常肝脏细胞会受损,因此要提高肝脏细胞质量就要避免熬夜。\n\n以下哪项与上述说法的形式结构最为相似?", "type": "单选题", "options": "A. 刑讯逼供会导致冤假错案,因为会有冤假错案,所以禁止刑讯逼供\nB. 治理食品浪费,法律法规可操作才能见实效,因此法律法规要落地落实才能治理食品浪费\nC. 建筑贪大贪高,不仅无法促进当地发展,还造成了资源浪费\nD. 盲目攀比时会不理性消费,所以要提倡理性消费就要避免盲目攀比", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 17670, "human_acc": 90.9054895303, "source": "2021下半年省考第二十季行测模考大赛(江苏卷)第92题", "difficulty": 3, "formulas": 0, "history": [{"id": 585897, "material": "", "question": "没有规矩不成方圆。\n\n下列选项与题干逻辑结构相同的是:", "type": "单选题", "options": "A. 不吐不快\nB. 骄兵必败\nC. 有志者事竟成\nD. 头发长,见识短", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 244015, "human_acc": 69.8936540786, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第84题", "difficulty": 5, "formulas": 0}, {"id": 3564986, "material": "", "question": "万物得其本者生,百事得其道者成。\n\n以下哪项与上述形式结构最为相似?", "type": "单选题", "options": "A. 善走需得途,善谋需谋制\nB. 善谋者谋势,不善谋者谋子\nC. 增俸未必养廉,薄俸未必致腐\nD. 未经他人苦,莫劝他人善", "choice": "A", "keypoints": "推理形式", "most_wrong": "B", "human_count": 11332, "human_acc": 79.2004941758, "source": "2021下半年省考第四季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}, {"id": 4667523, "material": "", "question": "水至清则无鱼,人至察则无徒。\n\n以下哪项与上述说法的推理形式最为相似?", "type": "单选题", "options": "A. 似则不是,是则不似\nB. 久素则生疾,多肉亦思菜\nC. 穷则变,变则通,通则久\nD. 热则普天匝地热,寒则普天匝地寒", "choice": "D", "keypoints": "推理形式", "most_wrong": "B", "human_count": 9189, "human_acc": 32.4627271738, "source": "2022上半年省考第一季行测模考大赛(江苏卷)第100题", "difficulty": 7, "formulas": 0}, {"id": 4690438, "material": "", "question": "奉法者强则国强,奉法者弱则国弱。\n\n以下哪项与上述古人说法的形式结构最为相似?", "type": "单选题", "options": "A. 成则为王,败则为寇\nB. 既非大川楫,则守南山雾\nC. 日计莫如醉,醉则兼忘身\nD. 惟草木之零落兮,恐美人之迟暮", "choice": "A", "keypoints": "推理形式", "most_wrong": "C", "human_count": 7451, "human_acc": 94.4034357804, "source": "2022上半年省考第四季行测模考大赛(江苏卷)第100题", "difficulty": 3, "formulas": 0}, {"id": 3766934, "material": "", "question": "古人云:木受绳则直,金就砺则利。\n\n以下哪项与上述古人说法的推理形式最为相似?", "type": "单选题", "options": "A. 不以规矩,不能成方圆\nB. 欲速则不达,见小利则大事不成\nC. 向吾不为斯役,则久已病矣\nD. 位卑则足羞,官盛则近谀", "choice": "D", "keypoints": "推理形式", "most_wrong": "A", "human_count": 13012, "human_acc": 73.9240700891, "source": "2021下半年省考第十三季行测模考大赛(江苏卷)第92题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "推理形式"]]}, {"id": 5853, "material": "", "question": "一列火车通过一条长1140米的桥梁(车头上桥至车尾离桥)用50秒,火车穿越长1980米的隧道用80秒,则这列火车车身是多少米:", "type": "单选题", "options": "A. 260\nB. 270\nC. 360\nD. 380", "choice": "A", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 28115, "human_acc": 68.3834252179, "source": "2008年河南省公务员录用考试《行测》题第55题", "difficulty": 4, "formulas": 0, "history": [{"id": 931, "material": "", "question": "一列长为280米的火车,速度为20米/秒,经过2800米的大桥,火车完全通过这座大桥需多少时间?", "type": "单选题", "options": "A. 28秒\nB. 2分20秒\nC. 2分28秒\nD. 2分34秒", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 151255, "human_acc": 79.0578823841, "source": "2008年江西省公务员录用考试《行测》题第39题", "difficulty": 4, "formulas": 0}, {"id": 5566334, "material": "", "question": "某座大桥长为1000米,一辆货车匀速行驶,该车完全在桥上的时间与完全通过大桥的时间之比为62:63,且时间相差1秒,则货车车速为多少米/秒?", "type": "单选题", "options": "A. 10\nB. 12\nC. 14\nD. 16", "choice": "D", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 2826, "human_acc": 34.7487615004, "source": "2023下半年省考第二季行测模考大赛(北京卷)第63题", "difficulty": 7, "formulas": 0}, {"id": 2452821, "material": "", "question": "某隧道长1500米,有一列长150米的火车通过这条隧道,从车头进入隧道到完全通过隧道花费的时间为50秒,整列火车完全在隧道中的时间是:", "type": "单选题", "options": "A. 43.2秒\nB. 40.9秒\nC. 38.3秒\nD. 37.5秒", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 278075, "human_acc": 64.0733615032, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第44题", "difficulty": 3, "formulas": 0}, {"id": 2678571, "material": "", "question": "某铁路桥长1200米,一列火车从桥上通过,测得火车从开始上桥到完全下桥共用120秒,整列火车完全在桥上的时间是80秒,则火车的速度是:", "type": "单选题", "options": "A. 10米/秒\nB. 12米/秒\nC. 12.5米/秒\nD. 500米/分", "choice": "B", "keypoints": "火车过桥", "most_wrong": "C", "human_count": 1259, "human_acc": 68.0698967434, "source": "2013年山东省选调优秀高校毕业生到村任职笔试题目(网友回忆版)第43题", "difficulty": 4, "formulas": 0}, {"id": 4674666, "material": "", "question": "一辆长120米的客车以每小时70千米的速度向东行驶,一辆长300米的货车往西行驶。它们在一座长125米的铁桥西端相遇,刚好在桥的东端分开。求货车的速度为每小时多少千米?", "type": "单选题", "options": "A. 30\nB. 40\nC. 50\nD. 60", "choice": "C", "keypoints": "火车过桥", "most_wrong": "B", "human_count": 100027, "human_acc": 52.8037429894, "source": "2022上半年省考第二季行测模考大赛(河南卷)第62题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "火车过桥"]]}, {"id": 2527069, "material": "", "question": "小张出生于21世纪,2020年小张和父母的年龄之和为103;3年前小张和父亲年龄的平方和与年份数字相同。问母亲出生于哪一年?", "type": "单选题", "options": "A. 1974\nB. 1975\nC. 1976\nD. 1977\nE. 1978\nF. 1979\nG. 1980\nH. 1981", "choice": "C", "keypoints": "年龄问题", "most_wrong": "D", "human_count": 9014, "human_acc": 31.2070113157, "source": "2020年上半年省考第二十七季行测模考大赛(陕西卷)第117题", "difficulty": 7, "formulas": 0, "history": [{"id": 3429, "material": "", "question": "两年前甲的年龄是乙的两倍,五年前乙的年龄是丙的三分之一,丙今年11岁,问今年甲多少岁:", "type": "单选题", "options": "A. 12\nB. 10\nC. 7\nD. 5", "choice": "A", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 68298, "human_acc": 75.5688307125, "source": "2008年广东省公务员录用考试《行测》题第9题", "difficulty": 5, "formulas": 0}, {"id": 2051028, "material": "", "question": "3年前张三的年龄是他女儿的17倍,3年后张三的年龄是他女儿的5倍,那么张三的女儿现在:", "type": "单选题", "options": "A. 2岁\nB. 3岁\nC. 4岁\nD. 5岁", "choice": "D", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 436603, "human_acc": 57.2084937575, "source": "2017年422联考《行测》题(江西卷)第74题", "difficulty": 5, "formulas": 0}, {"id": 4517, "material": "", "question": "父亲今年44岁,儿子今年16岁,当父亲的年龄是儿子的年龄的8倍时,父子的年龄和是多少岁:", "type": "单选题", "options": "A. 36\nB. 54\nC. 99\nD. 162", "choice": "A", "keypoints": "年龄问题", "most_wrong": "C", "human_count": 16717, "human_acc": 79.8408805408, "source": "2009年北京市公务员录用考试《行测》题(社招)第17题", "difficulty": 5, "formulas": 0}, {"id": 5185, "material": "", "question": "哥哥5年后的年龄和弟弟3年前的年龄和是29岁,弟弟现在的年龄是两人年龄差的4倍。哥哥今年几岁?", "type": "单选题", "options": "A. 10\nB. 12\nC. 15\nD. 18", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 30233, "human_acc": 80.4551318096, "source": "2009年北京市公务员录用考试《行测》题(应届)第24题", "difficulty": 4, "formulas": 0}, {"id": 8161, "material": "", "question": "父亲与两个儿子的年龄和为84岁,12年后父亲的年龄等于两个儿子的年龄之和,请问父亲现在多少岁:", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 60", "choice": "C", "keypoints": "年龄问题", "most_wrong": "B", "human_count": 51483, "human_acc": 74.1837111279, "source": "2009年广东省公务员录用考试《行测》题第14题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "年龄问题"]]}, {"id": 826263, "material": "", "question": "系谱是指根据各类生物间的进化历程和亲缘关系的远近而编制的生物变化系统。根据上述定义,下列属于系谱的是:", "type": "单选题", "options": "A. 有一种观点认为,人类起源于非洲,并逐步迁徙到世界各地\nB. 李氏家族的家谱中详细记录了家族五百年来的发展和变迁\nC. 在自然界中,人类与各种动物相互依存,一旦失去平衡,灾难就会接踵而至\nD. 鱼类进化到两栖类,从中分化出哺乳类和鸟类,哺乳类中的一支发展成为高等智慧动物", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 392914, "human_acc": 87.2188316018, "source": "2014年四川省公务员录用考试《行测》题(下半年)第64题", "difficulty": 5, "formulas": 0, "history": [{"id": 2393708, "material": "", "question": "负概念是反应对象不具有某种属性的概念。\n\n根据上述定义,下列不属于负概念的是:", "type": "单选题", "options": "A. 未成年人\nB. 无形资产\nC. 负债\nD. 无罪", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 769, "human_acc": 41.8725617685, "source": "2015年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 6891, "material": "", "question": "服务证券是指以一定的服务或文体、艺术欣赏为内容的证券。\n\n根据上述定义,下列不属于服务证券的是:", "type": "单选题", "options": "A. 粮油票\nB. 电影票\nC. 球票\nD. 飞机票", "choice": "A", "keypoints": "单定义-其他句式", "most_wrong": "D", "human_count": 32368, "human_acc": 85.5350963915, "source": "2008年云南省公务员录用考试《行测》题第65题", "difficulty": 5, "formulas": 0}, {"id": 1791848, "material": "", "question": "同质性群体:指经过较长时间后形成的具有某种共同的文化或性格特征的社会群体。\n\n下列不属于同质性群体的是(    )。", "type": "单选题", "options": "A. 票友\nB. 同乡\nC. 徽商\nD. 旅客", "choice": "D", "keypoints": "单定义-其他句式", "most_wrong": "B", "human_count": 293932, "human_acc": 77.0457112529, "source": "2016年江苏省公务员录用考试《行测》题(C类)第99题", "difficulty": 4, "formulas": 0}, {"id": 2255597, "material": "", "question": "公共产品又称“公共物品”,是指由政府提供的非排他性的物品或者服务。根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 竞争秩序\nB. 城区绿化\nC. 救灾物资\nD. 税收补贴", "choice": "B", "keypoints": "单定义-其他句式", "most_wrong": "C", "human_count": 6441, "human_acc": 82.4716658904, "source": "2014年江西省法检系统招录考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 622909, "material": "", "question": "公共产品也被称为“公共物品”,系指一种非排他性的物品或者服务。\n\n根据上述定义,下列属于公共产品的是:", "type": "单选题", "options": "A. 社区治安\nB. 经济适用房\nC. 高速公路\nD. 牧民草地", "choice": "C", "keypoints": "单定义-其他句式", "most_wrong": "A", "human_count": 480213, "human_acc": 63.2134073838, "source": "2014年四川省公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "单定义-其他句式"]]}, {"id": 754353, "material": "", "question": "A、B、C三支施工队在王庄和李庄修路,王庄要修路900米,李庄要修路1250米。已知A、B、C队每天分别能修24米、30米、32米,A、C队分别在王庄和李庄修路,B队先在王庄,施工若干天后转到李庄,两地工程同时开始同时结束。\n\n问B队在王庄工作了几天:", "type": "单选题", "options": "A. 9\nB. 10\nC. 11\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 532238, "human_acc": 66.0941157903, "source": "2014年山东省公务员录用考试《行测》题第60题", "difficulty": 5, "formulas": 0, "history": [{"id": 5676428, "material": "", "question": "某工程队有10人,筑路工程需30天完成,做了6天后,要求提前8天完成,那么需要增加________人。", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 138, "human_acc": 81.884057971, "source": "2018年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 4, "formulas": 0}, {"id": 5133, "material": "", "question": "甲、乙两车运一堆货物。若单独运,则甲车运的次数比乙车少5次;如果两车合运,那么各运6次就能运完。甲车单独运完这堆货物需要多少次?", "type": "单选题", "options": "A. 9\nB. 10\nC. 13\nD. 15", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 18412, "human_acc": 61.8509667608, "source": "2009年北京市公务员录用考试《行测》题(应届)第19题", "difficulty": 5, "formulas": 0}, {"id": 2579767, "material": "", "question": "甲、乙两企业合作完成某订单需要$x$天。如果甲企业产能增加$50\\%$而乙企业不变,可提前2天完成;如果乙企业产能增加$300\\%$而甲企业不变,可提前4天完成。问$x$的值是:", "type": "单选题", "options": "A. 6\nB. 8\nC. 10\nD. 12", "choice": "B", "keypoints": "工程问题-其他", "most_wrong": "C", "human_count": 521361, "human_acc": 43.8907014525, "source": "2020年浙江公务员考试《行测》(A类)试题(网友回忆版)第58题", "difficulty": 4, "formulas": 4}, {"id": 1751348, "material": "", "question": "甲、乙工程队需要在规定的工期内完成某项工程,若甲队单独做,则要超工期9天完成,若乙队单独做,则要超工期16天才能完成,若两队合做,则恰好按期完成。那么,该项工程规定的工期是:", "type": "单选题", "options": "A. 8天\nB. 6天\nC. 12天\nD. 5天", "choice": "C", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 303477, "human_acc": 68.3491664937, "source": "2015年江苏省公务员录用考试《行测》题(A类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5102398, "material": "", "question": "一件工作由甲、乙、丙三人完成,若甲、乙合作先干10小时,丙再单干1小时可以完成。已知乙单干用的时间比甲多4小时,丙单干用的时间是甲的$\\frac{1}{2}$还多2小时,问甲单干需多少小时?", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 35", "choice": "A", "keypoints": "工程问题-其他", "most_wrong": "B", "human_count": 434523, "human_acc": 35.3541699749, "source": "2022年云南公务员录用考试《行测》题(网友回忆版)第49题", "difficulty": 5, "formulas": 1}], "categories": [["数量关系", "数学运算", "工程问题", "工程问题-其他"]]}, {"id": 1541961, "material": "", "question": "从甲地到乙地111千米,其中有$\\frac{1}{4}$是平路,$\\frac{1}{2}$是上坡路,$\\frac{1}{4}$是下坡路。假定一辆车在平路的速度是20千米/小时,上坡的速度是15千米/小时,下坡的速度是30千米/小时。则该车由甲地到乙地往返一趟的平均速度是多少千米/小时?", "type": "单选题", "options": "A. 19\nB. 20\nC. 21\nD. 22", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 441863, "human_acc": 58.5595535268, "source": "2015年山东省公务员录用考试《行测》题第55题", "difficulty": 5, "formulas": 3, "history": [{"id": 16057, "material": "", "question": "老张上山速度为60米/分钟,原路返回的速度为100米/分钟,问老张往返的平均速度为多少米/分钟:", "type": "单选题", "options": "A. 85\nB. 80\nC. 75\nD. 70", "choice": "C", "keypoints": "平均速度", "most_wrong": "B", "human_count": 33807, "human_acc": 72.7068358624, "source": "2011年江苏省公务员录用考试《行测》题(C类)第32题", "difficulty": 4, "formulas": 0}, {"id": 615, "material": "", "question": "汽车往返甲、乙两地之间,上行速度为30公里/时,下行速度为60公里/时,汽车往返的平均速度为多少公里/时?", "type": "单选题", "options": "A. 40\nB. 45\nC. 50\nD. 55", "choice": "A", "keypoints": "平均速度", "most_wrong": "B", "human_count": 51845, "human_acc": 63.7747130871, "source": "2008年湖南省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2270721, "material": "", "question": "某人驾车以每小时60千米的速度行驶一段路程后,再以每小时40千米的速度原路返回。请问他在上述往返行程中的平均时速是多少?", "type": "单选题", "options": "A. 45\nB. 46\nC. 48\nD. 50", "choice": "C", "keypoints": "平均速度", "most_wrong": "D", "human_count": 7533, "human_acc": 76.5963095712, "source": "2015年3月四川省选调优秀大学生到基层工作考试行政职业能力测验试卷(精选)第46题", "difficulty": 4, "formulas": 0}, {"id": 2895, "material": "", "question": "一辆汽车以60千米/时的速度从A地开往B地,它又以40千米/时的速度从B地返回A地,则汽车行驶的平均速度为多少千米/小时:", "type": "单选题", "options": "A. 50\nB. 48\nC. 30\nD. 20", "choice": "B", "keypoints": "平均速度", "most_wrong": "A", "human_count": 24077, "human_acc": 72.4758067866, "source": "2008年贵州省公务员录用考试《行测》题第8题", "difficulty": 4, "formulas": 0}, {"id": 25271, "material": "", "question": "小王步行的速度比跑步慢50%,跑步的速度比骑车慢50%。如果他骑车从A城去B城,再步行返回A城共需要2小时。问小王跑步从A城到B城需要多少分钟?", "type": "单选题", "options": "A. 45\nB. 48\nC. 56\nD. 60", "choice": "B", "keypoints": "平均速度", "most_wrong": "C", "human_count": 240706, "human_acc": 65.3519230929, "source": "2011年国家公务员录用考试《行测》题第66题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "平均速度"]]}, {"id": 4597953, "material": "", "question": "搭伙式过年是因就地过年而产生的过年“新姿势”,指人们直接在异乡与朋友、同事们一起过年。\n\n根据上述定义,下列属于搭伙式过年的是:", "type": "单选题", "options": "A. 小明春节前回到家乡,但因其父母在外省工作,于是他与自己的好朋友们共度春节\nB. 小张在北京工作十多年,今年因为疫情,他的父母来北京与他一起过年\nC. 小赵与几个很要好的朋友共同居住在一个小区,逢年过节他们都会在一起聚餐\nD. 小林春节无法回家,只能和同事们在单位一边加班工作一边收看春晚、吃年夜饭", "choice": "D", "keypoints": "原因结果", "most_wrong": "C", "human_count": 35598, "human_acc": 93.1484914883, "source": "2021下半年省考第三十四季行测模考大赛(江苏卷)第115题", "difficulty": 3, "formulas": 0, "history": [{"id": 44529, "material": "", "question": "社会风险,指由于个人或团体的行为使社会生产及人们生活遭受损失的风险。 下列不属于社会风险的是:", "type": "单选题", "options": "A. 盗窃\nB. 抢劫\nC. 冻灾\nD. 玩忽职守", "choice": "C", "keypoints": "原因结果", "most_wrong": "D", "human_count": 137770, "human_acc": 91.4364520578, "source": "2012年江苏省公务员录用考试《行测》题(B类)第132题", "difficulty": 5, "formulas": 0}, {"id": 1130855, "material": "", "question": "金领指掌握现代科技、能创造大量财富因而收入较高的高级科学技术人员。\n\n下列属于金领的是:", "type": "单选题", "options": "A. 电脑营销公司老板\nB. 微软公司编程师\nC. 计算机专业博士生\nD. 国有企业的会计", "choice": "B", "keypoints": "原因结果", "most_wrong": "C", "human_count": 56704, "human_acc": 91.0288515801, "source": "2010年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 3, "formulas": 0}, {"id": 51723, "material": "", "question": "“晕轮效应”是指人们在评价一样事物时,受事物的某种突出特征影响而产生的以点代面、以偏概全的心理效应。下面能体现这种效应的是:", "type": "单选题", "options": "A. 情人眼里出西施\nB. 心有灵犀一点通\nC. 柳暗花明又一村\nD. 无心插柳柳成荫", "choice": "A", "keypoints": "原因结果", "most_wrong": "B", "human_count": 314565, "human_acc": 92.4956686217, "source": "2013年广州市公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 13417, "material": "", "question": "季节变化是指社会经济现象随着一年的季节发生改变而呈现有规律的变动。\n\n根据以上定义,下列属于季节变动的是:", "type": "单选题", "options": "A. 夏季用电高于其他季节\nB. 冰冻灾害后第二年一般发洪水\nC. 瑞雪兆丰年\nD. CPI 数持续上涨", "choice": "A", "keypoints": "原因结果", "most_wrong": "C", "human_count": 16006, "human_acc": 83.0626015244, "source": "2008年湖北省公务员录用考试《行测》题(B类)第71题", "difficulty": 5, "formulas": 0}, {"id": 2661664, "material": "", "question": "错觉是人们观察物体时,由于物体受到形、光、色等的干扰,加上人们的生理、心理原因而误认物象,会产生与实际不符的判断性的误差。\n\n根据上述定义,下列成语不属于错觉的是:", "type": "单选题", "options": "A. 风声鹤唳\nB. 声东击西\nC. 推杯换盏\nD. 杯弓蛇影", "choice": "C", "keypoints": "原因结果", "most_wrong": "B", "human_count": 192814, "human_acc": 53.5116744635, "source": "2021年国考第十九季行测模考大赛(副省级)第89题", "difficulty": 6, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "原因结果"]]}, {"id": 2911, "material": "", "question": "小明、小刚和小红三人一起参加一次英语考试,已知考试共有100道题,且小明做对了68题,小刚做对了58题,小红做对了78题。\n\n问三人都做对的题目至少有几题?", "type": "单选题", "options": "A. 4题\nB. 8题\nC. 12题\nD. 16题", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 247983, "human_acc": 62.7006689975, "source": "2008年浙江省公务员录用考试《行测》题第25题", "difficulty": 4, "formulas": 0, "history": [{"id": 826841, "material": "", "question": "甲、乙、丙同时给99盆花浇水,已知甲浇了75盆,乙浇了66盆,丙浇了58盆,那么三人都浇过的花至少有几盆:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 185003, "human_acc": 55.7158532564, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第56题", "difficulty": 5, "formulas": 0}, {"id": 2264069, "material": "", "question": "某兴趣班共有学生45人,其中喜欢音乐、舞蹈、美术的学生分别为36、34、31人,问这三项都喜欢的学生至少有多少人?", "type": "单选题", "options": "A. 10\nB. 11\nC. 12\nD. 13", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 11430, "human_acc": 70.3324584427, "source": "2015年湖北省选调生招录考试 综合知识和行政职业能力测验试卷(精选)第86题", "difficulty": 4, "formulas": 0}, {"id": 5268695, "material": "", "question": "某校有200名学生,调查发现有52%的人爱吃苹果,有69%的人爱吃香蕉,有87%的人爱吃梨,则至少有多少人这三种水果都爱吃?", "type": "单选题", "options": "A. 16\nB. 14\nC. 12\nD. 8", "choice": "A", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 151609, "human_acc": 23.5183927076, "source": "2022下半年省考第九季行测模考大赛(浙江C卷)第57题", "difficulty": 7, "formulas": 0}, {"id": 2750564, "material": "", "question": "某单位在网上办公系统传阅了15份文件,甲阅读了9份,乙阅读了12份,丙阅读了10份,则甲、乙、丙三人共同阅读过的文件至少有(    )份。", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 152784, "human_acc": 61.6425803749, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第79题", "difficulty": 4, "formulas": 0}, {"id": 200573, "material": "", "question": "一小偷藏匿于某商场,三名保安甲、乙、丙分头行动搜查商场的100家商铺。已知甲检查过80家,乙检查过70家,丙检查过60家,则三人都检查过的商铺至少有多少家:", "type": "单选题", "options": "A. 5\nB. 10\nC. 20\nD. 30", "choice": "B", "keypoints": "多集合反向构造", "most_wrong": "C", "human_count": 326066, "human_acc": 67.2087859513, "source": "2013年深圳市公务员录用考试《行测》题第46题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "最值问题", "多集合反向构造"]]}, {"id": 2402031, "material": "", "question": "某跑步团的3位队员A、B、C在一环形湿地公园晨跑,三人同时从同一地点出发,A、B按逆时针奔跑,C按顺时针方向奔跑。A、B两人晨跑速度之比为$16\\colon13$,且他俩的速度(以米/分计)均为整数并能被5整除,其中B的速度小于70米/分,C在出发20分钟后与A相遇,2分钟之后又遇到了B。那么,这个湿地公园周长为:", "type": "单选题", "options": "A. 3300米\nB. 3360米\nC. 3500米\nD. 3900米", "choice": "A", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 435446, "human_acc": 52.3304841473, "source": "2018年重庆市公务员录用考试《行测》题(下半年)第60题", "difficulty": 6, "formulas": 1, "history": [{"id": 10137, "material": "", "question": "甲乙两人从同一起跑线上绕300米环形跑道跑步,甲每秒钟跑6米,乙每秒钟跑4米,问第二次追上乙时甲跑了几圈?", "type": "单选题", "options": "A. 9\nB. 8\nC. 7\nD. 6", "choice": "D", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 16212, "human_acc": 66.3890944979, "source": "2009年甘肃省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0}, {"id": 3113, "material": "", "question": "一个周长300米的环形跑道上,甲和乙同时从起跑线起跑,甲每秒跑6米,乙每秒跑4米,问甲第二次追上乙时甲跑了几圈:", "type": "单选题", "options": "A. 6\nB. 8\nC. 4\nD. 5", "choice": "A", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 21526, "human_acc": 56.6199015144, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2388063, "material": "", "question": "甲乙二人沿环形跑道从同一地点同时背向开始跑步,35秒后两人相遇。已知甲跑一圈需要60秒,乙跑一圈需要多少秒?", "type": "单选题", "options": "A. 77\nB. 84\nC. 91\nD. 96", "choice": "B", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 591658, "human_acc": 74.0388873302, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第70题", "difficulty": 5, "formulas": 0}, {"id": 2392841, "material": "", "question": "甲、乙两人同时沿环形跑道同向匀速散步,5分钟后他们第一次相遇,20分钟后第二次相遇,问他们多少分钟后第三次相遇?", "type": "单选题", "options": "A. 45\nB. 40\nC. 35\nD. 30", "choice": "C", "keypoints": "相遇追及", "most_wrong": "B", "human_count": 293380, "human_acc": 61.1019837753, "source": "2016年黑龙江省公务员录用考试《行测》题(公检法卷)第57题", "difficulty": 4, "formulas": 0}, {"id": 17353, "material": "", "question": "甲、乙两人同地同向直线行走,其速度分别为7千米/时和5千米/时。乙先走2小时后甲才开始走,则甲追上乙需:", "type": "单选题", "options": "A. 4小时\nB. 5小时\nC. 6小时\nD. 7小时", "choice": "B", "keypoints": "相遇追及", "most_wrong": "C", "human_count": 253272, "human_acc": 81.5617202059, "source": "2011年安徽省公务员录用考试《行测》题第5题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 25599, "material": "", "question": "行政指令是指行政主体依靠行政组织的权威,运用行政手段,包括行政命令、指示、规定、条例及规章制度等措施,按照行政组织的系统和层次进行行政管理活动的方法。\n\n根据上述定义,下列描述不属于行政指令的是:", "type": "单选题", "options": "A. 体育局局长签发嘉奖令,表彰在全运会上取得优异成绩的运动员和教练员\nB. 消费者协会同中国家用电器协会正式发布《太阳能热水器选购指南》\nC. 市教育局紧急电话通知,要求全市中小学、幼儿园加强校园安全管理\nD. 市消防大队对未经消防设计备案擅自施工的违法工程下发《责令改正通知书》", "choice": "B", "keypoints": "主客体", "most_wrong": "A", "human_count": 346212, "human_acc": 58.850068744, "source": "2011年国家公务员录用考试《行测》题第94题", "difficulty": 5, "formulas": 0, "history": [{"id": 2255680, "material": "", "question": "会意是指用两个或两个以上的独体字会合起来表示一个新的意义的造字方法。\n\n根据上述定义,下列不属于会意字的是:", "type": "单选题", "options": "A. 从\nB. 息\nC. 明\nD. 江", "choice": "D", "keypoints": "主客体", "most_wrong": "A", "human_count": 6491, "human_acc": 80.0955168695, "source": "2015年江西省法检系统招录考试《行测》题第84题", "difficulty": 5, "formulas": 0}, {"id": 12691, "material": "", "question": "种群:指在一定空间和时间内的同种生物个体的总和。\n\n下列属于种群的一项是:", "type": "单选题", "options": "A. 一个公园中的花卉\nB. 一个牧场里的家畜\nC. 一个蜂巢里的蜂\nD. 湘江里的鱼", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 18720, "human_acc": 82.2382478632, "source": "2009年湖南省公务员录用考试《行测》题第71题", "difficulty": 4, "formulas": 0}, {"id": 5543, "material": "", "question": "行为罚亦称能力罚,是行政主体对违反行政法律规范的行政相对方所采取的限制或剥夺其特定行为能力或资格的一种处罚措施。\n\n下列属于行为罚的是:", "type": "单选题", "options": "A. 行政拘留\nB. 没收财物\nC. 吊销营业执照\nD. 劳动教养", "choice": "C", "keypoints": "主客体", "most_wrong": "A", "human_count": 14256, "human_acc": 70.8543771044, "source": "2009年北京市公务员录用考试《行测》题(应届)第54题", "difficulty": 5, "formulas": 0}, {"id": 1163, "material": "", "question": "产权是指主体对物的排他性权利,它的本质是人们在社会中发生的对劳动成果的权利。\n\n根据以上定义,下列不属于产权的是:", "type": "单选题", "options": "A. 所有权、占有权\nB. 收益权、转让权\nC. 劳动选择权、劳动交换转让权\nD. 支配权、使用权", "choice": "C", "keypoints": "主客体", "most_wrong": "D", "human_count": 32630, "human_acc": 82.7152926755, "source": "2008年山东省公务员录用考试《行测》题第61题", "difficulty": 4, "formulas": 0}, {"id": 2452831, "material": "", "question": "应激性是指生物对外来刺激(如温度、声音)在短时间内所做出的反应。\n\n根据上述定义,以下属于应激性的是:", "type": "单选题", "options": "A. 篮球触地后高高弹起\nB. 含羞草被碰触后叶子收缩\nC. 鲜牛奶常温放置24小时后发酸\nD. 纸张遇到明火燃烧", "choice": "B", "keypoints": "主客体", "most_wrong": "C", "human_count": 107843, "human_acc": 94.2314290218, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第62题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "主客体"]]}, {"id": 2247210, "material": "", "question": "某球赛积分规则为胜一场积3分,平一场积1分,负一场积0分。某队经过8场比赛,最终积了13分。问此球队胜、平、负的情况可能有几种?", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 17996, "human_acc": 53.645254501, "source": "2018年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第56题", "difficulty": 5, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 2613907, "material": "", "question": "面包店内,有三种面包的售价分别为12元、8元、7元。已知某天销量为20个,销售额为220元。问卖出的12元面包比8元的最多多几个?", "type": "单选题", "options": "A. 10\nB. 14\nC. 16\nD. 18", "choice": "C", "keypoints": "不定方程组", "most_wrong": "B", "human_count": 31902, "human_acc": 49.2633690678, "source": "2020年下半年省考第二季行测模考大赛(新疆卷)第69题", "difficulty": 6, "formulas": 0}, {"id": 4759990, "material": "", "question": "某超市老板花费2000元进购大、中、小三种不同规格的收纳箱共80个,进价分别为32元、24元、18元,问大收纳箱最多比中收纳箱多多少个?", "type": "单选题", "options": "A. 29\nB. 30\nC. 31\nD. 32", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 407382, "human_acc": 43.725299596, "source": "2022上半年省考第九季行测模考大赛(广东乡镇卷)第43题", "difficulty": 7, "formulas": 0}, {"id": 2526996, "material": "", "question": "某工厂有熟练工、技术工、学徒共33人,熟练工每人每天工资250元,技术工380元,学徒100元。工厂每天需结工资8480元。问学徒有多少人?", "type": "单选题", "options": "A. 14\nB. 11\nC. 8\nD. 5", "choice": "C", "keypoints": "不定方程组", "most_wrong": "B", "human_count": 278468, "human_acc": 53.7968455981, "source": "2021年国考第三季行测模考大赛(副省级)第70题", "difficulty": 6, "formulas": 0}, {"id": 2659342, "material": "", "question": "超市销售某种牙膏,不同包装盒中牙膏数量不同,分为一支装、四支组合装、五支组合装,小李一次性买了15盒,共38支牙膏,问购买的组合装牙膏最多为多少盒?", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "C", "keypoints": "不定方程组", "most_wrong": "B", "human_count": 164257, "human_acc": 54.1419848165, "source": "2021年国考第十九季行测模考大赛(副省级)第68题", "difficulty": 6, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"]]}, {"id": 6073, "material": "", "question": "要把A、B、C、D四包不同的商品放到货架上,但是,A不能放在第一层,B不能放在第二层,C不能放在第三层,D不能放在第四层,那么,不同的放法共有多少种:", "type": "单选题", "options": "A. 6\nB. 7\nC. 8\nD. 9", "choice": "D", "keypoints": "错位排列", "most_wrong": "A", "human_count": 21660, "human_acc": 49.2613111727, "source": "2009年云南省公务员录用考试《行测》题第12题", "difficulty": 4, "formulas": 0, "history": [{"id": 163465, "material": "", "question": "相邻的4个车位中停放了4辆不同的车,现将所有车开出后再重新停入这4个车位,要求所有车都不得停在原来的车位中,则一共有多少种不同的停放方式?", "type": "单选题", "options": "A. 9\nB. 12\nC. 14\nD. 16", "choice": "A", "keypoints": "错位排列", "most_wrong": "B", "human_count": 250393, "human_acc": 58.8698565854, "source": "2014年北京市公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2611503, "material": "", "question": "甲、乙、丙、丁、戊5位同学相约去看电影,购买了5张连座电影票,甲先入座,坐在了乙的电影票对应的座位上。现安排除甲之外的4人就坐,则有且仅有一人所坐座位与本人电影票对应的方案有多少种?", "type": "单选题", "options": "A. 6\nB. 9\nC. 12\nD. 18", "choice": "B", "keypoints": "错位排列", "most_wrong": "C", "human_count": 68531, "human_acc": 37.6296858356, "source": "2020年下半年省考第一季行测模考大赛(新疆卷)第60题", "difficulty": 7, "formulas": 0}, {"id": 3747532, "material": "", "question": "某次辩论赛,工作人员忘记给参赛选手准备姓名牌,只好在比赛开始前匆忙制作8名选手的姓名牌,但由于工作人员粗心大意,在发放完毕后,发现其中4名选手的姓名牌发放错误。那么,姓名牌发错的情况可能有多少种?", "type": "单选题", "options": "A. 630\nB. 700\nC. 720\nD. 900", "choice": "A", "keypoints": "错位排列", "most_wrong": "C", "human_count": 31351, "human_acc": 17.0361391981, "source": "2021下半年省考第十二季行测模考大赛(河南卷)第65题", "difficulty": 6, "formulas": 0}, {"id": 4044534, "material": "", "question": "小明在玩一个拼图游戏,由于最后5片拼图相似度极高,所以不能确定每片的对应位置。于是小明随机选择这5片拼图的位置,问最多选错4片位置的概率约为多少?", "type": "单选题", "options": "A. 10%\nB. 20%\nC. 52.5%\nD. 63.3%", "choice": "D", "keypoints": "给情况求概率;错位排列", "most_wrong": "C", "human_count": 135615, "human_acc": 18.3703867566, "source": "2021下半年省考第十九季行测模考大赛(广东乡镇卷)第44题", "difficulty": 6, "formulas": 0}, {"id": 4774331, "material": "", "question": "素描课堂上,8位同学每人上交了一幅个人的素描作品。为更好地开展作品赏析,老师将上交的作品随机分配给这8位同学,每人一幅。问恰好3人分配到其本人作品的概率在以下哪个范围内?", "type": "单选题", "options": "A. 5%-10%\nB. 10%-15%\nC. 15%以上\nD. 5%以下", "choice": "A", "keypoints": "给情况求概率;错位排列", "most_wrong": "B", "human_count": 384852, "human_acc": 10.2899296353, "source": "2022上半年省考第十季行测模考大赛(广东县级卷)第39题", "difficulty": 7, "formulas": 0}], "categories": [["数量关系", "数学运算", "排列组合问题", "错位排列"]]}, {"id": 3666647, "material": "", "question": "白化珊瑚需要水温恢复正常后,才能重新获得藻类并恢复。而藻类共生体可以重新定植,珊瑚的“外貌”看似也可以从白化中恢复,但珊瑚健康受到的长期影响一直没有得到充分认识。鉴于此,研究人员对一次严重白化事件中的蔷薇珊瑚进行了采样。他们记录了哪些珊瑚发生了白化,哪些珊瑚没有白化。四年后,他们对同一批珊瑚的代谢组(这些生物体在各种生理学过程中产生的小分子)进行了检测。研究团队发现,看上去从白化中恢复的珊瑚,其饱和脂肪酸和免疫应答分子都持续增加(生理机能不完善)。他们在实验中将有不同白化历史的珊瑚暴露在实验温度应力下,验证了____。\n\n画横线处的“以上结果”指的是:", "type": "单选题", "options": "A. 气候变化对世界上的珊瑚构成了严重威胁\nB. 珊瑚白化会对珊瑚生态系统造成严重的破坏\nC. 白化珊瑚需水温恢复正常后才能重获藻类并恢复\nD. 恢复“外貌”的珊瑚不意味着其内在健康如初", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 57588, "human_acc": 85.2174064041, "source": "2021下半年省考第八季行测模考大赛(四川卷)第33题", "difficulty": 4, "formulas": 0, "history": [{"id": 5219, "material": "", "question": "他们终生面壁苦读,是为了破书,不作书呆子。\n\n这句话中“破书”的意思是:", "type": "单选题", "options": "A. 把书读残破\nB. 打倒书中的观点\nC. 质疑权威\nD. 吸收书本内容的精髓", "choice": "D", "keypoints": "实词", "most_wrong": "C", "human_count": 45655, "human_acc": 77.630051473, "source": "2008年湖北省公务员录用考试《行测》题(A类)第22题", "difficulty": 5, "formulas": 0}, {"id": 14655, "material": "", "question": "我在排排石碑间踽踽独行,中国文人的命运,在这里裸裎。\n\n句中“踽踽独行”的意思是:", "type": "单选题", "options": "A. 一个人很伤感地行走\nB. 一个人孤零零地行走\nC. 一个人很高兴地行走\nD. 一个人很自由地行走", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 28339, "human_acc": 54.7267017185, "source": "2008年重庆市公务员录用考试《行测》题第39题", "difficulty": 5, "formulas": 0}, {"id": 745, "material": "", "question": "今天在座的每一位都是在为中华民族写历史,让我们一起站在历史的制高点宏观地看我们两岸合作的愿景。\n\n句中的“愿景”指:", "type": "单选题", "options": "A. 愿望和前景\nB. 心愿和远景\nC. 心愿和心景\nD. 愿望和景致", "choice": "A", "keypoints": "实词", "most_wrong": "B", "human_count": 68343, "human_acc": 88.2343473362, "source": "2008年辽宁省公务员录用考试《行测》题第19题", "difficulty": 3, "formulas": 0}, {"id": 43339, "material": "", "question": "未来国际油价和大宗商品价格还会上涨,欧美市场资产价格的泡沫还会继续膨胀,但短期调整或上涨速率放慢的趋势是可以预见的。\n\n对这段文字中“未来”的理解,正确的是:", "type": "单选题", "options": "A. 指马上、立刻\nB. 指不久的将来\nC. 指长期趋势\nD. 指很久以后", "choice": "C", "keypoints": "实词", "most_wrong": "B", "human_count": 351819, "human_acc": 71.2127542856, "source": "2012年上海市公务员录用考试《行测》题(B类)第12题", "difficulty": 5, "formulas": 0}, {"id": 689, "material": "", "question": "智者乐水的境界、鱼与小鸟的歌唱、蝌蚪与青蛙的故事、水中的月亮与建筑倒影,这些河流的自然与文化多重衍生物,是水泥森林与车流喧闹的城市生活中宝贵的诗意安慰。\n\n“诗意安慰”都与自然界何物相关:", "type": "单选题", "options": "A. 动物\nB. 水\nC. 月亮\nD. 森林", "choice": "B", "keypoints": "实词", "most_wrong": "A", "human_count": 69068, "human_acc": 78.7412405166, "source": "2008年辽宁省公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "实词"]]}, {"id": 2050852, "material": "", "question": "某市有甲乙丙丁四家书店,其中甲书店的各种图书都能在乙书店找到,在乙书店出售的图书一定也在丙书店出售,而丙书店有一些图书在丁书店中也有销售。\n\n由此可以推出:", "type": "单选题", "options": "A. 甲书店中有一些图书能在丁书店中找到\nB. 乙书店中有一些图书能在丁书店中找到\nC. 丁书店中所有的图书都能够在乙书店中找到\nD. 甲书店中所有的图书都能在丙书店中找到", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 595784, "human_acc": 73.923603185, "source": "2017年422联考《行测》题(江西卷)第106题", "difficulty": 4, "formulas": 0, "history": [{"id": 7123, "material": "", "question": "被所有人尊重的人也尊重所有人,张三不尊重李四。\n\n据此,可以推出:", "type": "单选题", "options": "A. 所有人都尊重有些人\nB. 有些人尊重所有人\nC. 有些人尊重张三\nD. 有些人不尊重张三", "choice": "D", "keypoints": "集合推理", "most_wrong": "B", "human_count": 23184, "human_acc": 89.954278813, "source": "2009年江苏省公务员录用考试《行测》题(A类)第47题", "difficulty": 3, "formulas": 0}, {"id": 16699, "material": "", "question": "所有火山都不处在活动期。\n\n据此,可以推出:", "type": "单选题", "options": "A. 处在活动期的都是火山\nB. 并非有的火山不处在活动期\nC. 处在活动期的不都是火山\nD. 并非有的火山处在活动期", "choice": "D", "keypoints": "集合推理", "most_wrong": "C", "human_count": 91336, "human_acc": 58.9778400631, "source": "2011年江苏省公务员录用考试《行测》题(C类)第58题", "difficulty": 5, "formulas": 0}, {"id": 13025, "material": "", "question": "从“有的大学生喜欢所有明星”不能推出:", "type": "单选题", "options": "A. 所有明星都有大学生喜欢\nB. 有的大学生喜欢有的明星\nC. 所有大学生喜欢所有明星\nD. 并非所有大学生不喜欢所有明星", "choice": "C", "keypoints": "集合推理", "most_wrong": "A", "human_count": 15954, "human_acc": 81.5594835151, "source": "2009年吉林省公务员录用考试《行测》题(甲级)第69题", "difficulty": 5, "formulas": 0}, {"id": 8857, "material": "", "question": "有些不是鱼的动物外表像鱼。\n与以上判断等值的是:", "type": "单选题", "options": "A. 有些外表像鱼的动物不是鱼\nB. 有些外表像鱼的动物是鱼\nC. 有些不是鱼的动物外表不像鱼\nD. 有些鱼外表不像鱼", "choice": "A", "keypoints": "集合推理", "most_wrong": "D", "human_count": 20149, "human_acc": 81.9643654772, "source": "2009年江西省公务员录用考试《行测》题第52题", "difficulty": 4, "formulas": 0}, {"id": 2263062, "material": "", "question": "有些男士吸烟,所有男士都喜欢运动。\n\n\n据此,可推出:", "type": "单选题", "options": "A. 有些吸烟的男士喜欢运动\nB. 有些喜欢运动的男士不吸烟\nC. 有些男士不吸烟,但喜欢运动\nD. 有些男士吸烟,但不喜欢运动", "choice": "A", "keypoints": "集合推理", "most_wrong": "C", "human_count": 253327, "human_acc": 68.5544770198, "source": "2016年3月四川省选调优秀大学生到基层工作考试 行政职业能力测验试卷(精选)第80题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "集合推理"]]}, {"id": 24473, "material": "", "question": "有人认为“巨额的国家预算赤字必然会导致巨额的国家贸易逆差”,如果这样的话,那么世界上预算赤字最大的国家必然会有相应的最大的贸易逆差;但我们知道,世界上预算赤字最大的国家是美国,而美国的贸易总的来说是顺差而不是逆差(因为尽管其货物贸易亏本,但其技术和服务贸易却赚的非常多)。\n\n由此可以推出:", "type": "单选题", "options": "A. 巨额的国家预算赤字必然不会导致巨额的国家贸易逆差\nB. 巨额的国家贸易逆差必然不会导致巨额的国家预算赤字\nC. 巨额的国家预算赤字可能不会导致巨额的国家贸易逆差\nD. 巨额的国家预算赤字可能会导致巨额的国家贸易逆差", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 172066, "human_acc": 83.4516987668, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第72题", "difficulty": 4, "formulas": 0, "history": [{"id": 2035300, "material": "", "question": "不可能所有人都喜欢你。以下选项中与上述断定的意思最为接近的是:", "type": "单选题", "options": "A. 必然有的人喜欢你\nB. 必然有的人不喜欢你\nC. 可能有的人喜欢你\nD. 可能有的人不喜欢你", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "D", "human_count": 273700, "human_acc": 61.8520277676, "source": "2013年吉林省公务员录用考试《行测》题(甲级)第86题", "difficulty": 5, "formulas": 0}, {"id": 6799, "material": "", "question": "不可能所有的考生都不能通过考试。 \n\n据此,可推出:", "type": "单选题", "options": "A. 可能有的考生不能通过考试\nB. 必然有的考生能通过考试\nC. 必然所有的考生都能通过考试\nD. 必然所有的考生都不能通过考试", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 17591, "human_acc": 86.2770735035, "source": "2009年江苏省公务员录用考试《行测》题(B类)第101题", "difficulty": 4, "formulas": 0}, {"id": 827435, "material": "", "question": "甲说:“国产电影的春天来了。”乙说:“不一定。”\n\n以下选项中最符合乙的原意的是:", "type": "单选题", "options": "A. 国产电影的春天可能来了\nB. 国产电影的春天可能没来\nC. 国产电影的春天必然来了\nD. 国产电影的春天必然没来", "choice": "B", "keypoints": "翻译推理-其他", "most_wrong": "A", "human_count": 89401, "human_acc": 87.4732944822, "source": "2014年吉林省政法干警考试《行政职业能力测验》题第93题", "difficulty": 4, "formulas": 0}, {"id": 3561, "material": "", "question": "某地有一名热心的理发师,他只给村子里的所有不给自己理发的人理发,而村子里所有不为自己理发的人都来找这位理发师理发,则这位理发师:", "type": "单选题", "options": "A. 给自己理发\nB. 叫人为他理发\nC. 从不理发\nD. 不存在这样的人", "choice": "D", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 18713, "human_acc": 36.2635600919, "source": "2008年新疆维吾尔自治区公务员录用考试《行测》题第34题", "difficulty": 5, "formulas": 0}, {"id": 1368213, "material": "", "question": "不可能所有的改革都会取得实效。\n\n如果上述命题是真的,那么,以下哪个命题必然是真的?", "type": "单选题", "options": "A. 所有的改革都难以取得实效\nB. 有的改革能够取得实效\nC. 有的改革不能取得实效\nD. 经济改革一般能够促进经济发展", "choice": "C", "keypoints": "翻译推理-其他", "most_wrong": "B", "human_count": 296187, "human_acc": 84.7218142592, "source": "2015年天津市公务员录用考试《行测》题第97题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "翻译推理", "翻译推理-其他"]]}, {"id": 1121, "material": "", "question": "权职冲突是指各行政主体在行使行政职权过程中因职权界定而导致的争议或对抗。\n\n根据以上定义,下列不属于权职冲突的是:", "type": "单选题", "options": "A. 两个或两个以上行政主体对同一行政管理事项都认为自己有管辖权,而他方无管辖权\nB. 两个或两个以上行政主体对同一行政管理事项都认为自己无管辖权,而他方有管辖权\nC. 两个或两个以上行政主体对同一行政管理事项都认为自己和他方有管辖权,但在管辖方面、程度或主导性上存在争议\nD. 行政主体依法享有的对特定行政事项实施行政管理的资格、权能与义务", "choice": "D", "keypoints": "拆词", "most_wrong": "C", "human_count": 34375, "human_acc": 85.7861818182, "source": "2008年山东省公务员录用考试《行测》题第58题", "difficulty": 5, "formulas": 0, "history": [{"id": 4943, "material": "", "question": "低碳出行,是指二氧化碳排放少、能耗低、污染少、环境友好的出行方式。\n\n下列各项中,不属于低碳出行的是:", "type": "单选题", "options": "A. 步行\nB. 乘坐地铁\nC. 乘坐出租车\nD. 拼车上班", "choice": "C", "keypoints": "拆词", "most_wrong": "D", "human_count": 13569, "human_acc": 93.9715528042, "source": "2009年北京市公务员录用考试《行测》题(社招)第47题", "difficulty": 5, "formulas": 0}, {"id": 6081, "material": "", "question": "公共物品,是指在消费上具有非竞争性、非排他性的商品,供整个社会共同享用的物品。\n\n下列选项中,不属于公共物品的是:", "type": "单选题", "options": "A. 警察提供的安全服务\nB. 研究和开发\nC. 环境保护\nD. 商场的名牌电视机", "choice": "D", "keypoints": "拆词", "most_wrong": "B", "human_count": 17684, "human_acc": 87.3897308301, "source": "2008年湖北省公务员录用考试《行测》题(A类)第78题", "difficulty": 5, "formulas": 0}, {"id": 46091, "material": "", "question": "非物质文化遗产是指各种以非物质形态存在的与群众生活密切相关、世代相承的传统文化表现形式。\n\n下列不属于非物质文化遗产的是:", "type": "单选题", "options": "A. 传统节庆礼仪\nB. 传统民俗活动\nC. 传统表演艺术\nD. 传统手工艺品", "choice": "D", "keypoints": "拆词", "most_wrong": "A", "human_count": 411753, "human_acc": 75.0661197368, "source": "2012年广东省公务员录用考试《行测》题第56题", "difficulty": 5, "formulas": 0}, {"id": 2451, "material": "", "question": "文物:历史遗留下来的在文化发展史上有价值的东西。\n\n下列属于文物的一项是:", "type": "单选题", "options": "A. 秦兵马俑\nB. 年近七十岁的王老一直保存着童年时画的有纪念意义的图画\nC. 黄果树瀑布\nD. 陈老板用了近十年的宝马汽车", "choice": "A", "keypoints": "拆词", "most_wrong": "D", "human_count": 16021, "human_acc": 96.2736408464, "source": "2008年江苏省公务员录用考试《行测》题(C类)第62题", "difficulty": 5, "formulas": 0}, {"id": 1081, "material": "", "question": "锐角三角形:三个角都是锐角的三角形。\n\n下列一定属于锐角三角形的一项是:", "type": "单选题", "options": "A. 有一个角是锐角的三角形\nB. 有两个角是锐角的三角形\nC. 没有一个角是大于或等于90度的三角形\nD. 有一个角是大于90度的三角形", "choice": "C", "keypoints": "拆词", "most_wrong": "B", "human_count": 27362, "human_acc": 95.0990424677, "source": "2008年江苏省公务员录用考试《行测》题(B类)第113题", "difficulty": 3, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "拆词"]]}, {"id": 2555856, "material": "", "question": "某个游戏共三关,每关2分钟且每关中途不能退出,游戏者通过每一关的概率为$\\frac{1}{2}$。游戏中若通关失败,三关中有且仅有一次“复活”机会,可选择是否再次尝试失败关,若选择“复活”,通过此关的概率不变;否则从第一关重新开始。问在8分钟及以内通过游戏全部三关的概率在以下哪个范围内?", "type": "单选题", "options": "A. $5\\%$以下\nB. $5\\%$-$10\\%$\nC. $10\\%$-$15\\%$\nD. $15\\%$-$20\\%$\nE. $20\\%$-$25\\%$\nF. $25\\%$-$30\\%$\nG. $30\\%$-$35\\%$\nH. $35\\%$以上", "choice": "G", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 12644, "human_acc": 3.5510914268, "source": "2020年上半年省考第三十季行测模考大赛(陕西卷)第119题", "difficulty": 6, "formulas": 1171, "history": [{"id": 4835452, "material": "", "question": "某火锅店A、B、C三款热门菜品的点单率分别为60%、50%、30%,则某桌客人只点其中两种菜品的概率是多少?", "type": "单选题", "options": "A. 36%\nB. 30%\nC. 21%\nD. 15%", "choice": "A", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 329276, "human_acc": 29.3950971222, "source": "2022上半年省考第十二季行测模考大赛(广东县级卷)第34题", "difficulty": 7, "formulas": 0}, {"id": 4695923, "material": "", "question": "某射击运动员每次射击命中10环的概率是75%,5次射击有4次命中10环的概率是(    )。", "type": "单选题", "options": "A. 31.64%\nB. 39.55%\nC. 43.66%\nD. 50%", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 6363, "human_acc": 54.6597516895, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第57题", "difficulty": 4, "formulas": 0}, {"id": 2388117, "material": "", "question": "某次考试小明全对的概率为$80\\%$,小宁全对的概率为$70\\%$,那么这次考试只有一人全对的概率为多少?", "type": "单选题", "options": "A. 0.24\nB. 0.38\nC. 0.56\nD. 0.94", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 532771, "human_acc": 68.3884821058, "source": "2019年河北省公务员录用考试《行测》题(县级+乡镇)(网友回忆版)第72题", "difficulty": 5, "formulas": 2}, {"id": 3536144, "material": "", "question": "甲、乙、丙三人一同去参加某项技能考试,已知三人通过的概率分别为$50\\%$、$70\\%$、$40\\%$。预测最有可能是几人通过考试?", "type": "单选题", "options": "A. 3\nB. 2\nC. 1\nD. 0", "choice": "B", "keypoints": "给概率求概率", "most_wrong": "C", "human_count": 21169, "human_acc": 51.9391563135, "source": "2021下半年省考第二季行测模考大赛(浙江卷)第70题", "difficulty": 6, "formulas": 3}, {"id": 622541, "material": "", "question": "速算比赛,小李全对的概率为95%,小杨全对的概率为92%,问这次比赛两人中只有一个人全对的概率为(  )。", "type": "单选题", "options": "A. 0.046\nB. 0.076\nC. 0.122\nD. 0.874", "choice": "C", "keypoints": "给概率求概率", "most_wrong": "B", "human_count": 414490, "human_acc": 73.772105479, "source": "2014年四川省公务员录用考试《行测》题第56题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "概率问题", "给概率求概率"]]}, {"id": 4683366, "material": "", "question": "轮船空载从上游码头A航行至下游码头B需要3个小时,满载从下游码头B航行至上游码头A需要12个小时。已知该轮船满载时的静水速度为空载时的$\\frac{3}{7}$,问该轮船从码头A满载航行至码头B,再空载回到码头A共需多少小时?(装货和卸货时间不计)", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 10", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 204321, "human_acc": 19.4703432344, "source": "2022上半年省考第三季行测模考大赛(四川卷)第48题", "difficulty": 7, "formulas": 1, "history": [{"id": 2662232, "material": "", "question": "一艘轮船顺流而行,从甲地到乙地需要6天;逆流而行,从乙地到甲地需要8天。若不考虑其他因素,一个漂流瓶从甲地到乙地需要多少天?", "type": "单选题", "options": "A. 24\nB. 36\nC. 48\nD. 56", "choice": "C", "keypoints": "流水行船", "most_wrong": "B", "human_count": 401138, "human_acc": 70.6275645788, "source": "2020年新疆公务员录用考试《行测》试题(网友回忆版)第65题", "difficulty": 4, "formulas": 0}, {"id": 5295, "material": "", "question": "一条船从甲地到乙地要航行4小时,从乙地到甲地要航行5小时(假定船自身的速度保持不变),今有一木筏从甲地漂流到乙地所需小时为:", "type": "单选题", "options": "A. 12\nB. 40\nC. 32\nD. 30", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 24811, "human_acc": 78.7271774616, "source": "2008年江苏省公务员录用考试《行测》题(A类)第18题", "difficulty": 5, "formulas": 0}, {"id": 1679372, "material": "", "question": "两艘船相对划行,一船从A到B顺水,一船从B到A逆水,结果所用时间相同(假设水流速、行船速恒定,快船速是慢船速2倍)。则慢船速是水流速的几倍?", "type": "单选题", "options": "A. 1\nB. 4\nC. 3\nD. 2​", "choice": "D", "keypoints": "流水行船", "most_wrong": "C", "human_count": 307203, "human_acc": 65.1679833856, "source": "2015年吉林省公务员录用考试《行测》题(4月甲级)第92题", "difficulty": 5, "formulas": 0}, {"id": 44089, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要几天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 93842, "human_acc": 76.8600413461, "source": "2012年上海市公务员录用考试《行测》题(A类)第60题", "difficulty": 5, "formulas": 0}, {"id": 43449, "material": "", "question": "一艘船从A地行驶到B地需要5天,而该船从B地行驶到A地则需要7天。假设船速、水流速度不变,并具备漂流条件,那么船从A地漂流到B地需要多少天:", "type": "单选题", "options": "A. 40\nB. 35\nC. 12\nD. 2", "choice": "B", "keypoints": "流水行船", "most_wrong": "C", "human_count": 73831, "human_acc": 77.2223049938, "source": "2012年上海市公务员录用考试《行测》题(B类)第64题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"]]}, {"id": 2049776, "material": "", "question": "某商店促销,购物满足一定金额可进行摸球抽奖,中奖率$100\\%$。规则如下:抽奖箱中有大小相同的若干个红球和白球,从中摸出两个球,如果都是红球,获一等奖;如果都是白球,获二等奖;如果是一红一白,获三等奖。假定一、二、三等奖的概率分别为0.1、0.3、0.6,那么抽奖箱中球的个数为:", "type": "单选题", "options": "A. 5\nB. 6\nC. 7\nD. 8", "choice": "A", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 693020, "human_acc": 32.5983377103, "source": "2017年422联考《行测》题(湖北卷)第69题", "difficulty": 5, "formulas": 1, "history": [{"id": 2741666, "material": "", "question": "将15名实习生名额随机分配给12个部门,每个部门至少分配1人。问有部门获取的名额是3的概率是有部门获取的名额是4的概率的多少倍?", "type": "单选题", "options": "A. 5.5\nB. 6\nC. 11\nD. 1", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 583823, "human_acc": 43.9134806268, "source": "2021年山东省公务员录用考试《行测》试题(网友回忆版)第44题", "difficulty": 4, "formulas": 0}, {"id": 2264206, "material": "", "question": "袋中有24个球,除颜色黑白差别之外完全相同,从中摸出一球,若摸出白球的概率比黑球的概率大$\\frac{1}{6}$,则袋中有几个白球?", "type": "单选题", "options": "A. 8\nB. 10\nC. 12\nD. 14", "choice": "D", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 30357, "human_acc": 54.172019633, "source": "2015年河北省选调生招录考试 《行政职业能力测试》试卷(精选)第69题", "difficulty": 5, "formulas": 1}, {"id": 1693, "material": "", "question": "口袋中有6个黄球和若干个白球,它们除颜色外完全相同,从中任意摸出一球,若摸出黄球的可能性是$\\frac{3}{4}$,则白球比黄球少多少个?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "概率问题-其他", "most_wrong": "C", "human_count": 35588, "human_acc": 84.5959312128, "source": "2008年陕西省公务员录用考试《行测》题第48题", "difficulty": 5, "formulas": 1}, {"id": 2645650, "material": "", "question": "袋中有材质、大小完全一样的红球和白球共36个,且红球的数量多于白球。若从袋中取出2个球同色的概率为$\\frac{1}{2}$,则袋中红球有几个?", "type": "单选题", "options": "A. 14\nB. 15\nC. 21\nD. 22", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 96406, "human_acc": 55.2776798125, "source": "2020年下半年省考第七季行测模考大赛(新疆卷)第63题", "difficulty": 6, "formulas": 1}, {"id": 1702320, "material": "", "question": "在一个纸箱中装有若干黄白两色的乒乓球,且知道有5个黄色乒乓球以及摸到黄球的概率为$\\frac{1}{4}$,那么,纸箱中白色乒乓球的个数为( )", "type": "单选题", "options": "A. 20\nB. 10\nC. 15\nD. 16", "choice": "C", "keypoints": "概率问题-其他", "most_wrong": "B", "human_count": 188910, "human_acc": 79.578635329, "source": "2015年吉林省公务员录用考试《行测》题(9月乙级)第58题", "difficulty": 4, "formulas": 1}], "categories": [["数量关系", "数学运算", "概率问题", "概率问题-其他"]]}, {"id": 13575, "material": "", "question": "职务侵占罪是指公司、企业或者其他单位的人员,利用职务上的便利,将本单位财物非法占为已有,数额较大的行为。\n\n下列行为属于职务侵占罪的是(  )。", "type": "单选题", "options": "A. 张某是名乘警,他将乘客遗失在列车上价值5000元的物品占为已有\nB. 刘某是某工地的材料工人,负责工地物品的调拨,几次私自将公司的建筑材料卖给别人,共卖了2万元\nC. 刘某是单位的保管员,一天他趁其他同事不注意的时候,将一个200元的收音机拿回家给儿子用\nD. 赵某是一跨国公司的会计师,私自作假账,使公司偷税高达200万余元", "choice": "B", "keypoints": "方式目的", "most_wrong": "D", "human_count": 49960, "human_acc": 78.9851881505, "source": "2010年黑龙江省公务员录用考试《行测》题第68题", "difficulty": 4, "formulas": 0, "history": [{"id": 3795250, "material": "", "question": "沉浸式体验指提供参与者完全沉浸的体验,使用户有一种置身于虚拟世界之中的感觉。\n\n下列不属于沉浸式体验的是:", "type": "单选题", "options": "A. 沉浸式剧本杀馆\nB. 密室逃脱\nC. 2D电影\nD. VR全景", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 15735, "human_acc": 89.3485859549, "source": "2021下半年省考第十四季行测模考大赛(江苏卷)第114题", "difficulty": 3, "formulas": 0}, {"id": 4093, "material": "", "question": "证券:就是记载和代表一定权利的文书,即用以证明证券的持有人,有权按照证券所载的内容,享有相应权益的一种凭证。\n\n根据上述定义,下列不属于证券的是:", "type": "单选题", "options": "A. 股票\nB. 国库券\nC. 合同\nD. 支票", "choice": "C", "keypoints": "方式目的", "most_wrong": "D", "human_count": 10856, "human_acc": 71.6654384672, "source": "2008年内蒙古自治区公务员录用考试《行测》题第79题", "difficulty": 5, "formulas": 0}, {"id": 5535092, "material": "", "question": "结构游戏,又称建构游戏,是指幼儿利用各种建筑和结构材料进行各种建筑和构造活动,以及反映现实生活的游戏。\n\n根据上述定义,下列不属于结构游戏的是:", "type": "单选题", "options": "A. 绘画游戏\nB. 积木游戏\nC. 拼图游戏\nD. 堆土堆游戏", "choice": "A", "keypoints": "方式目的", "most_wrong": "C", "human_count": 37683, "human_acc": 90.4147758936, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第65题", "difficulty": 3, "formulas": 0}, {"id": 4668719, "material": "", "question": "变文,在行文中用不同的文词以表达相同的意思。\n\n下列属于变文的是:", "type": "单选题", "options": "A. 十旬休假,胜友如云。千里逢迎,高朋满座\nB. 居庙堂之高则忧其民,处江湖之远则忧其君\nC. 信言不美,美言不信\nD. 开我东阁门,坐我西阁床", "choice": "B", "keypoints": "方式目的", "most_wrong": "A", "human_count": 886961, "human_acc": 22.911379418, "source": "2021年黑龙江公检法司系统及边境县(市、区)急需紧缺专业岗公务员考试《行测》题第80题", "difficulty": 5, "formulas": 0}, {"id": 8791, "material": "", "question": "次级群体是指其成员为了某种特定的目标集合在一起,通过明确的规章制度结成正规关系的社会群体。\n\n下列属于次级群体的是:", "type": "单选题", "options": "A. 军队中的“老乡”群\nB. 同一班飞机上的旅客\nC. 某中等职业学校学生\nD. 某家庭的家庭成员", "choice": "C", "keypoints": "方式目的", "most_wrong": "B", "human_count": 16655, "human_acc": 76.7937556289, "source": "2008年吉林省公务员录用考试《行测》题(乙级)第55题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "方式目的"]]}, {"id": 49839, "material": "", "question": "1977年在安徽阜阳西汉汝阴侯夏侯灶墓中出土的“不知名漆器”,经考证,它是世界上现存的年代最早且具有确定年代功能的天文测量仪器—圭表。“不知名漆器”打开后顺着南北方向摆放,利用其北侧立耳在正午时投下的影子,就能指示冬至、春分、夏至和秋分的到来。这种类型的圭表适用的地理纬度是固定的,经测算,汝阴侯墓圭表的适用纬度恰恰就在汉代长安到汝阴侯国(今安徽阜阳)一带。这架圭表的精妙之处还在于,四个节气日影所在的位置不是用刻度表示,而是暗含在木块和漆器上的一些特殊图案和位置中。\n\n关于这架圭表,以下说法正确的是:", "type": "单选题", "options": "A. 可指示二十四节气\nB. 使用年代不详\nC. 适用于特定地理位置\nD. 表上标有详细的时间刻度", "choice": "C", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 710570, "human_acc": 87.8394809801, "source": "2013年山东省公务员录用考试《行测》题第23题", "difficulty": 5, "formulas": 0, "history": [{"id": 731, "material": "", "question": "绝不要假意装着孩子可以由其他东西替代,就如同绝不要假意装着你没有得到的东西是不值得获取的一样。\n\n你没有得到的东西值不值得获取?", "type": "单选题", "options": "A. 不知道\nB. 值得\nC. 假装不值得\nD. 假装值得", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 59600, "human_acc": 70.4630872483, "source": "2008年辽宁省公务员录用考试《行测》题第18题", "difficulty": 4, "formulas": 0}, {"id": 17099, "material": "", "question": "《梦溪笔谈》无疑代表了宋代地理观察的最高水平,但该书并不算一部地理著作,宋代地理观察的结果更集中地表现在游记中。\n\n《梦溪笔谈》是游记吗:", "type": "单选题", "options": "A. 是\nB. 不是\nC. 其中一部分是\nD. 目前还有争议", "choice": "B", "keypoints": "细节判断题", "most_wrong": "A", "human_count": 196305, "human_acc": 45.2917653651, "source": "2010年安徽省公务员录用考试《行测》题第27题", "difficulty": 5, "formulas": 0}, {"id": 3939, "material": "", "question": "人的泪腺能够不停地制造泪水,泪水具有杀灭细菌、湿润眼球和冲刷眼球表面的脏东西的作用。\n\n在上述话中,泪水的作用哪一项没被提及:", "type": "单选题", "options": "A. 杀灭细菌\nB. 排出人体内的脏物\nC. 湿润眼球\nD. 冲刷眼球表面的脏东西", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 24556, "human_acc": 98.1674539827, "source": "2008年内蒙古自治区公务员录用考试《行测》题第2题", "difficulty": 5, "formulas": 0}, {"id": 10429, "material": "", "question": "社会不仅因传递与传播而存在,更确切地说,它就存在于传递与传播中。\n\n对这段话理解错误的是(  )。", "type": "单选题", "options": "A. 传递与传播是社会存在的基础\nB. 传递与传播独立于社会而存在\nC. 传递与传播跟社会密不可分\nD. 传递与传播因社会而有意义", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 22491, "human_acc": 75.8036547953, "source": "2009年甘肃省公务员录用考试《行测》题第36题", "difficulty": 5, "formulas": 0}, {"id": 11179, "material": "", "question": "人总觉得不满足,而且很难为满足确定标准。一旦确立了满足的标准,人们又会不满足,这正是人可贵的地方。对这段话的正确理解是:", "type": "单选题", "options": "A. 知足常乐\nB. 满足是没有确定的标准的\nC. 人要前进,就要永不满足\nD. 满足与不满足没有绝对的界限", "choice": "B", "keypoints": "细节判断题", "most_wrong": "C", "human_count": 25643, "human_acc": 23.1720157548, "source": "2008年湖北省公务员录用考试《行测》题(B类)第17题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "细节判断题"]]}, {"id": 4663055, "material": "", "question": "小张、小李在同一地点上班,约定晚上7点到菜馆参加聚餐。若小李下班后单独骑摩托车前往,将提前半小时到达;若小张下班后开车前往,将提前20分钟到达。由于当天小张的汽车限行,小李等小张下班后,骑摩托车搭载小张一同前往菜馆,此时迟到40分钟到达。已知开车的速度比单人骑摩托车快2倍,且载人时摩托车的速度比单人时下降25%。问小李比小张早下班多长时间?", "type": "单选题", "options": "A. 30分钟\nB. 40分钟\nC. 50分钟\nD. 60分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 136510, "human_acc": 37.8008937074, "source": "2021下半年省考第三十九季行测模考大赛(广东乡镇卷)第37题", "difficulty": 7, "formulas": 0, "history": [{"id": 13067, "material": "", "question": "某人沿电车线路匀速行走,每12分钟有一辆电车从后面追上,每4分钟有一辆电车迎面开来。假设两个起点站的发车间隔是相同的,求这个发车间隔。", "type": "单选题", "options": "A. 2分钟\nB. 4分钟\nC. 6分钟\nD. 8分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 37867, "human_acc": 43.1087754509, "source": "2010年黑龙江省公务员录用考试《行测》题第54题", "difficulty": 5, "formulas": 0}, {"id": 2453189, "material": "", "question": "一辆汽车在高速公路上以60公里$/$小时的速度匀速行驶,此时司机开始以固定的加速度进行加速,加速后50秒内,汽车行驶了1公里。则汽车从开始加速,到加速至高速公路的速度上限120公里$/$小时需要多长时间?", "type": "单选题", "options": "A. 100秒\nB. 125秒\nC. 150秒\nD. 180秒", "choice": "B", "keypoints": "行程问题-其他", "most_wrong": "C", "human_count": 489597, "human_acc": 48.0168383385, "source": "2020年北京市公务员录用考试《行测》题(区级及以上卷)(网友回忆版)第80题", "difficulty": 5, "formulas": 2}, {"id": 5370379, "material": "", "question": "莉莉每天定点出门步行30分钟去上学,某天在莉莉出门20分钟后,爸爸发现其作业没带,于是开车去送作业,送完即刻返回,莉莉则继续前往学校。当莉莉到校时,爸爸正好回到家。若今天由爸爸开车送莉莉上学,那么莉莉比平时晚多久出门可以使到校时间与平常相同?(交接作业及调头时间不计)", "type": "单选题", "options": "A. 18分钟\nB. 20分钟\nC. 24分钟\nD. 25分钟", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 314411, "human_acc": 47.0775513579, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第57题", "difficulty": 6, "formulas": 0}, {"id": 2571747, "material": "", "question": "马拉松组委会在赛道中设置18个水站,将赛道平均分为19段。送水车下午14:00从起点出发匀速行驶,每到一个站点停1分钟时间卸下瓶装水,到达终点之后原速返回起点且不再停站。已知14:27,送水车卸完第9个站的瓶装水,问如果其到达终点后立刻返回,什么时间能重新回到起点?", "type": "单选题", "options": "A. 15:30\nB. 15:32\nC. 15:34\nD. 15:36", "choice": "C", "keypoints": "行程问题-其他", "most_wrong": "B", "human_count": 751842, "human_acc": 50.4894645418, "source": "2020年山东省公务员录用考试《行测》试题(网友回忆版)第39题", "difficulty": 4, "formulas": 0}, {"id": 2374844, "material": "", "question": "小王距离单位1.2公里,每天步行上班。速度为每分钟100米,则他上班需要花(    )分钟。", "type": "单选题", "options": "A. 12\nB. 15\nC. 18\nD. 20", "choice": "A", "keypoints": "普通行程", "most_wrong": "C", "human_count": 593487, "human_acc": 90.3042526627, "source": "2019年广东省公务员录用考试《行测》题(乡镇卷)(网友回忆版)第24题", "difficulty": 3, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "行程问题-其他"]]}, {"id": 5329, "material": "", "question": "政府应该履行经济调节和市场监管的职能,努力实现政企分开、政资分开、政事分开、政府与市场中介组织分开,主要运用经济和法律手段管理经济活动。政府部门的主要职责就在于提供基本公共服务,维护社会公平,创造并维持良好的市场环境,促使市场经济稳定运行。\n\n下列选项最能支持上述信息的一项论断是:", "type": "单选题", "options": "A. 市场经济条件下政府不能再从事具体的经济活动或进行微观经济管理\nB. 市场经济的条件下政府的作用较之计划经济时更为弱化了\nC. 政府的作用在于防止和弥补市场失灵、提供市场经济正常运行的基本条件,以确保经济的平稳发展\nD. 推行行政管理体制改革,就是要加快形成行为规范、运转协调、公正透明、廉洁高效的行政管理体制", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 25940, "human_acc": 81.900539707, "source": "2008年福建省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 0, "history": [{"id": 17213, "material": "", "question": "作文却好像偏偏并无秘诀,假使有,每个作家一定是传给子孙的了。\n\n最能支持以上观点的是:", "type": "单选题", "options": "A. 作文是不能靠别人教的\nB. 会写作的作家很少见\nC. 祖传的作家很少见\nD. 作家的子孙有很多是作家", "choice": "C", "keypoints": "补充论据", "most_wrong": "D", "human_count": 19426, "human_acc": 31.849068259, "source": "2009年贵州省公务员录用考试《行测》题第92题", "difficulty": 6, "formulas": 0}, {"id": 4733987, "material": "", "question": "专家推测中国正在迎来第四次单身热潮。\n\n下列选项最能支持上述推测的是:", "type": "单选题", "options": "A. 中国独居人口已从20年前6%上升至14.6%\nB. 中国45-49岁的未婚女性已从10年前12%降至4.9%\nC. 单身男性比单身女性多得多\nD. 婚姻不是必需品,一个人的生活更多意味着独立、时尚、自由", "choice": "A", "keypoints": "补充论据", "most_wrong": "D", "human_count": 105617, "human_acc": 65.691129269, "source": "2017年福建省选调生考试《行政职业能力测验》第81题", "difficulty": 5, "formulas": 0}, {"id": 2050904, "material": "", "question": "广告的目的是为了说服消费者相信他们购买的商品物有所值,没有哪个商家会故意强调自己的产品价格高。以下哪项如果为真,最能加强上述论断?", "type": "单选题", "options": "A. 消费者认为便宜无好货,好货不便宜\nB. 广告能激发消费者的购买欲\nC. 广告能说服消费者去购买价格便宜的商品\nD. 广告能说服消费者去购买质量好的商品", "choice": "D", "keypoints": "补充论据", "most_wrong": "A", "human_count": 598917, "human_acc": 52.353331096, "source": "2017年422联考《行测》题(江西卷)第113题", "difficulty": 5, "formulas": 0}, {"id": 26647, "material": "", "question": "有研究表明,在使用试管婴儿技术治疗不孕不育前和治疗期间摄入炸薯条等富含饱和脂肪的食物将直接影响治疗的效果。\n\n如果以下各项为真,最能支持上述观点的是:", "type": "单选题", "options": "A. 人群中饱和脂肪摄入量高者,不孕率高\nB. 饱和脂肪摄入量影响卵母细胞的排卵数量\nC. 饱和脂肪摄入量影响卵母细胞的受孕成功率\nD. 炸薯条富含的饱和脂肪更容易被人吸收", "choice": "C", "keypoints": "补充论据", "most_wrong": "A", "human_count": 375915, "human_acc": 80.9299974728, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第102题", "difficulty": 4, "formulas": 0}, {"id": 585927, "material": "", "question": "德国医生梅林和俄国明科夫斯基合作研究消化功能,他们发现在实验狗群中,切除了狗的胰脏,这类狗的尿总是会招来成群的蜜蜂,化验表明狗的尿中含有大量的糖分。由此科学家猜测胰脏可能跟糖尿病有关系。\n\n以下各项最有力支持以上结论的是:", "type": "单选题", "options": "A. 医生用胰岛素控制糖尿病\nB. 胰脏具有消化功能\nC. 胰脏合成糖分\nD. 胰脏癌患者会加重糖尿病", "choice": "D", "keypoints": "补充论据", "most_wrong": "C", "human_count": 246621, "human_acc": 54.3404657349, "source": "2014年吉林省公务员录用考试《行测》题(乙级)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "补充论据"]]}, {"id": 4808845, "material": "", "question": "研究者把36名健康受试者分为两组,让他们分别在手机和纸质书上阅读同一部小说的前6页,同时监测他们的呼吸和大脑活动。受试者读完后进行阅读理解测试。实验数据显示,和休息时比,两组受试者阅读时的呼吸都变得更短、更浅,手机阅读组更甚;两组受试者阅读所花时间无显著差异,但手机组在阅读测试中的得分显著低于纸质书组。研究者认为,手机阅读组得分低是由手机阅读时人的认知负担加重造成的。\n\n研究者的观点如要成立,最需补充以下哪项前提?", "type": "单选题", "options": "A. 更短、更浅的呼吸会使阅读者的认知负担加重\nB. 更短、更浅的呼吸使阅读者神经紧张影响得分\nC. 手机阅读者的认知注意力比纸质阅读者更难集中\nD. 手机阅读和纸质阅读都会有认知负担只是程度不同", "choice": "A", "keypoints": "搭桥", "most_wrong": "C", "human_count": 230445, "human_acc": 77.1194862115, "source": "2022年湖北省选调生招录考试综合知识和行政职业能力测验试卷(网友回忆版)第89题", "difficulty": 5, "formulas": 0, "history": [{"id": 2139496, "material": "", "question": "李某不会开车,所以李某坐地铁上班。得出上述结论的前提是:", "type": "单选题", "options": "A. 所有坐地铁上班的人都不会开车\nB. 只有不坐地铁上班的人才会开车\nC. 所有不会开车的人都坐地铁上班\nD. 所有会开车的人都不坐地铁上班", "choice": "C", "keypoints": "搭桥", "most_wrong": "B", "human_count": 72851, "human_acc": 87.1546032313, "source": "2017年天津滨海新区公务员考试《行测》题(网友回忆版)第94题", "difficulty": 3, "formulas": 0}, {"id": 10587, "material": "", "question": "有些艺术家留大胡子,因此,有些留大胡子的人是大嗓门。\n\n为使上述推理成立,必须补充以下哪项作为前提:", "type": "单选题", "options": "A. 有些艺术家是大嗓门\nB. 所有大嗓门的人都是艺术家\nC. 所有艺术家都是大嗓门\nD. 有些大嗓门的人不是艺术家", "choice": "C", "keypoints": "搭桥", "most_wrong": "A", "human_count": 21705, "human_acc": 71.260078323, "source": "2009年河北省公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 2002918, "material": "", "question": "搞阴谋诡计的人不被人信任,所以正直的人不搞阴谋诡计。得出以上结论必需的前提条件是(    )。", "type": "单选题", "options": "A. 正直的人被人信任\nB. 搞阴谋诡计的人不是正直的人\nC. 有的正直的人也搞阴谋诡计\nD. 有的搞阴谋诡计的人也被人信任", "choice": "A", "keypoints": "搭桥", "most_wrong": "B", "human_count": 5161, "human_acc": 68.8819996125, "source": "2009年贵州省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2377142, "material": "", "question": "假设“如果张楠和林枫不是志愿者,那么杨梅是志愿者”是前提,“林枫是志愿者”为结论。\n\n那么,下列各项中,是其必要前提的是:", "type": "单选题", "options": "A. 张楠是志愿者\nB. 杨梅不是志愿者\nC. 杨梅和张楠都是志愿者\nD. 杨梅和张楠都不是志愿者", "choice": "D", "keypoints": "搭桥", "most_wrong": "B", "human_count": 1547257, "human_acc": 57.6758095132, "source": "2019年河南省选调生选拔考试《行测》试题(网友回忆版)第73题", "difficulty": 5, "formulas": 0}, {"id": 2387377, "material": "", "question": "有报道称,已婚者一般比独身者寿命长,所以独身的压力一定对健康有损耗。\n\n以下哪项如果为真,最能支持上述论证?", "type": "单选题", "options": "A. 独身者寿命短于同龄已婚者\nB. 独身者会比已婚者的压力更大\nC. 已婚者寿命不尽相同\nD. 人的寿命受多种因素影响", "choice": "B", "keypoints": "搭桥", "most_wrong": "A", "human_count": 31582, "human_acc": 63.0739028561, "source": "2017年黑龙江省公务员录用考试《行测》题(公检法卷)第99题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "搭桥"]]}, {"id": 2701711, "material": "", "question": "新的时代背景下地方戏曲的传播效果,首先取决于____________________。地方戏曲同其他艺术形式一样,受到媒介变革的冲击与影响,使戏曲创作与表演的固有规律、美学理念、观看方式以及批评反馈的全过程都发生了或大或小的改变。有相当数量的地方戏曲剧种都以抖音开设演出预告、折子戏或全程直播的方式,进行线上宣推。曾经只在舞台上表演的演员名角,都适应了互联网新媒体手段,特别注重调动新媒体表现方式与观众形成新的观演关系。这也从一个侧面提示我们,在地方戏曲人才培养过程中,除了要重视传统戏曲专业素养外,还应结合当下媒介特点,对人才的专业素养构成进行新的思考,使地方戏曲中包孕的中华传统文化能以新的姿态走近观众,走向人民。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 地方戏曲要能够改变原有的传承方式\nB. 观众能够以什么样的方式接触到地方戏曲\nC. 戏曲艺术要能够主动创新吸引年轻观众\nD. 地方戏曲的传播要与时俱进并因地制宜", "choice": "B", "keypoints": "开头", "most_wrong": "D", "human_count": 256329, "human_acc": 41.2017368304, "source": "2021年国考终极行测模考大赛(副省级)第43题", "difficulty": 7, "formulas": 0, "history": [{"id": 11685, "material": "", "question": "王师傅工作勤勤恳恳,______。他却谦虚地说自己做得还很不够。\n\n填入横线最恰当的一句话是:", "type": "单选题", "options": "A. 被群众评选为劳动模范\nB. 群众评选他为劳动模范\nC. 群众把他评选为劳动模范\nD. 他成为劳动模范", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 58832, "human_acc": 79.4312618983, "source": "2009年湖南省公务员录用考试《行测》题第51题", "difficulty": 5, "formulas": 0}, {"id": 4365, "material": "", "question": "____________________。历史证明,哪怕是最有效率的万能政府,实际上也不可能全面介入管理每一个家庭或者宗族的具体生活,正如大脑不能指挥身上的每一个细胞的具体活动一样。\n\n填入上面横线的句子,与上下文衔接最恰当的一项是:", "type": "单选题", "options": "A. 家庭是国家和社会的细胞\nB. 人类历史的发展和家庭是分不开的\nC. 家和万事兴\nD. 正是一个个不起眼的家庭组成了大社会", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 81358, "human_acc": 72.6025713513, "source": "2008年福建省公务员录用考试《行测》题第38题", "difficulty": 5, "formulas": 0}, {"id": 2049322, "material": "", "question": "虽然现在用户对于不明来历的电子邮件普遍存在戒心,但是黑客__________________________。如今,诱人产生好奇心的诱饵已经出现在网络、社交软件、移动设备上,而且诱饵已经不限于色情、惊奇的信息,而是包括诸如“工资单”“对账单”等。\n\n填入画横线部分最恰当的一句是:", "type": "单选题", "options": "A. 已经把重点放在其他媒介上\nB. 正在不断地开辟新的战场\nC. 更善于抓住人们的兴趣点\nD. 绝对不会就此偃旗息鼓", "choice": "B", "keypoints": "开头", "most_wrong": "C", "human_count": 1380945, "human_acc": 40.418047062, "source": "2017年贵州省选调高校优秀毕业生到基层工作考试《行测》试题(网友回忆版)第40题", "difficulty": 6, "formulas": 0}, {"id": 2021718, "material": "", "question": "①无论角色大小、是否主演,好的演员都会以自己的职业素养与敬业精神对观众负责。②没有踏踏实实沉浸角色的前期准备,就不会有形神兼备的后期演绎。③表演中敷衍了事,观众一眼就能看出来。④影视表演最终要靠作品说话,演员走红后如果不注重提升自己的专业素养,最终会沦为低档快消品,在商业价值被消费殆尽后,最终被淘汰。\n\n“没有小角色,只有小演员。”是原文中的句子,其最恰当的位置是:", "type": "单选题", "options": "A. ①\nB. ②\nC. ③\nD. ④", "choice": "A", "keypoints": "开头", "most_wrong": "B", "human_count": 464675, "human_acc": 74.357992145, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第26题", "difficulty": 4, "formulas": 0}, {"id": 2776215, "material": "", "question": "中国刑法学要取得真正的发展,根本的出路在于密切关注司法实践和社会实践,____________________。这一效果的达到与学术论争及对抗的出现须臾不可分离。在对抗中发现问题,从而讨论一些刑法学中的“真”问题,理论体系的合理建构才有可能。\n\n填入画横线部分最恰当的一项是:", "type": "单选题", "options": "A. 将理论与实践紧密联系\nB. 认真研究实实在在的案例\nC. 立足于解决有中国特色的具体问题\nD. 避免过多纠缠于浅层次的重复性问题", "choice": "C", "keypoints": "开头", "most_wrong": "A", "human_count": 1276460, "human_acc": 14.3753819156, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句填空题", "开头"]]}, {"id": 2685612, "material": "", "question": "近日,在对英仙座分子云的观测中,科学家发现在一片星云中,一团物质流沿着龙卷风一样的螺旋轨迹,逐渐向中心聚拢下落,最终融入星云中心一个扁平的气体圆盘(吸积盘)上,在圆盘中心,孕育着一颗尚未诞生的“恒星宝宝”。因此,科学家推测:星云在孕育“恒星宝宝”时,通过气体圆盘(吸积盘)给“恒星宝宝”输送云核最外层的“营养物质”。\n\n以下哪项如果为真,最能加强科学家的推测?", "type": "单选题", "options": "A. “恒星宝宝”的“食物”来源于包裹恒星的云团最外层的气体\nB. 吸积盘的丝状结构能从整个分子云核中汲取营养,并输送到圆盘中心\nC. 吸积盘的直径小于300个日地距离,而云核的直径可达上万个日地距离\nD. 吸积盘运输的物质可能为恒星的诞生提供了气体养分,使恒星得以继续成长", "choice": "B", "keypoints": "必要条件", "most_wrong": "D", "human_count": 287003, "human_acc": 56.0495883318, "source": "2021年国考第二十二季行测模考大赛(副省级)第106题", "difficulty": 6, "formulas": 0, "history": [{"id": 2184651, "material": "", "question": "好朋友问冰冰:“你是不是不能接受你没有被录取的结果?”\n\n这句话隐含的前提是:", "type": "单选题", "options": "A. 冰冰没办法接受自己没被录取\nB. 冰冰应该接受她没被录取的结果\nC. 冰冰没有被录取\nD. 冰冰是个心理承受能力较差的人", "choice": "C", "keypoints": "必要条件", "most_wrong": "A", "human_count": 606571, "human_acc": 74.0689878019, "source": "2018年广西选调生考试《行测》试题(网友回忆版)第89题", "difficulty": 4, "formulas": 0}, {"id": 2452863, "material": "", "question": "舞蹈课上,学生紫梦来迟了,老师问她:“怎么又迟到了?”根据此所述,则该教师提问的预设是:", "type": "单选题", "options": "A. 学生紫梦不喜欢上舞蹈课\nB. 学生紫梦上课迟到是有意的\nC. 以前上舞蹈课学生紫梦也迟到过\nD. 这节舞蹈课上没有其他同学迟到", "choice": "C", "keypoints": "必要条件", "most_wrong": "B", "human_count": 139369, "human_acc": 97.7577510063, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第84题", "difficulty": 5, "formulas": 0}, {"id": 2133678, "material": "", "question": "扶贫必扶智。让贫困地区的孩子们接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n以上观点的前提是:", "type": "单选题", "options": "A. 贫困的代际传递导致教育的落后\nB. 富有阶层大都受过良好教育\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就财富", "choice": "D", "keypoints": "必要条件", "most_wrong": "A", "human_count": 2721802, "human_acc": 71.5025927676, "source": "2018年国家公务员录用考试《行测》题(副省级网友回忆版)第106题", "difficulty": 4, "formulas": 0}, {"id": 2271348, "material": "", "question": "扶贫先扶智,让贫困地区的孩子接受良好教育,是扶贫开发的重要任务,也是阻断贫困代际传递的重要途径。\n\n上述观点最恰当的前提是(  )。", "type": "单选题", "options": "A. 贫困地区与非贫困地区教育发展不均衡\nB. 贫困代际传递导致教育落后\nC. 扶贫工作难,扶智工作更难\nD. 知识改变命运,教育成就未来", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 21632, "human_acc": 63.6094674556, "source": "广西2019年定向招录选调生笔试第32题", "difficulty": 5, "formulas": 0}, {"id": 47687, "material": "", "question": "西双版纳傣族的竹楼都用方形柱子将房子架空来防止潮湿及蚊虫骚扰,之所以用方形柱子而不是圆形柱子,是为了防止蛇攀爬进入竹楼。\n\n下列哪项最有可能是上述陈述的假设:", "type": "单选题", "options": "A. 傣族人喜欢把东西做成方形的\nB. 蛇喜欢攀爬圆形的柱子\nC. 西双版纳热带雨林中有很多蛇\nD. 蛇不能缠绕着方形的柱子爬行", "choice": "D", "keypoints": "必要条件", "most_wrong": "B", "human_count": 372360, "human_acc": 84.9487055538, "source": "2013年浙江省公务员录用考试《行测》题(B类)第90题", "difficulty": 4, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "必要条件"]]}, {"id": 5257963, "material": "", "question": "当资源被一个进程A占用时,其他想使用该资源的进程B就只能等待,只有进程A使用完该资源后,进程B才能够使用该资源,这种共享方式就叫作互斥式共享,把这种资源叫作临界资源。\n\n根据以上定义,下列属于临界资源的是:", "type": "单选题", "options": "A. 显示屏\nB. 打印机\nC. 内存\nD. U盘", "choice": "B", "keypoints": "大前提", "most_wrong": "C", "human_count": 145327, "human_acc": 91.6450487521, "source": "2022下半年省考第九季行测模考大赛(浙江A卷)第93题", "difficulty": 3, "formulas": 0, "history": [{"id": 2621806, "material": "", "question": "后视偏差是指个体在面临不确定性事件新的信息时,往往对先前获得的信息有过高的估价,进而在决策上发生偏差。\n\n根据上述定义,下列属于后视偏差的是:", "type": "单选题", "options": "A. 举棋不定\nB. 未卜先知\nC. 亡羊补牢\nD. 事后诸葛", "choice": "D", "keypoints": "大前提", "most_wrong": "B", "human_count": 104535, "human_acc": 33.7054575023, "source": "2020年下半年省考第三季行测模考大赛(新疆卷)第76题", "difficulty": 7, "formulas": 0}, {"id": 2671093, "material": "", "question": "派生作品是指在已有作品的基础上,经过改编、翻译、修订而产生的作品。\n\n以下属于派生作品的是:", "type": "单选题", "options": "A. 《红楼梦》经典诗句评析\nB. 《火影忍者》中漩涡鸣人的手办\nC. 《盗墓笔记》改编的电影\nD. 鲁迅先生创作的《从百草园到三味书屋》", "choice": "C", "keypoints": "大前提", "most_wrong": "A", "human_count": 26152, "human_acc": 84.505965127, "source": "2020年下半年省考第十季行测模考大赛(江苏卷)第113题", "difficulty": 3, "formulas": 0}, {"id": 2650003, "material": "", "question": "个体内差异评价法是以被评价对象自身某一时期的发展水平为标准,判断其个人发展状况的评价方法。\n\n根据上述定义,下列属于个体内差异评价法的是:", "type": "单选题", "options": "A. 士别三日,当刮目相待\nB. 王侯将相宁有种乎\nC. 时光荏苒,岁月如梭\nD. 坐地日行八万里", "choice": "A", "keypoints": "大前提", "most_wrong": "B", "human_count": 108823, "human_acc": 91.727851649, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第81题", "difficulty": 3, "formulas": 0}, {"id": 9009, "material": "", "question": "体液是指人体体内含有的大量以水为基础的液体,包括细胞内液和细胞外液,其中除含有大量的水外,还有许多离子和化合物。\n以下不属于体液的是:", "type": "单选题", "options": "A. 炎热环境中排出的汗液\nB. 血管中流动的血浆\nC. 组织细胞间隙的组织液\nD. 淋巴管内流动的淋巴", "choice": "A", "keypoints": "大前提", "most_wrong": "D", "human_count": 18888, "human_acc": 42.095510377, "source": "2009年江西省公务员录用考试《行测》题第63题", "difficulty": 6, "formulas": 0}, {"id": 2440235, "material": "", "question": "注意分配是指在同一时间内,把注意指向不同的对象,同时从事几种不同活动的现象。\n\n根据上述定义,下列不属于注意分配的是:", "type": "单选题", "options": "A. 学生边听讲边做笔记\nB. 歌手自拉自唱\nC. 工人边观察仪表边控制调节\nD. 运动员一鼓作气完成了躲避、转身、投篮的动作", "choice": "D", "keypoints": "大前提", "most_wrong": "C", "human_count": 198157, "human_acc": 86.5591424981, "source": "2019年青海省法院、检察院录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "大前提"]]}, {"id": 5761571, "material": "", "question": "儿童酱油、儿童面条、儿童水饺······近年来,市面上各种儿童食品种类越来越丰富,同款品牌只要沾上“儿童”两个字,价格就要比普通商品贵出一大截,有的甚至要贵好几倍。但也有家长心生犹疑,花高价买的儿童食品,真的能更贴合自家孩子的成长需求吗?从营养学的角度来讲,儿童身体尚未发育成熟,对成长所需的营养物质需求更丰富更全面,同时对食品添加剂的排解能力相对较差,这决定了他们对食品的需求与成年人不完全相同。在人们生活水平不断提高的背景下,构建一套适合不同年龄段儿童生长发育特征的儿童食品标准,有助于更好呵护少年儿童茁壮成长,帮助他们提升免疫力、增强体质。_也是许多发达国家的有益经验。\n\n横线处的“这”指代的是:", "type": "单选题", "options": "A. 提升免疫力、增强体质是儿童成长的必要条件\nB. 少年儿童与成人营养需求的差异化认知\nC. 应构建一套科学全面的儿童食品标准\nD. 构建更加严格的儿童食品安全标准", "choice": "C", "keypoints": "代词", "most_wrong": "B", "human_count": 118869, "human_acc": 92.705415205, "source": "2023下半年省考第二十二季行测模考大赛(深圳卷)第83题", "difficulty": 3, "formulas": 0, "history": [{"id": 16829, "material": "", "question": "湖北以在洞庭湖之北而得名,但在地理上提的最多的却是长江。她影响着整个湖北的气候,土壤,物产,同时也酝酿了灿烂辉煌的楚文化。\n\n这段文字中的“她”指的是:", "type": "单选题", "options": "A. 湖北\nB. 洞庭湖\nC. 地理特点\nD. 长江", "choice": "D", "keypoints": "代词", "most_wrong": "B", "human_count": 387255, "human_acc": 91.5812578275, "source": "2010年湖北省公务员录用考试《行测》题第21题", "difficulty": 3, "formulas": 0}, {"id": 10409, "material": "", "question": "代替那存在着阶级和阶级对立的资产阶级旧社会的,将是这样一个联合体,在那里,每个人的自由发展是一切人的自由发展的条件。\n\n这段文字中的“在那里”指代的是(  )。", "type": "单选题", "options": "A. 每个人的自由发展\nB. 一切人的自由发展\nC. 这样一个联合体\nD. 存在着阶级和阶级对立的社会", "choice": "C", "keypoints": "代词", "most_wrong": "D", "human_count": 27149, "human_acc": 73.4428524071, "source": "2009年甘肃省公务员录用考试《行测》题第34题", "difficulty": 4, "formulas": 0}, {"id": 2066904, "material": "", "question": "千百年来,食物就这样随着人们的脚步,不停迁移,不停流变。无论脚步多远,在人的脑海中,只有故乡的味道,熟悉而顽固,它就像一个味觉定位系统,一头锁定了千里之外的异地,另一头则永远牵绊着记忆深处的故乡。\n\n这里的“它”指的是(  )", "type": "单选题", "options": "A. 故乡\nB. 脚步\nC. 食物\nD. 味道", "choice": "D", "keypoints": "代词", "most_wrong": "C", "human_count": 54519, "human_acc": 62.0976173444, "source": "2017年辽宁省公安机关及省属监狱系统考试录用公务员(人民警察)考试《行测》题第29题", "difficulty": 5, "formulas": 0}, {"id": 2641, "material": "", "question": "定律具有普适性,不受文化、宗教、地域等因素的限制。壶如果没有底或者开口比其它部位开敞,我们就不认为这是传统意义上的壶。物理学定律决定了实用型工艺品的一般形式,“它们”具有一些基本的样式,其功能也只能在一定限度内有所变化。\n\n这里的“它们”是指:", "type": "单选题", "options": "A. 实用型工艺品\nB. 物理学定律\nC. 壶\nD. 壶的底与开口", "choice": "A", "keypoints": "代词", "most_wrong": "B", "human_count": 50501, "human_acc": 82.3152016792, "source": "2008年江苏省公务员录用考试《行测》题(C类)第68题", "difficulty": 5, "formulas": 0}, {"id": 52163, "material": "", "question": "减少死刑并不是意味着可以钻空子或漏洞,实际上任何国家废除死刑的条件之一就是这个国家的司法公正达到一个程度,否则人们对司法没有信心,人们就会希望判处更多的死刑,所以说这是相辅相成的。\n\n上述文字中的“这”指的是:", "type": "单选题", "options": "A. 减少死刑和钻空子\nB. 减少死刑和国家的司法公正\nC. 司法公正和人们对司法的信心\nD. 废除死刑的条件和司法公正", "choice": "B", "keypoints": "代词", "most_wrong": "C", "human_count": 494079, "human_acc": 53.198982349, "source": "2012年广州市公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "词句理解题", "代词"]]}, {"id": 13049, "material": "", "question": "河流赛道长120米,水流速度2米/秒,甲船速度为6米/秒,乙船速度为4米/秒。比赛进行两次往返,甲、乙同时从起点出发,先顺水航行,问多少秒后甲、乙船第二次迎面相遇:", "type": "单选题", "options": "A. 48\nB. 50\nC. 52\nD. 54", "choice": "C", "keypoints": "流水行船;相遇追及", "most_wrong": "B", "human_count": 35248, "human_acc": 48.7545392646, "source": "2009年913联考《行测》题(辽宁/海南/重庆/福建)第100题", "difficulty": 6, "formulas": 0, "history": [{"id": 5408610, "material": "", "question": "甲、乙两名游泳运动员同时从下游A点出发,游向900米外的上游B点并立刻原路返回。甲游了200米时,乙游了120米。已知甲顺流游泳的速度是逆流的1.8倍,问两人迎面相遇的地点距离A点多少米?", "type": "单选题", "options": "A. 270\nB. 390\nC. 510\nD. 630", "choice": "D", "keypoints": "流水行船;相遇追及", "most_wrong": "C", "human_count": 411720, "human_acc": 37.303993005, "source": "2022年四川下半年公务员录用考试《行测》试题(网友回忆版)第50题", "difficulty": 5, "formulas": 0}, {"id": 253381, "material": "", "question": "小刚和小强租一条小船,向上游划去,不慎把空塑料水壶掉进江中,当他们发现并调过头时,水壶与船已经相距2千米。假定小船的速度是每小时4千米,水流速度是每小时2千米,那么他们追上水壶需要多少时间:", "type": "单选题", "options": "A. 0.2小时\nB. 0.3小时\nC. 0.4小时\nD. 0.5小时", "choice": "D", "keypoints": "流水行船;相遇追及", "most_wrong": "B", "human_count": 11893, "human_acc": 72.2946270916, "source": "2008年深圳市公务员录用考试《行测》题(下半年)第7题", "difficulty": 4, "formulas": 0}, {"id": 2731348, "material": "", "question": "有一架自动扶梯共25级,每秒移动2阶。A从扶梯的起点处站立乘坐,两秒后B从起点处以每秒1阶的速度向上走动。又过三秒后C来到扶梯起点处且以每秒4阶的速度向上跑。那么以下事件中最先发生的是________。", "type": "单选题", "options": "A. A到达扶梯终点\nB. B追上A\nC. C追上A\nD. C追上B", "choice": "B", "keypoints": "流水行船;相遇追及", "most_wrong": "D", "human_count": 184008, "human_acc": 48.5136515804, "source": "2021年上海市公务员录用考试《行测》题(B类)(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 2604358, "material": "", "question": "A、B两座港口相距300公里且仅有1条固定航道,在某一时刻甲船从A港顺流而下前往B港,同时乙船从B港逆流而上前往A港,甲船在5小时之后抵达了B港,停留1小时后开始返回A港,又过了6小时追上了乙船。则乙船在静水中的时速为(    )公里。", "type": "单选题", "options": "A. 20\nB. 25\nC. 30\nD. 40", "choice": "C", "keypoints": "流水行船;相遇追及", "most_wrong": "B", "human_count": 795455, "human_acc": 60.5400682628, "source": "2020年广东省公务员录用考试《行测》试题(县级卷)(网友回忆版)第40题", "difficulty": 4, "formulas": 0}, {"id": 2750567, "material": "", "question": "一艘维修快艇沿着河流逆流而上执行维修任务,快艇航行到途中某处时工具包掉进了河里,10分钟后,驾驶员到达目的地时发现工具包丢失后立即返回追寻。已知水的流速为每秒1米,如果工具包会浮在水面上漂流,那么驾驶员将在距离丢失处(    )米的地方找回工具包。", "type": "单选题", "options": "A. 640\nB. 900\nC. 1080\nD. 1200", "choice": "D", "keypoints": "流水行船;相遇追及", "most_wrong": "C", "human_count": 97590, "human_acc": 35.3919458961, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 思维能力测验(网友回忆版)第80题", "difficulty": 5, "formulas": 0}], "categories": [["数量关系", "数学运算", "行程问题", "流水行船"], ["数量关系", "数学运算", "行程问题", "相遇追及"]]}, {"id": 1503557, "material": "", "question": "当《枪支管理法》通过的时候,受到该法禁止的攻击性武器之中,有一种是仿苏式半自动步枪AK47。仅此一种型号,美国民间当时就已经有100万支。最近20年美国校园不断发生恶性枪击事件,见诸世界各大媒体,并引发了一场有关《枪支管理法》的大讨论。看了大量的类似报道,国人一定会想为什么美国允许公民拥有枪支。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 美国各界对《枪支管理法》的观点\nB. 近年来美国发生的各类枪击案件的特点\nC. 当前美国政府对于民间枪支的管理制度\nD. 美国各个时期的法律关于公民拥有枪支的规定", "choice": "D", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 631702, "human_acc": 52.0739209311, "source": "2015年山西省公务员录用考试《行测》题第37题", "difficulty": 5, "formulas": 0, "history": [{"id": 8943, "material": "", "question": "性格内向从本质上说是一种个性特征。它与害羞和具有孤僻的性格特征不同,与疾病无关。它也不是你能改变的事物。\n\n作者接下来最可能主要介绍的是:", "type": "单选题", "options": "A. 性格外向的本质\nB. 如何改变性格内向\nC. 性格内向的危害\nD. 性格内向的特征", "choice": "D", "keypoints": "接语选择题", "most_wrong": "A", "human_count": 71934, "human_acc": 85.24897823, "source": "2009年河南省公务员录用考试《行测》题第22题", "difficulty": 5, "formulas": 0}, {"id": 8937, "material": "", "question": "很久以前,一位挪威的青年男子漂洋过海到法国,他要报考巴黎音乐学院。考试的时候,尽管他竭力将自己的水平发挥到最佳状态,但还是未被录取。\n\n作者接下来可能介绍的是:", "type": "单选题", "options": "A. 考试的详情\nB. 未被录取的原因\nC. 巴黎音乐学院的历史\nD. 考试后的遭遇", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 65799, "human_acc": 36.0582987583, "source": "2009年河南省公务员录用考试《行测》题第21题", "difficulty": 5, "formulas": 0}, {"id": 2050186, "material": "", "question": "一位科学家用玻璃板把大鲨鱼和小鱼隔开,大鲨鱼欲捕食小鱼但屡屡撞到玻璃隔板;一段时间后悄悄移开隔板,大鲨鱼却不再攻击小鱼了。\n\n这段文字接下来最可能讲述的是:", "type": "单选题", "options": "A. 不同种族之间完全可以和谐相处\nB. 因循守旧者,只会一再品味失败\nC. 固化的经验对我们的思维影响不大\nD. 适应新环境,把握新机遇需要新思维", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 1673622, "human_acc": 45.8156023284, "source": "2017年422联考《行测》题(新疆卷)第24题", "difficulty": 6, "formulas": 0}, {"id": 9019, "material": "", "question": "用外科手术的技术处置不正常的大脑,对于医学界来说已经不是一个新鲜的课题。精神外科的本意,即是通过外科手术改变人的不正常的精神活动和行为表现。\n\n作者接下来最有可能介绍的是:", "type": "单选题", "options": "A. 早期使用的外科手术方法是什么\nB. 外科手术存在的风险性\nC. 采用外科手术后对不正常大脑的改变情况\nD. 现代精神外科的定义", "choice": "A", "keypoints": "接语选择题", "most_wrong": "C", "human_count": 53515, "human_acc": 12.0657759507, "source": "2009年河南省公务员录用考试《行测》题第30题", "difficulty": 5, "formulas": 0}, {"id": 2011428, "material": "", "question": "心理问题是亚健康的重要内容之一,处理不当会发展为心理障碍和心理疾病,而且心理问题又是诱发亚健康问题的重要因素。所以说,心理调节对于解决亚健康问题有非常重要、不可替代的作用。 作者接下来有可能要论述的是(    )。", "type": "单选题", "options": "A. 心理调节的性质\nB. 心理对亚健康的影响\nC. 亚健康中的心理问题\nD. 如何进行心理调节", "choice": "D", "keypoints": "接语选择题", "most_wrong": "B", "human_count": 5739, "human_acc": 91.0785851194, "source": "2009年山西省公务员录用考试《行测》题第36题", "difficulty": 3, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "接语选择题"]]}, {"id": 2440243, "material": "", "question": "结构化决策是对某一决策过程的环境及规则,能用确定的模型或语言描述,以适当的算法产生决策方案,并能从多种方案中选择最优解的决策。非结构化决策是指决策过程复杂,不可能用确定的模型和语言来描述其决策过程。更无所谓最优解的决策。\n\n根据上述定义,下列属于非结构化决策的是:", "type": "单选题", "options": "A. 某国确定将与周边国家大力发展伙伴关系\nB. 某市要再建造一座长江大桥\nC. 某景点限制游客进入数量\nD. 某网店根据销量确定进货品类", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 265602, "human_acc": 83.125503573, "source": "2019年青海省法院、检察院录用考试《行测》题第100题", "difficulty": 5, "formulas": 0, "history": [{"id": 18055, "material": "", "question": "人的认识分为感性认识和理性认识。对事物现象的认识称为感性认识;对事物本质的认识称为理性认识。\n\n那么下列认识属于理性认识的是:", "type": "单选题", "options": "A. 太阳每天东升西落\nB. 物价上涨是价值规律起作用的结果\nC. 小丽长得很漂亮\nD. 书是纸做的", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 34943, "human_acc": 81.1464384855, "source": "2009年山西省党群机关录用考试《行测》题第94题", "difficulty": 5, "formulas": 0}, {"id": 2901718, "material": "", "question": "社交,即社会上的交际往来。通过网络来实现交际往来的软件便是社交软件,社交软件拉近了社会上人与人之间的距离,使世界成为了一个统一的整体。\n\n根据上述定义,下列属于社交软件的是:", "type": "单选题", "options": "A. 人人网\nB. 今日头条\nC. 班级群\nD. 淘宝网", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 27011, "human_acc": 60.9048165562, "source": "2021上半年省考第十一季行测模考大赛(云南卷)第86题", "difficulty": 5, "formulas": 0}, {"id": 2434292, "material": "", "question": "生物资产是指有生命的动物和植物。而消耗性生物资产是指为了出售而已经持有的或将来收获为农产品的生物资产。\n\n根据上述定义,下列属于消耗性生物资产的是(    )。", "type": "单选题", "options": "A. 防风固沙林\nB. 大棚里的蔬菜\nC. 客厅鱼缸里的金鱼\nD. 超市里的牛肉", "choice": "B", "keypoints": "常规问法", "most_wrong": "D", "human_count": 260499, "human_acc": 87.5892037973, "source": "2019年新疆生产建设兵团面向社会招录公务员考试《行测》题(网友回忆版)第66题", "difficulty": 5, "formulas": 0}, {"id": 9859, "material": "", "question": "公共产品:由公共部门提供的用来满足社会公共需要的产品。其中,纯公共产品是指任何一个人对某种物品的消费不会减少其他人对其消费的物品。\n\n下列属于纯公共产品的是:", "type": "单选题", "options": "A. 一国的国防\nB. 因拥挤而收费的高速公路\nC. 城市中建设的免费公园\nD. 商场提供的免费赠品", "choice": "A", "keypoints": "常规问法", "most_wrong": "C", "human_count": 8297, "human_acc": 32.0959382909, "source": "2009年江苏省公务员录用考试《行测》题(C类)第51题", "difficulty": 6, "formulas": 0}, {"id": 2051996, "material": "", "question": "兴趣图谱是以人与人之间的共同兴趣为链接纽带的图谱,以分享共同兴趣为基础,但这种分享不以人与人之间的相识为基础。社交图谱是基于你个人认识的社交链接,故而圈子有限。\n\n根据上述定义,下列属于社交图谱的是:", "type": "单选题", "options": "A. 微信公众号\nB. 微信朋友圈\nC. 车友会\nD. 网络社区", "choice": "B", "keypoints": "常规问法", "most_wrong": "C", "human_count": 445452, "human_acc": 77.5434839219, "source": "2017年422联考《行测》题(吉林卷甲级)第91题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "多定义", "常规问法"]]}, {"id": 5585682, "material": "", "question": "冬奥会已成为人类历史上规模最大、影响力最广的冰雪盛会。冬季冰雪项目的开展需要特定的天气条件,国际奥委会在选择冬奥会主办城市时,有两项核心的气象指标,即2月平均温度低于$0^{\\circ}C$和2月降雪量大于30cm。因此,全球变暖将极大地限制未来冬奥会的选址。\n\n以下除哪项外,均能支持上述观点?", "type": "单选题", "options": "A. 全球变暖使部分运动员难以找到适宜的训练、比赛地点,训练时间也会缩短\nB. 历届冬奥会举办地均集中在北半球的中高纬度地区,但全球变暖使未来符合要求的城市只分布在高纬度地区\nC. 研究显示,在全球变暖趋势下,先前举办过冬奥会的21个城市中,只有8个能够在本世纪末符合举办要求\nD. 诸如“男子50公里越野滑雪”的冬奥会雪上项目必须要在户外举办,符合户外赛事天气条件的城市将越来越少", "choice": "A", "keypoints": "加强选非题", "most_wrong": "B", "human_count": 22267, "human_acc": 70.2968518435, "source": "2023下半年省考第五季行测模考大赛(广东县级卷)第62题", "difficulty": 4, "formulas": 1, "history": [{"id": 2188277, "material": "", "question": "小张比小李成绩更好,但是,因为小明比小红成绩更好,所以小张比小红成绩更好。以下除哪项外,都可以作为以上说法成立的一个必要前提?", "type": "单选题", "options": "A. 小张和小明成绩同样好\nB. 小李比小红成绩更好\nC. 小张比小明成绩更好\nD. 小明比小张成绩更好", "choice": "D", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 876522, "human_acc": 66.2084921999, "source": "2018年421联考《行测》题(江西卷)(网友回忆版)第115题", "difficulty": 5, "formulas": 0}, {"id": 19765, "material": "", "question": "“阿基米德将被永远铭记,而剧作家埃斯库罗斯将会被遗忘,因为语言会消亡而数学理念不会消亡。”这一论证可能隐含了哪些前提,除了:", "type": "单选题", "options": "A. 阿基米德的贡献在于数学理念\nB. 埃斯库罗斯不是一个好作家\nC. 使用会消亡的东西的人会被遗忘\nD. 数学理念不是语言", "choice": "B", "keypoints": "加强选非题", "most_wrong": "C", "human_count": 252518, "human_acc": 68.4501698889, "source": "2012年北京市公务员录用考试《行测》题第96题", "difficulty": 5, "formulas": 0}, {"id": 2004970, "material": "", "question": "不能证明“电子媒介的崛起通常被视为一种进步的标志”的一项是(    )。", "type": "单选题", "options": "A. 电影、广播、电视或互联网给人们带来快乐\nB. 互联网的出现使人们的生活环境更民主,更开放\nC. 电视仍然垄断了信息的收集、组织、编辑、诠释和发布\nD. 不同的性别、年龄、文化阶层的人,都可能围绕电视形成某种共同体", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 7401, "human_acc": 77.2057830023, "source": "2008年贵州省公务员录用考试《行测》题第32题", "difficulty": 5, "formulas": 0}, {"id": 2440251, "material": "", "question": "目前我国几大手机厂商均陆续推出了5G手机,但也有外国厂商指出,目前5G手机技术不成熟,现在还无法大规模推广普及。\n\n以下哪项如果为真,不能支持外国厂商的观点?", "type": "单选题", "options": "A. 新技术往往价格昂贵\nB. 目前5G基站主要分布于大城市\nC. 媒体宣传5G手机非常到位\nD. 大部分民众并不对这种技术升级感兴趣", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 288306, "human_acc": 82.0884754393, "source": "2019年青海省法院、检察院录用考试《行测》题第108题", "difficulty": 5, "formulas": 0}, {"id": 19281, "material": "", "question": "电动汽车因为节能、环保,被誉为未来汽车发展的方向,许多国家都在大力发展电动汽车产业。然而,某国对此并不热衷,没有出台相关的产业扶持政策。\n\n以下不能支持该国做法的一项是:", "type": "单选题", "options": "A. 石油产业是该国的支柱产业\nB. 该国的电能较为紧张\nC. 电动汽车技术已经成熟\nD. 该国燃油发动机制造水平世界领先", "choice": "C", "keypoints": "加强选非题", "most_wrong": "D", "human_count": 405844, "human_acc": 68.0756645411, "source": "2012年广东省公务员录用考试《行测》题第69题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "加强题型", "加强选非题"]]}, {"id": 16123, "material": "", "question": "某健康中心对A市居民参加体育锻炼的情况进行的调查表明,经常参加体育锻炼的居民数近两年来不断上升,而该健身中心的顾客数略有下降。\n\n以下各项除了哪一项,都有助于解释上述矛盾:", "type": "单选题", "options": "A. 该健身中心对顾客的统计不仔细,统计的准确性值得怀疑\nB. 为节省开支,许多居民改为到公园参加锻炼\nC. A市调查中抽取的样本较多,所以调查具有较高的准确性\nD. 近两年该市新开发了许多健身中心", "choice": "C", "keypoints": "原因解释", "most_wrong": "B", "human_count": 68421, "human_acc": 51.1231931717, "source": "2010年浙江省公务员录用考试《行测》题(A类)第54题", "difficulty": 6, "formulas": 0, "history": [{"id": 4965885, "material": "", "question": "某网店中的甲产品在某短视频平台推广后极受欢迎,但是该产品的差评数量却远高于其他产品。\n\n以下最能解释这一现象的是:", "type": "单选题", "options": "A. 很多人因买不到该产品而抱怨\nB. 该产品由于售价太高而被抵制\nC. 有大量竞争商恶意给该产品差评\nD. 该产品因做工问题而被退换货", "choice": "C", "keypoints": "原因解释", "most_wrong": "D", "human_count": 7318, "human_acc": 66.9991801039, "source": "2022上半年省考第十八季行测模考大赛(广东县级卷)第71题", "difficulty": 5, "formulas": 0}, {"id": 24967, "material": "", "question": "某年,电信公司投入了巨资改善网络通讯质量和网络覆盖区,结果当年用户增加了20%,但是利润却下降了10%。\n\n最可能的原因是:", "type": "单选题", "options": "A. 新增用户的消费总额较低\nB. 网络包年费大幅度降低\nC. 电信公司当年的管理出了问题\nD. 电信公司为扩大网络覆盖区投入的资金过多", "choice": "D", "keypoints": "原因解释", "most_wrong": "A", "human_count": 55110, "human_acc": 79.7368898567, "source": "2010年福建省公务员录用考试《行测》题(春季)第88题", "difficulty": 5, "formulas": 0}, {"id": 5673015, "material": "", "question": "偏远山区的孩子们为了走出大山坎坷求学,但他们在走出大山后又都选择重返大山。\n\n以下选项如果为真,最能解释上述现象的是:", "type": "单选题", "options": "A. 他们想让家人都过上富裕的生活\nB. 大山学子学成之后都选择回馈家乡\nC. 越来越多的人选择加入山区扶贫团队\nD. 当地的孩子们期待通过学习改变命运", "choice": "B", "keypoints": "原因解释", "most_wrong": "C", "human_count": 3557, "human_acc": 89.1200449817, "source": "2023下半年省考第十四季行测模考大赛(广东县级卷)第70题", "difficulty": 3, "formulas": 0}, {"id": 2047750, "material": "", "question": "由于按揭贷款的利率下调,人们每月还贷压力减小,因此一家机构预测某地的商品房销售量会增长,但实际上,销售量并未出现明显增长。\n\n下列哪项如果为真,最能解释以上现象?", "type": "单选题", "options": "A. 当地一直存在人口外流的现象\nB. 本地的商品房价格没有明显下降\nC. 有的开发商取消了购房优惠政策\nD. 因经济环境不好,当地人均收入下降", "choice": "D", "keypoints": "原因解释", "most_wrong": "B", "human_count": 928880, "human_acc": 68.1970760486, "source": "2017年广东省公务员录用考试《行测》题(县级、乡镇统一卷)第57题", "difficulty": 5, "formulas": 0}, {"id": 7503, "material": "", "question": "“医院里的医生和护士,包括我在内,总共是16名,下面讲到的人员情况,无论是否把我计算在内,都不会有任何变化。在这些医护人员中,(1)护士多于医生;(2)男医生多于男护士;(3)男护士多于女护士;(4)至少有一位女医生。”\n\n请问这位说话者是什么性别和职务:", "type": "单选题", "options": "A. 男医生\nB. 女护士\nC. 男护士\nD. 女医生", "choice": "B", "keypoints": "原因解释", "most_wrong": "D", "human_count": 20736, "human_acc": 27.8501157407, "source": "2009年云南省公务员录用考试《行测》题第81题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "原因解释"]]}, {"id": 1542019, "material": "", "question": "把一个漂亮的鸟笼挂在房间最显眼的地方,过不了几天,主人必定会做出下面两个选择之一:把鸟笼扔掉,或者买一只鸟回来放在鸟笼里,因为这比无休止地向别人解释和说明挂一个空鸟笼要轻松得多,这就是鸟笼逻辑。并不一定每一个鸟笼里应该装进一只鸟,但可惜的是人们总是受制于惯性思维,不知变通,难以突破常规,逃不出这个逻辑的局限。\n\n根据上述定义,下列没有反映鸟笼逻辑的是:", "type": "单选题", "options": "A. 大多数年轻人都认为结婚要先置办新房\nB. 大学毕业生一般都选择先就业再择业,待职业发展成熟后再考虑创业\nC. 楚国人想要偷袭宋国,派人先在河里做标记,晚上河水突然上涨,楚国人依然沿着原来的标记渡水,结果淹死了不少兵士\nD. 乌鸦为了喝到瓶子里的水,把衔到的小石子放到瓶子里,使没装满水的瓶子里的水位得到上升,最终它喝到了水", "choice": "D", "keypoints": "故事类", "most_wrong": "C", "human_count": 440414, "human_acc": 91.7166575086, "source": "2015年山东省公务员录用考试《行测》题第76题", "difficulty": 3, "formulas": 0, "history": [{"id": 1679614, "material": "", "question": "从群体成员活动的效率角度,由不同的角色扮演者组成的群体产生的内聚力或摩擦力,在社会心理学上,统称为关系场效应。\n\n根据上述定义,下列最能体现关系场效应的是:", "type": "单选题", "options": "A. 三个和尚没水喝\nB. 近朱者赤,近墨者黑\nC. 三人行,必有我师\nD. 随波逐流,人云亦云", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 228404, "human_acc": 46.6554876447, "source": "2015年吉林省公务员录用考试《行测》题(4月乙级)第56题", "difficulty": 6, "formulas": 0}, {"id": 2144685, "material": "", "question": "“邯郸学步”这则典故是指到邯郸去学走路的步法。战国时期,一个燕国人听说赵国邯郸人走姿很漂亮,便来到邯郸学习邯郸人走路。未得其能,又忘记自己的走姿,最后爬着回到了燕国。根据上述文字,下列最能够解释成语“邯郸学步”的涵义的是(  )。", "type": "单选题", "options": "A. 装模作样\nB. 盲目模仿\nC. 本末倒置\nD. 一成不变", "choice": "B", "keypoints": "故事类", "most_wrong": "C", "human_count": 12074, "human_acc": 81.8287228756, "source": "2017年新疆兵团公务员录用考试《行测》题(网友回忆版)第82题", "difficulty": 5, "formulas": 0}, {"id": 2744525, "material": "", "question": "当年幼的藏犬长出牙齿并能撕咬时,主人就把它们放到一个没有食物和水的封闭环境里,让这些幼犬自相撕咬,最后剩下一只活着的犬,这只犬称为獒。据说十只犬才能产生一只獒。这种现象被称为犬獒效应,体现的是竞争造就强者。\n\n根据上述定义,下列属于犬獒效应的是:", "type": "单选题", "options": "A. 鹤立鸡群\nB. 适者生存\nC. 安时处顺\nD. 闻鸡起舞", "choice": "B", "keypoints": "故事类", "most_wrong": "A", "human_count": 14746, "human_acc": 94.2085989421, "source": "2021上半年省考第二季行测模考大赛(云南卷)第86题", "difficulty": 3, "formulas": 0}, {"id": 2590260, "material": "", "question": "法国农学工程师林格曼有个著名的拔河实验:当拔河的人数逐渐增加时,每个人所用的力量反而越来越少,并没达到力量累加的效果,这一现象称做“林格曼效应”。\n\n根据上述定义,下列体现了林格曼效应的是:", "type": "单选题", "options": "A. 鸡多不下蛋,人多瞎胡乱\nB. 单丝不成线,独木不成林\nC. 一人不敌二人计,三人合唱一本戏\nD. 众人拾柴,火焰高", "choice": "A", "keypoints": "故事类", "most_wrong": "C", "human_count": 292439, "human_acc": 95.1442865008, "source": "2021年国考第九季行测模考大赛(副省级)第87题", "difficulty": 3, "formulas": 0}, {"id": 2445473, "material": "", "question": "对越熟悉的东西越喜欢的现象,心理学上称为“多看效应”。多看效应不仅仅是在心理学实验中才出现,在生活中,我们也常常会见到。\n\n根据上述定义,以下属于多看效应的是:", "type": "单选题", "options": "A. 最初见面印象越好,喜欢程度越高\nB. 见面次数越多,喜欢程度越高\nC. 越内向的人,越难以受到他人的喜欢\nD. 最近一次见面印象越好,喜欢程度越高", "choice": "B", "keypoints": "故事类", "most_wrong": "D", "human_count": 242017, "human_acc": 97.0126065524, "source": "2019年黑龙江边境县(市、区)急需紧缺专业岗公务员考试《行测》题第74题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "定义判断", "单定义", "故事类"]]}, {"id": 2627875, "material": "", "question": "人们对于动物毛皮需求量的迅速增加,导致了很多商家不顾一切地满足市场需求,不规范地杀戮动物,甚至稀有动物,致使一些野生动物濒临灭绝,动物毛皮资源也越来越匮乏。现在市面上出现了一种仿真皮草,不论从质感还是保暖,与真正的皮草几乎无差别。因此,有经济学家预测,仿真皮草会取代动物皮毛产品。\n\n以下哪项如果为真,不能削弱经济学家的预测?", "type": "单选题", "options": "A. 仿真皮草的亮泽和美观度不如动物毛皮\nB. 欧洲的王公贵族穿真皮草衣服是来显示社会地位,仿真皮草不具有这个作用\nC. 人们喜欢用动物毛皮装点服饰,与其保暖和质感无关\nD. 近几年,为获取皮毛而产生的野生动物猎杀呈上升趋势", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 56712, "human_acc": 58.5343489914, "source": "2020年下半年省考第四季行测模考大赛(新疆卷)第102题", "difficulty": 6, "formulas": 0, "history": [{"id": 2002044, "material": "", "question": "A市的图书销售量高于B市,因此,A市的居民比B市的居民更喜爱阅读。\n\n以下各项除了哪一项,都会削弱以上结论(    )。", "type": "单选题", "options": "A. A市的人口比B市多\nB. 有很多B市的居民到A市购买图书\nC. B市居民习惯到图书馆借书阅读\nD. A市图书的平均销售价略高于B市", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "A", "human_count": 13724, "human_acc": 85.259399592, "source": "2010年浙江省公务员录用考试《行测》题(A类)第59题", "difficulty": 4, "formulas": 0}, {"id": 585755, "material": "", "question": "想来你绝不会每天吃一勺砒霜,那我就不理解你,何以还要抽烟,他们都是要你命的呀!\n\n以下哪项为真,对上述论证的质疑力最弱:", "type": "单选题", "options": "A. 使用砒霜迅速致死,无可幸免,可是吸烟不会立刻死亡也可能有幸免\nB. 吸烟时能带来很大的即时满足,这一点砒霜便无能为力\nC. 食用砒霜和吸烟存在本质不同,不能通过类比推理得到结论\nD. 吸烟有害健康,戒烟势在必行", "choice": "D", "keypoints": "削弱选非题", "most_wrong": "C", "human_count": 374640, "human_acc": 54.7485586163, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第81题", "difficulty": 5, "formulas": 0}, {"id": 2137308, "material": "", "question": "X市的有线电视付费频道的用户数量比Y市要多,因此X市的市民比Y市市民更加了解国际时事。\n\n下列各项如果为真,除了______项外,都将削弱上述论证。", "type": "单选题", "options": "A. X市有线电视付费频道的月租费要低于Y市的同类频道\nB. 调查显示,X市市民平均看电视的时间要比Y市市民少\nC. X市有线电视付费频道播放的都是娱乐类节目\nD. 大多数Y市市民在X市工作,通常只是在周末才回到Y市", "choice": "A", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 331595, "human_acc": 55.8955955307, "source": "2018年上海市公务员录用考试《行测》题(A类)(网友回忆版)第52题", "difficulty": 5, "formulas": 0}, {"id": 12087, "material": "", "question": "春节期间,学校保卫处计划为所有春节不回家的学生提供勤工俭学的机会,一方面是缓解春节期间保卫处人员不足的压力;另一方面是想为这些贫困大学生缓解经济压力。\n\n下列哪一项并不能够质疑保卫处的这项计划:", "type": "单选题", "options": "A. 春节不回家的学生并不一定都是经济困难生\nB. 春节期间学校治安任务艰巨,学生难以胜任\nC. 保卫处资金有限,春节不回家的学生数目较多\nD. 大多数不回家的学生都报了寒假英语补习班", "choice": "C", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 28724, "human_acc": 28.9583623451, "source": "2008年安徽省公务员录用考试《行测》题第78题", "difficulty": 5, "formulas": 0}, {"id": 2050080, "material": "", "question": "当一部小说赢得大奖之后,它在网上书店的口碑却往往会变差。但实际上,大赛评比中其他被提名的小说得分确实不如获奖的小说得分高。据此小李认为,大赛评委们选不出真正好的小说。\n\n如果以下各项为真,不能削弱小李观点的是:", "type": "单选题", "options": "A. 大奖提高了读者对获奖小说的期望值\nB. 一部小说获奖后作者知名度会迅速上升\nC. 得奖吸引一些品位跟这本书不搭调的读者\nD. 喜爱这类小说的读者对获奖小说的评价很高", "choice": "B", "keypoints": "削弱选非题", "most_wrong": "D", "human_count": 781707, "human_acc": 61.8770204181, "source": "2017年422联考《行测》题(浙江A卷)第85题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "削弱选非题"]]}, {"id": 2694987, "material": "", "question": "某教育机构2020年对老师共进行了四次考核,其中小王和小李在这四次考核中的平均得分分别是82分和88分,两人每次考核得分均为整数,且同一个人的四次得分各不相同。已知小李得分最低的一次的分数比小王得分最高的一次的分数高2分。则小李得分最高一次的分数比小王得分最低一次的分数最多多多少分?", "type": "单选题", "options": "A. 11\nB. 12\nC. 13\nD. 14", "choice": "B", "keypoints": "不定方程组;构造数列", "most_wrong": "C", "human_count": 217711, "human_acc": 41.3052165485, "source": "2021年国考第二十三季行测模考大赛(副省级)第70题", "difficulty": 6, "formulas": 0, "history": [{"id": 2043664, "material": "", "question": "小王打靶共用了10发子弹,全部命中,都在10环、8环和5环上,总成绩为75环,则命中10环的子弹数是:", "type": "单选题", "options": "A. 1发\nB. 2发\nC. 3发\nD. 4发", "choice": "B", "keypoints": "不定方程组", "most_wrong": "C", "human_count": 412803, "human_acc": 71.7376084961, "source": "2017年江苏省公务员录用考试《行测》题(C类)第66题", "difficulty": 5, "formulas": 0}, {"id": 48245, "material": "", "question": "5个人平均年龄为29,且没有小于24的,那么年龄最大的人至多为多少岁:", "type": "单选题", "options": "A. 46\nB. 48\nC. 50\nD. 49", "choice": "D", "keypoints": "构造数列", "most_wrong": "C", "human_count": 199434, "human_acc": 73.6298725393, "source": "2013年天津市公务员录用考试《行测》题第15题", "difficulty": 4, "formulas": 0}, {"id": 53071, "material": "", "question": "射箭运动员进行训练,10支箭共打了93环,且每支箭的环数都不低于8环。问命中10环的箭数最多能比命中9环的多几支:", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "D", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "B", "human_count": 278659, "human_acc": 51.2439935548, "source": "2013年921联考《行测》题(河南卷)第31题", "difficulty": 5, "formulas": 0}, {"id": 455831, "material": "", "question": "假设7个相异正整数的平均数是14,中位数是18,则此7个正整数中最大数是多少:", "type": "单选题", "options": "A. 58\nB. 44\nC. 35\nD. 26", "choice": "C", "keypoints": "构造数列", "most_wrong": "B", "human_count": 202167, "human_acc": 64.4882695989, "source": "2014年天津市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 2262010, "material": "", "question": "一项考试共有35道试题,答对一题得2分,答错一题扣1分,不答则不得分。一名考生一共得了47分,那么,他最多答对(    )题。", "type": "单选题", "options": "A. 26\nB. 27\nC. 29\nD. 30", "choice": "B", "keypoints": "不定方程组;非典型最值问题", "most_wrong": "C", "human_count": 130292, "human_acc": 79.9389064563, "source": "广东省2019年选调优秀大学毕业生笔试 思维能力测验(网友回忆版)第59题", "difficulty": 4, "formulas": 0}], "categories": [["数量关系", "数学运算", "不定方程问题", "不定方程组"], ["数量关系", "数学运算", "最值问题", "构造数列"]]}, {"id": 2604762, "material": "有5个小朋友住在和乐路、民主路、富裕路、平安路以及建设路5个不同的地址,他们所在的学校有和平小学、民族小学、富强小学、平桥小学以及建安小学。已知:\n\n(1)每个人家庭住址与所在学校的第一个字不同;\n\n(2)住在民主路或平安路的人都不可能在和平小学和建安小学上学;\n\n(3)在民族小学上学的人不是住在和乐路就是住在建设路。", "question": "将题干中的条件(3)改为“住在和乐路的人在平桥小学上学”,则共存在几种情况?", "type": "单选题", "options": "A. 0\nB. 1\nC. 2\nD. 3", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 41698, "human_acc": 36.917837786, "source": "2021年国考第十季行测模考大赛(地市级)第110题", "difficulty": 5, "formulas": 0, "history": [{"id": 4971461, "material": "某公司组织演讲比赛,来来、乐乐、涛涛、菲菲和娜娜5人按照一定的顺序出场,出场顺序需要满足以下条件:\n\n(1)乐乐与菲菲相邻并且在菲菲之前;\n\n(2)娜娜和来来相邻;\n\n(3)涛涛在乐乐之前。", "question": "如果涛涛第一个出场,则有多少种可能的出场顺序?", "type": "单选题", "options": "A. 2\nB. 3\nC. 4\nD. 5", "choice": "C", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 36044, "human_acc": 76.4260348463, "source": "2023年国考第二十季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604270, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "以下哪项不可以同时不报名比赛?", "type": "单选题", "options": "A. 乙、庚\nB. 丙、丁\nC. 丁、戊\nD. 己、庚", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "C", "human_count": 216469, "human_acc": 44.1254867903, "source": "2022年国考终极行测模考大赛(行政执法类)第108题", "difficulty": 4, "formulas": 0}, {"id": 4928414, "material": "张、王、李、赵、杨、吴、高7人住在某小区一栋7层高的楼中,7人住在不同的楼层。已知:\n\n(1)杨住的楼层比李低;\n\n(2)杨与张所住的楼层相邻;\n\n(3)张和李二人之间间隔3个楼层;\n\n(4)吴住在王的楼上,且二人之间间隔2个楼层。", "question": "张可能住在几层?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "A", "keypoints": "组合排列-材料", "most_wrong": "B", "human_count": 32379, "human_acc": 74.1097625004, "source": "2023年国考第十八季行测模考大赛(地市级)第109题", "difficulty": 4, "formulas": 0}, {"id": 4604271, "material": "甲、乙、丙、丁、戊、己、庚中只有4名同学报名参加了演讲比赛,报名情况满足以下条件:\n\n①要么甲报名,要么乙报名;\n\n②要么戊报名,要么己报名;\n\n③只要戊报名,丙就报名;\n\n④只有乙报名,庚才会报名。", "question": "如果己报名参加比赛,此时报名参赛的同学有几种可能性组合?", "type": "单选题", "options": "A. 3\nB. 4\nC. 5\nD. 6", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 214756, "human_acc": 42.3927620183, "source": "2022年国考终极行测模考大赛(行政执法类)第109题", "difficulty": 5, "formulas": 0}, {"id": 5032243, "material": "寒假期间,小明让妈妈给他报了书法、钢琴、演讲、珠心算、围棋、舞蹈六门课程。每天只学一门,且一周休息1天。已知:\n\n(1)书法安排在钢琴之前,且中间间隔2天;\n\n(2)演讲和珠心算安排在相邻的2天;\n\n(3)围棋和舞蹈之间间隔3天。", "question": "舞蹈不可能安排在周几?", "type": "单选题", "options": "A. 周三\nB. 周二\nC. 周日\nD. 周五", "choice": "B", "keypoints": "组合排列-材料", "most_wrong": "A", "human_count": 38189, "human_acc": 65.0789494357, "source": "2023年国考第二十四季行测模考大赛(地市级)第108题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "组合排列-材料"]]}, {"id": 5380767, "material": "", "question": "众所周知很多猫咪会在猫薄荷、木天蓼上摩擦,并舔舐和咀嚼它们,研究人员为弄清原因对此展开研究,发现猫薄荷和木天蓼中含有一种叫荆芥内酯的化合物,可以激活猫咪体内负责欣快感的神经系统。因此研究人员得出结论,猫咪如此热衷于摩擦和咀嚼这些植物是为了增加其快乐。\n\n以下哪项如果为真,最能质疑上述结论?", "type": "单选题", "options": "A. 木天蓼散发的物质里面含有大量的苯乙醇,会对猫咪肾脏造成负担\nB. 有少量的猫咪对猫薄荷完全不感兴趣,闻到了就会绕道走开\nC. 猫薄荷和木天蓼被破坏后会释放大量强效驱蚊物质,帮助猫咪驱蚊\nD. 猫咪越是兴奋快乐,就越喜欢摩擦和咀嚼猫薄荷、木天蓼", "choice": "D", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 363947, "human_acc": 61.8076258356, "source": "2022下半年省考第十九季行测模考大赛(深圳卷)第39题", "difficulty": 6, "formulas": 0, "history": [{"id": 44069, "material": "", "question": "经常参加拳击运动的人通常比不参加的人身体更加健康,因此,参加运动有助于增进健康。    \n\n以下哪项如果为真,最能构成对上述结论的质疑:", "type": "单选题", "options": "A. 只有身体健康的人才能参加拳击运动\nB. 拳击运动能够训练人的反应能力,增加人的敏锐度\nC. 每年都有少数人在拳击运动中因意外事故而受伤\nD. 男子比女子更喜爱拳击运动", "choice": "A", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 212237, "human_acc": 86.4585345628, "source": "2012年上海市公务员录用考试《行测》题(A类)第50题", "difficulty": 5, "formulas": 0}, {"id": 2270992, "material": "", "question": "经常参加篮球运动的人通常比不参加篮球运动的人身体更健康,因此,篮球运动有助于增进健康。\n\n以下哪项如果为真,最能削弱上述认证?", "type": "单选题", "options": "A. 每年都有少数人在篮球运动中因意外事故而受伤\nB. 只有身体健康的人才参加篮球运动\nC. 篮球运动能够训练人的反应能力,增强人的敏感性\nD. 有的篮球运动参加者的健康状况不如没有参加篮球运动的人", "choice": "B", "keypoints": "因果倒置", "most_wrong": "D", "human_count": 4578, "human_acc": 76.5836609873, "source": "2015年辽宁省选调生招录考试 行政职业能力测验试卷(精选)第53题", "difficulty": 5, "formulas": 0}, {"id": 1796562, "material": "", "question": "一项研究发现:经常喝咖啡的成年人患上心脏病的概率是不常喝咖啡成年人患心脏病概率的2.5倍。由此可以判定,咖啡中的某种物质能够导致人患上心脏疾病。\n\n以下最能削弱上述结论的一项是(  )。", "type": "单选题", "options": "A. 咖啡含有提高心脏活力的成分\nB. 用餐时喝咖啡有降低血脂的作用\nC. 心脏病高危人群更容易爱上喝咖啡\nD. 爱喝咖啡的人大都性格开朗,喜欢运动", "choice": "C", "keypoints": "因果倒置", "most_wrong": "A", "human_count": 918862, "human_acc": 77.6943654216, "source": "2016年广东省公务员录用考试《行测》题(县级以上)第79题", "difficulty": 4, "formulas": 0}, {"id": 10395, "material": "", "question": "相比那些不踢足球的大学生,经常踢足球的大学生的身体普遍健康些。由此可见,足球运动能锻炼身体,增进身体健康。\n\n以下哪项为真,最能削弱上述论断?", "type": "单选题", "options": "A. 大学生踢足球是出于兴趣爱好,不是为了锻炼身体\nB. 身体不太好的大学生一般不参加激烈的足球运动\nC. 足球运动有一定的危险性,容易使人受伤\nD. 研究表明,长跑比踢足球更能达到锻炼身体的目的", "choice": "B", "keypoints": "因果倒置", "most_wrong": "C", "human_count": 38243, "human_acc": 72.2511309259, "source": "2009年浙江省公务员录用考试《行测》题第88题", "difficulty": 4, "formulas": 0}, {"id": 4004832, "material": "", "question": "相比那些不练习瑜伽的人来说,经常练习瑜伽的人体型更好一些。可见,瑜伽能锻炼人的柔韧性,塑造完美体型。\n\n以下哪项如果为真,最能对上述结论提出质疑?", "type": "单选题", "options": "A. 大部分人喜欢瑜伽,就是因为瑜伽能够让人拥有更好的体型\nB. 塑造完美体型的方式不仅仅只有瑜伽\nC. 瑜伽不仅能够塑造人的完美体型,还能预防关节炎\nD. 真正体型不好的人一般不会选择练习瑜伽", "choice": "D", "keypoints": "因果倒置", "most_wrong": "B", "human_count": 210620, "human_acc": 85.4728895641, "source": "2021年新疆生产建设兵团行政执法类公务员考试《行测》题(网友回忆版)第90题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "因果倒置"]]}, {"id": 5556063, "material": "", "question": "研究者亲自参与测试吃苹果对餐后血糖的影响。第一次测试中,他先吃含15克可利用碳水化合物的苹果,从吃苹果的时间开始算,30分钟之后再吃含35克可利用碳水化合物的米饭;第二次测试中,他同时吃下含15克可利用碳水化合物的苹果和含35克可利用碳水化合物的米饭;第三次测试中,他直接吃含50克可利用碳水化合物的米饭。研究结果显示,如果用一餐饭的GI值(血糖生成指数)来表示,那么直接吃米饭是82,米饭和苹果一起吃是64,先吃苹果后吃米饭的吃法居然降低到了40。因此,研究者指出餐前半小时吃苹果有利于降低餐后血糖。\n\n以下能够削弱上述结论的有几项?\n\n①三次测试在同一天内完成,分别对应了早餐、午餐和晚餐\n\n②先吃苹果的饮食方式,仅限于胃肠消化功能正常的人,其他人可能引起腹泻\n\n③先吃苹果的饮食方式,对糖尿病患者来说,不能作为医疗手段来替代药物治疗\n\n④研究者本身身体健康,不确定糖尿病患者饭前吃苹果是否能得到同样的餐后控血糖效果", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "A", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 54955, "human_acc": 43.4610135565, "source": "2023下半年省考第一季行测模考大赛(广东县级卷)第60题", "difficulty": 7, "formulas": 0, "history": [{"id": 770403, "material": "", "question": "合理、精简的机构设置使得甲县卫生局的工作效率非常高,甲县卫生局的部门结构与乙县卫生局十分相似。因此乙县的卫生局工作效率也会很高。下列最能反驳上述结论的是:", "type": "单选题", "options": "A. 乙县卫生局的部门结构未必与甲县的相同\nB. 两县卫生局的工作人员数量有较大的差异\nC. 工作流程的设置对工作效率有重要影响\nD. 甲县卫生局的不同部门的工作效率有高有低", "choice": "C", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 190951, "human_acc": 47.7164298694, "source": "2011年广东省公务员录用考试《行测》题第71题", "difficulty": 6, "formulas": 0}, {"id": 2004418, "material": "", "question": "某市公安机关为了人民生命财产安全,减少环境污染,发布了禁止出售烟花爆竹禁令,今年该市没有市民被烟花爆竹炸伤,这说明,禁令得到了有效实施。\n\n以下哪项如果为真,最能质疑上述论证(    )。", "type": "单选题", "options": "A. 该市消防部门出警次数比往年多\nB. 市民看到有人燃放烟花爆竹\nC. 警方收到有人家中堆放大量烟花爆竹的举报\nD. 警方捣毁了几个生产烟花爆竹的窝点", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 3003, "human_acc": 32.6673326673, "source": "2012年吉林省公务员录用考试《行测》题(乙级)第30题", "difficulty": 5, "formulas": 0}, {"id": 2776081, "material": "", "question": "近年来,公众对于糖有害健康的讨论越来越多。数据表明白糖的销售量明显下降。这说明公众对糖的危害性的警觉导致了白糖销售量的下降。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 盐和醋的销售量近年来不断攀升\nB. 现在人均白糖消费量是10年前的$80\\%$\nC. 减少白糖摄入后,一些嗜甜者出现了睡眠障碍\nD. 近年来,白糖价格因为甘蔗种植面积大幅缩减而飙升", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 1669563, "human_acc": 84.3817813404, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第99题", "difficulty": 5, "formulas": 83}, {"id": 2187457, "material": "", "question": "《英国医学杂志》发表的一篇研究成果显示:吃白米饭最多的人和最少的人相比,患糖尿病的风险会增加$55\\%$。有人据此得出结论,多吃白米饭易患糖尿病。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 遗传等其他多种因素,也会增加患糖尿病风险\nB. 长期不吃或者少吃主食的人,也容易患糖尿病\nC. 白米饭缺少人体每天所需的膳食纤维等营养素\nD. 吃白米饭多的人,其他类型食物的摄入量也高", "choice": "D", "keypoints": "他因削弱", "most_wrong": "B", "human_count": 128287, "human_acc": 51.1205344267, "source": "2018年吉林省选调生录用考试《行测》试题(网友回忆版)第81题", "difficulty": 5, "formulas": 1}, {"id": 2776068, "material": "", "question": "1990年,W市70岁以上老人骨折发生率很高,同时,70岁以上老人的死亡率也很高,因此可以得知,骨折高发导致了70岁以上老人死亡率的上升。\n\n以下哪项如果为真,最能削弱上述结论?", "type": "单选题", "options": "A. 1990年,W市正在经历战乱\nB. W市很多70多岁以上的老人都是独居老人\nC. 此后十年,W市70岁以上老人的骨折率和死亡率一直很高\nD. W市60岁到65岁老人骨折发生率是70岁以上老人的2倍", "choice": "A", "keypoints": "他因削弱", "most_wrong": "D", "human_count": 1607952, "human_acc": 57.20009055, "source": "2021年浙江省公务员录用考试《行测》题(C类)(网友回忆版)第98题", "difficulty": 5, "formulas": 0}], "categories": [["判断推理", "逻辑判断", "削弱题型", "他因削弱"]]}, {"id": 2033048, "material": "", "question": "德国人在中国人心目中的形象可谓已经超凡脱俗。中文网上流传的各种帖子说:青岛地下水道存在百年前的配件包,而且都用油纸妥善包好;德国人一年只有一半时间工作,依然能够保证强劲的经济实力······而德国自己的报纸《南德意志报》则惊叹“德国在中国被‘神话’了”。报道称,青岛地下水道的完备,德国人对其所做贡献不过$3\\%$。“德国制造”确实在当今世界赢得了相当高的美誉度,但其实在19世纪的时候,“德国制造”还是一个贬义词,代表廉价与质量差。后来,德国人齐心协力打造“德国制造”的品质,才扭转了在人们心中的印象。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 中国,不用妄自菲薄\nB. 钦佩,要适可而止\nC. 德国,一个值得敬佩的国家\nD. 赞赏,当在真实基础之上", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1052537, "human_acc": 53.1199378264, "source": "2015年吉林省公务员录用考试《行测》题(9月甲级)第38题", "difficulty": 4, "formulas": 1, "history": [{"id": 52155, "material": "", "question": "17世纪的英国学者托马斯·富勒说:“知识使好人更好,坏人更坏。”塞缪尔·约翰逊则说:“有知识而不正直是可怕的。”罗素说:“科学是一种权力,而任何权力都可善可恶。”而爱因斯坦说得更加简洁:“刀子有用,但也能用来杀人。”\n\n最适合作为这段文字标题的是:", "type": "单选题", "options": "A. 知识需要人文控制\nB. 知识就是力量\nC. 知识与道德\nD. 知识就是刀子", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 752292, "human_acc": 55.0379373966, "source": "2012年广州市公务员录用考试《行测》题第17题", "difficulty": 5, "formulas": 0}, {"id": 622353, "material": "", "question": "金融危机之后,美国众多企业家纷纷呼吁“重新回归制造业”。他们为美国“再工业化”开出的药方是:由人工智能、机器人和数字化制造武装美国企业,以使美国制造可以和中国劳工竞争。中国恐怕要早做筹谋,缔造新的竞争优势。\n\n下列最适合做这段文字标题的是:", "type": "单选题", "options": "A. 机器人挑战中国制造\nB. 中国制造前景堪忧\nC. 美国缔造新竞争优势\nD. 美国重回制造业", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 839163, "human_acc": 43.4608055884, "source": "2014年四川省公务员录用考试《行测》题第36题", "difficulty": 6, "formulas": 0}, {"id": 2256427, "material": "", "question": "13日13时许,成都航空一架ARJ21飞机平稳降落在江西省上饶市三清山机场。成都至上饶航线的开通,标志着ARJ21国产飞机正式执飞首条国内支线航线,对国产飞机的商业应用具有重要意义。\n\n最适合做这段文字报道标题的是:", "type": "单选题", "options": "A. ARJ21首飞国内支线航线\nB. 成都至上饶航线正式开通\nC. 国产飞机发展势态良好\nD. ARJ21飞机助力三清山", "choice": "A", "keypoints": "标题填入题", "most_wrong": "B", "human_count": 937344, "human_acc": 78.2047999454, "source": "江西省2018年市县两级法院、检察院统一考录公务员笔试《行测》题(网友回忆版)第34题", "difficulty": 4, "formulas": 0}, {"id": 2049618, "material": "", "question": "研究者对大熊猫肠道内的微生物进行分析后发现,虽然原本食肉的熊猫为了适应食物稀缺的环境而在距今240万到200万年间转为以竹子为食,并为此进化出了强壮的颌骨,但它们却没有进化出更长的消化道或分泌特定消化酶的能力,从而无法有效地分解竹纤维素。\n\n最适合做这段文字标题的是:", "type": "单选题", "options": "A. 口是腹非\nB. 竹子与熊猫\nC. 尚未完成的进化\nD. 适应环境还是改变自己", "choice": "A", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 1345085, "human_acc": 49.8219815105, "source": "2017年422联考《行测》题(山东卷)第14题", "difficulty": 5, "formulas": 0}, {"id": 1392517, "material": "", "question": "渔人在捕鱼,一只鸟飞下,叼走了一条鱼。有无数只乌鸦看见了,便去追逐这只叼着鱼的鸟。这只鸟无论飞东飞西,满天的乌鸦都紧追不舍,无处可逃,只能疲累地飞行,心神涣散时鱼就从嘴里掉下来了。那群乌鸦就朝着鱼落下的方向继续追逐。这只鸟如释重负,栖息在树枝上,内心反倒平静了下来,没有了恐惧。\n\n最适合这段文字的标题是:", "type": "单选题", "options": "A. 徒劳无功\nB. 坚忍不拔\nC. 损人害己\nD. 以舍为得", "choice": "D", "keypoints": "标题填入题", "most_wrong": "C", "human_count": 677882, "human_acc": 93.8709096863, "source": "2015年425联考《行测》题(陕西卷)第48题", "difficulty": 5, "formulas": 0}], "categories": [["言语理解与表达", "阅读理解", "标题填入题"]]}, {"id": 2423380, "material": "", "question": "①对人类来说,潮滩生态系统非常重要,可以提供关键防护,如防风暴、稳定海岸线和粮食生产,全球数百万人的生计正有赖于此\n\n②在海洋与陆地交接之处,有一块不断演变的生态系统\n\n③潮滩指经常发生潮汐泛滥的沙滩、岩石或泥滩,主要受潮流影响\n\n④科学地评估潮滩生态系统的变化,对于合理开发、加强保护,以及促进该系统的可持续发展,都具有重要意义\n\n⑤但随着人类城市化进程不断加快,人们在对潮滩生态系统需求增加的同时,对这一宝贵资源的破坏也在增强,潮滩消失的趋势愈加严峻\n\n⑥它是海岸带重要的地理单元,也在海洋资源与环境中占有突出地位,它就是潮滩\n\n将以上6个句子重新排列,语序正确的一项是:", "type": "单选题", "options": "A. ②⑥③①⑤④\nB. ③①②⑤④⑥\nC. ①③②④⑥⑤\nD. ④③⑤②⑥①", "choice": "A", "keypoints": "尾句特征", "most_wrong": "B", "human_count": 675101, "human_acc": 89.3291522306, "source": "2019年甘肃省公务员录用考试《行测》题(网友回忆版)第56题", "difficulty": 4, "formulas": 0, "history": [{"id": 1791732, "material": "", "question": "①回顾人类法律发展史,我们也能看到法律的发展过程在很大程度上是法官不断补充完善法律规则、填补法律漏洞的过程。\n\n②即使法律再完备也不能包罗万象,总是会给法官留下大量的解释空间。\n\n③法律只有借助法官的解释才能实现对社会生活的有效规范。\n\n④法典由法律语言构成,法律语言描述功能和信息载体功能十分有限,无法涵盖与描述全部的社会生活。\n\n⑤有的立法者希望通过立法本身的高度完善去消除法律解释活动的必要性,但事实证明是徒劳的。\n\n将以上5个句子重新排序,语序正确的一项是:", "type": "单选题", "options": "A. ②①⑤④③\nB. ①⑤④③②\nC. ①④⑤③②\nD. ②①③④⑤", "choice": "A", "keypoints": "尾句特征", "most_wrong": "B", "human_count": 441043, "human_acc": 37.0242810792, "source": "2016年江苏省公务员录用考试《行测》题(C类)第33题", "difficulty": 5, "formulas": 0}, {"id": 5393689, "material": "", "question": "①然而,网络谣言、网络诈骗、网络信息泄露、网络暴力等乱象时有发生\n\n②如何进一步破解乱象、加强网络文明建设\n\n③数据显示,我国网民规模、国家顶级域名注册量均为全球第一\n\n④关键是要构建人人参与、齐抓共治的网络文明建设工作新格局\n\n⑤互联网不仅是人们在日常工作学习中不可或缺的帮手,更是亿万民众共同的精神家园\n\n将以上5个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ①③⑤④②\nB. ③⑤①②④\nC. ④①③②⑤\nD. ⑤②④③①", "choice": "B", "keypoints": "尾句特征;确定顺序", "most_wrong": "D", "human_count": 3000, "human_acc": 94.0666666667, "source": "2022下半年省考第二十季行测模考大赛(深圳卷)第75题", "difficulty": 3, "formulas": 0}, {"id": 22937, "material": "", "question": "①谣言止于智者,粉碎谣言靠的还是民众自身的审慎与理性。\n\n②流通的信息不仅要多,更要有质量。\n\n③一个信息自由流动的社会,会内生出强大的信息鉴别机制。\n\n④信息够不够有说服力,不是权力可以命令的。\n\n⑤消除谣言最好的方式并非杀鸡儆猴式的惩罚,而是保证提供充分信息。\n\n⑥一万个流言也抵不上一个权威的信息,虚假信息反令民众茫然失措。\n\n将以上六个句子重新排列,语序正确的是:", "type": "单选题", "options": "A. ③①②⑥⑤④\nB. ⑤⑥②④③①\nC. ①③⑤②⑥④\nD. ⑥④①③②⑤", "choice": "B", "keypoints": "尾句特征;确定捆绑", "most_wrong": "C", "human_count": 619344, "human_acc": 35.5682786949, "source": "2012年915联考《行测》题(新疆/福建/重庆/河南)第41题", "difficulty": 6, "formulas": 0}, {"id": 2452717, "material": "", "question": "①文化是每个民族每个国家的生命体现\n\n②文化的积淀是一个社会、一个民族最可宝贵的精神财富\n\n③“不同”“多元”是社会发展的必然,更是现代社会文明进步的标志\n\n④如若所有的民族、所有的国家都强求一律,很可能导致人类文明僵化衰落\n\n⑤中国道路的成功充分说明,各个国家必须根据自己的国情建设精神家园\n\n⑥中国有句古话说得好,“和实生物,同则不继”\n\n将以上6个句子重新排列,语序最恰当的是", "type": "单选题", "options": "A. ②⑤④⑥③①\nB. ⑥②③④⑤①\nC. ③⑥④①②⑤\nD. ④⑥①⑤②③", "choice": "C", "keypoints": "尾句特征;确定顺序", "most_wrong": "B", "human_count": 1057850, "human_acc": 46.9145909155, "source": "2020年江苏省公务员录用考试《行测》题(C类)(网友回忆版)第25题", "difficulty": 5, "formulas": 0}, {"id": 27403, "material": "", "question": "为下列句子排列顺序,使其意思连贯。正确的一项是:\n\n①面对身边诸多纠结,多一点智慧和勇气,保持一份平和心态,可助我们削弱“纠结”的纠缠\n\n②随着现代生活节奏的加快,生活压力的增大,“纠结”的事越来越多\n\n③如今,随着信息技术的快速发展,“纠结”一词率先在网络上爆红,不但使用率颇高,而且使用更加广泛灵活\n\n④纠结的本意就是“相互缠绕”,常作动词用。语出唐代诗人李白的《古意》一诗:“枝枝相纠结,叶叶竞飘扬。”", "type": "单选题", "options": "A. ③②④①\nB. ③④①②\nC. ②①④③\nD. ②④③①", "choice": "D", "keypoints": "尾句特征;确定顺序", "most_wrong": "A", "human_count": 417327, "human_acc": 39.5133791966, "source": "2012年河北省公务员录用考试《行测》题第35题", "difficulty": 6, "formulas": 0}], "categories": [["言语理解与表达", "语句表达", "语句排序题", "尾句特征"]]}, {"id": 2097108, "material": "2015年,全国规模以上纺织企业工业增加值同比增长$6.3\\%$,高于规模以上工业整体水平0.2个百分点,增速比上年同期回落0.7个百分点。其中,纺织业、服装服饰行业、化学纤维行业增加值同比分别增长$7.0\\%$、$4.4\\%$和$11.2\\%$。\n\n        2015年,纺织行业规模以上企业累计实现主营业务收入70713亿元,同比增长$5.0\\%$;实现利润总额3860亿元,同比增长$5.4\\%$;企业亏损面(亏损企业占所有企业比重)$11.4\\%$,比上年低0.1个百分点。\n\n        2015年,我国出口纺织品、服装2912亿美元,同比下降$4.8\\%$,按出口商品类型看,纺织品出口1153亿美元,同比下降$2.3\\%$;服装出口1759亿美元,同比下降$6.4\\%$。按出口对象看,对美国出口额同比增长$6.7\\%$,对欧盟出口额同比下降$9.3\\%$,对日本出口额同比下降$11.6\\%$,对东盟出口额同比下降$0.8\\%$。\n\n        2015年,我国纺织行业500万元以上项目固定资产投资完成额11913亿元,同比增长$15.0\\%$。其中东部地区固定资产投资完成额同比增长$15.3\\%$,中部地区固定资产投资完成额同比增长$13.1\\%$,西部地区固定资产投资完成额同比增长$19.2\\%$。行业新开工项目数呈现增速提升势头,新开工项目16149项,同比增长$18.3\\%$。", "question": "2014年,我国服装出口额在以下哪个范围之内?", "type": "单选题", "options": "A. 低于1800亿美元\nB. 1800~1900亿美元之间\nC. 1900~2000亿美元之间\nD. 高于2000亿美元", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "A", "human_count": 508976, "human_acc": 83.9538602999, "source": "2017年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 19, "history": [{"id": 2343374, "material": "", "question": "2019年2月11日新华社消息,2019年春节假期,全国旅游接待总人数4.15亿人次,同比增长$7.6\\%$,实现旅游收入5139亿元,同比增长$8.2\\%$;全国边检机关共查验出入境人员1253.3万人次,同比增长$10.99\\%$。2018年春节假期旅游收入多少亿元?", "type": "单选题", "options": "A. 4532亿元\nB. 4625亿元\nC. 4749亿元\nD. 4811亿元", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 10442, "human_acc": 82.5225052672, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第24题", "difficulty": 4, "formulas": 3}, {"id": 48509, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度国内生产总值约为多少亿元:", "type": "单选题", "options": "A. 183468\nB. 179707\nC. 192948\nD. 177648", "choice": "A", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 67259, "human_acc": 70.708752732, "source": "2009年湖南省公务员录用考试《行测》题第128题", "difficulty": 3, "formulas": 4}, {"id": 3239, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2006年前三季度的国内生产总值大约是多少亿元:", "type": "单选题", "options": "A. 192000\nB. 121977\nC. 149000\nD. 135150", "choice": "C", "keypoints": "基期计算;文字资料", "most_wrong": "B", "human_count": 12212, "human_acc": 85.2358336063, "source": "2008年上海市公务员录用考试《行测》题第11题", "difficulty": 5, "formulas": 0}, {"id": 10959, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国生产原油多少万吨:", "type": "单选题", "options": "A. 1203.34\nB. 1573.54\nC. 1582.13\nD. 1643.56", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "D", "human_count": 14769, "human_acc": 79.0913399689, "source": "2009年河北省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 6}, {"id": 10945, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "2008年4月,我国累计生产原煤多少万吨:", "type": "单选题", "options": "A. 73455.23\nB. 77509.19\nC. 79737.29\nD. 80765.41", "choice": "B", "keypoints": "基期计算;文字资料", "most_wrong": "C", "human_count": 14826, "human_acc": 85.019560232, "source": "2009年河北省公务员录用考试《行测》题第122题", "difficulty": 4, "formulas": 6}], "categories": [["资料分析", "基期与现期", "基期计算"], ["资料分析", "文字资料"]]}, {"id": 2034066, "material": "699万,这是教育部统计的2013年全国普通高校毕业生的人数,比2012年增加了19万,是2000年的6.5倍多,当时的毕业生总数为107万,由于就业形势严峻,这个夏天被称为“史上最难就业季”。\n\n        今年就业形势可用“一增两减”概括:人增,今年高校毕业生比2012年增加19万人;薪减,部分行业起薪下调,行政管理、文秘等专业,从2200元降到1800元,减少400元;岗减,据麦可思研究院2月份对近500家用人单位的统计,今年计划招聘岗位数同比降幅接近$15\\%$。以北京为例,2012年毕业生总数为22.3万人,用人单位对大学生的需求岗位为11.4万个;2013年毕业生总数增加了0.6万,而用人单位对大学生的需求岗位却减少了1.6万个。\n\n        截至2013年5月,全国部分地区高校毕业生签约率:上海为$44.4\\%$,广州为$50\\%$,江西为$53\\%$,北京为$33.6\\%$。\n\n        早在2010年的中国就业促进代表大会上,时任人社部就业促进司司长于法鸣就预计,“十二五”期间,我国平均每年需要解决2500万人就业,而如果经济增速保持在$8\\%$,每年能提供的岗位约为1200万个,存在较大供需缺口。\n\n        面对就业难的严峻形势,不少大学毕业生将目光瞄向了创业,大学毕业生创业问题也成了大家关注的热点。然而,根据国家有关部门统计,近几年,全国大学生创业成功率在$1\\%$左右,全国各地区也都在此水平左右,其中,广东$1\\%$左右,河北$0.3\\%$,最高的是浙江省,为$4\\%$,而全世界大学生的平均创业成功率是$10\\%$左右,美国大学生的创业成功率更是高达$30\\%$。\n\n        我国大学生创业成功率低有很多原因,但资金是第一大瓶颈,据有关调查结果显示,大学生创业资金来源中$93\\%$来自于家庭,$5\\%$来自于银行贷款,$1\\%$来自于风险投资,另有$1\\%$来自于政府投资。", "question": "根据有关调查结果显示,大学生创业资金来源中$93\\%$来自于:", "type": "单选题", "options": "A. 家庭\nB. 风险投资\nC. 政府投资\nD. 银行贷款", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 138346, "human_acc": 97.7722521793, "source": "2013年吉林省公务员录用考试《行测》题(乙级)第94题", "difficulty": 2, "formulas": 17, "history": [{"id": 4301, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "该资料所列鞋类中,共比较了几种鞋类?", "type": "单选题", "options": "A. 4\nB. 5\nC. 6\nD. 7", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "A", "human_count": 8046, "human_acc": 85.9557544121, "source": "2008年内蒙古自治区公务员录用考试《行测》题第130题", "difficulty": 5, "formulas": 4}, {"id": 13761, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国服务贸易总额是多少美元:", "type": "单选题", "options": "A. 43\nB. 2509\nC. 43亿\nD. 2509亿", "choice": "D", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 10801, "human_acc": 69.2898805666, "source": "2009年广西壮族自治区公务员录用考试《行测》题第121题", "difficulty": 3, "formulas": 4}, {"id": 4291, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "下列鞋类,农民人均年消费量最少的是:", "type": "单选题", "options": "A. 拖鞋\nB. 皮鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "C", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 8044, "human_acc": 83.2297364495, "source": "2008年内蒙古自治区公务员录用考试《行测》题第128题", "difficulty": 5, "formulas": 4}, {"id": 4187, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年中央财政社会保障支出为:", "type": "单选题", "options": "A. 478亿\nB. 257亿\nC. 349亿\nD. 412亿", "choice": "A", "keypoints": "直接找数;文字资料", "most_wrong": "B", "human_count": 9073, "human_acc": 94.8308167089, "source": "2008年内蒙古自治区公务员录用考试《行测》题第116题", "difficulty": 5, "formulas": 0}, {"id": 4297, "material": "1990年某市对六种鞋类的全年消费情况进行了调查,发现城乡居民购买倾向有一定差别,农民人均年消费量除旧式球鞋高于城镇居民,布鞋持平外,其他鞋类消费量均低于城镇居民。例如,农民每百人年均消费皮鞋17.6双,比城镇居民低$83\\%$,旅游鞋25.3双,比城镇居民低$53\\%$,雨鞋7.5双,比城镇居民低$66\\%$,拖鞋30.2双,比城镇居民低$80\\%$。", "question": "资料所列鞋类中,农民人均年消费量与城镇居民持平的是:", "type": "单选题", "options": "A. 拖鞋\nB. 布鞋\nC. 雨鞋\nD. 旅游鞋", "choice": "B", "keypoints": "直接找数;文字资料", "most_wrong": "D", "human_count": 8035, "human_acc": 93.6278780336, "source": "2008年内蒙古自治区公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}], "categories": [["资料分析", "简单计算", "直接找数"], ["资料分析", "文字资料"]]}, {"id": 27843, "material": "根据下面提供的信息完成各题。\n\n        国家统计局公布的《2011年城乡居民收入增长情况》称,通过对全国31个省(自治区、直辖市)7.4万户农村居民家庭和6.6万户城镇居民家庭进行抽样调查,2011年全国农村居民人均纯收入6977元,比上年增加1058元。剔除价格因素影响,实际增长$11.4\\%$,增速同比提高0.5个百分点。其中:人均工资性收入2963元,同比增长$21.9\\%$。\n\n        人均家庭经营第一产业纯收入2520元,增加289元,增长$12.9\\%$;人均家庭经营二三产业纯收入702元,增加101元,增长$16.7\\%$;人均转移性收入563元,增加110元,增长$24.4\\%$。\n\n        工资性收入对全年农村居民增收的贡献率达$50.3\\%$。工资性收入占农村居民纯收入的比重达$42.5\\%$,同比提高1.4个百分点。工资性收入快速增长主要是由于农民工工资水平上涨较多。人均农业纯收入1897元,增加173元,增长$10.0\\%$。收成好、价格高是农业收入保持较快增长的主要原因。2011年农村居民出售农产品增加的收入中,六成来自于价格上涨因素,四成来自于出售数量增加因素。", "question": "剔除价格因素影响,2010年全国农村居民人均纯收入同比增长速度是多少:", "type": "单选题", "options": "A. $10.9\\%$\nB. $11.9\\%$\nC. $12.1\\%$\nD. $17.9\\%$", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 156294, "human_acc": 82.965436933, "source": "2012年河北省公务员录用考试《行测》题第98题", "difficulty": 4, "formulas": 340, "history": [{"id": 2343453, "material": "", "question": "2018年,河北省经济运行总体平稳、稳中向好、稳中提质。前三季度,河北省生产总值25226.3亿元,同比增长$6.6\\%$。其中,第一产业增加值1941.5亿元,增长$3.5\\%$;第二产业增加值11308.2亿元,增长$3.5\\%$;第三产业增加值11976.6亿元,增长$10.3\\%$。2018年前三季度,河北省第三产业增加值超过工业增加值多少亿元?", "type": "单选题", "options": "A. 668.4亿元\nB. 697.5亿元\nC. 715.6亿元\nD. 734.7亿元", "choice": "A", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 9070, "human_acc": 69.558985667, "source": "河北省2019年度定向招录选调生考试《基本素质和能力测试》题第55题", "difficulty": 4, "formulas": 4}, {"id": 4189, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "参加基本养老保险的在职职工与离退休人员相差:", "type": "单选题", "options": "A. 3170万\nB. 2458万\nC. 7277万\nD. 6387万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "D", "human_count": 9004, "human_acc": 91.6370501999, "source": "2008年内蒙古自治区公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 0}, {"id": 4197, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "2000年底参加失业保险的与参加基本养老保险的相差:", "type": "单选题", "options": "A. 4300万\nB. 104.08万\nC. 6108万\nD. 3209万", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "C", "human_count": 8951, "human_acc": 82.527091945, "source": "2008年内蒙古自治区公务员录用考试《行测》题第120题", "difficulty": 5, "formulas": 0}, {"id": 48469, "material": "我国第五次人口普查显示我国人口年龄结构发生了较大变化。祖国大陆31个省、自治区、直辖市和现役军人的人口中,0—14岁的人口为28979万人,约占总人口的22.89%;15—64岁的人口为88793万人,约占总人口的70.15%;65岁及以上的人口为8811万人,约占总人口的6.96%。同1990年的第四次人口普查相比,0—14岁人口的比重下降了约4.80%,65岁及以上人口的比重上升了约1.39%。", "question": "第五次人口普查显示我国15岁及以上的人口占总人口的百分比大约是:", "type": "单选题", "options": "A. 70.15%\nB. 75.72%\nC. 76.11%\nD. 77.11%", "choice": "D", "keypoints": "简单加减计算;文字资料", "most_wrong": "A", "human_count": 67320, "human_acc": 80.7694592989, "source": "2009年湖南省公务员录用考试《行测》题第126题", "difficulty": 3, "formulas": 0}, {"id": 4333, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年大约有多少西方国家旅游者来中国旅游?", "type": "单选题", "options": "A. 140万\nB. 90万\nC. 70万\nD. 120万", "choice": "C", "keypoints": "简单加减计算;文字资料", "most_wrong": "B", "human_count": 6671, "human_acc": 94.378653875, "source": "2008年内蒙古自治区公务员录用考试《行测》题第131题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "简单计算", "简单加减计算"], ["资料分析", "文字资料"]]}, {"id": 2549266, "material": "根据第四次全国经济普查结果,现将我省部分新兴产业的主要数据公布如下:2018年末,全省从事战略性新兴产业生产的规模以上工业企业法人单位1571个,占规模以上工业企业法人单位的$23.8\\%$。其中,生物产业351个,占工业战略性新兴产业企业法人单位的$22.3\\%$;节能环保产业343个,占$21.8\\%$;新材料产业330个,占$21.0\\%$。\n\n        2018年末,全省共有规模以上高技术制造业企业法人单位597个,比2013年末增长$48.5\\%$;占规模以上制造业的比重为$10.8\\%$,比2013年提高0.3个百分点。\n\n        2018年,规模以上高技术制造业企业法人单位R&D经费支出81.26亿元,比2013年增长$39.3\\%$,占规模以上制造业的比重为$38.8\\%$;R&D经费与营业收入之比为$2.85\\%$,比规模以上制造业平均水平高1.7个百分点。\n\n        2018年,规模以上高技术制造业企业法人单位全年专利申请量2766件,其中发明专利申请1469件,分别比2013年增长$20.5\\%$和$30.9\\%$;发明专利申请所占比重为$53.1\\%$,比规模以上制造业平均水平高9.2个百分点。\n\n        2018年,开展R&D活动的规模以上工业企业法人单位1096个,比2013年增长$90.9\\%$,占全部规模以上工业企业法人单位的$16.4\\%$。\n\n        2018年,规模以上工业企业法人单位R&D经费支出216.56亿元,比2013年增长$54.5\\%$;R&D经费与营业收入之比为$0.86\\%$。\n\n        2018年,规模以上工业企业法人单位全年专利申请量10182件,其中发明专利申请4436件,均比2013年增长$40.3\\%$;发明专利申请所占比重为$43.6\\%$。", "question": "2018年全省规模以上制造业企业法人单位比2013年约增长:", "type": "单选题", "options": "A. $46.7\\%$\nB. $44.4\\%$\nC. $41.1\\%$\nD. $37.3\\%$", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 23766, "human_acc": 36.5059328452, "source": "2020年上半年省考第二十九季行测模考大赛(陕西卷)第86题", "difficulty": 7, "formulas": 352, "history": [{"id": 13777, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "我国服务贸易总额从1982年到2007年,大约增长了多少倍:", "type": "单选题", "options": "A. 56\nB. 57\nC. 58\nD. 59", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 10804, "human_acc": 42.3454276194, "source": "2009年广西壮族自治区公务员录用考试《行测》题第122题", "difficulty": 3, "formulas": 4}, {"id": 48511, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2007年前三季度三大产业增加值中,增长速度最快的是:", "type": "单选题", "options": "A. 第一产业\nB. 第二产业\nC. 第三产业\nD. 无法确定", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 67399, "human_acc": 66.0054303476, "source": "2009年湖南省公务员录用考试《行测》题第129题", "difficulty": 5, "formulas": 4}, {"id": 4351, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1985年与1981年相比,海外来中国大陆访问者人数增加了多少?", "type": "单选题", "options": "A. 12.8%\nB. 128%\nC. 56%\nD. 228%", "choice": "B", "keypoints": "文字资料;一般增长率", "most_wrong": "C", "human_count": 6586, "human_acc": 73.2159125418, "source": "2008年内蒙古自治区公务员录用考试《行测》题第135题", "difficulty": 5, "formulas": 0}, {"id": 5692303, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年来,j国普通家庭的税费支出变化,正确的说法是________。", "type": "单选题", "options": "A. 2013年是50年前的1832%\nB. 2013年是50年前的1732%\nC. 2013年比50年前增加了1832%\nD. 2013年比50年前增加了1732%", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 104, "human_acc": 68.2692307692, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第43题", "difficulty": 4, "formulas": 0}, {"id": 7389, "material": "请根据下列文字资料,完成以下各题:\n\n        2005年我国对外贸易出口总额达到7620亿美元,占全球贸易出口总额的比重由2001年的4.3%提高到2005年的7.3%。2005年,我国对外贸易进出口总额为14221亿美元,居世界第三位,占全球贸易进出口总额的6.7%。2005年我国吸引外国直接投资额由2001年的469亿美元增加到603亿美元,居世界第三位。\n\n        近年来,我国外汇储备持续大幅增长,2001年我国外汇储备2122亿美元,2005年比2001年增长了2.9倍,居世界第二位,为我国经济持续、稳定发展奠定了重要基础。", "question": "2005年我国吸引外资直接投资较2001年增长的百分比是:", "type": "单选题", "options": "A. 128.57\nB. 228.57\nC. 28.57\nD. 70.31", "choice": "C", "keypoints": "文字资料;一般增长率", "most_wrong": "A", "human_count": 17029, "human_acc": 85.7360972459, "source": "2008年河南省公务员录用考试《行测》题第123题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "增长率", "一般增长率"]]}, {"id": 2187799, "material": "根据以下资料,回答以下问题。\n\n        2017年第一季度,某省农林牧渔业增加值361.78亿元,比上年同期增长$5.9\\%$,高于上年同期0.2个百分点。具体情况如下:\n\n        该省种植业增加值119.21亿元,比上年同期增长$8.2\\%$。其中蔬菜种植面积358.80万亩,比上年同期增加18.23万亩,蔬菜产量471.42万吨,增长$7.5\\%$;茶叶种植面积679.53万亩,比上年同期增加19.79万亩,茶叶产量2.30万吨,增长$19.4\\%$。\n\n        该省林业增加值34.84亿元,比上年同期增长$8.3\\%$。\n\n        该省畜牧业增加值176.64亿元,比上年同期增长$4.2\\%$,增速比上年同期加快2.1个百分点。其中生猪存栏增速由上年同期的下降$9.8\\%$转为增长$3.1\\%$,出栏增速由上年同期的下降$3.2\\%$转为增长$3.3\\%$;猪牛羊禽肉产量67.80万吨,比上年同期增长$3.1\\%$;禽蛋产量5.33万吨,增长$1.0\\%$;牛奶产量1.40万吨,增长$6.1\\%$。\n\n        该省渔业增加值9.22亿元,比上年同期增长$4.5\\%$。全省水产品产量7.68万吨,比上年同期增长$4.7\\%$,其中,养殖水产品产量7.3万吨,增长$4.7\\%$。\n\n        该省农林牧渔服务业增加值21.87亿元,比上年同期增长$3.8\\%$。", "question": "2017年第一季度,该省占农林牧渔业增加值比重超过三成的包括:", "type": "单选题", "options": "A. 种植业、渔业\nB. 林业、畜牧业\nC. 种植业、畜牧业\nD. 农林牧渔服务业、林业", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 1016085, "human_acc": 90.9859903453, "source": "2018年421联考《行测》题(天津卷)(网友回忆版)第113题", "difficulty": 4, "formulas": 17, "history": [{"id": 48513, "material": "2008年前三季度国内生产总值201631亿元,按可比价格计算,同比增长$9.9\\%$,比上年同期回落2.3个百分点。其中,第一产业增加值21800亿元,增长$4.5\\%$,加快0.2个百分点;第二产业增加值101117亿元,增长$10.5\\%$,回落3.0个百分点;第三产业增加值78714亿元,增长$10.3\\%$,回落2.4个百分点。", "question": "2008年前三季度第三产业增加值大约占国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 50%\nD. 12.7%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 66612, "human_acc": 80.3128565424, "source": "2009年湖南省公务员录用考试《行测》题第130题", "difficulty": 3, "formulas": 4}, {"id": 13791, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "2007年我国对外贸易总额约是多少亿美元:", "type": "单选题", "options": "A. 0.24 万\nB. 0.25 万\nC. 2.4 万\nD. 2.5 万", "choice": "C", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 10757, "human_acc": 42.0935204983, "source": "2009年广西壮族自治区公务员录用考试《行测》题第123题", "difficulty": 3, "formulas": 4}, {"id": 4193, "material": "2000年,中国财政大幅度增加社会保障支出,仅中央财政就安排养老、失业、下岗职工基本生活保障和城镇居民最低生活保障等社会保障支出478亿元,比1999年增长86%。到2000年底,全国有10408万职工参加失业保险,日平均领取失业保险金人数为188万人;有10447万职工和3170万离退休人员参加了基本养老保险;有4300万职工参加了基本医疗保险。", "question": "如果参加失业保险的有10%的人失业,那么失业人数有多少:", "type": "单选题", "options": "A. 188万\nB. 124.9万\nC. 15.6万\nD. 1040.8万", "choice": "D", "keypoints": "现期比重;文字资料", "most_wrong": "B", "human_count": 8953, "human_acc": 93.2313191109, "source": "2008年内蒙古自治区公务员录用考试《行测》题第119题", "difficulty": 5, "formulas": 0}, {"id": 3247, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "2007年前三季度,第三产业的增加值约占前三季度国内生产总值的:", "type": "单选题", "options": "A. 11%\nB. 39%\nC. 45%\nD. 50%", "choice": "B", "keypoints": "现期比重;文字资料", "most_wrong": "C", "human_count": 12114, "human_acc": 80.9311540367, "source": "2008年上海市公务员录用考试《行测》题第12题", "difficulty": 5, "formulas": 0}, {"id": 5692302, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "50年前,j国普通家庭用在衣、食、住上面的花销为________元。", "type": "单选题", "options": "A. 2825\nB. 5000\nC. 1675\nD. 2793", "choice": "A", "keypoints": "现期比重;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 95.2380952381, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第42题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "比重问题", "现期比重"], ["资料分析", "文字资料"]]}, {"id": 5550441, "material": "2021年,全国发电量85342.5亿千瓦时,同比增长9.7%,较上年提高6个百分点。2021年,全国全口径非化石能源发电量2.9万亿千瓦时,同比增长12.0%,占全口径总发电量的比重为34.6%,同比提高0.7个百分点。风电和太阳能发电对全国电力供应的贡献不断提升。全口径煤电发电量5.03万亿千瓦时,同比增长8.6%。\n\n        截至2021年底,全国全口径火电装机容量13.0亿千瓦,同比增长4.1%。其中,煤电11.1亿千瓦,同比增长2.8%,占总发电装机容量的比重为46.7%,同比降低2.3个百分点。2021年全国全口径非化石能源装机容量达11.2亿千瓦,同比增长13.4%,占总发电装机容量的比重为47%,首次超过煤电装机规模。水电、风电、太阳能发电装机容量均突破3亿千瓦。其中,水电装机容量3.9亿千瓦(常规水电3.5亿千瓦,抽水蓄能3639万千瓦);风电装机容量3.3亿千瓦(陆上3.0亿千瓦,海上2639万千瓦);太阳能发电装机容量3.1亿千瓦(集中式2.0亿千瓦,分布式1.1亿千瓦,光热57万千瓦)。风电并网装机容量已连续12年稳居全球第一,太阳能发电并网装机容量连续7年稳居全球第一,海上风电装机容量跃居世界第一。\n\n        全国供电标准煤耗持续下降。根据国家能源局数据,2021年全国供电标准煤耗302.5克/千瓦时,同比下降2.4克/千瓦时,较2012年下降了22.5克/千瓦时。\n\n        2021年,全国电源基本建设投资完成5530亿元,同比增长4.5%。其中,水电投资988亿元,同比减少7.4%;火电投资672亿元,同比增长18.3%;核电投资538亿元,同比增长42%,扭转“十三五”期间投资量一直收缩的局面。", "question": "2021年全国发电量约比2019年增长多少亿千瓦时?", "type": "单选题", "options": "A. 2775\nB. 7546\nC. 10322\nD. 12035", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 38158, "human_acc": 64.1647885109, "source": "2023上半年省考第十三季行测模考大赛(四川卷)第96题", "difficulty": 5, "formulas": 0, "history": [{"id": 13813, "material": "对外开放30年,我国服务贸易取得长足发展,服务贸易总额由1982年的43亿美元增加到2007年的2509亿美元。2007年,服务贸易总额占我国全部对外贸易总额的比重从1982年的$9.4\\%$上升到$10.3\\%$,占世界服务贸易的比重从$0.6\\%$升至$4\\%$,世界排名仅次于美国、英国、德国和日本,居第五位,成为世界贸易的重要国家。", "question": "从1982年到2007年,世界服务贸易的总额大约增加了多少亿美元:", "type": "单选题", "options": "A. 0.56 万\nB. 0.46 万\nC. 5.6 万\nD. 4.6 万", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "A", "human_count": 10453, "human_acc": 77.4610159763, "source": "2009年广西壮族自治区公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 4}, {"id": 4565356, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,全国固定资产投资(不含农户)比2019年1-4月份增长约:", "type": "单选题", "options": "A. 23967亿元\nB. 23867亿元\nC. 11504亿元\nD. 10652亿元", "choice": "D", "keypoints": "增长量计算;文字资料", "most_wrong": "C", "human_count": 333628, "human_acc": 53.0153344444, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第92题", "difficulty": 6, "formulas": 0}, {"id": 50769, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年水稻播种面积比2011年大约少多少万亩?", "type": "单选题", "options": "A. 2.21\nB. 2.33\nC. 2.72\nD. 2.88", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 276040, "human_acc": 60.1485291987, "source": "2013年广东省公务员录用考试《行测》题(一)第89题", "difficulty": 5, "formulas": 0}, {"id": 17651, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2007黑龙江省实现邮政业务总量比上年增长约多少亿元:", "type": "单选题", "options": "A. 2.61\nB. 2.68\nC. 112.47\nD. 102.47", "choice": "A", "keypoints": "增长量计算;文字资料", "most_wrong": "B", "human_count": 12080, "human_acc": 30.3228476821, "source": "2009年四川省公务员录用考试《行测》题(上半年)第87题", "difficulty": 4, "formulas": 0}, {"id": 5151150, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年8月份,全国货物进出口总额比上年同期约增长多少亿元?", "type": "单选题", "options": "A. 4899\nB. 4576\nC. 5451\nD. 5716", "choice": "C", "keypoints": "增长量计算;文字资料", "most_wrong": "D", "human_count": 116156, "human_acc": 77.1023451221, "source": "2022下半年省考第四季行测模考大赛(上海卷)第41题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长量", "增长量计算"], ["资料分析", "文字资料"]]}, {"id": 2049600, "material": "2016年4月份我国全社会用电量4569亿千瓦时,同比增长$1.9\\%$。其中,第一产业用电量86亿千瓦时,同比增长$12.5\\%$;第二产业用电量3316亿千瓦时,同比增长$0.6\\%$;第三产业用电量569亿千瓦时,同比增长$5.8\\%$;城乡居民生活用电量598亿千瓦时,同比增长$4.1\\%$。\n\n\n        1~4月份,我国全社会用电量18093亿千瓦时,同比增长$2.9\\%$。从不同产业看,第一产业用电量270亿千瓦时,同比增长$9.1\\%$;第二产业用电量12595亿千瓦时,同比增长$0.2\\%$;第三产业用电量2516亿千瓦时,同比增长$10.0\\%$,增速比上年同期提高2.1个百分点;城乡居民生活用电量2711亿千瓦时,同比增长$9.5\\%$,增速比上年同期提高5.4个百分点。\n\n        从不同省份看,1~4月份全社会用电量增速前十位的省份依次为:西藏($17.1\\%$)、新疆($12.5\\%$)、江西($8.3\\%$)、陕西($7.4\\%$)、安徽($7.1\\%$)、北京($6.6\\%$)、浙江($5.7\\%$)、广东($4.8\\%$)、海南($4.8\\%$)、湖北($4.7\\%$)。", "question": "2016年第一产业第一季度月均用电量约为多少亿千瓦时?", "type": "单选题", "options": "A. 50\nB. 60\nC. 90\nD. 180", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 706543, "human_acc": 88.2638423988, "source": "2017年422联考《行测》题(山东卷)第117题", "difficulty": 4, "formulas": 20, "history": [{"id": 4345, "material": "自1981年至1985年,境外来中国大陆访问的人数增加得很快。例如,自1981年至1985年,各年度入境访问和旅游的总人数依次为780万、790万、950万、1290万、1780万。其中港澳台居民来访人数各年度依次为710万、720万、860万、1170万、1640万。其他来访者主要是西方国家的旅游者。境外来中国大陆访问者的增加带来了外汇收入的增加。自1981年至1985年,各年旅游依次为7.9亿美元、8亿美元、9亿美元、11亿美元、13亿美元。", "question": "1982年每个境外来中国大陆的访问者带来的旅游外汇收入平均约为多少美元?", "type": "单选题", "options": "A. 11000\nB. 990\nC. 101\nD. 90", "choice": "C", "keypoints": "现期平均数;文字资料", "most_wrong": "A", "human_count": 6645, "human_acc": 69.5861550038, "source": "2008年内蒙古自治区公务员录用考试《行测》题第133题", "difficulty": 5, "formulas": 0}, {"id": 52297, "material": "2011年末我国大陆总人口为134735万人,比上年末增加644万人,其中城镇人口为69079万人,占总人口比重首次超过50%,达到51.3%。全年出生人口1604万人,出生率为11.93‰,自然增长率为4.79‰。\n\n        2011年末我国大陆共有医疗卫生机构953432个,其中医院21638个,乡镇卫生院37374个,社区卫生服务中心(站)32812个,诊所(卫生所、医务室)177754个,村卫生室659596个。卫生技术人员620万人,其中执业医师和执业助理医师251万人,注册护士224万人。医疗卫生机构床位515万张,其中医院368万张,乡镇卫生院103万张。", "question": "2011年,我国大陆平均约多少人便拥有一位执业医师或者执业助理医师?", "type": "单选题", "options": "A. 400\nB. 500\nC. 600\nD. 1000", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "C", "human_count": 154105, "human_acc": 83.618961098, "source": "2012年广州市公务员录用考试《行测》题第87题", "difficulty": 5, "formulas": 0}, {"id": 1362931, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年我国平均每月出口苹果数量为多少吨:", "type": "单选题", "options": "A. 82888.7\nB. 87997.3\nC. 98734.8\nD. 117478.4", "choice": "A", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 299156, "human_acc": 93.8075786546, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第98题", "difficulty": 3, "formulas": 1}, {"id": 2136480, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2014年,我国粮食单位种植面积的产量约为(    )$吨/公顷$。", "type": "单选题", "options": "A. 3.9\nB. 4.4\nC. 4.9\nD. 5.4", "choice": "D", "keypoints": "现期平均数;文字资料", "most_wrong": "B", "human_count": 592342, "human_acc": 93.0805176739, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第107题", "difficulty": 3, "formulas": 12}, {"id": 163695, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "根据中央和地方预算草案的安排,2013年全国公共财政预计收入126630亿元,问2013年3~12月平均每月要完成约多少亿元的公共财政收入:", "type": "单选题", "options": "A. 8684\nB. 10420\nC. 10553\nD. 12663", "choice": "B", "keypoints": "现期平均数;文字资料", "most_wrong": "D", "human_count": 201082, "human_acc": 87.146039924, "source": "2013年四川公务员录用考试《行测》题(下半年)第104题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "现期平均数"], ["资料分析", "文字资料"]]}, {"id": 3542100, "material": "2020年12月份,全国生产原煤3.5亿吨,同比增长$3.2\\%$,增速比上月加快1.7个百分点;日产1135万吨,环比减少23万吨。2020年,全国生产原煤38.4亿吨,比上年增长$0.9\\%$。\n\n        12月份,全国进口煤炭3908万吨,环比增加2732万吨。2020年,全国进口煤炭3.04亿吨,比上年增长$1.5\\%$。\n\n        12月份,全国生产原油1627万吨,同比增长$0.9\\%$,增速比上月回落0.3个百分点;日产52.5万吨,环比减少0.7万吨。加工原油6000万吨,同比增长$2.1\\%$,比上月回落1.1个百分点。2020年,全国生产原油1.95亿吨,比上年增长$1.6\\%$;加工原油6.7亿吨,增长$3.0\\%$。\n\n        12月份,全国进口原油3847万吨,环比减少689万吨,同比下降$15.4\\%$,降幅比上月扩大14.6个百分点;2020年,全国进口原油5.4亿吨,比上年增长$7.3\\%$。12月31日,布伦特原油现货离岸价格为51.22美元/桶,比11月30日的46.84美元/桶上涨$9.4\\%$。\n\n        12月份,全国生产天然气187亿立方米,同比增长$13.7\\%$,增速比上月加快1.9个百分点;日产6.0亿立方米,环比增加0.4亿立方米。2020年,全国生产天然气1888亿立方米,比上年增长$9.8\\%$,比上年扩大0.4个百分点,连续四年增产超过100亿立方米。\n\n        12月份,全国进口天然气1123万吨,同比增长$18.0\\%$,上月为下降$2.4\\%$。2020年,全国进口天然气1.02亿吨,比上年增长$5.3\\%$。", "question": "2020年全国天然气产量比2018年增长了约:", "type": "单选题", "options": "A. $19.2\\%$\nB. $20.1\\%$\nC. $21.0\\%$\nD. $22.2\\%$", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "A", "human_count": 55028, "human_acc": 77.758595624, "source": "2021下半年省考第三季行测模考大赛(陕西卷)第119题", "difficulty": 4, "formulas": 350, "history": [{"id": 4565357, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2020年1-4月份,全国固定资产投资(不含农户)同比增长约为:", "type": "单选题", "options": "A. -10%\nB. 10%\nC. -15%\nD. 15%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 331247, "human_acc": 62.3960367943, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第93题", "difficulty": 5, "formulas": 0}, {"id": 4492433, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,全国房地产开发投资比上年同期增长了约:", "type": "单选题", "options": "A. -4.0%\nB. 4.0%\nC. -3.3%\nD. 3.4%", "choice": "C", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 245926, "human_acc": 60.5438221254, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第116题", "difficulty": 6, "formulas": 0}, {"id": 4933275, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "与2018年相比,2019年S省建筑业增加值约增长了:", "type": "单选题", "options": "A. 7.2%\nB. 8.0%\nC. 8.5%\nD. 19.3%", "choice": "B", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 299975, "human_acc": 65.7551462622, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第93题", "difficulty": 6, "formulas": 0}, {"id": 5198480, "material": "改革开放以来,S市作为中国第一个经济特区,凭借改革精神、政策红利以及地缘优势迅速发展成为国内最发达地区之一。2018-2020年S市实现生产总值分别为24221.98亿元、26927.09亿元和27670.24亿元,同比分别增长7.6%、6.7%和3.1%。分产业来看,2020年S市第一产业增加值25.79亿元,同比下降3.1%;第二产业增加值10454.01亿元,同比增长1.9%;第三产业增加值17190.44亿元,同比增长3.9%。第一、二、三产业增加值比例为0.1:37.8:62.1。\n\n        2020年全市现代服务业增加值同比增长6.4%,现代服务业增加值占第三产业增加值比重为76.1%,其中金融业增加值4189.63亿元,同比增长9.1%,信息传输、软件和信息技术服务业增加值2883.49亿元,同比增长11.3%,是拉动现代服务业增长的主要力量。\n\n        2020年全市货物贸易进出口总额30502.5亿元,同比增长2.4%,高于2019年增速3.0个百分点。其中,出口总额16972.7亿元,同比增长1.5%。", "question": "2020年全市货物贸易进出口总额比2018年约增长:", "type": "单选题", "options": "A. 1.79%\nB. 2.23%\nC. 3.01%\nD. 7.90%", "choice": "A", "keypoints": "间隔增长率;文字资料", "most_wrong": "B", "human_count": 153985, "human_acc": 82.3346429847, "source": "2022下半年省考第六季行测模考大赛(浙江C卷)第113题", "difficulty": 4, "formulas": 0}, {"id": 2028352, "material": "2015年我国钟表全行业实现工业总产值约675亿元,同比增长$3.2\\%$,增速比上年同期提高1.7个百分点。\n\n        全行业全年生产手表10.7亿只,同比增长$3.9\\%$,完成产值约417亿元,同比增长$4.3\\%$,增速提高1.9个百分点;生产时钟(含钟心)5.2亿只,同比下降$3.7\\%$,完成产值162亿元,同比下降$4.7\\%$,降幅扩大1.3个百分点;钟表零配件、定时器及其它计时仪器产值96亿元,同比增长$14.3\\%$,增速基本保持上年水平。\n\n        2015年我国钟表行业规模以上工业企业主营业务收入365.8亿元,同比增长$8.7\\%$;实现利润23.4亿元,与上年相比下降$1.5\\%$,而2015年轻工行业主营业务利润率(利润/主营业务收入)的平均水平为$7.57\\%$。\n\n        2015年我国钟表行业海关进出口总额为92.5亿美元,同比增长$4\\%$,完成出口总额为57.7亿美元,同比增长$8.3\\%$,进口额34.8亿美元。出口总额中加工贸易额占$47\\%$,较上年缩小2个百分点。", "question": "2015年我国钟表全行业生产时钟(含钟心)的产值与2013年相比约:", "type": "单选题", "options": "A. 上升了$11\\%$\nB. 下降了$11\\%$\nC. 上升了$8\\%$\nD. 下降了$8\\%$", "choice": "D", "keypoints": "间隔增长率;文字资料", "most_wrong": "C", "human_count": 2191826, "human_acc": 71.5692304042, "source": "2017年国家公务员录用考试《行测》题(地市级)第121题", "difficulty": 5, "formulas": 345}], "categories": [["资料分析", "增长率", "间隔增长率"], ["资料分析", "文字资料"]]}, {"id": 5751561, "material": "2022年一季度,H省地区生产总值10804.66亿元,按不变价格计算,比上年同期增长6.7%。分产业看,第一产业增加值724.54亿元,增长5.8%;第二产业增加值4669.97亿元,增长7.9%;第三产业增加值5410.15亿元,增长5.9%。三个产业增加值之比约为6.7:43.2:50.1。\n\n        2022年一季度,H省农林牧渔业增加值758.55亿元,同比增长6.1%。经济作物生产保持平稳。蔬菜产量同比增长4.0%,较上年同期增长36.12万吨;水果产量同比增长22.1%,较上年同期增长4.16万吨。畜牧水产供应稳定。生猪出栏1195.93万头,增长12.2%;羊出栏149.16万只,增长6.5%;水产品产量138.21万吨,增长4.3%。\n\n        2022年一季度,H省城镇新增就业人员20.79万人,完成全年目标任务的29.7%。一季度,H省全体居民人均可支配收入9448元,同比增长7.4%。其中城镇居民人均可支配收入12296元,增长6.2%;农村居民人均可支配收入5680元,增长9.1%。\n\n        2022年一季度,H省进出口总额1346.2亿元。其中,出口879.3亿元,增长26.3%;进口466.9亿元,下降4.2%。3月份,进出口总额552.1亿元,同比增长40.5%。其中,出口363.1亿元,增长58.6%;进口189.0亿元,增长15.2%。一季度,全省实际使用外资38.74亿美元,同比增长25.4%。", "question": "2021年一季度H省地区生产总值产业类型中,第一、第二、第三产业增加值之比约为:", "type": "单选题", "options": "A. 6.8:42.7:50.5\nB. 6.7:43.2:50.1\nC. 6.3:43.8:49.9\nD. 5.5:44.1:50.4", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 89076, "human_acc": 48.4810723427, "source": "2023下半年省考第二十一季行测模考大赛(陕西卷)第116题", "difficulty": 6, "formulas": 0, "history": [{"id": 13235, "material": "据2006年4月6日《新闻晚报》报道,3月份人民币汇率双向波动加剧,上周人民币汇率上下波动更加明显,到上周五,一下升值100点,创下汇改以来8.0170新高。而本周人民币兑美元稍有下跌后又开始步步走高。周一,1美元兑人民币中间价8.0210元,周二,1美元兑人民币中间价8.0194元。而昨日(4月5日星期三)人民币兑美元汇率收盘价一举突破8.01关口,达到8.0073:1,首度升至8.0000平台,再创汇改以来新高。\n\n        根据中国外汇交易中心公布,2006年4月5日银行间外汇市场美元等交易货币兑人民币汇率的中间价为1美元兑人民币8.0116元,1欧元兑人民币9.8133元,100日元兑人民币为6.8242元,1港元兑人民币1.03252元。\n\n        数据显示,2005年中国的外汇储备猛增了2100亿美元,总额达到8120亿美元。美国的对华贸易逆差激起了美国人对巨额贸易赤字的焦虑感,因此一直要求人民币升值,希望以此来缓解巨大的贸易逆差。", "question": "按4月5日人民币兑外币汇率的中间价,1欧元可换多少美元:", "type": "单选题", "options": "A. 78.6202\nB. 1.2249\nC. 1.1429\nD. 0.8164", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "C", "human_count": 20919, "human_acc": 78.5219178737, "source": "2008年安徽省公务员录用考试《行测》题第139题", "difficulty": 5, "formulas": 0}, {"id": 587823, "material": "2013年12月26日,中国社科院和社会科学文献出版社共同发布的《社会蓝皮书》显示,2012年,我国城镇居民人均可支配收入达到24565元,是1978年的11.5倍,年均增长7.4%。农村人均纯收入达到7917元,是1978年的11.8倍,年均增长7.5%。二者均为剔除价格因素影响后的数据。2013年上半年,我国城镇居民人均可支配收入达到13649.1元;农村居民人均纯收入达到4817.5元。\n\n        从各地城镇居民人均可支配收入、农村居民人均纯收入看,2012年,城镇居民和农村居民收入最高的均为上海,分别达到40188元和17804元。北京排名第二,城镇居民可支配收入为36496元,农村人均纯收入16476元。\n\n从收入高低对比来看,2012年,我国城乡居民高收入家庭(最高20%收入家庭)人均年收入为43797.5元;低收入家庭人均年收入只有1587.7元。\n\n        根据城乡居民对2014年物价水平变化的调整数据显示,认为物价水平会有大幅度上涨的人数比重为35.5%;认为物价会平稳上涨的人数比重为48.3%;其他观点的人数比重为16.2%。", "question": "资料数据表明,2012年北京城乡居民收入比是:", "type": "单选题", "options": "A. 1:2.21\nB. 3.21:1\nC. 2.21:1\nD. 1:3.21", "choice": "C", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 192965, "human_acc": 91.8658824139, "source": "2014年吉林省公务员录用考试《行测》题(甲级)第97题", "difficulty": 5, "formulas": 0}, {"id": 20289, "material": "根据下面资料完成各题。\n\n        2009年末,我国就业人员总量达到77995万人,比2005年末增加了2170万人。随着城市化和工业化进程的不断推进,城镇吸纳就业的能力增强,促进了乡村富余劳动力向城镇的转移。2005年到2009年,城镇就业人员总量由27331万人增加到31120万人;城镇就业人员占全国就业人员的比重从36.0%上升到39.9%,乡村就业人员总量由48494万人减少到46875万人。\n\n        我国第一产业就业人员2005年为33970万人,2009年减少到29708万人;第二产业就业人员2005年为18084万人,2009年增加到21684万人;第三产业就业人员2005年为23771万人,2009年增加到26603万人。\n\n        2009年末,城镇私营个体就业人员为9789万人,比2005年增加了3553万人。“十一五”时期的前四年,城镇非公有制经济共吸纳就业4947万人,年均增加超过1200万人。非公有制经济的发展,成为缓解城镇就业压力,吸纳农村富余劳动力的重要途径。", "question": "2009年我国一、二、三产业就业人员的结构比例为:", "type": "单选题", "options": "A. 38.1:27.8:34.1\nB. 39.6:27.2:33.2\nC. 44.8:23.1:31.4\nD. 44.1:27.8:28.1", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 221088, "human_acc": 68.7911600811, "source": "2011年吉林省公务员录用考试《行测》题第92题", "difficulty": 5, "formulas": 0}, {"id": 4933269, "material": "2020年,S省全部工业增加值6733.92亿元,比上年增长5.3%。全年全省规模以上工业增加值同比增长5.7%。其中,采矿业增长8.0%,制造业增长4.2%,电力、热力、燃气及水生产和供应业下降1.0%。\n\n        全年全省规模以上工业企业实现营业收入20673.2亿元,同比下降1.7%。分门类看,采矿业7118.2亿元,下降6.1%;制造业11015.2亿元,增长1.2%;电力、热力、燃气及水生产和供应业2539.8亿元,下降1.2%。规模以上工业企业实现利润总额同比下降20%,下降了241亿元。\n\n        全年全省规模以上工业企业每百元营业收入中的成本为81.97元,营业收入利润率为4.66%;年末资产负债率为71.7%,比上年末下降0.3个百分点。\n\n        全年全省建筑业增加值952.53亿元,比上年增长6.6%,比2018年增长15.1%。年末资质以上建筑业企业3662家,比上年末增加370家;完成总产值5113.6亿元,同比增长9.9%;共签订合同额12031.0亿元,同比增长15.1%。", "question": "2020年,S省建筑业增加值与全省全部工业增加值的比值比上年约:", "type": "单选题", "options": "A. 提升了0.17个百分点\nB. 提升了0.36个百分点\nC. 下降了0.17个百分点\nD. 下降了0.36个百分点", "choice": "A", "keypoints": "比值计算;文字资料", "most_wrong": "B", "human_count": 301881, "human_acc": 83.5998290717, "source": "2022上半年省考第十七季行测模考大赛(广东乡镇卷)第91题", "difficulty": 4, "formulas": 0}, {"id": 5560615, "material": "2020年,H省生产总值实现36206.9亿元。其中,第一产业增加值3880.1亿元,同比增长3.2%;第二产业增加值13597.2亿元,同比增长4.8%;第三产业增加值18729.6亿元,同比增长3.3%。\n\n        全年粮食播种面积6389千公顷,比上年下降1.2%。粮食总产量3795.9万吨,增长1.5%。其中,夏粮产量1453.9万吨,下降1.5%;秋粮产量2342.0万吨,增长3.5%。棉花播种面积189.2千公顷,比上年下降7.2%;棉花总产量20.9万吨,下降8.3%。\n\n        全年批发和零售业增加值2887.9亿元,比上年下降0.4%;交通运输、仓储和邮政业增加值2890.6亿元,下降0.6%;住宿和餐饮业增加值341.8亿元,下降14.4%;金融业增加值2599.6亿元,增长6.2%;房地产业增加值2643.0亿元,增长6.6%;信息传输、软件和信息技术服务业增加值742.1亿元,增长16.8%。全年规模以上服务业企业营业收入4382.61亿元,比上年增长0.6%;营业利润218.51亿元,下降6.5%。物流业增加值2817.5亿元,增长3.5%,物流业增加值占GDP比重为7.8%。", "question": "2019年,H省第一、二、三产业增加值之比约为:", "type": "单选题", "options": "A. 9:41:50\nB. 11:37:52\nC. 15:38:47\nD. 19:34:47", "choice": "B", "keypoints": "比值计算;文字资料", "most_wrong": "A", "human_count": 32990, "human_acc": 72.024856017, "source": "2023下半年省考第一季行测模考大赛(陕西卷)第116题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "比值计算"], ["资料分析", "文字资料"]]}, {"id": 20881, "material": "2009年世界天然气贸易量达8768.5亿立方米,较2005年增长$7.7\\%$。其中管道天然气贸易量为6337.7亿立方米;液化天然气贸易量为2427.7亿立方米。\n\n        俄罗斯是世界最大的管道天然气出口国,占管道天然气总出口量的$27.8\\%$,出口量为1764.8亿立方米,较2008年增长$14.3\\%$;俄罗斯天然气全部出口到欧洲国家,主要有德国(315亿立方米)、意大利(208亿立方米)、土耳其(172.6亿立方米)等。加拿大是世界第二大管道天然气出口国,出口量达922.4亿立方米,较2008年下降$10.6\\%$,全部出口到美国。\n\n        美国、德国、意大利、法国、俄罗斯是世界五大管道天然气进口国,2009年进口量占世界总量的$50.0\\%$。美国是世界最大的管道天然气进口国,进口量达1044.1亿立方米,较2008年下降$10.9\\%$。\n\n        液化天然气主要出口国为卡塔尔、马来西亚、印度尼西亚等。日本为世界最大的液化天然气进口国,进口量达859亿立方米,其次为韩国、西班牙和法国,进口量分别占世界总量的$14.1\\%$、$11.1\\%$和$5.4\\%$。\n\n        2009年世界天然气价格普遍都有不同程度的下降。在亚洲,日本进口液化气的平均价为9.06美元/百万英热单位(MBtu),较2008年减少3.49美元/MBtu;美国天然气的进口价由上年的8.85美元/MBtu下降至3.89美元/MBtu。", "question": "韩国2009年液化天然气进口量大约是法国的多少倍:", "type": "单选题", "options": "A. 2.1\nB. 2.3\nC. 2.6\nD. 3", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 147831, "human_acc": 89.982479994, "source": "2012年北京市公务员录用考试《行测》题第133题", "difficulty": 4, "formulas": 9, "history": [{"id": 10941, "material": "一、根据以下资料,完成各题。\n\n        国家统计局公布的数据显示,截止到2009年4月,今年我国累计生产原煤82779.81万吨,比去年同期增长$6.8\\%$,本月生产原煤22979.98万吨,比去年同期增长$7.9\\%$;累计生产原油6174.63万吨,比去年同期增长$0.8\\%$,本月生产原油1559.38万吨,比去年同期增长$-0.9\\%$;累计生产钢材19698.06万吨,比去年同期增长$2.7\\%$,本月生产钢材5291.45万吨,比去年同期增长$2.6\\%$。", "question": "到2009年4月,今年我国累计生产原油是生产原煤的百分之几:", "type": "单选题", "options": "A. 6.58%\nB. 6.92%\nC. 7.46%\nD. 7.53%", "choice": "C", "keypoints": "现期倍数;文字资料", "most_wrong": "D", "human_count": 14913, "human_acc": 79.588278683, "source": "2009年河北省公务员录用考试《行测》题第121题", "difficulty": 4, "formulas": 6}, {"id": 6325, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "在我国,城市抚养一个婴儿的费用相当于农村抚养一个婴儿的:", "type": "单选题", "options": "A. 3倍左右\nB. 4倍左右\nC. 5倍左右\nD. 2倍左右", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 11082, "human_acc": 93.8909944053, "source": "2008年湖北省公务员录用考试《行测》题(A类)第116题", "difficulty": 5, "formulas": 7}, {"id": 6333, "material": "据某市统计,截止到2004年底,全市16岁以下的少年儿童总数是2272194人,其中,学龄前期儿童为739616人,占其总数的$32.55\\%$。另据有关资料显示,在我国目前抚养一个婴儿到16岁,农村平均需要1600元,城市平均需要6900元,全国平均2200元,2004年该市儿童消费主要体现在吃、穿、玩具等方面,不同年龄消费费用不同:在婴儿期内食品支出占总支出的$81.5\\%$,在幼儿期内占$81.2\\%$,在学龄前期占$77.9\\%$,在学龄期内占$71.4\\%$;在服装方面,学龄前儿童支出大体维持在总消费金额的$13\\%$左右,但进入学龄期后,占总体的$21.8\\%$。", "question": "该市学龄期儿童的服装消费金额所占比例比学龄前儿童高出约:", "type": "单选题", "options": "A. 3.8%\nB. 6.5%\nC. 40.4%\nD. 67.7%", "choice": "D", "keypoints": "现期倍数;文字资料", "most_wrong": "B", "human_count": 11015, "human_acc": 44.5120290513, "source": "2008年湖北省公务员录用考试《行测》题(A类)第120题", "difficulty": 5, "formulas": 7}, {"id": 14883, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2007年前三个季度,我国城镇居民人均可支配收入比农村居民人均现金收入高多少倍:", "type": "单选题", "options": "A. 3.12\nB. 2.12\nC. 1.12\nD. 4.12", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "A", "human_count": 9673, "human_acc": 53.116923395, "source": "2008年湖北省公务员录用考试《行测》题(B类)第122题", "difficulty": 5, "formulas": 0}, {"id": 4683456, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2016年前三季度,S省居民人均工资性收入的同比增量约为人均经营净收入的多少倍?", "type": "单选题", "options": "A. 1.5\nB. 2.0\nC. 2.5\nD. 3.0", "choice": "B", "keypoints": "现期倍数;文字资料", "most_wrong": "C", "human_count": 243425, "human_acc": 62.2409366335, "source": "2022上半年省考第三季行测模考大赛(四川卷)第96题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "倍数与比值相关", "现期倍数"], ["资料分析", "文字资料"]]}, {"id": 5284114, "material": "2019年上半年,我国国内原料黄金产量为180.68吨,与2018年同期相比减产9.60吨。其中,矿产金完成153.89吨,同比下降4.78%;有色副产金完成26.79吨,同比下降6.52%。进口原料产金54.27吨,同比下降11.22%,若加上这部分进口原料产金,全国共生产黄金234.95吨。\n\n        上半年,全国黄金实际消费量523.54吨,与2018年同期相比下降3.27%。其中,黄金首饰358.77吨,同比增长1.97%;金条110.51吨,同比下降17.29%;金币2.90吨,同比下降29.27%;工业及其他51.36吨,同比下降0.60%。国内黄金首饰消费继续稳中有升,金条、金币需求则明显下滑。\n\n        上半年,在全国矿产金整体下滑的趋势下,黄金行业各重点企业集团合计生产矿产金73.11吨,占全国矿产金产量(153.89吨)的比重达47.51%,较2018年同期提高了3.67个百分点。全国矿产金产量排名前五的省(区)为山东、河南、云南、内蒙古和甘肃,矿产金产量合计62.91吨,同比下降7.31%。其中,河南产量同比大幅下降41.34%,内蒙古产量较去年同期下降3.23%。\n\n        上半年,上海黄金交易所全部黄金品种累计成交量2.99万吨(双边),同比下降1.36%,成交额8.63万亿元,同比增长5.04%;上海期货交易所全部黄金品种累计成交量3.02万吨(双边),同比增长88.27%,成交额8.84万亿元,同比增长101.03%。\n\n        截至2019年6月底,中国人民银行公布的我国官方黄金储备为1926.55吨,上半年合计增加黄金储备74.03吨,并实现自2018年12月以来连续7个月增持。", "question": "根据上述资料,以下说法正确的是:", "type": "单选题", "options": "A. 2019年上半年,我国黄金总产量同比下降超过9%\nB. 2019年上半年,内蒙古矿产金产量占我国矿产金总产量的比重高于上年同期水平\nC. 截至2018年底,中国人民银行公布的我国官方黄金储备为1752.52吨\nD. 2018年上半年,我国矿产金产量排名前五的省(区)为山东、河南、云南、内蒙古和甘肃,其矿产金总产量超过62.91吨", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 195419, "human_acc": 45.8010735906, "source": "2022下半年省考第十季行测模考大赛(深圳卷)第95题", "difficulty": 6, "formulas": 0, "history": [{"id": 3255, "material": "初步核算,2007年前三季度国内生产总值166,043亿元,同比增长11.5%,比上年同期加快0.7个百分点。其中,一季度增长11.1%,二季度增长11.9%。分产业看:第一产业增加值18,207亿元,增长4.3%,回落0.6个百分点;第二产业增加值83,478亿元,增长13.5%,加快0.2个百分点;第三产业增加值64,358亿元,增长11.0%,加快1.5个百分点。", "question": "以下说法正确的是:", "type": "单选题", "options": "A. 2007年第三季度国内生产总值增长率为11.5%\nB. 2007年前三季度第一产业增加值的增长率高于2006年前三季度\nC. 2006年全年第一产业增加值的增长率为4.9%\nD. 2006年前三季度第三产业增加值的增长率为9.5%", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "C", "human_count": 12081, "human_acc": 38.589520735, "source": "2008年上海市公务员录用考试《行测》题第13题", "difficulty": 5, "formulas": 0}, {"id": 5692301, "material": "有关研究表明,2013年j国普通家庭平均收入为77381元,平均税费支出32369元,家庭在衣、食、住方面的花销占总收入的36.1%。50年前,j国普通家庭的平均收入约5000元,其中56.5%用在衣、食、住上面,而税费支出只占收入的33.5%。50年来,j国普通家庭在住房上的支出共增加了1375%,衣服和食物的支出分别增加了620%和546%。这些年来,j国的消费者价格指数增长了682%。", "question": "关于2013年j国普通家庭的税费支出,错误的说法是________。", "type": "单选题", "options": "A. 平均税费支出为32369元\nB. 家庭税费支出占收入的百分比为43.8%\nC. 家庭税费支出占收入的比重大于在衣、食、住方面的花销占收入的比重\nD. 家庭税费支出比家庭在衣、食、住方面的花销多4400元左右", "choice": "B", "keypoints": "综合分析;文字资料", "most_wrong": "D", "human_count": 105, "human_acc": 66.6666666667, "source": "2017年上海市行政执法类考试《行测》试题(网友回忆版)【精选】第41题", "difficulty": 4, "formulas": 0}, {"id": 17583, "material": "以下是2006年农村实用人才现状:从区域分布看,我国东部地区231.4万人、中部地区201.7万人、西部地区145.9万人。从年龄分布看,40岁以下的247.9万人。从学历看,中专以上的22.7万人。\n\n        农村实用人才中,生产能手占总数的$56.7\\%$,经营能人占$27.8\\%$,能工巧匠占$15.5\\%$。其中,农民高级技师1.5万人,农民技师7万人,农民助理技师6.5万人,农民技术员35.3万人。", "question": "上述材料中不能推出的是:", "type": "单选题", "options": "A. 2006年我国农村实用人才中,年龄在40岁以上的人占总人口的$57.2\\%$\nB. 2006年我国农村实用人才中,从区域分布看东部的人数最多\nC. 2006年我国农村实用人才中,中专以上学历的人不到$5\\%$\nD. 在我国农村实用人才中,能工巧匠指的是农民高级技术师、农民技师、农民助理、农民助理技师和农民技术员", "choice": "D", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 9930, "human_acc": 67.7341389728, "source": "2008年重庆市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 170}, {"id": 1808686, "material": "(二)根据以下材料,回答91-95题。\n\n        根据第六次全国人口普查数据,农村16岁及以上劳动年龄人口数为5.12亿,其中,农业劳动力数为2.94亿。\n\n        农村16岁及以上劳动年龄人口中,16-20岁年龄组人口比重为9.1%,21-30岁为17.4%,31-40岁为18.4%,41-50岁为20.4%,50岁以上为34.7%。\n\n        农村农业劳动力中,16-20岁年龄人口比重为3.4%,21-30岁为16.7%,31-40岁为19.2%,41-50岁为26.3%,50岁以上为34.4%。", "question": "农村16岁及以上劳动年龄人口中,下列说法正确的是:", "type": "单选题", "options": "A. 农村人口老龄化越来越严重\nB. 进城务工农民以40岁及以下人口为主\nC. 16-50岁人口中,分组年龄越大从事农业的人口比重越大\nD. 农业劳动力的老龄化程度远远大于农村非农就业者及外出农民工", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "A", "human_count": 144515, "human_acc": 77.8936442584, "source": "2014年广州市公务员录用考试《行测》题第95题", "difficulty": 5, "formulas": 0}, {"id": 50767, "material": "2012年,某地区农作物播种总面积达到1625.55万亩,同比增长4.6%。其中,粮食和蔬菜播种面积大幅增长,分别为459.40万亩、109.06万亩,同比增长32.7%和30.5%;棉花、油料和甜菜播种面积下降,分别为698.52万亩、103.42万亩、30.45万亩,同比下降17.3%、5.7%和18.2%。粮食作物中,小麦295.61万亩,同比增长67.7%;玉米93.77万亩,同比增长3.1%;大豆21.51万亩,同比增长76.6%;水稻32.66万亩,同比下降7.7%。蔬菜播种面积中,番茄65.48万亩,同比增长60.7%;辣椒21.27万亩,同比下降0.7%。\n\n(注:与上一年同一时期相比称为“同比”。)", "question": "2012年粮食和蔬菜播种总面积:", "type": "单选题", "options": "A. 超过600万亩\nB. 同比增长超过40%\nC. 约占该地区农作物总播种面积的35%\nD. 比棉花的播种面积少近200万亩", "choice": "C", "keypoints": "综合分析;文字资料", "most_wrong": "B", "human_count": 276454, "human_acc": 84.8484738872, "source": "2013年广东省公务员录用考试《行测》题(一)第88题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "综合分析"], ["资料分析", "文字资料"]]}, {"id": 3888210, "material": "2020年前三季度,全市地区生产总值与上年同期相比增长35.2亿元,同比增长3.1%。分产业看,第一产业增加值180.5亿元,增长3%;第二产业增加值391.9亿元,增长5.5%。\n\n        全市农林牧渔业总产值367.3亿元,同比增长3%,比上半年回升3.8个百分点。其中,农业产值264.8亿元,增长3.2%;林业产值6.9亿元,增长2.5%;牧业产值64.7亿元,增长2.4%;渔业产值2.3亿元,增长3.8%;农林牧渔业及辅助性活动产值28.6亿元,增长2.9%。\n\n        全市规模以上工业增加值同比增长5.1%,增速比上半年和1-8月份分别提升4.1个和1.4个百分点。9月当月,全市规模以上工业增加值同比增长15.2%,增速比8月提升1.2个百分点,比上年同期提升16.8个百分点。\n\n        全市服务业增加值同比增长1.7%,增速比上半年提升1个百分点,上拉GDP增速0.9个百分点。分行业看,批发零售业、金融业、房地产业、交通运输仓储邮政业恢复态势良好,分别增长7.8%、6.7%、10.3%和2.3%。\n\n        全市固定资产投资完成465.1亿元,同比增长10.7%,增速年内首次实现两位数增长,比上年同期提升6.6个百分点。其中,项目建设投资完成346.5亿元,同比增长11.4%。民间投资完成338.8亿元,同比增长12.8%,占比达72.8%。", "question": "2020年前三季度,全市地区生产总值约(    )亿元。", "type": "单选题", "options": "A. 987\nB. 1171\nC. 1403\nD. 1680", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 129866, "human_acc": 87.0451080344, "source": "2021下半年省考第十六季行测模考大赛(广东县级卷)第91题", "difficulty": 4, "formulas": 0, "history": [{"id": 50805, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "若保持同比增长不变,预计北京市2007年前5个月平均每月的社会消费品零售额:", "type": "单选题", "options": "A. 将接近255亿元\nB. 将接近280亿元\nC. 将接近300亿元\nD. 将突破300亿元", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 28417, "human_acc": 70.2572403843, "source": "2009年甘肃省公务员录用考试《行测》题第87题", "difficulty": 4, "formulas": 0}, {"id": 5535679, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "若按2021年前三季度国内农村居民人均每次旅游消费的同比增速推算,则2022年前三季度国内农村居民人均每次旅游消费约为多少元?", "type": "单选题", "options": "A. 488.66\nB. 704.66\nC. 715.99\nD. 1079.95", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 37089, "human_acc": 73.240044218, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 764169, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "如保持2013年6月的同比增量不变,到哪一年的6月,限额以上企业(单位)商品零售额将首次超过1.5万亿元:", "type": "单选题", "options": "A. 2017年\nB. 2018年\nC. 2019年\nD. 2016年", "choice": "C", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 356509, "human_acc": 49.2189537992, "source": "2014年黑龙江省公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 13}, {"id": 2262593, "material": "虽然受到国家对一些投资过热的重点行业实行严格控制的影响,但由于国家对西部农业、能源、交通、水利以及教育、卫生等社会事业的支持与投入继续加大,同时西部各省区市也加大了地方投资力度,西部地区2014年的固定资产投资继续保持较高的增长速度。全年完成固定资产投资(不含农村和城乡个体投资,下同)125980亿元,同比增长$17.5\\%$,增速同比回落5.5个百分点。\n\n        在西部各省区市中,固定资产投资总量最多的是四川省,共完成投资24692.08亿元,占西部投资总量的$19.6\\%$;其次是内蒙古,共完成投资17763.18亿元,占西部的$14.1\\%$;重庆完成投资15117.6亿元,占西部投资总量的$12.0\\%$,排在第三位。\n\n        除新疆、贵州和甘肃外,西部其他地区2014年固定资产投资增长速度都在$20\\%$以上,内蒙古、重庆的固定资产投资增幅超过$30\\%$,分别比上年增长$53.0\\%$和$41.3\\%$,分列西部投资增幅的前两位;广西和云南的固定资产增长速度均为$29.0\\%$,并列居于西部第三位。", "question": "假设按照现在的增长趋势,重庆2015年固定资产投资额约为(    )亿元。", "type": "单选题", "options": "A. 21361\nB. 19780\nC. 20990\nD. 22470", "choice": "A", "keypoints": "文字资料;现期计算", "most_wrong": "B", "human_count": 9812, "human_acc": 69.4863432532, "source": "2016年重庆市选调优秀大学生到基层工作考试《行测》题第93题", "difficulty": 4, "formulas": 9}, {"id": 5674544, "material": "2021年国内旅游人数比2020年有较大幅度的增长,2021年的国内旅游出游人次达到32.46亿人次;从国内旅游收入来看,2021年国内旅游收入为2.92万亿元,比2020年增长了31%,恢复到2019年51%的水平;从国内旅游人均消费来看,2021年国内旅游平均每人次消费比2020年增长了125元。2022年国内旅游市场和2021年相比有了小规模收缩,前三季度国内旅游人数为20.94亿人次,比2021年同期有所下降;前三季度国内旅游收入1.72万亿元,同比下降27.42%。\n\n        从旅游客源的市场来看,城镇仍然是我国旅游的主要客源市场,2021年城镇旅游者占国内旅游人数的72.15%,农村旅游者占27.85%。从区域来看,东部区域占国内旅游市场的比重超过一半,达到51.44%;西部区域占24.47%;中部区域占21.57%。\n\n        2021年末,全国共有旅行社42432家,同比增长1749家。根据旅行社填报系统数据显示,全年全国旅行社营业收入1857.16亿元,其中国内旅游营业收入1457.95亿元,出境旅游营业收入6.63亿元。", "question": "若2022年国内旅游收入的同比增量与2021年相同,则2022年第四季度国内旅游收入约为多少万亿元?", "type": "单选题", "options": "A. 2.55\nB. 1.89\nC. 1.34\nD. 0.68", "choice": "B", "keypoints": "文字资料;现期计算", "most_wrong": "C", "human_count": 80271, "human_acc": 66.552054914, "source": "2023下半年省考第十四季行测模考大赛(深圳卷)第93题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "文字资料"], ["资料分析", "基期与现期", "现期计算"]]}, {"id": 457991, "material": "2009年,某省国民经济平稳回升,民生状况不断改善,社会保持和谐稳定,农林牧渔业全面增长。农业增加值1883.4亿元,比上年增长$2.7\\%$;林业增加值71.3亿元,比上年增长$9.8\\%$;牧业增加值691.1亿元,比上年增长$5.2\\%$;渔业增加值459.8亿元,比上年增加$6.1\\%$;农林牧渔服务业增加值121.0亿元,比上年增长$10.1\\%$。主要农牧产品质优量增。小麦和玉米全部实现优质化,无公害农产品、绿色食品和有机食品基地面积分别达到800万亩、1160万亩和51万亩。畜牧产品产量稳定增长。\n\n        该省粮食连续七年实现增产,2009年总产量达到4316.3万吨,比上年增长$1.3\\%$,其中夏粮产量为2047.7万吨,比上年增长$0.6\\%$;秋粮产量为2268.6万吨,比上年增长$1.9\\%$。棉花产量92.1万吨,比上年减少$11.5\\%$。油料作物产量334.5万吨,比上年减少$1.8\\%$。蔬菜产量8937.2万吨,比上年增长$3.5\\%$,增速加快0.8个百分点。园林水果产量为1419.1万吨,比上年增长$1.7\\%$。", "question": "2008年,该省秋粮产量占当年粮食总产量的比重为:", "type": "单选题", "options": "A. $53.4\\%$\nB. $53.1\\%$\nC. $52.5\\%$\nD. $52.2\\%$", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 200608, "human_acc": 58.8221805711, "source": "2014年深圳市公务员录用考试《行测》题第90题", "difficulty": 5, "formulas": 346, "history": [{"id": 2144596, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "2014年7月,京津冀区域13个城市空气质量超标天数占当月总天数的比重约比全国74个城市高多少个百分点?", "type": "单选题", "options": "A. 51.4\nB. 37.9\nC. 31.9\nD. 19.5", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 393963, "human_acc": 67.8403809495, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第122题", "difficulty": 5, "formulas": 7}, {"id": 456663, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年邮政业务占邮电业务总收入的百分之多少:", "type": "单选题", "options": "A. 12.03\nB. 10.26\nC. 8.14\nD. 5.79", "choice": "D", "keypoints": "基期比重;文字资料", "most_wrong": "C", "human_count": 323450, "human_acc": 84.3267893028, "source": "2014年天津市公务员录用考试《行测》题第104题", "difficulty": 5, "formulas": 4}, {"id": 3522676, "material": "2020年全年,汽车产销降幅收窄至$2\\%$以内。汽车产量为2522.5万辆,销量为2531.1万辆,同比分别下降$2.0\\%$和$1.9\\%$,降幅分别比2020年上半年收窄14.8和15.0个百分点。2020年全年,新能源汽车销量为136.7万辆,同比增长$10.9\\%$。\n\n        2020年全年,汽车进口93.0万辆,同比下降$11.4\\%$,降幅较2020年上半年收窄21.1个百分点;进口金额467.0亿美元,同比下降$4.2\\%$,降幅较2020年上半年收窄25.8个百分点。全年汽车出口108万辆,同比下降$13.2\\%$,降幅较2020年上半年收窄10.4个百分点;出口金额157.4亿美元,同比下降$3.6\\%$,降幅较2020年上半年收窄8.3个百分点。", "question": "2019年新能源汽车销量占汽车总销量的比重为:", "type": "单选题", "options": "A. 不超过$3\\%$\nB. $4\\%$左右\nC. $5\\%$左右\nD. 大于$6\\%$", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 1065238, "human_acc": 62.920211258, "source": "2021年广西区考公务员录用考试《行测》题(网友回忆版)第103题", "difficulty": 4, "formulas": 341}, {"id": 2444070, "material": "2018年C国全年粮食种植面积11704万公顷,比上年减少95万公顷。其中,小麦种植面积2427万公顷,减少24万公顷;稻谷种植面积3019万公顷,减少56万公顷;玉米种植面积4213万公顷,减少27万公顷;棉花种植面积335万公顷,增加16万公顷;油料种植面积1289万公顷,减少33万公顷;糖料种植面积163万公顷,增加9万公顷。\n\n        2018年C国全年粮食产量65789万吨,比上年减少371万吨,减产0.6%。其中,夏粮产量13878万吨,减产2.1%;早稻产量2859万吨,减产4.3%;秋粮产量49052万吨,增产0.1%。全年谷物产量61019万吨,比上年减产0.8%。其中,稻谷产量21213万吨,减产0.3%;小麦产量13143万吨,减产2.2%;玉米产量25733万吨,减产0.7%。", "question": "2017年稻谷种植面积占全年粮食种植面积的百分比是______", "type": "单选题", "options": "A. 20.3%\nB. 25.5%\nC. 26.1%\nD. 27.2%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 170904, "human_acc": 73.4412301643, "source": "2019年江西省法检统一考录公务员笔试《行测》题(网友回忆版)第111题", "difficulty": 5, "formulas": 0}, {"id": 4492440, "material": "2021年1-4月,全国房地产开发投资40240亿元,同比增长21.6%,比2019年1-4月增长17.6%,两年平均增长8.4%。其中,住宅投资30162亿元,增长24.4%。\n\n        1-4月,东部地区房地产开发投资22098亿元,同比增长19.8%;中部地区投资8325亿元,增长29.7%;西部地区投资8777亿元,增长19.6%;东北地区投资1039亿元,增长15.4%。\n\n        1-4月,房地产开发企业房屋施工面积818513万平方米,同比增长10.5%。其中,住宅施工面积578028万平方米,增长10.9%。房屋新开工面积53905万平方米,增长12.8%。其中,住宅新开工面积40335万平方米,增长14.4%。房屋竣工面积22736万平方米,增长17.9%。其中,住宅竣工面积16551万平方米,增长20.7%。\n\n        1-4月,房地产开发企业土地购置面积3301万平方米,同比增长4.8%;土地成交价款1203亿元,下降29.2%。", "question": "2020年1-4月,住宅竣工面积占房屋竣工面积的比重约为:", "type": "单选题", "options": "A. 74.5%\nB. 72.8%\nC. 71.1%\nD. 69.4%", "choice": "C", "keypoints": "基期比重;文字资料", "most_wrong": "B", "human_count": 244104, "human_acc": 53.4636876086, "source": "2021下半年省考第二十八季行测模考大赛(通用卷)第119题", "difficulty": 6, "formulas": 0}], "categories": [["资料分析", "比重问题", "基期比重"], ["资料分析", "文字资料"]]}, {"id": 2097098, "material": "2015年,全国规模以上纺织企业工业增加值同比增长$6.3\\%$,高于规模以上工业整体水平0.2个百分点,增速比上年同期回落0.7个百分点。其中,纺织业、服装服饰行业、化学纤维行业增加值同比分别增长$7.0\\%$、$4.4\\%$和$11.2\\%$。\n\n        2015年,纺织行业规模以上企业累计实现主营业务收入70713亿元,同比增长$5.0\\%$;实现利润总额3860亿元,同比增长$5.4\\%$;企业亏损面(亏损企业占所有企业比重)$11.4\\%$,比上年低0.1个百分点。\n\n        2015年,我国出口纺织品、服装2912亿美元,同比下降$4.8\\%$,按出口商品类型看,纺织品出口1153亿美元,同比下降$2.3\\%$;服装出口1759亿美元,同比下降$6.4\\%$。按出口对象看,对美国出口额同比增长$6.7\\%$,对欧盟出口额同比下降$9.3\\%$,对日本出口额同比下降$11.6\\%$,对东盟出口额同比下降$0.8\\%$。\n\n        2015年,我国纺织行业500万元以上项目固定资产投资完成额11913亿元,同比增长$15.0\\%$。其中东部地区固定资产投资完成额同比增长$15.3\\%$,中部地区固定资产投资完成额同比增长$13.1\\%$,西部地区固定资产投资完成额同比增长$19.2\\%$。行业新开工项目数呈现增速提升势头,新开工项目16149项,同比增长$18.3\\%$。", "question": "2015年,纺织行业规模以上企业主营业务利润率(利润总额/主营业务收入)比上年约:", "type": "单选题", "options": "A. 上升0.02个百分点\nB. 上升0.4个百分点\nC. 下降0.02个百分点\nD. 下降0.4个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "B", "human_count": 435290, "human_acc": 71.6756644995, "source": "2017年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 4, "formulas": 19, "history": [{"id": 4565358, "material": "2021年1-4月份,全国固定资产投资(不含农户)143804亿元,同比增长19.9%,增速比1-3月份降低5.7个百分点;比2019年1-4月份增长8.0%。其中,民间固定资产投资82519亿元,同比增长21.0%,增速比1-3月份降低5个百分点。4月份全国固定资产投资(不含农户)47810亿元,环比增长1.49%。\n\n        分产业看,2021年1-4月份,第一产业投资3620亿元,同比增长35.5%;第二产业投资42255亿元,增长21.7%;第三产业投资97929亿元。", "question": "2021年1-4月份,民间固定资产投资占全国固定资产投资(不含农户)的比重比上年同期约:", "type": "单选题", "options": "A. 上升了0.5个百分点\nB. 下降了0.5个百分点\nC. 上升了1.1个百分点\nD. 下降了1.1个百分点", "choice": "A", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 331172, "human_acc": 75.4218351793, "source": "2021下半年省考第三十二季行测模考大赛(深圳卷)第94题", "difficulty": 4, "formulas": 0}, {"id": 5151158, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2021年1-8月份,全国一般贸易进出口额的同比增幅约为:", "type": "单选题", "options": "A. 41.2%\nB. 18.5%\nC. 25.3%\nD. 27.0%", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 112204, "human_acc": 42.6375173791, "source": "2022下半年省考第四季行测模考大赛(上海卷)第44题", "difficulty": 7, "formulas": 0}, {"id": 23985, "material": "根据以下资料,完成各题。\n\n        中国汽车工业协会发布的2009年4月份中国汽车产销数据显示,在其他国家汽车销售进一步疲软的情况下,国内乘用车销量却持续上升,当月销量已达83.1万辆,比3月份增长$7.59\\%$,同比增长$37.37\\%$。\n\n        乘用车细分为基本型乘用车(轿车)、多功能车(MPV)、运动型多用途车(SUV)和交叉型乘用车。其中,轿车销量比三月份增长$8.3\\%$,同比增长$33.04\\%$;MPV销量比3月份下降$3.54\\%$,同比下降$4.05\\%$;SUV销量比3月份增长$19.27\\%$,同比增长$22.55\\%$;交叉型乘用车销量比3月份增长$3.62\\%$,同比增长$70.66\\%$。轿车、MPV、SUV、和交叉型乘用车销量占4月份乘用车总销量的比重分别为$71\\%$、$2\\%$、$6\\%$和$21\\%$。", "question": "关于2009年3月份各种车型销量在总销量中所占比重的描述,以下正确的是:", "type": "单选题", "options": "A. 交叉型乘用车低于$21\\%$\nB. SUV超过$6\\%$\nC. MPV超过$2\\%$\nD. 轿车超过$71\\%$", "choice": "C", "keypoints": "两期比重;文字资料", "most_wrong": "A", "human_count": 196305, "human_acc": 59.6622602583, "source": "2010年国家公务员录用考试《行测》题第94题", "difficulty": 4, "formulas": 348}, {"id": 828663, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "在除生育保险之外的4类保险中,2012年该市女性参保人数占总体比重明显高于上年的有几个:", "type": "单选题", "options": "A. 1\nB. 2\nC. 3\nD. 4", "choice": "B", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 166652, "human_acc": 74.566761875, "source": "2014年四川省公务员录用考试《行测》题(下半年)第87题", "difficulty": 5, "formulas": 16}, {"id": 4695914, "material": "2016年我国基础研究经费为822.9亿元,比上年增长14.9%,明显高于应用研究经费(5.4%)和试验发展经费(11.1%)的增速。基础研究、应用研究和试验发展经费所占科技经费总投入比重分别为5.2%、10.3%和84.5%。\n\n        2016年各类企业研发经费支出12144亿元,比上年增长11.6%;政府属研究机构经费支出2260.2亿元,比上年增长5.8%;高等学校科研经费支出1072.2亿元,比上年增长7.4%。企业研发、政府属研究机构、高等学校科研经费支出所占比重分别为77.5%,14.4%和6.8%。\n\n        2016年我国东部地区研发经费为10689.4亿元,首次迈上万亿台阶,比上年增长11%,占全社会研发经费的比重为68.2%;中部、西部和东北地区研发经费分别为2378.1亿元、1944.3亿元和664.9亿元,分别比上年增长10.8%、12.3%和0.4%,所占全社会研发经费的比重分别为15.2%、12.4%和4.2%。", "question": "2016年地区研发经费占全社会研发经费的比重与2015年相比降低了的是(    )。", "type": "单选题", "options": "A. 东部地区\nB. 中部地区\nC. 西部地区\nD. 东北地区", "choice": "D", "keypoints": "两期比重;文字资料", "most_wrong": "C", "human_count": 18730, "human_acc": 82.9524826482, "source": "2018年重庆市选调优秀大学生到基层工作考试《行测》题第98题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "比重问题", "两期比重"], ["资料分析", "文字资料"]]}, {"id": 2021904, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2016年1-8月累计,全国一般公共预算收入中非税收入同比:", "type": "单选题", "options": "A. 增长$0.4\\%$\nB. 下降$4\\%$\nC. 下降$0.4\\%$\nD. 增长$4\\%$", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 391242, "human_acc": 39.0942179009, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第99题", "difficulty": 5, "formulas": 347, "history": [{"id": 43163, "material": "根据国家知识产权局公布的数据,2010年1—6月,我国向美国专利商标局提交发明专利申请3063件,同比增长31.7%;向欧洲专利局提交的发明专利申请为1010件,同比增长32.0%;向日本特许厅提交发明专利申请506件,同比增长16.9%。而同期美、欧、日三局受理的发明专利申请量增长分别为4.2%、1.3%和-3.0%。\n\n        2010年1—6月,来华的发明专利申请中,美国为12803件,同比增长15.6%;欧洲为14263件,同比增长11.3%;日本为16587件, 同比增长4.0%。", "question": "2010年上半年我国向美、欧、日三局申请发明专利的总量为多少,同比增长速度约为多少:", "type": "单选题", "options": "A. 4579 15%\nB. 4579 30%\nC. 3524 15%\nD. 3524 30%", "choice": "B", "keypoints": "混合增长率;文字资料", "most_wrong": "A", "human_count": 200906, "human_acc": 88.5767473346, "source": "2011年上海市公务员录用考试《行测》题(A类)第79题", "difficulty": 5, "formulas": 0}, {"id": 5151151, "material": "2021年8月份,全国货物进出口总额34293亿元,同比增长18.9%,比7月份加快7.4个百分点。其中,出口额同比增长15.7%;进口额同比增长23.1%。\n\n        1-8月份,货物进出口总额247831亿元,同比增长23.7%。其中,出口135651亿元,同比增长23.2%;进口112181亿元,同比增长24.4%。\n\n        1-8月份,机电产品出口同比增长23.8%,占出口总额的比重为58.8%。一般贸易进出口占进出口总额的比重为62.0%,比上年同期提高1.6个百分点。民营企业进出口占进出口总额的比重为48.1%,比上年同期提高2.3个百分点。8月末,国家外汇储备余额32321亿美元,连续4个月保持在3.2万亿美元以上。", "question": "2020年8月份,全国货物进出口总额约是出口额的多少倍?", "type": "单选题", "options": "A. 1.8\nB. 1.5\nC. 1.3\nD. 1.1", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "B", "human_count": 112476, "human_acc": 47.3763291724, "source": "2022下半年省考第四季行测模考大赛(上海卷)第42题", "difficulty": 7, "formulas": 0}, {"id": 5535682, "material": "2021年前三季度,国内旅游总人次26.89亿,同比增长39.1%,恢复到2019年同期的58.5%。其中,城镇居民19.34亿人次,增长38.2%;农村居民7.55亿人次。分季度看,第一季度国内旅游总人次10.24亿,同比增长247.1%;第二季度国内旅游总人次8.47亿,同比增长33.0%;第三季度国内旅游总人次8.18亿,同比下降18.3%。\n\n        2021年前三季度,国内旅游收入(旅游总消费)2.37万亿元,同比增长63.5%,恢复到2019年同期的54.4%。其中,城镇居民旅游消费1.91万亿元,增长62.6%;农村居民旅游消费0.45万亿元,增长67.0%。\n\n        2021年前三季度,国内人均每次旅游消费879.68元,同比增长17.5%。其中,城镇居民人均每次旅游消费990.17元,增长17.7%;农村居民人均每次旅游消费596.66元,增长18.1%。", "question": "2021年前三季度,国内农村居民旅游人次同比增长约:", "type": "单选题", "options": "A. 37.3%\nB. 38.7%\nC. 40.0%\nD. 41.5%", "choice": "D", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 37443, "human_acc": 65.2912426889, "source": "2023上半年省考第十二季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 50807, "material": "2006年5月份北京市消费品市场较为活跃,实现社会消费品零售额272.2亿元,创今年历史第二高,据统计,1~5月份全市累计实现社会消费品零售额1312.7亿元,比去年同期增长12.5%。 \n\n        汽车销售继续支持北京消费品市场的繁荣。5月份,全市机动车类销售量为5.4万辆,同比增长23.9%,据对限额以上批发零售贸易企业统计,汽车类商品当月实现零售额32.3亿元,占限额以上批发零售贸易企业零售额比重的20.3%。 \n\n        据对限额以上批发零售贸易企业统计。5月份,家具类、建筑及装潢材料类销售延续了4月的高幅增长,持续旺销,零售额同比增长了50%,其中,家具类商品零售额同比增长了27.3%。建筑及装潢材料类商品零售额同比增长了60.8%。同时由于季节变换和节日商家促销的共同作用,家电销售大幅增长,限额以上批发零售家用电器和音像器材类商品零售额同比增长13.6%。", "question": "2006年5月份,限额以上批发零售贸易企业中,家具类商品零售额占家具类和建筑及装潢材料类商品零售额的比例是:", "type": "单选题", "options": "A. 27.4%\nB. 29.9%\nC. 32.2%\nD. 34.6%", "choice": "A", "keypoints": "混合增长率;文字资料", "most_wrong": "C", "human_count": 27776, "human_acc": 14.8113479263, "source": "2009年甘肃省公务员录用考试《行测》题第88题", "difficulty": 5, "formulas": 0}, {"id": 5721920, "material": "2021年,我国共生产黄金443.6吨,同比下降7.5%。其中,利用国内原料生产黄金329.0吨,同比下降10.0%;利用进口原料生产黄金114.6吨,同比增长0.4%。\n\n        2021年1-9月,我国生产黄金315.4吨,同比下降6.5%。其中,利用国内原料生产黄金236.7吨,包括国产黄金矿产金193.6吨、国产有色副产金43.1吨;利用进口原料生产黄金78.7吨,同比增长5.6%。\n\n        2021年,我国黄金消费量1121.0吨,同比增长36.5%。其中,黄金首饰消费量711.3吨,同比增长45.0%;金条及金币消费量312.9吨,同比增长26.9%;工业及其他领域消费量96.8吨,同比增长15.4%。\n\n        2021年1-9月,我国黄金消费量813.6吨,同比增长48.4%。其中,黄金首饰消费量529.1吨,同比增长54.2%;金条及金币消费量214.1吨,同比增长50.3%;工业及其他领域消费量70.4吨,同比增长12.7%。", "question": "2021年第四季度我国黄金生产量的同比增速约为:", "type": "单选题", "options": "A. 10%\nB. 19%\nC. -10%\nD. -19%", "choice": "C", "keypoints": "混合增长率;文字资料", "most_wrong": "D", "human_count": 112300, "human_acc": 80.0917186109, "source": "2023下半年省考第十八季行测模考大赛(深圳卷)第91题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "增长率", "混合增长率"], ["资料分析", "文字资料"]]}, {"id": 2144604, "material": "2015年7月,京津冀区域13个城市空气质量超标天数平均占当月总天数的$57.4\\%$,平均达标天数比上年同期下降6个百分点。与全国74个城市相比,京津冀区域平均重度污染天数占比高4.4个百分点。而与上年同期相比,74个城市平均达标天数占比也由$80.5\\%$下降到$73.1\\%$。\n\n        与上年同期相比,2015年7月京津冀区域13个城市平均PM2.5和PM10浓度分别上升$22.6\\%$和$13.5\\%$,长三角区域25个城市平均PM2.5和PM10浓度分别上升$31.4\\%$和$9.4\\%$。", "question": "环保部门计划开展两个空气污染物防治项目,每个项目均可以实现特定污染物浓度增速减半的效果。以下哪种立项方式能够最有效地延缓空气质量的恶化?(假设PM2.5和PM10在各地的浓度相同,且在空气质量评估中拥有相同的权重。)", "type": "单选题", "options": "A. 在京津冀区域开展针对PM2.5和PM10污染物的防治\nB. 在长三角区域开展针对PM2.5和PM10污染物的防治\nC. 在京津冀和长三角区域开展针对PM10污染物的防治\nD. 在京津冀和长三角区域开展针对PM2.5污染物的防治", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 383028, "human_acc": 77.9473041135, "source": "2018年浙江省选调生村官招录考试《行测》试题(网友回忆版)第124题", "difficulty": 4, "formulas": 7, "history": [{"id": 2452887, "material": "2018年1-2月份,全国规模以上工业企业实现利润总额9689亿元,同比增长$16.1\\%$。其中,国有控股企业实现利润总额2918.1亿元,同比增长$29.6\\%$;集体企业实现利润总额36.9亿元,增长$2.8\\%$;股份制企业实现利润总额6829.5亿元,增长$21\\%$;外商及港澳台商投资企业实现利润总额2259.6亿元,增长$2\\%$;私营企业实现利润总额2830.8亿元,增长$10\\%$。按行业分其中采矿业实现利润总额877.9亿元,同比增长$42.1\\%$;制造业实现利润总额8100亿元,增长$12.5\\%$;电力、热力、燃气及水生产和供应业实现利润总额711.1亿元,增长$35.2\\%$。", "question": "2018年1-2月份按企业性质分类中实现利润总额同比增长额大于45亿元的有:", "type": "单选题", "options": "A. 1个\nB. 2个\nC. 3个\nD. 4个", "choice": "C", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 198200, "human_acc": 64.4470232089, "source": "河南省2019年统一考试录用司法所公务员《行测》题(网友回忆版)第109题", "difficulty": 5, "formulas": 9}, {"id": 2453203, "material": "2017年全国共有各级各类民办学校17.76万所,占全国学校总数$34.57\\%$;各类民办教育在校生达5120.47万人,比上年增长$6.12\\%$。其中:民办幼儿园16.04万所,比上年增长$4.00\\%$;在园儿童2572.34万人,比上年增长$5.53\\%$。民办普通小学6107所,比上年增长$2.21\\%$;在校生814.17万人,比上年增长$7.65\\%$。民办初中5277所,比上年增长$3.78\\%$;在校生577.68万人,比上年增长$8.42\\%$。民办普通高中3002所,比上年增长$7.71\\%$;在校生306.26万人,比上年增长$9.74\\%$。民办中等职业学校2069所,比上年下降$2.17\\%$;在校生197.33万人,比上年增长$7.16\\%$。", "question": "以下民办学校类型中,2017年学校数量同比增长最多的是", "type": "单选题", "options": "A. 民办普通高中\nB. 民办普通小学\nC. 民办初中\nD. 民办幼儿园", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "A", "human_count": 758373, "human_acc": 70.5058065095, "source": "2020年北京市公务员录用考试《行测》题(乡镇卷)(网友回忆版)第113题", "difficulty": 5, "formulas": 12}, {"id": 163691, "material": "一、根据以下资料,回答101~105题。\n\n        2013年1~2月,全国公共财政收入(由中央财政收入与地方财政收入组成)22426亿元,比去年同期增加1508亿元。其中,中央财政收入10779亿元,同比增长1.6%。而受股市成交额增加的影响,1~2月证券交易印花税达到81亿元,同比增长72%。\n\n        2013年1~2月,我国实现城市维护建设税634亿元,同比增长8.5%;营业税3349亿元,同比增加414亿元,增长14.1%,主要是房地产市场成交额增加带动房地产营业税相应增加;房地产企业所得税479亿元,增长31.4%。\n\n        2013年1~2月,属于地方税种的土地增值税实现收入515亿元,同比增长42.1%;契税487亿元,同比增长31.6%;城镇土地使用税233亿元,同比增长2%;耕地占用税175亿元,同比增长7%。", "question": "下列税种在2013年1~2月税收中同比净增加额最大的是:", "type": "单选题", "options": "A. 土地增值税\nB. 契税\nC. 城市维护建设税\nD. 房地产企业所得税", "choice": "A", "keypoints": "增长量比较;文字资料", "most_wrong": "C", "human_count": 202744, "human_acc": 85.0160793908, "source": "2013年四川公务员录用考试《行测》题(下半年)第102题", "difficulty": 5, "formulas": 0}, {"id": 15079, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007-2008年,总产量绝对值变动最大的是:", "type": "单选题", "options": "A. 稻谷\nB. 蔬菜\nC. 瓜类\nD. 青饲料", "choice": "B", "keypoints": "增长量比较;文字资料", "most_wrong": "D", "human_count": 65462, "human_acc": 50.7775503345, "source": "2010年黑龙江省公务员录用考试《行测》题第106题", "difficulty": 4, "formulas": 0}, {"id": 3589351, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2020年,下列三种农作物产量的同比增量从大到小排序正确的是:", "type": "单选题", "options": "A. 小麦、稻谷、大豆\nB. 大豆、稻谷、小麦\nC. 小麦、大豆、稻谷\nD. 稻谷、大豆、小麦", "choice": "D", "keypoints": "增长量比较;文字资料", "most_wrong": "B", "human_count": 83187, "human_acc": 85.818697633, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第92题", "difficulty": 4, "formulas": 10}], "categories": [["资料分析", "增长量", "增长量比较"], ["资料分析", "文字资料"]]}, {"id": 827075, "material": "根据以下材料,回答111~115题。\n\n        2013年全国城镇私营单位就业人员年平均工资为32706元,比2012年增加了3954元,增幅回落3.3个百分点。分行业门类看,信息传输、软件和信息技术服务业44060元,比2012年增加了4542元;科学研究和技术服务业42854元,比2012年增加了6256元;金融业(主要是各种保险代理、典当行和投资咨询公司)37253元,比2012年增加了4557元;教育行业31521元,比2012年增加了4896元;农林牧渔业24645元,是全国平均水平的75%,同比增长12.2%;住宿和餐饮业27352元,是全国平均水平的84%,同比增长14.3%;居民服务、修理和其他服务业27483元,是全国平均水平的84%,同比增长14.2%。\n\n        2013年,河北省城镇私营单位就业人员平均工资为28135元,同比增长11.8%。扣除物价因素,实际增长8.9%。分设区市来看,各设区市及省垂管县城镇私营单位就业人员平均工资均达到2.4万元以上。高于全省平均水平的有5个市,分别是唐山31449元,廊坊29918元、秦皇岛29130元、石家庄28902元、沧州28442元,低于全省平均水平的6个市分别是承德27962元、保定27083元、衡水25882元、邯郸25591元、张家口25456元和邢台25358元。最低与最高平均工资相差6091元,差距比上年缩小561元。", "question": "2012年全国城镇私营单位就业人员年平均工资比河北省城镇私营单位就业人员年平均工资高:", "type": "单选题", "options": "A. 4571元\nB. 4378元\nC. 3875元\nD. 3587元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 120617, "human_acc": 66.2626329622, "source": "2014年河北省政法干警考试《行政职业能力测验》试卷(本硕)第112题", "difficulty": 5, "formulas": 0, "history": [{"id": 17675, "material": "一、根据文字完成各题。\n        2007年黑龙江省全年完成邮电业务总量512.7亿元,比上年增长28.1%。其中,电信业务总量483.5亿元,增长29.4%;邮政业务总量29.2亿元,增长9.8%。年末全省长途光缆线路总长度42567公里;局用交换机总容量1004.9万门。年末固定电话用户1112.2万户,增长2.8%,其中城市837.7万户,增长4%;农村274.5万户,下降0.6%。移动电话用户1449.2万户,增长14.4%。全省电话普及率为67.1%,比上年提高5.6个百分点。国际互联网络用户299万户(包括拨号、专线和宽带接入用户),增长4.9%,其中宽带接入户209.2万户,增长18.8%。", "question": "2006年末固定电话与移动电话用户共有多少万用户:", "type": "单选题", "options": "A. 2561.40\nB. 2454.33\nC. 2348.69\nD. 2220.85", "choice": "C", "keypoints": "基期和差;文字资料", "most_wrong": "D", "human_count": 11888, "human_acc": 75.8327725437, "source": "2009年四川省公务员录用考试《行测》题(上半年)第88题", "difficulty": 5, "formulas": 0}, {"id": 456657, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年我国电信业务总收入比邮政业务总收入多出多少亿元:", "type": "单选题", "options": "A. 7551.3\nB. 8663.7\nC. 9243.6\nD. 10130.1", "choice": "B", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 274173, "human_acc": 77.5225861044, "source": "2014年天津市公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 4}, {"id": 15471, "material": "根据下列文字资料回答以下几题。\n\n        2009年以来,在灾后恢复重建和扩大内需的各项政策措施的作用下,四川交通运输业投资呈现出快速增长的发展势头。1-4月,全省交通运输业投资255.74亿元,同比增长131.3%,增速较同期全社会投资高52.4个百分点,迎来了高速发展时期。\n\n        进入2009年后,全省交通运输业投资就一直保持高速增长,2月完成投资73.25亿,增长87.54%;一季度完成投资169.2亿元,增长130.93%;到4月投资达255.74亿元,同比增长131.3%,较2008年全年高出78.1个百分点。随着总量的提升和增长速度的不断加快,全省交通运输业投资占全社会投资的比重也不断上升,1-4月份占全社会投资比重达到8%,创造了新高。", "question": "2008年4月,四川全省交通运输业投资额为:", "type": "单选题", "options": "A. 37.30亿元\nB. 46.62亿元\nC. 51.52亿元\nD. 73.25亿元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 11006, "human_acc": 69.2713065601, "source": "2009年山西省公务员录用考试《行测》题第124题", "difficulty": 4, "formulas": 0}, {"id": 2021896, "material": "2016年8月份,全国一般公共预算收入9894亿元,同比增长$1.7\\%$。其中,中央一般公共预算收入4797亿元,同比增长$2.5\\%$,同口径下降$2.6\\%$;地方一般公共预算本级收入5097亿元,同比增长1%,同口径增长$6.1\\%$。全国一般公共预算收入中的税收收入7680亿元,同比增长$1.9\\%$,非税收入2214亿元,同比增长$1.2\\%$。\n\n        2016年1-8月累计,全国一般公共预算收入110178亿元,同比增长$6\\%$。其中,中央一般公共预算收入49711亿元,同比增长$4.2\\%$,同口径增长$1.5\\%$;地方一般公共预算本级收入60467亿元,同比增长$7.6\\%$,同口径增长$10.1\\%$。全国一般公共预算收入中的税收收入92637亿元,同比增长$7.3\\%$。", "question": "2015年1-7月,中央一般公共预算收入约为:", "type": "单选题", "options": "A. 4.2万亿元\nB. 4.8万亿元\nC. 4.5万亿元\nD. 4.3万亿元", "choice": "D", "keypoints": "基期和差;文字资料", "most_wrong": "C", "human_count": 216135, "human_acc": 64.4828463692, "source": "2016年吉林省公务员录用考试《行测》题(甲级)第98题", "difficulty": 5, "formulas": 12}, {"id": 14929, "material": "根据下列文字资料完成各题。\n\n        2007年前三个季度,城镇居民人均可支配收入为10346元,扣除价格因素后实际增长13.2%,同比提高3.2个百分点。农村居民人均现金收入3321元,扣除价格因素后实际增长14.8%,同比提高3.4个百分点。由此中国出现了比较罕见的城镇居民投入增长幅度低于农村居民收入增幅的现象。2007年前三个季度,全国城镇单位在岗职工月平均工资为1853元,同比增长18.8%,其中,国有经济单位职工月平均工资为1980元,同比增长20.8%,集体经济单位职工月平均工资1111元,同比增长18.0%,其他经济类型单位职工月平均工资1794元,同比增长15.6%,而农村劳动力外出务工的月平均工资为1015元,同比增长11.8%。由此可见,农民工的收入增长远无低于城镇居民工资的平均水平。", "question": "2006年前三个季度,我国国有经济和集体经济在岗职工月平均工资之差为:", "type": "单选题", "options": "A. 697.5元\nB. 869元\nC. 1039元\nD. 528元", "choice": "A", "keypoints": "基期和差;文字资料", "most_wrong": "B", "human_count": 9624, "human_acc": 74.1583541147, "source": "2008年湖北省公务员录用考试《行测》题(B类)第125题", "difficulty": 5, "formulas": 0}], "categories": [["资料分析", "基期与现期", "基期和差"], ["资料分析", "文字资料"]]}, {"id": 2627761, "material": "2018年我国文化产业实现增加值38737亿元,比2004年增长10.3倍,2005-2018年文化产业增加值年均增长$18.9\\%$,高于同期GDP现价年均增速6.9个百分点;文化产业增加值占GDP比重由2004年的$2.15\\%$、2012年的$3.36\\%$提高到2018年的$4.30\\%$,在国民经济中的占比逐年提高。从对经济增长的贡献看,2004-2012年间,文化产业对GDP增量的年平均贡献率为$3.9\\%$,2013-2018年进一步提高到$5.5\\%$。\n\n         2018年底,全国共有各类艺术表演团体17123个,为1978年的5.4倍,为1949年的17.1倍;艺术表演场馆1236个,为1978年的1.1倍,为1949年的1.4倍。2018年全国艺术表演团体从业人员41.6万人、演出312万场次、全年演出收入152.3亿元,分别比2012年增长$72.0\\%$、$131.5\\%$和$137.4\\%$,演艺市场规模呈现井喷式增长。2018年全国电影票房收入609.8亿元,比2012年增长1.9倍,2013-2018年年均增长$19.6\\%$;电影院线拥有银幕60079块,比2012年增长3.6倍,2013-2018年年均增长$28.9\\%$,银幕总数跃居世界第一。\n\n        2018年,全国共有文化骨干企业6.0万家,比2012年增长$64.3\\%$,2013-2018年年均增长$8.6\\%$;从业人员为845万人,比2012年增长$20.9\\%$,年均增长$3.2\\%$;实现营业收入89257亿元,比2012年增长$58.6\\%$,年均增长$8.0\\%$。截至2018年底,全国共有10个国家级文化产业示范园区,10个国家级文化产业实验园区和335个国家级文化产业示范基地,标志着我国文化产业进一步向规模化、集约化、专业化的方向发展。", "question": "1978年全国各类艺术表演团体数量约为1949年的多少倍?", "type": "单选题", "options": "A. 3.2\nB. 3.5\nC. 2.9\nD. 2.7", "choice": "A", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 85179, "human_acc": 75.0454924336, "source": "2021年国考第十四季行测模考大赛(副省级)第132题", "difficulty": 4, "formulas": 17, "history": [{"id": 456661, "material": "据我国《2005年国民经济和社会发展统计公报》显示,2005年我国邮电通信业继续呈迅速增长态势,全年完成邮电业务总量12199亿元,同比增长$24.6\\%$。其中,邮政业务总量624亿元,增长$10.1\\%$;电信业务总量11575亿元,增长$25.4\\%$。全年新增局用交换机4608万门,总容量达到4.7亿门。新增城市固定电话用户1174万户,新增农村固定电话用户2694万户,年末总数达到35043万户,其中,城市电话用户23977万户,农村电话用户11066万户。新增移动电话用户5860万户,年末达到39343万户,其中,城市电话用户21457万户,农村电话用户17886万户。固定及移动电话总数同比增长$15.05\\%$,电话普及率已达到57部/百人。", "question": "2004年移动电话用户总量是固定电话用户总量的几倍:", "type": "单选题", "options": "A. 3.15\nB. 2.12\nC. 1.47\nD. 1.07", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 320731, "human_acc": 79.381475442, "source": "2014年天津市公务员录用考试《行测》题第103题", "difficulty": 5, "formulas": 4}, {"id": 2136488, "material": "2014年我国粮食种植面积11274万公顷,比上年增加78万公顷。棉花种植面积422万公顷,减少13万公顷。油料种植面积1408万公顷,增加6万公顷。糖料种植面积191万公顷,减少9万公顷。\n\n        粮食再获丰收。全年粮食产量60710万吨,比上年增加516万吨,增产$0.9\\%$。其中,夏粮产量13660万吨,增产$3.6\\%$;早稻产量3401万吨,减产$0.4\\%$;秋粮产量43649万吨,增产$0.1\\%$。全年谷物产量55727万吨,比上年增产$0.8\\%$。其中,稻谷产量20643万吨,增产$1.4\\%$;小麦产量12617万吨,增产$3.5\\%$;玉米产量21567万吨,减产$1.3\\%$。\n\n        全年棉花产量616万吨,比上年减产$2.2\\%$。油料产量3517万吨,与上年持平。糖料产量13403万吨,减产$2.5\\%$。茶叶产量209万吨,增产$8.7\\%$。", "question": "2013年,秋粮产量约为夏粮产量的多少倍?", "type": "单选题", "options": "A. 不到2倍\nB. 2倍多\nC. 3倍多\nD. 4倍多", "choice": "C", "keypoints": "基期倍数;文字资料", "most_wrong": "B", "human_count": 497329, "human_acc": 85.1621361312, "source": "2017年河南省公务员录用考试《行测》题(网友回忆版)第109题", "difficulty": 4, "formulas": 11}, {"id": 2641881, "material": "2017年前三季度,我国社会消费品零售总额238482亿元,同比增长$10.4\\%$,增速比上半年加快0.1个百分点。按经营单位所在地分,城镇消费品零售额204940亿元,同比增长$10.3\\%$,乡村消费品零售额33542亿元,增长$10.9\\%$。按消费类型分,餐饮收入25614亿元,同比增长$11.0\\%$,商品零售212868亿元,增长$10.3\\%$。其中,限额以上单位商品零售101785亿元,增长$7.9\\%$。通讯和居住类商品增长较快,通讯器材增长$12.7\\%$,家具增长$13.9\\%$,建筑及装潢材料增长$15.4\\%$。9月份,社会消费品零售总额同比增长$10.7\\%$,比上月加快0.1个百分点,环比增长$0.85\\%$。前三季度,全国网上零售额34651亿元,同比增长$26.1\\%$。其中,实物商品网上零售额27950亿元,增长$25.1\\%$。", "question": "2016年前三季度,我国社会消费品零售总额按消费类型分,商品零售约是餐饮收入的多少倍?", "type": "单选题", "options": "A. 5.33\nB. 8.36\nC. 9.6\nD. 12.3", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 107792, "human_acc": 83.5256790856, "source": "2020年下半年省考第六季行测模考大赛(新疆卷)第108题", "difficulty": 4, "formulas": 13}, {"id": 4343126, "material": "2021年1-3月,安徽省规模以上工业企业实现利润总额600.7亿元,同比增长99.7%,比2019年1-3月增长38%。\n\n        2021年1-3月,规模以上工业企业中,国有控股企业实现利润总额221.4亿元,同比增长120.7%;股份制企业实现利润总额512.4亿元,增长94.5%;外商及港澳台商投资企业实现利润总额79.9亿元,增长164.5%;私营企业实现利润总额163.9亿元,增长53.8%。\n\n        2021年1-3月,规模以上工业企业实现营业收入9935亿元,同比增长41.7%;发生营业成本8422.7亿元,增长40.3%。\n\n        2021年3月末,规模以上工业企业资产总计44172.4亿元,同比增长11.8%;负债合计24785.7亿元,同比增长12.6%;所有者权益合计19386.7亿元。\n\n注:资产负债率$=\\frac{负债}{资产}$;所有者权益$=资产-负债$", "question": "2020年1-3月,安徽省规模以上工业企业中,股份制企业实现利润总额约为外商及港澳台商投资企业的多少倍?", "type": "单选题", "options": "A. 5.3\nB. 6.4\nC. 7.6\nD. 8.7", "choice": "D", "keypoints": "基期倍数;文字资料", "most_wrong": "C", "human_count": 129127, "human_acc": 59.9572513882, "source": "2021下半年省考第二十三季行测模考大赛(陕西卷)第118题", "difficulty": 6, "formulas": 2}, {"id": 764175, "material": "2013年6月,社会消费品零售总额18827亿元,同比增长$13.3\\%$。其中,限额以上企业(单位)消费品零售额9764亿元,增长$11.5\\%$。1-6月社会消费品零售总额110764亿元,同比增长$12.7\\%$。\n\n        按经营单位所在地分,6月城镇消费品零售额16245亿元,同比增长$13.0\\%$;乡村消费品零售额2582亿元,增长$15.1\\%$。1-6月城镇消费品零售额95789亿元,增长$12.5\\%$;乡村消费品零售额14975亿元,增长$14.3\\%$。\n\n        按消费形态分,6月餐饮收入2059亿元,同比增长$9.5\\%$;商品零售16768亿元,增长$13.8\\%$。1-6月餐饮收入11795亿元,增长$8.7\\%$;商品零售98969亿元,增长$13.2\\%$。\n\n        在商品零售中,限额以上企业(单位)6月商品零售额9100亿元,同比增长$12.5\\%$,1-6月限额以上企业(单位)商品零售额51508亿元,增长$11.7\\%$。", "question": "2012年上半年,商品零售额约是同期餐饮收入的多少倍:", "type": "单选题", "options": "A. 7\nB. 8\nC. 9\nD. 6", "choice": "B", "keypoints": "基期倍数;文字资料", "most_wrong": "A", "human_count": 237911, "human_acc": 69.0325373774, "source": "2014年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 5, "formulas": 13}], "categories": [["资料分析", "倍数与比值相关", "基期倍数"], ["资料分析", "文字资料"]]}, {"id": 2280972, "material": "2018年3月,国内手机市场出货量3018.5万部,同比下降$27.9\\%$,2018年1~3月,国内手机市场出货量8737.0万部,同比下降$26.1\\%$。3月,国内上市新机型80款,同比下降$37.5\\%$,2018年1~3月,上市新机型206款,同比下降$8.4\\%$。\n\n        2018年3月,国内4G手机出货量2808.5万部,同比下降$28.7\\%$,其中4G全网通手机占比$94.0\\%$;4G上市新机型67款,同比下降$40.2\\%$,其中4G全网通手机占比$71.6\\%$。1~3月,4G手机出货量8195.6万部,同比下降$27.1\\%$,其中4G全网通手机占比$92.5\\%$;4G上市新机型156款,同比下降$17.5\\%$,其中4G全网通手机占比$75.6\\%$。\n\n        2018年3月,国产品牌手机出货量2699.5万部,同比下降$29.0\\%$;上市新机型78款,同比下降$36.6\\%$。1~3月,国产品牌手机出货量7586.4万部,同比下降$27.8\\%$;上市新机型190款,同比下降$10.8\\%$。\n\n        2018年3月,智能手机出货量为2808.3万部,同比下降$28.6\\%$。1~3月,智能手机出货量为8187.0万部,同比下降$27.0\\%$。3月,上市智能手机新机型68款,同比下降$37.0\\%$,其中支持安卓操作系统的手机67款。2018年1~3月,上市智能手机新机型158款,同比下降$15.1\\%$,其中支持安卓操作系统的手机152款。", "question": "2017年1~3月,国内手机市场手机月均出货量:", "type": "单选题", "options": "A. 低于0.3亿部\nB. 在0.3~0.36亿部之间\nC. 在0.36~0.42亿部之间\nD. 高于0.42亿部", "choice": "C", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 592468, "human_acc": 71.7935821006, "source": "2018年四川省公务员录用考试《行测》题(下半年)(网友回忆版)第96题", "difficulty": 5, "formulas": 20, "history": [{"id": 4683463, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "2015年前三季度,S省居民平均每月人均转移净收入约为多少元?", "type": "单选题", "options": "A. 837\nB. 768\nC. 278\nD. 256", "choice": "D", "keypoints": "基期平均数;文字资料", "most_wrong": "B", "human_count": 240728, "human_acc": 72.7443421621, "source": "2022上半年省考第三季行测模考大赛(四川卷)第98题", "difficulty": 6, "formulas": 0}, {"id": 15067, "material": "根据以下资料,完成各题。\n\n        2008年全年某省农作物总播种面积6606.46万亩,同比增长0.9%。主要品种中,粮食作物面积3749.91万亩,同比增长0.8%;其中:稻谷面积2920.35万亩,同比增长0.4%。甘蔗面积224.51万亩,油料作物面积485.81万亩,烟叶面积35.23万亩,蔬菜面积1668.94万亩,同比分别增长1.5%、4.3%、19.9%和4.5%。木薯面积128.38万亩,瓜类面积60.64万亩,青饲料面积93.09万亩,同比分别下降10.4%、9.8%和17.6%。\n\n        2008年全年该省粮食作物产量1243.44万吨,同比下降3.2%;其中:稻谷产量1003.30万吨,同比下降4.1%。甘蔗产量1198.84万吨,油料产量81.54万吨,烟叶产量4.93万吨,蔬菜产量2431.43万吨,同比分别增长1.5%、4.9%、18.2%和3.4%。木薯产量158.89万吨,瓜类产量97.78万吨,青饲料产量125.34万吨,同比分别下降9.0%、8.2%和23.4%。", "question": "2007年,亩产量最高的作物是:", "type": "单选题", "options": "A. 稻谷\nB. 甘蔗\nC. 蔬菜\nD. 木薯", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 65507, "human_acc": 52.853893477, "source": "2010年黑龙江省公务员录用考试《行测》题第105题", "difficulty": 4, "formulas": 0}, {"id": 5050638, "material": "2020年T市社会融资规模稳步增长,全年全市社会融资规模增量累计为4508亿元,同比多增1642亿元。年末中外金融机构本外币各项存款余额34145.00亿元,比年初增加2356.22亿元。各项贷款余额38859.42亿元,比年初增加2718.15亿元,增长7.5%。其中,制造业中长期贷款余额1038.15亿元,增长27.6%,贷款余额和增速均创新高。\n\n        2020年全年新增上市公司8家,年末全市共有78家上市公司的83只股票在境内外资本市场交易。年末证券账户626.15万户,比上年末增长12.8%。全年各类证券交易额61342.3亿元,增长53.6%。其中,股票交易额36207.68亿元,增长69.8%;债券交易额22430.06亿元,增长32.7%;基金交易额2535.10亿元,增长52.8%。期货市场成交额129552.13亿元,增长27.6%。\n\n        2020年全年原保险保费收入672.09亿元。其中,人身险保费收入507.83亿元,增长9.1%;财产险保费收入164.26亿元,增长7.9%。年末共有保险机构377家,从业人员10.48万人。", "question": "若以年末证券账户户数作为全年户数的统计数据,则2019年全年T市平均每个证券账户的证券交易额约为多少万元?", "type": "单选题", "options": "A. 62\nB. 72\nC. 98\nD. 133", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "A", "human_count": 364414, "human_acc": 72.0298890822, "source": "2022上半年省考第二十三季行测模考大赛(天津卷)第97题", "difficulty": 4, "formulas": 0}, {"id": 4637139, "material": "2021年1-5月,全国共破获电信网络诈骗案件11.4万起,打掉犯罪团伙1.4万个,抓获犯罪嫌疑人15.4万名,同比分别上升60.4%、80.6%和146.5%。2021年5月,全国共立电信网络诈骗案件8.46万起,与4月相比下降14.3%。\n\n        2021年1-5月,全国拦截诈骗电话6.1亿次,拦截诈骗短信9.1亿条,封堵诈骗网址82.1万个。1-5月公安部日均下发预警指令5.2万条。\n\n        2021年1-5月,全国共成功劝阻771万名群众免于受骗,紧急止付涉案资金2654亿元,为群众挽回经济损失991亿元。\n\n        2021年1-5月,全国公安机关捣毁境内诈骗窝点6500余个,共破获被骗百万元以上案件881起,同比上升160.5%,先后组织20余次集中收网行动,抓获犯罪嫌疑人2421名,打掉技术开发平台、网络引流推广、虚拟货币洗钱等团伙380余个。\n\n        2020年10月至2021年5月,全国公安机关会同检察、法院、通讯、金融等部门,共打掉“两卡”违法犯罪团伙1.5万个,缴获涉诈电话卡373.3万张,银行卡56.6万张,惩戒“两卡”失信人员17.3万名,整治违规行业网点,机构1.8万家。", "question": "2020年1-5月,全国平均每月打掉电信网络诈骗犯罪团伙:", "type": "单选题", "options": "A. 不到1000个\nB. 1000~2000个之间\nC. 2000~4000个之间\nD. 4000个以上", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 1327933, "human_acc": 61.2944327764, "source": "2022年国家公务员录用考试《行测》题(行政执法卷网友回忆版)第126题", "difficulty": 4, "formulas": 0}, {"id": 3589345, "material": "2020年全国粮食总产量13390亿斤,同比增长$0.9\\%$。粮食播种面积稳中有增,全国粮食播种面积17.52亿亩,同比增长$0.6\\%$。分季节看,2020年全国夏粮产量2857亿斤,比上年增加25亿斤;早稻产量546亿斤,比上年增加20.5亿斤;秋粮产量9987亿斤,比上年增加67亿斤,同比增长$0.7\\%$。分品种看,2020年,全国稻谷产量4237亿斤,同比增长$1.1\\%$;小麦产量2685亿斤,同比增长$0.5\\%$;大豆产量392亿斤,同比增长$8.3\\%$;玉米产量5213亿斤,同比减少2亿斤。\n\n        2020年末全国生猪存栏量40650万头,同比增长$31.0\\%$,比2020年第三季度末增长$9.8\\%$。2020年,全国生猪出栏量52704万头,比上年减少1715万头,降幅比前三季度收窄8.5个百分点。2020年,全国猪肉产量4113万吨,同比下降$3.3\\%$,降幅比前三季度收窄7.4个百分点。\n\n        2020年全国家禽存栏量67.8亿只,比上年增加2.6亿只,同比增长$4.0\\%$;全国家禽出栏量155.7亿只,比上年增加9.3亿只。禽肉产量2361万吨,比上年增加122万吨;禽蛋产量3468万吨,比上年增加159万吨。", "question": "2019年全国粮食平均每亩的产量约是:", "type": "单选题", "options": "A. 421.6公斤/亩\nB. 381.0公斤/亩\nC. 762.0公斤/亩\nD. 843.2公斤/亩", "choice": "B", "keypoints": "基期平均数;文字资料", "most_wrong": "C", "human_count": 90516, "human_acc": 35.1672632463, "source": "2021下半年省考第五季行测模考大赛(广东乡镇卷)第91题", "difficulty": 7, "formulas": 10}], "categories": [["资料分析", "平均数问题", "基期平均数"], ["资料分析", "文字资料"]]}, {"id": 754465, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "2014年1月居民消费价格同比涨幅由低到高排列正确的是:", "type": "单选题", "options": "A. 液体乳及乳制品——粮食——鲜菜——蛋\nB. 水产品——粮食——鲜菜——肉禽及其制品\nC. 肉禽及其制品——鲜菜——水产品——鲜果\nD. 粮食——水产品——液体乳及乳制品——鲜菜", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 249848, "human_acc": 81.7284909225, "source": "2014年山东省公务员录用考试《行测》题第116题", "difficulty": 4, "formulas": 0, "history": [{"id": 1362927, "material": "2013年全年,我国出口苹果数量为994664.1吨,同比增长1.9%,金额为10.3亿美元,同比增长7.3%。\n\n\n        2013年12月,我国出口苹果数量为117478.4吨,比11月下降8.0%,金额为1.2亿美元,比11月下降7.7%,同比出口数量增长2.6%,金额增长12.5%。\n\n        2013年$1\\sim11$月,我国对亚洲出口苹果数量为764096.4吨,同比增长6.8%;对非洲出口苹果数量为1943.9吨,同比下降56.6%;对欧洲出口苹果数量为106279.0吨;对南美洲出口苹果数量为711.3吨,同比增长7.6%;对北美洲出口苹果数量为3843.3吨,同比增长25.0%;对大洋洲出口苹果数量为311.8吨,同比增长48.3%。", "question": "2013年$1\\sim11$月,我国对各大洲出口苹果数量同比增长率的大小关系是:", "type": "单选题", "options": "A. $大洋洲 \\lt亚洲$\nB. $南美洲\\gt北美洲$\nC. $亚洲\\gt南美洲$\nD. $北美洲\\lt大洋洲$", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "A", "human_count": 297238, "human_acc": 91.8180044274, "source": "2015年广东省公务员录用考试《行测》题(乡镇)第97题", "difficulty": 3, "formulas": 420}, {"id": 828673, "material": "2012年,某市参加生育保险人数达51.52万人,占应参保人数的比重由上年的$85.4\\%$上升到$90.9\\%$。该市参加基本养老保险人数69.80万人,比上年增长$9.6\\%$,其中女性30.59万人,比上年增长$7.5\\%$,占到参加基本养老保险总人数的$44.1\\%$;参加基本医疗保险人数为102.12万人,比上年增长$6.8\\%$,其中女性28.38万人,比上年增长$29.6\\%$,占到参加基本医疗保险人数的$27.8\\%$;参加失业保险人数为74万人,比上年增长$1.4\\%$,其中女性33.3万人,比上年增长$1.4\\%$,占到参加失业保险总人数的$45.0\\%$,且女性参加失业保险增加人数占到参加失业保险增加总人数的$45\\%$;参加工伤保险人数46.43万人,比上年增长$16.9\\%$,其中女性15.3万人,比上年增长$58.7\\%$,占到参加工伤保险总人数的$32.91\\%$,且女性参加工伤保险增加人数占到参加工伤保险增加总人数的$84.1\\%$。", "question": "将各种社会保险按该市2012年参保人数同比增速从高到低排列正确的是:", "type": "单选题", "options": "A. 工伤保险—失业保险—基本医疗保险\nB. 基本医疗保险—基本养老保险—失业保险\nC. 基本养老保险—基本医疗保险—失业保险\nD. 基本医疗保险—工伤保险—基本养老保险", "choice": "C", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 165619, "human_acc": 84.2813928354, "source": "2014年四川省公务员录用考试《行测》题(下半年)第89题", "difficulty": 4, "formulas": 16}, {"id": 5524970, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2020年,全国开立①银行账户、②单位银行账户、③个人银行账户户数的同比增速排序正确的是:", "type": "单选题", "options": "A. ③>②>①\nB. ②>①>③\nC. ①>③>②\nD. ③>①>②", "choice": "D", "keypoints": "排序类;文字资料", "most_wrong": "B", "human_count": 38348, "human_acc": 70.3895900699, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第96题", "difficulty": 4, "formulas": 0}, {"id": 24815, "material": "2010年5月1日到10月31日,世博会在中国上海举行。自开幕以来,世博会的消费拉动效应初步显现。\n\n\n        世博园区共有浦东和浦西两个片区,5月份的销售总额为4.13亿元,其中浦东片区的销售额占89.4%。园区5月份日均入园25.91万人,园区内就餐人数约占入园总人数的64.5%。午餐比晚餐就餐多197.46万人次。\n\n        世博园开园首日客流为20.69万人,5月29日入园人数为当月最多,比首日客流增加144.08%,是当月入园人数最低日5月5日的5.7倍。开园首日人均消费为5月份最高值,比5月份人均日消费高56.7%。5月29日实现销售额2313.04万元,是5月5日的4.7倍。\n\n        随着入园人数的不断增加,世博园区的销售记录不断刷新,5月份第2到5周的销售总额(包括餐饮消费和特许商品销售)依次为5801.2万元、8108.57万元、10331.87万元和12239.75万元。其中,餐饮消费的营业额依次为3022.86万元、4325.52万元、5467.6万元和6232.2万元。", "question": "第2~5周的特许商品销售额由高到低依次是:", "type": "单选题", "options": "A. 第5周、第4周、第3周、第2周\nB. 第4周、第5周、第2周、第3周\nC. 第2周、第3周、第4周、第5周\nD. 第3周、第2周、向4周、第5周", "choice": "A", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 123381, "human_acc": 87.8206530989, "source": "2010年918联考《行测》题(山西/河南/辽宁/福建/重庆/海南/青海/宁夏/内蒙古/陕西/西藏)第94题", "difficulty": 4, "formulas": 0}, {"id": 754469, "material": "2014年1月份,食品价格同比上涨3.7%,影响居民消费价格总水平同比上涨约1.23个百分点。其中,鲜果价格上涨23.0%,影响居民消费价格总水平上涨约0.44个百分点;液体乳及乳制品价格上涨11.9%,影响居民消费价格总水平上涨约0.17个百分点;水产品价格上涨6.3%,影响居民消费价格总水平上涨约0.16个百分点;粮食价格上涨3.1%,影响居民消费价格总水平上涨约0.09个百分点;鲜菜价格上涨2.1%,影响居民消费价格总水平上涨约0.07个百分点;肉禽及其制品价格上涨0.3%,影响居民消费价格总水平上涨约0.02个百分点(猪肉价格下降4.3%,影响居民消费价格总水平下降约0.15个百分点);蛋价格下降3.8%,影响居民消费价格总水平下降约0.03个百分点。\n\n        2014年1月份,非食品价格环比上涨0.3%。其中,娱乐教育文化用品及服务、家庭设备用品及维修服务、交通和通信、医疗保健和个人用品、居住价格分别上涨1.0%、0.4%、0.4%、0.3%和0.2%,衣着、烟酒及用品价格分别下降0.5%和0.3%。", "question": "1月份非食品价格环比涨跌幅由高到低排列正确的是:", "type": "单选题", "options": "A. 居住——医疗保健和个人用品——交通和通信——衣着\nB. 娱乐教育文化用品及服务——交通和通信——医疗保健和个人用品——衣着\nC. 衣着——交通和通信——医疗保健和个人用品——居住\nD. 衣着——烟酒及用品——居住——家庭设备用品和维修服务", "choice": "B", "keypoints": "排序类;文字资料", "most_wrong": "C", "human_count": 249969, "human_acc": 39.6669186979, "source": "2014年山东省公务员录用考试《行测》题第118题", "difficulty": 3, "formulas": 0}], "categories": [["资料分析", "简单计算", "排序类"], ["资料分析", "文字资料"]]}, {"id": 5610617, "material": "2021年末,全国共有艺术表演团体18370个,比上年末增加789个;从业人员45.33万人,比上年末增加1.63万人。其中各级文化和旅游部门所属艺术表演团体1947个,占10.6%,从业人员10.67万人,占25.5%。\n\n        2021年全国艺术表演团体共演出232.53万场,比上年增长4.2%;国内观众9.28亿人次,增长4.4%;演出收入112.99亿元,增长30.4%。\n\n        2021年全国文化和旅游部门所属艺术表演团体共组织政府采购公益演出13.34万场,比上年下降0.3%;观众0.83亿人次,下降3.9%。\n\n        2021年末,全国共有艺术表演场馆3093个,比上年末增加323个;观众坐席数253.37万个,增长34.9%。全年艺术表演场馆共演映107.04万场,比上年增长82.0%;观众11209.24万人次,增长84.8%。公有制艺术表演场馆1176个,比上年末减少32个;演映46.12万场,比上年增长89.1%;艺术演出观众人次达2066.54万,增长64.2%;艺术演出收入12.92亿元,增长51.8%。文化和旅游部门所属艺术表演场馆1075个,比上年末减少36个,全年共开展艺术演出5.03万场次,比上年增长48.8%;艺术演出观众人次1562.20万,增长45.7%。\n\n        2021年末,全国共有美术馆682个,比上年末增加64个,从业人员6249人,增加782人。全年共举办展览7526次,比上年增长25.7%,参观人次3515.84万,增长60.8%。", "question": "2021年,全国美术馆平均每次展览参观人次比上年同期增长了约:", "type": "单选题", "options": "A. 27.9%\nB. 35.1%\nC. 16.0%\nD. 9.6%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 57135, "human_acc": 65.6672792509, "source": "2023下半年省考第八季行测模考大赛(广东县级卷)第93题", "difficulty": 5, "formulas": 0, "history": [{"id": 4683464, "material": "2016年前三季度,S省居民人均可支配收入18882元,比全国平均水平高1147元。S省城镇居民人均可支配收入25561元,同比增长7.9%;农村居民人均可支配收入11380元,增长8.4%。\n\n        2016年前三季度,S省居民人均工资性收入10769元,同比增长7.8%;人均经营净收入4415元,增长9.8%;人均财产净收入1196元,增长10.6%;人均转移净收入2501元,增长8.6%。\n\n        2016年前三季度,S省居民人均消费支出11229元,同比增长8.9%。从构成看,八大类消费支出全部增长,其中食品烟酒支出增长8.0%,衣着支出增长5.0%,居住支出增长8.6%,生活用品及服务支出增长7.5%,交通通信支出增长10.1%,教育文化娱乐支出增长12.6%,医疗保健支出增长13.1%,其他用品和服务支出增长2.5%。", "question": "若2016年前三季度S省居民人数较上年增长5%,则2016年前三季度,S省居民消费总支出较上年同期的增速约为:", "type": "单选题", "options": "A. 14.3%\nB. 16.7%\nC. 19.8%\nD. 20.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 236151, "human_acc": 64.2161159597, "source": "2022上半年省考第三季行测模考大赛(四川卷)第99题", "difficulty": 6, "formulas": 0}, {"id": 5627706, "material": "随着居民水产消费水平提升,中国渔业经济繁荣发展。2021年,全国渔业经济总产值达29689.73亿元,同比增长7.79%。其中,渔业产值占比51.1%,渔业工业和建筑业产值占比20.7%,渔业流通和服务业产值占比28.2%。\n\n        2021年,全国水产品产量为6690.29万吨,同比增长2.16%;水产品平均价格达22.66元/千克,同比增长9.77%。\n\n        2021年,全国水产捕捞业产值占全国渔业产值的18.3%。其中,海洋捕捞业产值为2303.72亿元,同比增长4.85%;淡水捕捞业产值为336.56亿元,同比下降16.68%;远洋捕捞业产值为133.75亿元,同比下降6.38%。\n\n        2021年,全国水产捕捞业产量规模减少至1295.89万吨,同比下降2.18%。其中,国内海域捕捞水产产量为951.46万吨,国内淡水流域水产捕捞产量为119.78万吨,远洋水产捕捞产量为224.65万吨。", "question": "2021年,全国渔业产值(渔业产值=水产品产量×水产品平均价格)同比约增长:", "type": "单选题", "options": "A. 12.14%\nB. 10.33%\nC. 8.82%\nD. 7.61%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 41664, "human_acc": 64.7201420891, "source": "2023下半年省考第十季行测模考大赛(北京卷)第131题", "difficulty": 6, "formulas": 0}, {"id": 5446887, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第三季度,全国银行平均处理每笔电话支付业务金额约同比:", "type": "单选题", "options": "A. 减少25.3%\nB. 减少14.3%\nC. 增长25.3%\nD. 增长14.3%", "choice": "A", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 262724, "human_acc": 65.434828946, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第99题", "difficulty": 5, "formulas": 0}, {"id": 5742957, "material": "2021年深圳市实现地区生产总值30664.85亿元,比上年增长6.7%,增速较上年提高3.6个百分点。其中,第一产业增加值26.59亿元,增长5.1%;第二产业增加值11338.59亿元,增长4.9%;第三产业增加值19299.67亿元,增长7.8%。\n\n        全年战略性新兴产业增加值合计12146.37亿元,比上年增长6.7%,占地区生产总值的39.6%。其中,新一代电子信息产业增加值5641.66亿元,增长1.2%;数字与时尚产业增加值3103.66亿元,增长13.0%;高端装备制造产业增加值506.53亿元,增长19.4%;绿色低碳产业增加值1386.78亿元,增长8.8%;新材料产业增加值324.34亿元,增长10.0%;生物医药与健康产业增加值589.60亿元,增长7.6%;海洋经济产业增加值593.80亿元,增长14.5%。\n\n        全年农作物播种面积16.33万亩,比上年下降3.5%。其中,蔬菜播种面积13.37万亩,下降2.5%;蔬菜产量16.83万吨,增长4.4%。水果播种面积5.17万亩,下降13.2%;水果产量4.30万吨,下降5.4%。", "question": "2021年深圳市平均每亩蔬菜产量同比约增长:", "type": "单选题", "options": "A. 2%\nB. 5%\nC. 7%\nD. 9%", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "B", "human_count": 124131, "human_acc": 65.1956400899, "source": "2023下半年省考第二十季行测模考大赛(深圳卷)第99题", "difficulty": 4, "formulas": 0}, {"id": 5524972, "material": "2021年,全国共开立银行账户136.64亿户,同比增长9.00%,增速较上年下降1.43个百分点。全国共开立单位银行账户8336.97万户,同比增长11.44%,增速较上年上升2.01个百分点,其中基本存款账户5933.00万户,一般存款账户1948.73万户,专用存款账户436.37万户,临时存款账户18.87万户,同比分别增长10.00%、17.14%、7.59%和1.84%。全国共开立个人银行账户135.81亿户,同比增长8.99%,增速较上年下降1.45个百分点。\n\n        2021年,全国共发生银行卡交易4290.22亿笔,金额1002.10万亿元,同比分别增长24.20%和12.85%。其中,存现50.47亿笔,金额38.41万亿元,同比分别下降7.14%和7.01%;取现75.56亿笔,金额37.46万亿元,同比分别下降9.10%和5.57%;转账业务1846.00亿笔,金额790.26万亿元,同比分别增长19.81%和14.47%;消费业务2318.18亿笔,金额135.97万亿元,同比分别增长30.52%和16.56%。", "question": "2021年,全国平均每笔银行卡交易金额较上年:", "type": "单选题", "options": "A. 增加了不到10%\nB. 增加了10%以上\nC. 减少了不到10%\nD. 减少了10%以上", "choice": "C", "keypoints": "平均数的增长率;文字资料", "most_wrong": "D", "human_count": 38195, "human_acc": 70.3940306323, "source": "2023上半年省考第十一季行测模考大赛(四川卷)第98题", "difficulty": 4, "formulas": 0}], "categories": [["资料分析", "平均数问题", "平均数的增长率"], ["资料分析", "文字资料"]]}, {"id": 457989, "material": "2009年,某省国民经济平稳回升,民生状况不断改善,社会保持和谐稳定,农林牧渔业全面增长。农业增加值1883.4亿元,比上年增长$2.7\\%$;林业增加值71.3亿元,比上年增长$9.8\\%$;牧业增加值691.1亿元,比上年增长$5.2\\%$;渔业增加值459.8亿元,比上年增加$6.1\\%$;农林牧渔服务业增加值121.0亿元,比上年增长$10.1\\%$。主要农牧产品质优量增。小麦和玉米全部实现优质化,无公害农产品、绿色食品和有机食品基地面积分别达到800万亩、1160万亩和51万亩。畜牧产品产量稳定增长。\n\n        该省粮食连续七年实现增产,2009年总产量达到4316.3万吨,比上年增长$1.3\\%$,其中夏粮产量为2047.7万吨,比上年增长$0.6\\%$;秋粮产量为2268.6万吨,比上年增长$1.9\\%$。棉花产量92.1万吨,比上年减少$11.5\\%$。油料作物产量334.5万吨,比上年减少$1.8\\%$。蔬菜产量8937.2万吨,比上年增长$3.5\\%$,增速加快0.8个百分点。园林水果产量为1419.1万吨,比上年增长$1.7\\%$。", "question": "2007年,该省蔬菜产量为多少万吨:", "type": "单选题", "options": "A. 8325.7\nB. 8408.0\nC. 8514.7\nD. 8635.0", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 196969, "human_acc": 68.0761947312, "source": "2014年深圳市公务员录用考试《行测》题第89题", "difficulty": 5, "formulas": 12, "history": [{"id": 8141, "material": "据某房地产公司统计资料分析,2008年云南省昆明市二手房均价为3906.21元/平方米,同比涨幅为4.5%,2008年政府实施了一系列调控房价的措施,这些措施使得二手房价格涨幅趋势,相比2007年6.8%的涨幅已经出现一定的回落,宏观调控的效力得到明显体现。\n\n        另据统计显示,2008年昆明市城四区的二手房均价为4686元/平方米,相比去年上涨6.5%,呈贡、东川、安宁和宜良四个郊县的二手房均价为3199.2元/平方米,相比去年上涨3.2%,2008年昆明市商品房住宅期房的价格达到了5520元/平方米,相比去年同期上涨15%,其上涨幅度明显高于二手房价格的涨幅。\n\n        统计还显示,昆明市现有住宅存量面积约有3000万平方米,其中,已购公房的存量房面积接近1950万平方米,二手商品住宅的存量面积接近1050万平方米,截至去年2007年9月,昆明市空置一年以上的商品住宅面积为36万平方米。", "question": "2006年昆明市二手房的交易价格为:", "type": "单选题", "options": "A. 3500元/平方米\nB. 3738元/平方米\nC. 3943元/平方米\nD. 4100元/平方米", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 7448, "human_acc": 78.7996777658, "source": "2009年云南省公务员录用考试《行测》题第111题", "difficulty": 5, "formulas": 0}, {"id": 623077, "material": "(一)根据所给材料,回答第101-105题\n\n        据海关统计,2011年1—9月,某省实现进出口总额293.8亿美元,比上年同期增长$59.4\\%$,增速比上年同期提升5.5个百分点,高出全国进出口增速34.8个百分点。其中,出口150.5亿美元,增长$28.8\\%$,高出全国出口增速6.1个百分点;进口143.3亿美元,增长1.1倍,高出全国进口增速85.8个百分点。\n\n        1—9月,全省超亿美元贸易伙伴达36个,比上年同期增加6个,其中,德国、印度等国后来居上,超过日本、韩国成为该省主要贸易伙伴。该省对美国实现进出口30.3亿美元,增长$93.1\\%$,位居次席。而其对韩国、马来西亚和日本分别实现进出口7.0亿美元、6.0亿美元和5.4亿美元,分别增长$41.5\\%$、$2.9\\%$和$7.4\\%$,分列五、六、七位。\n\n        受上年基数较大影响,全省对东盟双边贸易进出口呈现下降趋势。1—9月,全省对东盟实现进出口15.1亿美元,下降$24.9\\%$。", "question": "2009年1—9月,该省进出口总额约为多少亿美元?", "type": "单选题", "options": "A. 100\nB. 120\nC. 150\nD. 180", "choice": "B", "keypoints": "间隔基期;文字资料", "most_wrong": "D", "human_count": 411708, "human_acc": 76.3460996629, "source": "2014年四川省公务员录用考试《行测》题第101题", "difficulty": 5, "formulas": 7}, {"id": 5446874, "material": "2021年第三季度支付业务统计数据显示,我国支付体系运行平稳,银行账户数量小幅上升,非现金支付业务量稳步增长,支付系统业务金额快速增加。2021年第三季度全国共开立银行账户133.81亿户,环比增长1.99%,环比增速较上季度末下降0.06个百分点。\n\n        2021年第三季度全国银行共办理非现金支付业务1197.28亿笔,金额1109.19万亿元,同比分别增长19.66%和6.32%。截至三季度末,全国共开立银行卡91.83亿张,环比增长0.80%,增速较上季度末下降0.10个百分点。其中,借记卡83.85亿张,环比增长0.78%。\n\n        2021年第三季度全国银行共处理电子支付业务710.14亿笔,金额737.15万亿元。其中,网上支付业务268.32亿笔,金额587.21万亿元,同比分别增长10.67%和6.45%;移动支付业务390.77亿笔,金额126.81万亿元,同比分别增长13.28%和8.62%;电话支付业务0.77亿笔,同比增长5.83%,金额3.25万亿元,同比下降20.93%。", "question": "2021年第一季度,全国共开立银行账户约:", "type": "单选题", "options": "A. 95亿户\nB. 112亿户\nC. 129亿户\nD. 142亿户", "choice": "C", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 264864, "human_acc": 87.1915398091, "source": "2023上半年省考第四季行测模考大赛(深圳卷)第96题", "difficulty": 3, "formulas": 0}, {"id": 19497, "material": "2011年,G省交通运输生产持续平稳增长。全年客运总量522002.45万人,比上年增长11.8%,增幅同比回落2.9个百分比。旅客周转总量3852.66亿人公里,比上年增长15.3%,增幅同比回落1.4个百分比。分运输方式看,铁路客运量和旅客周转量分别为17778.00万人和506.00亿人公里,比上年分别增长18.9%和10.9%;公路客运量和旅客周转量分别为493618.00万人和2082.68亿人公里,比上年分别增长11.6%和20.0%;水路客运量和旅客周转量分别为2591.00万人和9.63亿人公里;航空客运量和旅客周转量分别为8015.45万人和1254.35亿人公里,比上年分别增长5.1%和9.9%。\n\n        全年货运总量234913.02万吨,比上年增长14.7%,增幅同比提高1.7个百分点。货物周转总量7105.95亿吨公里,比上年增长19.8%,增幅同比提高0.1个百分点,公路货运量和周转量增幅分别比上年提高4.7个和7个百分点,其他运输方式增幅较上年则呈现不同程度的回落:其中,航空和铁路回落幅度较大,主要是2010年航空新增两架货运专机和高铁投入运营后,比2009年增幅基数偏高所致。", "question": "2009年客运总量约为多少万人:", "type": "单选题", "options": "A. 407068\nB. 428748\nC. 455102\nD. 479340", "choice": "A", "keypoints": "间隔基期;文字资料", "most_wrong": "B", "human_count": 389291, "human_acc": 60.6970107195, "source": "2012年广东省公务员录用考试《行测》题第91题", "difficulty": 5, "formulas": 0}, {"id": 2261934, "material": "对全国规模以上文化及相关产业5.9万家企业的调查显示,2018年上半年,上述企业实现营业收入42227亿元,比上年同期增长$9.9\\%$,继续保持较快增长。\n\n        文化及相关产业9个行业的营业收入均实现增长。其中,新闻信息服务营业收入3744亿元,比上年同期增长$29.4\\%$;创意设计服务5143亿元,增长$15.1\\%$;内容创作生产8820亿元,增长$11.9\\%$;文化传播渠道4501亿元,增长$10.0\\%$;文化辅助生产和中介服务7783亿元,增长$8.2\\%$;文化消费终端生产7911亿元,增长$4.2\\%$;文化投资运营349亿元,增长$3.5\\%$;文化装备生产3313亿元,增长$0.7\\%$;文化休闲娱乐服务663亿元,增长$0.2\\%$。\n\n        分区域看,东部地区规模以上文化及相关产业企业实现营业收入32443亿元;中部、西部和东北地区分别为5828亿元、3509亿元和447亿元。从增长速度看,西部地区比上年同期增长$13.4\\%$;东部地区增长$9.7\\%$;中部地区增长$9.6\\%$;东北地区增长$2.4\\%$,与上年同期下降$2.5\\%$相比,实现了正增长。", "question": "2016年上半年,东北地区规模以上文化及相关产业企业实现营业收入约(  )亿元。", "type": "单选题", "options": "A. 425.9\nB. 435.9\nC. 437.7\nD. 447.7", "choice": "D", "keypoints": "间隔基期;文字资料", "most_wrong": "A", "human_count": 426256, "human_acc": 58.4930182801, "source": "广东省2019年选调优秀大学毕业生笔试 综合行政能力测验题(网友回忆版)第71题", "difficulty": 5, "formulas": 15}], "categories": [["资料分析", "基期与现期", "间隔基期"], ["资料分析", "文字资料"]]}, {"id": 5515290, "material": "2020年,全国全社会用电量75110亿千瓦时,同比增长3.1%。分产业看,第一产业用电量859亿千瓦时,同比增长10.2%;第二产业用电量51215亿千瓦时,同比增长2.5%;第三产业用电量12087亿千瓦时,同比增长1.9%;城乡居民生活用电量10949亿千瓦时,同比增长6.9%。\n\n        2020年,全国6000千瓦及以上电厂发电设备平均利用小时同比减少70小时。其中,水电设备平均利用小时为3827小时,同比增加130小时;火电设备平均利用小时为4216小时,同比减少92小时。\n\n        2021年,全国全社会用电量83128亿千瓦时。分产业看,第一产业用电量1023亿千瓦时;第二产业用电量56131亿千瓦时,其中工业用电量55090亿千瓦时,同比增长9.1%;第三产业用电量14231亿千瓦时;城乡居民生活用电量11743亿千瓦时。\n\n        2021年,全国6000千瓦及以上电厂发电设备平均利用小时3817小时,比上年同期增加59小时。全国主要发电企业电源工程建设投资完成5530亿元,同比增长4.5%,其中,水电988亿元,同比下降7.4%。", "question": "2019年,以下选项从低到高排名第二的是:", "type": "单选题", "options": "A. 第一产业用电量\nB. 第二产业用电量\nC. 第三产业用电量\nD. 城乡居民生活用电量", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 40297, "human_acc": 63.1238057424, "source": "2023上半年省考第十季行测模考大赛(四川卷)第86题", "difficulty": 5, "formulas": 0, "history": [{"id": 2748421, "material": "2019年,G省完成邮政业务总量4403.44亿元,占全国的$27.1\\%$,比上年增长$36.9\\%$,增幅比上年提高10.9个百分点,增幅高于全国平均水平5.4个百分点。\n\n        2019年,G省快递业务发展态势良好,全年实现快递业务量168.06亿件,占全国的$26.5\\%$,增长$29.7\\%$,增幅比上年提高2.1个百分点;快递业务收入1847.91亿元,增长$30.9\\%$,增幅比上年提高7.8个百分点,传统邮政业务有所萎缩,函件、订销报刊累计数分别为45592.89万件和72363.62万份,比上年分别下降$13.8\\%$和$3.8\\%$。\n\n        2019年,G省电信业务总量增幅相比前两年的高增长有所回落,全年完成业务总量12049.51亿元,比上年增长$54.7\\%$,比前三季度回落12.9个百分点。\n\n        截至2019年12月底,G省移动电话期末用户1.65亿户,下降$1.7\\%$;4G期末用户1.43亿户,增长$2.3\\%$。互联网宽带接入期末用户3802万户,增长$2.7\\%$;移动互联网期末用户1.42亿户,下降$8.2\\%$。", "question": "2018年末,下列G省的电信业务用户数量最多的是:", "type": "单选题", "options": "A. 移动电话期末用户\nB. 4G期末用户\nC. 互联网宽带接入期末用户\nD. 移动互联网期末用户", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "D", "human_count": 263845, "human_acc": 77.526957115, "source": "广东省2021年度选调生和急需紧缺专业公务员招录笔试 综合行政能力测验(网友回忆版)第98题", "difficulty": 4, "formulas": 12}, {"id": 5370392, "material": "2022年4月,上海市实现外贸进出口总额2191.49亿元,比去年同月下降36.5%。其中,出口695.96亿元,比去年同月下降43.8%;进口1495.53亿元,下降32.5%。1-4月,全市实现外贸进出口总额12269.53亿元,比去年同期增长0.1%。\n\n        从经营主体看,4月,国有企业出口59.11亿元,比去年同月下降60.8%,进口145.49亿元,下降46.6%;私营企业出口294.02亿元,下降21.5%,进口383.95亿元,下降35.4%;外商投资企业出口336.17亿元,下降52.1%,进口961.55亿元,下降28.3%。\n\n        从贸易方式看,4月,一般贸易出口480.13亿元,比去年同月下降23.1%,进口1007.72亿元,下降28.5%;加工贸易出口139.52亿元,下降62.0%,进口131.5亿元,下降28.9%。\n\n        从主要贸易产品看,4月,机电产品出口381.35亿元,比去年同月下降54.5%,进口637.83亿元,下降32.5%;高新技术产品出口198.22亿元,下降55.8%,进口355.95亿元,下降40.0%。\n\n        从主要出口市场看,4月,对欧盟出口114.95亿元,比去年同月下降37.2%;对美国出口116.21亿元,下降47.3%;对日本出口47.02亿元,下降56.6%;对香港出口53.06亿元,下降56.2%。", "question": "2021年4月,上海市下列各项进出口指标中呈现贸易顺差的是:", "type": "单选题", "options": "A. 国有企业\nB. 外商投资企业\nC. 加工贸易\nD. 一般贸易", "choice": "C", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 352237, "human_acc": 87.0490607176, "source": "2022下半年省考第十八季行测模考大赛(深圳卷)第87题", "difficulty": 3, "formulas": 0}, {"id": 2137506, "material": "2017年上半年,S市出口手机1.9亿台,比去年同期减少$22.7$$\\%$;价值513.1亿元人民币,下降$23.7$$\\%$。6月份当月出口3217.5万台,减少$23.7$$\\%$;价值86亿元,下降$27.8$$\\%$。\n\n\n        上半年,S市以一般贸易方式出口手机1.8亿台,减少$22.1$$\\%$;以加工贸易方式出口699.9万台,减少$30.7$$\\%$;以海关特殊监管方式出口手机245.2万台,减少$36.6$$\\%$。\n\n        上半年,S市民营企业出口手机1.6亿台,减少$20.8$$\\%$;外商投资企业出口2043.9万台,减少$42.9$$\\%$;同期,国有企业出口1859.3万台,减少$4.5$$\\%$。\n\n        上半年,S市对香港地区出口手机1.5亿台,减少$28.4$$\\%$;对印度、美国、阿联酋分别出口1151万台、978.2万台和511.3万台,增加$94.8$$\\%$、$45.6$$\\%$和$11.4$$\\%$。此外,对东盟、欧盟分别出口251.2万台、210.4万台,减少$68.6$$\\%$、$60.6$$\\%$。\n\n        上半年,S市出口GSM数字式手机8910.5万台,减少$20.5$$\\%$;出口含4G手机在内的其他手机7480.6万台,减少$26.1$$\\%$;出口CDMA数字式手机307.3万台,减少$19.2$$\\%$。", "question": "将不同出口目的地按2016年上半年自S市进口手机台数从多到少排列,正确的是______。", "type": "单选题", "options": "A. 东盟$\\gt$美国$\\gt$印度\nB. 印度$\\gt$美国$\\gt$东盟\nC. 印度$\\gt$东盟$\\gt$美国\nD. 美国$\\gt$东盟$\\gt$印度", "choice": "A", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 362623, "human_acc": 59.2108057128, "source": "2018年上海市公务员录用考试《行测》题(B类)(网友回忆版)第88题", "difficulty": 5, "formulas": 703}, {"id": 7169, "material": "2008年1~5月份,我国规模以上工业企业(年主营业务收入500万元以上的企业,下同)实现利润10944亿元,同比增长$20.9\\%$。\n\n        在规模以上工业企业中,国有及国有控股企业实现利润4246亿元,同比增长$1.5\\%$;集体企业实现利润283亿元,增长$35.3\\%$;股份合作企业实现利润63亿元,增长$16.6\\%$。股份制企业实现利润6010亿元,增长$24.1\\%$;外商及港澳台商投资企业实现利润3119亿元,增长$22.4\\%$。私营企业实现利润2105亿元,增长$51.0\\%$。\n\n        在39个工业大类中,石油和天然气开采业利润同比增长$54.3\\%$,煤炭行业增长$97.8\\%$,钢铁行业增长$25.6\\%$,化工行业增长$26.0\\%$,有色金属冶炼及压延加工业增长$3.9\\%$,建材行业增长$50.9\\%$,专用设备制造业增长$25.9\\%$,交通运输设备制造业增长$46.3\\%$,电子通信设备制造业增长$36.5\\%$,电力行业利润下降$74.0\\%$,化纤行业利润下降$26.8\\%$,石油加工及炼焦业由去年同期盈利352亿元转为净亏损443亿元。\n\n        规模以上工业企业税金总额7889亿元,同比增长$26.4\\%$。规模以上工业实现主营业务收入183768亿元,同比增长$29.3\\%$。\n\n        5月末,规模以上工业应收账款40312亿元,同比增长$17.2\\%$。产成品资金20083亿元,同比增长$26.1\\%$。", "question": "以下企业中,2007年1~5月份_____________实现利润最低。", "type": "单选题", "options": "A. 国有及国有控股企业\nB. 股份制企业\nC. 外商及港澳台商投资企业\nD. 私营企业", "choice": "D", "keypoints": "基期比较;文字资料", "most_wrong": "B", "human_count": 14936, "human_acc": 61.8170862346, "source": "2008年河北省公务员录用考试《行测》题第117题", "difficulty": 5, "formulas": 22}, {"id": 2547727, "material": "2017年全国各类高等教育在学总规模达到3779万人,比上年增加80万人,高等教育毛入学率达到$45.7\\%$。全国共有普通高等学校2631所(含独立学院265所),比上年增加35所,增长$1.35\\%$。其中,本科院校1243所,比上年增加6所;高职(专科)院校1388所,比上年增加29所。全国共有成人高等学校282所,比上年减少2所;研究生培养机构815个,其中,普通高校578个,科研机构237个。普通高等学校校均规模10430人,其中,本科学校14639人,高职(专科)学校6662人。\n\n        2017年研究生招生80.61万人,其中,全日制69.19万人。招收博士生8.39万人,硕士生72.22万人。在学研究生263.96万人,其中,在学博士生36.2万人。毕业研究生57.80万人,其中,毕业博士生5.8万人。\n\n        2017年普通本专科招生761.49万人,增长$1.72\\%$;在校生2753.59万人,增长$2.14\\%$;毕业生735.83万人,增长$4.49\\%$。\n\n        2017年普通高等学校教职工244.30万人,比上年增加3.82万人,增长$1.59\\%$;专任教师163.32万人,比上年增加3.13万人,增长$1.95\\%$。普通高校生师比为17.52:1,其中,本科学校17.42:1,高职(专科)学校17.74:1。成人高等学校教职工4.14万人,比上年减少1711人;专任教师2.4万人,比上年减少1224人。\n\n        注:毛入学率,是指学年某级教育在校生数占相应学龄人口总数的比例。", "question": "2016年普通本专科的各项学生人数按照从小到大依次排序正确的是:", "type": "单选题", "options": "A. 招生人数、毕业生人数、在校生人数\nB. 毕业生人数、招生人数、在校生人数\nC. 在校生人数、招生人数、毕业生人数\nD. 在校生人数、毕业生人数、招生人数", "choice": "B", "keypoints": "基期比较;文字资料", "most_wrong": "C", "human_count": 389788, "human_acc": 65.3424425585, "source": "2021年国考第五季行测模考大赛(副省级)第127题", "difficulty": 6, "formulas": 7}], "categories": [["资料分析", "基期与现期", "基期比较"], ["资料分析", "文字资料"]]}] \ No newline at end of file