結果
問題 | No.185 和風 |
ユーザー | tsukacchan |
提出日時 | 2016-03-24 11:20:23 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 388 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 21,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 21:52:20 |
合計ジャッジ時間 | 665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 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]); | ^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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; }