結果
問題 | No.21 平均の差 |
ユーザー | kaito_tateyama |
提出日時 | 2017-08-06 16:16:05 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 366 bytes |
コンパイル時間 | 527 ms |
コンパイル使用メモリ | 65,904 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 22:44:42 |
合計ジャッジ時間 | 1,293 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int N,K; cin >> N >> K; vector<float> v; for (int i = 0; i < N; i++) { float a; cin >> a; v.push_back(a); } sort(v.begin(),v.end()); float max = v.back(); float min = v.front(); float dif = max - min; cout << dif << "\n"; return 0; }