結果
問題 | No.21 平均の差 |
ユーザー | ldsyb |
提出日時 | 2016-03-03 16:46:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 303 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 62,216 KB |
実行使用メモリ | 10,012 KB |
最終ジャッジ日時 | 2024-09-24 13:48:10 |
合計ジャッジ時間 | 12,998 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(){ int average = 0,n,k; cin >> n >> k; int N[n]; for(int i = 0;i < n;i++) cin >> N[i]; stable_sort(N,N + n); for(int i = n - 1;i > 1;i++) average += N[i]; average /= n - 2; cout << average - N[0] << endl; }