結果

問題 No.602 隠されていたゲーム2
ユーザー nebukuro09nebukuro09
提出日時 2017-12-02 01:22:57
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,283 bytes
コンパイル時間 1,202 ms
コンパイル使用メモリ 105,600 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-05-06 00:34:02
合計ジャッジ時間 2,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,688 KB
testcase_01 AC 20 ms
18,688 KB
testcase_02 AC 21 ms
18,816 KB
testcase_03 AC 22 ms
18,560 KB
testcase_04 AC 23 ms
18,688 KB
testcase_05 AC 23 ms
18,560 KB
testcase_06 AC 24 ms
18,816 KB
testcase_07 WA -
testcase_08 AC 23 ms
18,688 KB
testcase_09 WA -
testcase_10 AC 25 ms
18,816 KB
testcase_11 AC 24 ms
18,944 KB
testcase_12 AC 23 ms
18,688 KB
testcase_13 AC 24 ms
18,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
22,144 KB
testcase_18 AC 79 ms
31,488 KB
testcase_19 AC 88 ms
33,408 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 (long i = 0; i < N; ++i) {
            D[i] = int.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 (D.Contains(M)) {
            Console.WriteLine(1);
            return;
        } 

        for (int i = 0; i < N; ++i) {        
            int hi = N;
            int lo = 0;
            while (hi - lo > 1) {
                int mid = (hi + lo) / 2;
                if (D[mid] <= M + D[i]) {
                    lo = mid;
                } else {
                    hi = mid;
                }
            }

            if (lo == i) {
                lo -= 1;
            }

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

        Console.WriteLine(-1);
    }
}
0