結果
問題 | No.185 和風 |
ユーザー | asdfghjkl; |
提出日時 | 2020-03-12 13:00:11 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 359 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 17:56:26 |
合計ジャッジ時間 | 646 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
ソースコード
#include<stdio.h> #include<string.h> #include<stdlib.h> int main(void){ int n;scanf("%d",&n); int a[1005],b[1005]; for(int i=0;i<n;i++){ scanf("%d %d",&a[i],&b[i]); } int sab=b[0]-a[0]; int sab2; for(int i=1;i<n;i++){ sab2=b[i]-a[i]; if(sab!=sab2){printf("-1\n");return 0;} else if(sab2<=0){printf("-1\n");return 0;} } printf("%d\n",sab); }