結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | extelo |
提出日時 | 2016-07-21 21:00:38 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 697 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 21,504 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 07:33:28 |
合計ジャッジ時間 | 621 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 0 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 0 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 0 ms
6,816 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:26:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d %d %d %d %d %d", &a, &b, &c, &d, &e, &f); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> void sort(int ten[]) { int i,j,temp; for(i=0;i<6;i++){ for(j=5;j>i;j--){ if(ten[i] > ten[j]){ temp = ten[i]; ten[i] = ten[j]; ten[j] = temp; } } } } int main(void) { int a,b,c,d,e,f; int ten[6]; double ans; int i; scanf("%d %d %d %d %d %d", &a, &b, &c, &d, &e, &f); // scanf("%d", &b); // scanf("%d", &c); // scanf("%d", &d); //scanf("%d", &e); //scanf("%d", &f); ten[0] = a; ten[1] = b; ten[2] = c; ten[3] = d; ten[4] = e; ten[5] = f; sort(ten); // for(i=0;i<6;i++){ // printf("%d\n", ten[i]); //} ans = (double)(ten[1]+ten[2]+ten[3]+ten[4])/4.0; printf("%.2f\n", ans); return 0; }