結果

問題 No.1265 Balloon Survival
ユーザー keymoonkeymoon
提出日時 2020-10-23 23:42:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 1,295 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 112,984 KB
実行使用メモリ 46,208 KB
最終ジャッジ日時 2024-07-21 13:42:36
合計ジャッジ時間 9,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
20,608 KB
testcase_01 AC 41 ms
20,480 KB
testcase_02 AC 36 ms
20,352 KB
testcase_03 AC 44 ms
20,608 KB
testcase_04 AC 44 ms
20,608 KB
testcase_05 AC 44 ms
20,608 KB
testcase_06 AC 44 ms
20,736 KB
testcase_07 AC 44 ms
20,480 KB
testcase_08 AC 43 ms
20,608 KB
testcase_09 AC 44 ms
20,352 KB
testcase_10 AC 44 ms
20,608 KB
testcase_11 AC 45 ms
20,736 KB
testcase_12 AC 46 ms
20,608 KB
testcase_13 AC 46 ms
20,480 KB
testcase_14 AC 81 ms
22,528 KB
testcase_15 AC 71 ms
22,272 KB
testcase_16 AC 52 ms
21,120 KB
testcase_17 AC 224 ms
33,152 KB
testcase_18 AC 58 ms
21,356 KB
testcase_19 AC 54 ms
20,920 KB
testcase_20 AC 78 ms
22,400 KB
testcase_21 AC 125 ms
25,728 KB
testcase_22 AC 95 ms
23,552 KB
testcase_23 AC 105 ms
23,936 KB
testcase_24 AC 445 ms
46,080 KB
testcase_25 AC 446 ms
45,952 KB
testcase_26 AC 448 ms
45,824 KB
testcase_27 AC 449 ms
45,952 KB
testcase_28 AC 450 ms
45,952 KB
testcase_29 AC 449 ms
45,824 KB
testcase_30 AC 469 ms
46,080 KB
testcase_31 AC 475 ms
45,952 KB
testcase_32 AC 442 ms
46,208 KB
testcase_33 AC 447 ms
45,696 KB
testcase_34 AC 44 ms
20,224 KB
testcase_35 AC 43 ms
20,480 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;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        long[][] pts = Enumerable.Repeat(0, n).Select(_ => Console.ReadLine().Split().Select(long.Parse).ToArray()).ToArray();

        int res = 0;
        HashSet<int> remain = new HashSet<int>(Enumerable.Range(0, n));
        foreach (var item in Enumerable.Range(0, n - 1).SelectMany(x => Enumerable.Range(x + 1, n - x - 1).Select(y => new Tuple<int, int>(x, y))).OrderBy(x => GetDist(pts[x.Item1], pts[x.Item2])))
        {
            var i = item.Item1;
            var j = item.Item2;
            if (remain.Contains(i) && remain.Contains(j))
            {
                if (i != 0) remain.Remove(i);
                else res++;
                remain.Remove(j);
            }
        }

        Console.WriteLine(res);
    }

    static long GetDist(long[] a, long[] b)
    {
        var dy = a[0] - b[0];
        var dx = a[1] - b[1];
        return dy * dy + dx * dx;
    }
}
0