結果
問題 | No.394 ハーフパイプ(1) |
ユーザー |
![]() |
提出日時 | 2016-10-05 20:40:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 408 bytes |
コンパイル時間 | 1,879 ms |
コンパイル使用メモリ | 171,212 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 17:24:16 |
合計ジャッジ時間 | 2,013 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
#include <bits/stdc++.h> using namespace std; using pint = pair< int, int >; using ull = unsigned long long; int main() { vector< int > v( 6 ); for( auto&& i : v ) { cin >> i; } sort( begin( v ), end( v ) ); v.erase( begin( v ) ); v.erase( end( v ) - 1 ); cout << fixed << setprecision( 2 ) << ( accumulate( begin( v ), end( v ), 0.0 ) / 4.0 ) << endl; }