結果

問題 No.406 鴨等間隔の法則
ユーザー HaijinnHaijinn
提出日時 2016-10-06 22:39:25
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 21:14:03
合計ジャッジ時間 1,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 3 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 8 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 14 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 14 ms
5,376 KB
testcase_28 AC 13 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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