题解列表

筛选

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){      int n;      while(scanf("%d",&n)!=E……

A+B for Input-Output Practice (IV)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci……

能量项链python代码

摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))a=a[:n:]a.extend(a[:])a.insert(0,0)f = ……

1352: Matrix67的派对

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int n, k; int h……

每日打卡题目

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e7 + 5;int arry[N];int main……

日常打卡1.18

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e7 + 5;int arry[N];int reve……

最小绝对值

摘要:num = list(map(int, input().split()))  # 对原来十个数建立列表储存num1 = list(map(abs, num))  # 对原列表数绝对值储存sum = 0……