{ "question": "John and Jack have 30 minutes to walk to school together. It takes them 6 minutes to get to the corner where the library is. It takes them another 13 minutes to get to the fire station. How much longer do they have to get to school without being late?", "answer": "John and Jack arrive at the library with 30 - 6 = <<30-6=24>>24 minutes left to reach the fire station.\nThey then arrive at the fire station and have 24 - 13 = <<24-13=11>>11 minutes left to get to school without being late.\n#### 11", "id_orig": 684, "id_shuffled": 14, "question_annotated": "{n1,John} and {n2,Jack} have {t,30} minutes to walk to the {loc1,school} together starting from their home. It takes them {t1,6} minutes to get to the corner where the {loc2,library} is. It takes them another {t2,13} minutes to get to the {loc3, fire station}. When they reach the {loc3,library}, they remember they forgot their wallets at home, so they have to return to pick up their wallets and then walk all the way back to the {loc3,library} again. Once they reach the {loc3,library} for the second time, how much longer do they have to get to the {loc1,school} without being late?\n\n#init:\n- n1, n2 = sample(names, 2)\n- loc1, loc2, loc3, loc4 = sample(['cinema', 'mall', 'library', 'park', 'gym', 'bank', 'grocery store'], 4)\n- $t1 = range(10, 30)\n- $t2 = range(10, 70)\n- $t = range(130, 270)\n\n#conditions:\n- not divides(t1, 5)\n- not divides(t2, 5)\n- not divides(t, 5)\n- t - 3*(t1+t2) > 10\n\n\n#answer: t - 3*(t1+t2)", "answer_annotated": "{n1} and {n2} go from home to {loc3} in {t1} minutes + {t2} minutes = {t1+t2} minutes.\nSince they have to return home again, they will spend {t1+t2} minutes more to reach home. Once they have their wallets, they will come back to {loc3} again from which will take another {t1+t2} minutes. So far they have spent 3 * {t1+t2} minutes = {3*(t1+t2)} minutes.\nThey had {t} minutes and they have spent {3*(t1+t2)} minutes once they reach {loc3} for the second time. They have {t} - {3*(t1+t2)} = {t - 3*(t1+t2)} minutes left to reach to the {loc1} without being late.\n#### {t - 3*(t1+t2)}" }