結果

問題 No.394 ハーフパイプ(1)
ユーザー asdfghjkl;asdfghjkl;
提出日時 2019-10-12 16:52:25
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 436 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-05-06 02:07:22
合計ジャッジ時間 2,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: return type defaults to 'int' [-Wimplicit-int]
    1 | main(){
      | ^~~~
main.c: In function 'main':
main.c:5:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
    5 |         scanf("%d",c[a]);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | main(){
main.c:5:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
    5 |         scanf("%d",c[a]);
      |         ^~~~~
main.c:5:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:18:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
   18 |     printf("%lf\n",ans);
      |     ^~~~~~
main.c:18:5: note: include '<stdio.h>' or provide a declaration of 'printf'
main.c:18:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
main.c:18:5: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

main(){
    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);
}
0