题目并没有说,一个数只能用一次。
对于给定的题目条件:
7817 7823 7829 与 7829 7841 7853 都是等差数列,只不过是7829用了2次。
附上我的代码:
#include <bits/stdc++.h>
#define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout);
using namespace s...