結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | daradara_sanma |
提出日時 | 2017-07-14 20:57:58 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 335 bytes |
コンパイル時間 | 414 ms |
コンパイル使用メモリ | 55,668 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 21:54:18 |
合計ジャッジ時間 | 1,088 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d", &s); | ~~~~~^~~~~~~~~~
ソースコード
#include<iostream> #include<cstdio> #include<string> using namespace std; int main() { int max = -1, min = 101, s; int sum = 0; for (int i = 0; i < 6; i++) { scanf("%d", &s); sum += s; if (max < s) max = s; if (min > s) min = s; } float ans = (float)(sum - max - min) / (float)4; printf("%.2f\n", ans); return 0; }