摘要: ```pythonimport timestart_date = time.time()for l in range(1001): for m in range(1001): for n in range(1001): if l + m +n == 1000 and l**2 + m**2 == n**2: print('... 阅读全文
posted @ 2020-04-08 17:14 梦乡尘子 阅读(98) 评论(0) 推荐(0)