結果
| 問題 | No.602 隠されていたゲーム2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-02 01:15:55 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,274 bytes |
| 記録 | |
| コンパイル時間 | 876 ms |
| コンパイル使用メモリ | 105,344 KB |
| 実行使用メモリ | 32,896 KB |
| 最終ジャッジ日時 | 2024-11-28 02:03:06 |
| 合計ジャッジ時間 | 2,544 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 9 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 int[N];
for (int i = 0; i < N; ++i) {
D[i] = int.Parse(t[i]);
}
Array.Sort(D);
s = Console.ReadLine();
t = s.Split(' ');
int x = int.Parse(t[0]);
int y = int.Parse(t[1]);
int X = Math.Abs(x + y);
int Y = Math.Abs(x - y);
int 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);
}
}