結果

問題 No.185 和風
ユーザー fujitafujita
提出日時 2023-05-09 17:22:25
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,412 bytes
コンパイル時間 8,949 ms
コンパイル使用メモリ 170,200 KB
実行使用メモリ 186,280 KB
最終ジャッジ日時 2024-05-04 15:09:18
合計ジャッジ時間 9,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 50 ms
29,184 KB
testcase_02 AC 50 ms
29,056 KB
testcase_03 AC 50 ms
28,800 KB
testcase_04 AC 51 ms
29,184 KB
testcase_05 AC 50 ms
28,672 KB
testcase_06 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());

            int[] strings1 = new int[N * 2];
            //int[] strings2 = new int[str.Length];

            for (int i = 0; i <= N * 2 - 1; i++)
            {
                var str = Console.ReadLine().Split(" ");
                int n = 0;
                strings1[i] = int.Parse(str[n]);
                strings1[i + 1] = int.Parse(str[n + 1]);
                i++;
            }
            

            for (int k = strings1.Length -1; k >= 0;)
            {
                if (strings1[k] - strings1[k - 1] == strings1[k - 2] - strings1[k - 3])
                {
                    k = k - 2;
                    if(k <= 1 && strings1[1] - strings1[0] > 0)
                    {
                        Console.WriteLine(strings1[1] - strings1[0]);
                        break;
                    }
                    else if(!(k <= 1 && strings1[1] - strings1[0] > 0))
                    {
                        Console.WriteLine("-1");
                        break;
                    }

                    continue;
                }
                else
                {
                    Console.WriteLine("-1");
                    break;
                }
                
            }
           
        }
    }
}
0