題目鏈接:點擊打開鏈接
解題思路:
費馬大定理······Orz!!!膜拜神學。當n== 1時,輸出1 、2、 3;當n==2時,輸出3 、4 、5;當n >= 3時,無解。
完整代碼:
#include #include #include #include #include #include #include #include #include using namespace std; typedef long long LL; const int MOD = int(1e9)+7; const int INF = 0x3f3f3f3f; const double EPS = 1e-9; const double PI = acos(-1.0); //M_PI; int main() { #ifdef DoubleQ freopen("in.txt","r",stdin); #endif int n; while(cin >> n) { if(n == 1) cout << "1 2 3" << endl; else if(n == 2) cout << "3 4 5" << endl; else cout << "-1" << endl; } }
C++基礎——函數指針 函數指針數組,指針數組=======
棧的鏈式結構表示與實現——自己寫數據結構 今天給
MFC界面皮膚庫,mfc界面用於MFC的皮膚庫,內有近50種
Codeforces Round #290 (Div. 2)
【博文推薦】如何獲得C語言函數起始地址和返回地址
C++ 嵌入匯編程序提高計算效率 由於匯編語言比C++更