結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | Yamyuki |
提出日時 | 2016-12-21 12:44:45 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 203 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 21,248 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-14 12:13:35 |
合計ジャッジ時間 | 667 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d",&s); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(){ int i,s,sum=0,max=0,min=100; for(i=0;i<6;i++){ scanf("%d",&s); sum+=s; max=(s>max)?s:max; min=(s<min)?s:min; } s=sum-max-min; printf("%.2f",s/4.0); return 0; }