結果

問題 No.21 平均の差
ユーザー soragsorag
提出日時 2022-08-08 08:28:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 390 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 100,356 KB
最終ジャッジ日時 2024-04-27 04:10:04
合計ジャッジ時間 993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:19:5: error: 'sort' was not declared in this scope; did you mean 'sqrt'?
   19 |     sort(a.begin(),a.end());
      |     ^~~~
      |     sqrt

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include<string>
#include<queue>
#include<math.h>
#define ll long long
#define P pair<int,int>
#define lP pait<ll,ll>
using namespace std;
int main() {
    int n,k;
    cin>>n>>k;
    vector<int> a(n);
    for (int i=0;i<n;i++){
        cin>>a[i];
    }
    sort(a.begin(),a.end());
    cout<<a[n-1]-a[0]<<endl;
    return 0;
}
     


0