結果

問題 No.202 1円玉投げ
ユーザー mbanmban
提出日時 2017-07-11 19:31:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,650 ms / 5,000 ms
コード長 1,691 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 105,984 KB
実行使用メモリ 494,964 KB
最終ジャッジ日時 2024-12-22 11:00:31
合計ジャッジ時間 28,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,044 ms
110,720 KB
testcase_01 AC 1,650 ms
491,264 KB
testcase_02 AC 30 ms
25,452 KB
testcase_03 AC 28 ms
23,816 KB
testcase_04 AC 30 ms
25,328 KB
testcase_05 AC 481 ms
405,624 KB
testcase_06 AC 1,506 ms
494,328 KB
testcase_07 AC 1,538 ms
494,812 KB
testcase_08 AC 1,494 ms
494,676 KB
testcase_09 AC 1,099 ms
491,168 KB
testcase_10 AC 765 ms
479,740 KB
testcase_11 AC 999 ms
489,576 KB
testcase_12 AC 1,018 ms
489,328 KB
testcase_13 AC 797 ms
482,208 KB
testcase_14 AC 520 ms
424,172 KB
testcase_15 AC 1,120 ms
491,124 KB
testcase_16 AC 1,071 ms
162,936 KB
testcase_17 AC 969 ms
94,576 KB
testcase_18 AC 956 ms
94,712 KB
testcase_19 AC 1,062 ms
490,480 KB
testcase_20 AC 1,339 ms
493,040 KB
testcase_21 AC 1,055 ms
489,580 KB
testcase_22 AC 105 ms
105,960 KB
testcase_23 AC 106 ms
105,968 KB
testcase_24 AC 35 ms
29,296 KB
testcase_25 AC 35 ms
29,304 KB
testcase_26 AC 41 ms
26,348 KB
testcase_27 AC 42 ms
23,168 KB
testcase_28 AC 32 ms
25,196 KB
testcase_29 AC 30 ms
23,420 KB
testcase_30 AC 96 ms
96,304 KB
testcase_31 AC 31 ms
25,328 KB
testcase_32 AC 181 ms
155,756 KB
testcase_33 AC 43 ms
29,816 KB
testcase_34 AC 45 ms
27,184 KB
testcase_35 AC 961 ms
73,596 KB
testcase_36 AC 1,259 ms
147,308 KB
testcase_37 AC 1,639 ms
494,964 KB
testcase_38 AC 978 ms
75,472 KB
testcase_39 AC 49 ms
43,456 KB
testcase_40 AC 44 ms
37,364 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.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{

    private int N;
    private int[] X, Y;

    bool[,] B = new bool[40050, 40050];
    private int[] Lx, Ly;

    private void Scan()
    {
        N = int.Parse(Console.ReadLine());
        X = new int[N];
        Y = new int[N];
        for (int i = 0; i < N; i++)
        {
            var line = Console.ReadLine().Split(' ');
            X[i] = int.Parse(line[0]) + 20020;
            Y[i] = int.Parse(line[1]) + 20020;
        }
    }

    private void CalcL()
    {
        var resultX = new List<int>();
        var resultY = new List<int>();
        for (int x = -20; x <= 20; x++)
        {
            for (int y = -20; y <= 20; y++)
            {
                if (Math.Sqrt(x * x + y * y) < 20)
                {
                    resultX.Add(x);
                    resultY.Add(y);
                }
            }
        }
        Lx = resultX.ToArray();
        Ly = resultY.ToArray();
    }

    private bool C(int n)
    {
        if (B[X[n], Y[n]]) return false;

        for (int i = 0; i < Lx.Length; i++)
        {
            B[X[n] + Lx[i], Y[n] + Ly[i]] = true;
        }
        return true;
    }

    public void Solve()
    {
        Scan();
        CalcL();
        int ans = 0;
        for (int i = 0; i < N; i++)
        {
            if (C(i))
            {
                ans++;
            }
        }
        Console.WriteLine(ans);
    }
}
0