結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | aoharu9825 |
提出日時 | 2019-07-18 12:22:50 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 535 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 11:40:48 |
合計ジャッジ時間 | 953 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include<stdio.h> #include<stdlib.h> typedef long long int ll; int MIN(int a, int b){return a>b?b:a;} int MAX(int a, int b){return a>b?a:b;} int compare(const void* a, const void* b){ return *(int*)a - *(int*)b; } int main(void){ int s[6]; for(int i=0; i<6; i++){ scanf("%d", &s[i]); } qsort(s, 6, sizeof(int), compare); double sum = 0.0; for(int i=0; i<6; i++){ if(i==0 || i==5){ continue; } sum += s[i]; } printf("%l.2f\n", sum/4); return 0; }