結果

問題 No.21 平均の差
ユーザー okkuukenkenokkuukenken
提出日時 2018-10-03 15:23:57
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 62,800 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 10:21:48
合計ジャッジ時間 988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
	int N, k;
	cin >> N >> k;
	vector<int> n(N);
	for (auto &x : n) cin >> x;
	cout << *max_element(n.begin(), n.end()) - *min_element(n.begin(), n.end()) << endl;
}
0