結果
問題 | No.394 ハーフパイプ(1) |
ユーザー |
|
提出日時 | 2016-07-15 22:22:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 327 bytes |
コンパイル時間 | 654 ms |
コンパイル使用メモリ | 74,132 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 01:34:01 |
合計ジャッジ時間 | 1,123 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <numeric> using namespace std; int main() { vector<int> s(6); for (int i = 0; i < 6; i++) { cin >> s[i]; } sort(s.begin(), s.end()); double avg = accumulate(s.begin() + 1, s.end() - 1, 0.0) / 4; printf("%.2f\n", avg); return 0; }