https://codeforces.com/contest/1092/problem/B
/*
*@Author: STZG
*@Language: C++
*/
#include <bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<deque>
#include<stack>
#include<cmath>
#include<list>
#include<map>
#include<set>
//#define DEBUG
#define RI register int
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N=10000;
const int MOD=1e9+7;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m,k,q;
int a[N];
int main()
{
#ifdef DEBUG
freopen(\"input.in\", \"r\", stdin);
//freopen(\"output.out\", \"w\", stdout);
#endif
scanf(\"%d\",&n);
for(int i=1;i<=n;i++)
scanf(\"%d\",&a[i]);
sort(a+1,a+n+1);
int ans=0;
for(int i=1;i<=n/2;i++){
ans+=abs(a[2*i-1]-a[2*i]);
}
cout << ans << endl;
//cout << \"Hello world!\" << endl;
return 0;
}
继续阅读与本文标签相同的文章
下一篇 :
对于交换机的知识你了解了多少
-
个人音视频常用工具介绍
2026-05-18栏目: 教程
-
用自定义监控实现 GPU 异常状况的检查与报警
2026-05-18栏目: 教程
-
与你同行,才能无障碍
2026-05-18栏目: 教程
-
分布式Id - redis方式
2026-05-18栏目: 教程
-
HTML5 容器入门解析:支付宝 Hybrid 方案原理与实战
2026-05-18栏目: 教程
