結果
問題 | No.21 平均の差 |
ユーザー | yfujita0929 |
提出日時 | 2016-04-10 18:31:07 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 875 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 21,760 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 05:45:20 |
合計ジャッジ時間 | 852 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 0 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:13:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d\n%d", &num, &group_num); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:16:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%d", &num_arr[idx]); | ^~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> #define STR_SIZE 10 void sortArr(int* arr, int size); void swap(int *x, int *y); int main(void) { int num, group_num, *num_arr, idx, res; scanf("%d\n%d", &num, &group_num); num_arr = (int*)calloc(sizeof(int), num); for(idx = 0; idx < num; idx++) { scanf("%d", &num_arr[idx]); } sortArr(num_arr, num); res = num_arr[(num-1)] - num_arr[0]; printf("%d\n", res); free(num_arr); return 0; } void sortArr(int *num_arr, int size) { int i, j, min; for(i = 0; i < size; i++) { min = 1001; for(j = i; j < size; j++){ if(num_arr[j] < min){ min = num_arr[j]; swap(&num_arr[i], &num_arr[j]); } } } } void swap(int *x, int *y) { int tmp = *x; *x = *y; *y = tmp; }