結果

問題 No.185 和風
ユーザー tsukacchantsukacchan
提出日時 2016-03-24 11:20:23
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 388 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-09 21:24:49
合計ジャッジ時間 608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.h>

int main(void){

int i;
int N;
int X[1000],Y[1000];
int Ans[1000];
int counter=0;

scanf("%d",&N);

for(i=0;i<N;i++)
scanf("%d%d",&X[i],&Y[i]);

for(i=0;i<N;i++)
Ans[i]=Y[i]-X[i];

if(Ans[0]>0){
	for(i=0;i<N-1;i++)
	{
	if(Ans[i]!=Ans[i+1])
	counter++;
	}
	
	if(counter==0)  
		printf("%d",Ans[0]);
	else          
		printf("-1\n");
}
else 
printf("-1\n");

return 0;

}
0