题解 1858: 逆序数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

逆序数-题解(C++代码)

摘要:**最简单的暴力方法:** 直接利用一个数组输入,然后两层循环解决 #include #define hh ios::sync_with_stdio(false),cin.tie……

1858: 逆序数

摘要:解题思路:注意事项:参考代码:n = int(input()) l=list(map(int,input().split())) s=0 for i in range(n-1):     fo……

每日打卡题目

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

逆序数——python

摘要:解题思路:注意事项:参考代码:n = int(input())L = list(map(int,input().split()))s = 0while len(L)>1:    a = L[0]   ……