题解列表

筛选

题解 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 ……

求三个数的最大值

摘要:解题思路:使用三目运算符运算更加简便注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); ……

无聊的星期六

摘要:z=input() z=z.split() max=0 for i in range(len(z)):     if len(z[max])<len(z[i]):         max=i……

无聊的星期六

摘要:凑字数:----------------------------------------------------------------------------------------z=input(……

无聊的星期六

摘要:z = [str(x) for x in [input() for _ in range(3)]] z.sort() print(&#39;\n&#39;.join(map(str, z)))……