結果
問題 | No.21 平均の差 |
ユーザー | Y_S |
提出日時 | 2020-07-22 06:06:43 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 452 bytes |
コンパイル時間 | 824 ms |
コンパイル使用メモリ | 70,376 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-02 14:15:49 |
合計ジャッジ時間 | 1,472 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> //cin, cout #include <vector> //vector #include <algorithm> //sort,min,max #include <string> //string #include <ios> //fixed #include <iomanip> //setprecision using namespace std; int main() { int N, K; cin >> N >> K; int temp = 0; int max = 1; int min = 1000; for (int i = 0; i < N; i++) { cin >> temp; if (temp > max) { max = temp; } if (temp < min) { min = temp; } } cout << max - min << endl; return 0; }