結果

問題 No.185 和風
ユーザー onaona071onaona071
提出日時 2018-03-17 18:19:17
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 54,868 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 10:01:55
合計ジャッジ時間 937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
using namespace std;

int main(int argc, char const* argv[])
{
    int n;
    cin>>n;
    int x[n],y[n],z[n];

    int counter=1;
    for (int i = 0; i < n; i++) {
        cin>>x[i]>>y[i];
        z[i] = y[i] - x[i];
    }

    for (int i = 0; i < n-1; i++) {
        for (int j = i+1; j < n; j++) {
            if(z[j]==z[i]){
                counter++;
            }
        }
    }
    if(counter==1){
        cout<<"-1"<<endl;
        return 0;
    }
    cout<<counter<<endl;
    return 0;
}
0