結果

問題 No.21 平均の差
ユーザー LV3zJigVW57oPGyLV3zJigVW57oPGy
提出日時 2022-11-03 23:25:06
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 1,556 ms
コンパイル使用メモリ 160,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 05:26:07
合計ジャッジ時間 2,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
#include <ios>
#include <iomanip>
#include <iostream>
#include <string>
#include <algorithm>


int main(void){
  int a,b;
  cin >>a>>b;
  vector<int> vec(a);
  for(int i=0;i<a;i++){
    cin >>vec.at(i);
  }
  int min = *min_element(begin(vec),end(vec));
  int max = *max_element(begin(vec),end(vec));
  cout << max-min;
}
0