結果

問題 No.21 平均の差
コンテスト
ユーザー Hentci
提出日時 2022-04-27 15:13:25
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 563 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,246 ms
コンパイル使用メモリ 339,412 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2026-03-16 19:11:00
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define ar array
#define sz(x) ((int)x.size())
template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);}
template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);}
int main(){
    ios_base::sync_with_stdio(false),cin.tie(0);
    int n, k;
    cin >> n >> k;
    vector <int> arr(n);
    for(auto &ele: arr) cin >> ele;
    sort(all(arr));

    cout << arr[n - 1] - arr[0] << "\n"; 

    return 0;
}
0