D. Reverse Sort Sum
思路
链接:https://blog.csdn.net/m0_59273843/article/details/124281957
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int a[500000],c[500000];
void solve() {
int n;
cin >> n;
for(int i = 1;i <= n; i++){
cin >&..
原创
2022-05-05 22:05:42 ·
254 阅读 ·
0 评论