結果

問題 No.185 和風
ユーザー NoNo
提出日時 2015-04-20 15:15:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 1,025 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 99,512 KB
実行使用メモリ 24,720 KB
最終ジャッジ日時 2023-09-18 00:52:23
合計ジャッジ時間 4,048 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,640 KB
testcase_01 AC 61 ms
22,696 KB
testcase_02 AC 58 ms
20,768 KB
testcase_03 AC 59 ms
20,880 KB
testcase_04 AC 57 ms
18,596 KB
testcase_05 AC 58 ms
24,720 KB
testcase_06 AC 59 ms
20,740 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Programming
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            string[] str;
            int[] X = new int[N];
            int[] Y = new int[N];
            for (int i = 0; i < N; i++)
            {
                str = Console.ReadLine().Split();
                X[i] = int.Parse(str[0]);
                Y[i] = int.Parse(str[1]);
            }

            //-----------------------------

            int ans = Y[0] - X[0];
            for (int i = 1; i < N ; i++)
            {
                if (ans != Y[i] - X[i])
                {
                    ans = -1;
                    Console.WriteLine(ans);
                    return;
                }
            }

            if (ans <= 0)
            {
                ans = -1;
            }

            Console.WriteLine(ans);
        }
    }
}
0