結果

問題 No.21 平均の差
ユーザー akakimidoriakakimidori
提出日時 2015-07-26 21:51:43
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 226 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 19,968 KB
実行使用メモリ 15,032 KB
最終ジャッジ日時 2024-07-16 00:17:36
合計ジャッジ時間 14,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d",&N);
      |         ^~~~~~~~~~~~~~
main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%*d");
      |         ^~~~~~~~~~~~
main.c:14:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 scanf("%d",&n);
      |                 ^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(void){

	int N;
	scanf("%d",&N);

	int max=1;
	int min=1000;
	scanf("%*d");

	while(N>0){
		int n;
		scanf("%d",&n);
		max=n>max?n:max;
		min=n<min?n:min;
	}

	printf("%d\n",max-min);

	return 0;
}
0