結果

問題 No.476 正しくない平均
ユーザー HaijinnHaijinn
提出日時 2017-01-29 14:10:10
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 23:09:34
合計ジャッジ時間 1,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 AC 0 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 0 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 0 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 0 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 0 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 0 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 0 ms
5,248 KB
testcase_19 AC 0 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 0 ms
5,248 KB
testcase_23 AC 0 ms
5,248 KB
testcase_24 AC 0 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 0 ms
5,248 KB
testcase_27 AC 0 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:14:17: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘long long int *’ [-Wformat=]
   14 |         scanf("%d",&x[i]);
      |                ~^  ~~~~~
      |                 |  |
      |                 |  long long int *
      |                 int *
      |                %lld
main.c:10:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 | scanf("%lld%lld",&n,&a);
      | ^~~~~~~~~~~~~~~~~~~~~~~
main.c:14:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |         scanf("%d",&x[i]);
      |         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
long long  n;
long long a;
long long x[10];
int i;
double d=0;
scanf("%lld%lld",&n,&a);
for(i=0;i<n;i++){
	
	
	scanf("%d",&x[i]);
	
	d+=x[i];
}
d=d/n;
if(d==a){
	printf("YES\n");
	
	
	
	
}else{
	
	printf("NO\n");
}



	return 0;
}
0