题解列表
编写题解 2332: 信息学奥赛一本通T1181-整数奇偶排序
摘要:解题思路:先用sort排序,再输出注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const in……
2332: 信息学奥赛一本通T1181-整数奇偶排序
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll a……
编写题解 1131: C语言训练-斐波纳契数列
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll ;const ll N=1e6;ll a……
2917: 奇数单增序列
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;ll a……
1720: 数据结构-基数排序
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll a……
2854: 密码翻译
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;string a;const int N……
编写题解 1671: 小九九
摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ for(int i=1; i<=9; i++) ……