結果

問題 No.602 隠されていたゲーム2
ユーザー nebukuro09
提出日時 2017-12-02 01:53:25
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,156 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 107,828 KB
実行使用メモリ 37,544 KB
最終ジャッジ日時 2024-11-28 02:13:38
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

public class Program
{
    static void Main()
    {
        string s = Console.ReadLine();
        int N = int.Parse(s);

        s = Console.ReadLine();
        var t = s.Split(' ');
        var D = new long[N];
        for (int i = 0; i < N; ++i) {
            D[i] = long.Parse(t[i]);
        }
        Array.Sort(D);

        s = Console.ReadLine();
        t = s.Split(' ');

        long x = long.Parse(t[0]);
        long y = long.Parse(t[1]);

        long X = Math.Abs(x + y);
        long Y = Math.Abs(x - y);
        long M = Math.Max(X, Y);

        if (x == 0 && y == 0) {
            Console.WriteLine(-1);
            return;
        }

        if (D.Contains(M)) {
            Console.WriteLine(1);
            return;
        } 

        for (int i = 0; i < N; ++i) {   
            if (i > 0 && D[i] - D[i-1] <= M && M <= D[i] + D[i-1]) {
                Console.WriteLine(2);
                return;
            } else if (i < N-1 && D[i+1] - D[i] <= M && M <= D[i] + D[i+1]) {
                Console.WriteLine(2);
                return;
            }
        }

        Console.WriteLine(-1);
    }
}
0