题解列表

筛选

题解 2773: 计算线段长度

摘要:解题思路:自行抄题解注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double xa,ya,xb,yb,a,……

车厢调度(python)

摘要:解题思路:注意事项:参考代码:def trainSchedule(n, order):    stack = []    next_car = 1        for car in order:  ……

2849: 石头剪子布

摘要:``` #include using namespace std; const int N=110; int main(){ int T; cin>>T; while(T--){……

最长最短单词

摘要:解题思路:注意事项:参考代码:myList=input().split()mydict= {}newList=[]for temp in myList:    newList.append(len(t……

java真的很简单

摘要:import java.util.Scanner; import java.util.Arrays; public class Main { public static void main……

1231: 杨辉三角

摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin……

2784: 收集瓶盖赢大奖

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int x,y;    cin >> x >>y ;……