結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | mudbdb |
提出日時 | 2016-07-15 22:34:36 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 340 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 21,760 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 04:31:23 |
合計ジャッジ時間 | 695 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:10:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d %d %d %d %d %d",S,S+1,S+2,S+3,S+4,S+5); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> int cmp(const void *a, const void *b) { return (*(int*)a)-(*(int*)b); } int main() { int S[6]; scanf("%d %d %d %d %d %d",S,S+1,S+2,S+3,S+4,S+5); qsort(S,6,sizeof(int),cmp); int i; int sum = 0; for (i=1; i<=4; i++) { sum += S[i]; } printf("%.2f\n",(double)sum/4.0); return 0; }