結果
問題 |
No.394 ハーフパイプ(1)
|
ユーザー |
![]() |
提出日時 | 2019-04-03 22:43:33 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 3,722 ms |
コンパイル使用メモリ | 159,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 11:11:14 |
合計ジャッジ時間 | 3,403 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 11 |
ソースコード
#include "bits/stdc++.h" using namespace std; int main() { double S[6]; for (int i = 0; i < 6; i++) { cin >> S[i]; } sort(S, S + 6); printf("%2f", (S[1] + S[2] + S[3] + S[4]) / 4); }