結果

問題 No.202 1円玉投げ
ユーザー 14番14番
提出日時 2016-05-03 13:08:48
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,442 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 113,428 KB
実行使用メモリ 68,340 KB
最終ジャッジ日時 2024-12-22 10:15:08
合計ジャッジ時間 136,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 29 ms
42,624 KB
testcase_03 AC 30 ms
42,496 KB
testcase_04 AC 28 ms
42,624 KB
testcase_05 AC 425 ms
46,592 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 4,945 ms
68,340 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 555 ms
47,388 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 39 ms
43,520 KB
testcase_23 AC 37 ms
27,276 KB
testcase_24 AC 32 ms
27,412 KB
testcase_25 AC 31 ms
19,712 KB
testcase_26 AC 38 ms
19,328 KB
testcase_27 AC 40 ms
19,456 KB
testcase_28 AC 31 ms
19,840 KB
testcase_29 AC 33 ms
19,840 KB
testcase_30 AC 38 ms
19,712 KB
testcase_31 AC 29 ms
19,712 KB
testcase_32 AC 42 ms
19,584 KB
testcase_33 AC 36 ms
19,712 KB
testcase_34 AC 38 ms
19,712 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 30 ms
19,072 KB
testcase_40 AC 31 ms
33,936 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.Generic;
using System.Text;
using System.Linq;
 
class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int coinCount = int.Parse(Reader.ReadLine());
        List<Ichien> coinList = new List<Ichien>();
        for(int i=0; i<coinCount; i++) {
            Ichien newCoin = new Ichien(Reader.GetInt());
            bool isKasanari = false;
            coinList.Where(a=> a.X < newCoin.X + 20 && a.X > newCoin.X - 20 && a.Y < newCoin.Y + 20 && a.Y > newCoin.Y - 20).ToList().ForEach((b)=>{
                if(newCoin.IsKasanaru(b)) {
                    isKasanari = true;
                }
            });
            if(!isKasanari) {
                coinList.Add(newCoin);
            }
        }
        Console.WriteLine(coinList.Count);


    }
    
    public class Ichien {
        public long X;
        public long Y;
        public int R = 10;
        
        public Ichien(int[] pos) {
            this.X = pos[0];
            this.Y = pos[1];
        }
        public bool IsKasanaru(Ichien target) {
            long range = ((this.X - target.X) * (this.X - target.X)) + ((this.Y - target.Y) * (this.Y - target.Y));
            return (this.R + target.R) * (this.R + target.R) > range;
        }
    }


    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"


2
100 100
112 116


 
";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        public static int[] GetInt(char delimiter = ' ', bool trim = false)
        {
            string inptStr = ReadLine();
            if (trim)
            {
                inptStr = inptStr.Trim();
            }
            string[] inpt = inptStr.Split(delimiter);
            int[] ret = new int[inpt.Length];
            for (int i = 0; i < inpt.Length; i++)
            {
                ret[i] = int.Parse(inpt[i]);
            }
            return ret;
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0