結果
問題 | No.21 平均の差 |
ユーザー | akakimidori |
提出日時 | 2015-07-26 21:52:06 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 233 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 20,224 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-16 00:17:37 |
合計ジャッジ時間 | 679 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
コンパイルメッセージ
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); | ^~~~~~~~~~~~~~
ソースコード
#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; N--; } printf("%d\n",max-min); return 0; }