結果

問題 No.21 平均の差
ユーザー a2011404a2011404
提出日時 2017-03-14 14:56:44
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 20,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 00:44:33
合計ジャッジ時間 599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:17:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |         scanf("%d %d",&n,&k);
      |         ^~~~~~~~~~~~~~~~~~~~
main.c:20:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                 scanf("%d",&N[i]);
      |                 ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int comp(const void *arg1, const void *arg2){

	return *(int *)arg1 - *(int *)arg2;

}




int main(void)
{
	int i,n,k,N[9],max,min;

	scanf("%d %d",&n,&k);

	for(i=0;i<n;i++){
		scanf("%d",&N[i]);
	}

	qsort(N, n, sizeof(int), comp);

	printf("%d",N[n-1]-N[0]);


	return 0;
}
0