题解列表
2840: 向量点积计算
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5;ll ……
题解 2840: 向量点积计算
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5;ll ……
1131: C语言训练-斐波纳契数列
摘要:解题思路:注意事项:参考代码#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7+5;ll ……
题解 1131: C语言训练-斐波纳契数列
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;ll a[45];int main(){ ……
编写题解 2784 收集瓶盖赢大奖
摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split(" "))if a>=10 or b>=20: print('1')else: print……
暴力画矩形 【简单易懂】
摘要:#include <iostream>
#include <cmath>
using namespace std;
/*
画矩形
*/
int main()
{
// ……
蓝桥杯算法训练VIP-整数平均值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100]; int i; int b; int c=0; scanf("%……