結果
問題 |
No.394 ハーフパイプ(1)
|
ユーザー |
![]() |
提出日時 | 2016-12-12 16:45:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 265 bytes |
コンパイル時間 | 1,545 ms |
コンパイル使用メモリ | 169,524 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 16:31:58 |
合計ジャッジ時間 | 2,237 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 WA * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int (i)=0;(i)<(int)(n);(i)++) typedef long long ll; int main() { int s[6]; rep(i,6) cin >> s[i]; sort(s,s+6); double ans=0; rep(i,4) ans+=s[i+1]; ans /= 4; cout << ans << endl; return 0; }