結果

問題 No.406 鴨等間隔の法則
ユーザー Haijinn
提出日時 2016-10-06 22:39:25
言語 C90
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 21,376 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 06:18:41
合計ジャッジ時間 1,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21 WA * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:13:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~
main.c:21:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |                 scanf("%d",&x[w]);
      |                 ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	int p;
	int n;
	int i=0;
	int c;
	int t=0;
	int r;
	int w;
	
	scanf("%d",&n);
	int x[100000];
	
	p=n-1;
	r=p;
	w=p;

	while(w>=0){
		scanf("%d",&x[w]);
		w--;
	}

	for(i;i<=p;i++){
		for(r;r>i;r--){
			if(x[r-1]>x[r]){
				c=x[r];
				x[r]=x[r-1];
				x[r-1]=c;
			}
		}
	}
	r=x[1]-x[0];
	if(r==0){
		printf("NO");
		return 0;
	}
	
	for(t;t<p;t++){
		if(r !=x[t+1]-x[t]){
			printf("NO\n");
			return 0;
		}
	}
		
	
	printf("YES\n");
	return 0;
}
0