結果
問題 | No.21 平均の差 |
ユーザー | arrows |
提出日時 | 2017-01-30 20:39:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 884 ms |
コンパイル使用メモリ | 63,648 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-24 00:03:23 |
合計ジャッジ時間 | 1,077 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> int main() { int N, K; std::cin >> N >> K; int min = 1145, max = -14; for (int i = 0; i < N; i++) { int n; std::cin >> n; min = std::min(min, n); max = std::max(max, n); } std::cout << max - min << std::endl; return 0; }