結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | asdfghjkl; |
提出日時 | 2019-10-12 16:52:59 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 463 bytes |
コンパイル時間 | 346 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 02:11:11 |
合計ジャッジ時間 | 2,759 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include <stdio.h> int main(void){ double ans; int a,b,c[100],min=-1,max=1000,minnum,maxnum,sum=0; for(a=0;a!=6;a++){ scanf("%d",c[a]); } for(a=0;a!=6;a++){ if(min>=c[a]){min=c[a];minnum=a;} else if(max<=c[a]){max=c[a];maxnum=a;} } c[maxnum]=-1; c[minnum]=-1; for(a=0;a!=6;a++){ if(c[a]==-1){} else{sum=sum+c[a];} } ans=(double)sum/4.0; printf("%lf\n",ans); }