結果

問題 No.647 明太子
ユーザー バカらっくバカらっく
提出日時 2018-02-09 22:38:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 319 ms / 4,500 ms
コード長 2,308 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 108,696 KB
実行使用メモリ 26,132 KB
最終ジャッジ日時 2023-09-09 09:23:44
合計ジャッジ時間 5,941 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
21,992 KB
testcase_01 AC 67 ms
21,896 KB
testcase_02 AC 64 ms
21,836 KB
testcase_03 AC 68 ms
21,864 KB
testcase_04 AC 69 ms
21,880 KB
testcase_05 AC 67 ms
21,876 KB
testcase_06 AC 68 ms
21,704 KB
testcase_07 AC 68 ms
21,920 KB
testcase_08 AC 68 ms
20,004 KB
testcase_09 AC 72 ms
21,824 KB
testcase_10 AC 77 ms
22,048 KB
testcase_11 AC 71 ms
24,052 KB
testcase_12 AC 75 ms
21,920 KB
testcase_13 AC 83 ms
19,788 KB
testcase_14 AC 216 ms
25,912 KB
testcase_15 AC 90 ms
21,980 KB
testcase_16 AC 74 ms
23,812 KB
testcase_17 AC 263 ms
26,132 KB
testcase_18 AC 274 ms
23,968 KB
testcase_19 AC 131 ms
23,908 KB
testcase_20 AC 134 ms
19,844 KB
testcase_21 AC 91 ms
21,716 KB
testcase_22 AC 319 ms
24,000 KB
testcase_23 AC 71 ms
21,836 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.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{

    public void Proc()
    {
        int memberCount = int.Parse(Reader.ReadLine());
        this.mentaiMembers = new Person[memberCount];
        for (int i = 0; i < memberCount; i++) {
            this.mentaiMembers[i] = new Person(Reader.ReadLine());
        }
        Dictionary<int, int> mentai = new Dictionary<int, int>();
        int mentaiCount = int.Parse(Reader.ReadLine());
        int maxBuy = 0;
        for (int i = 0; i < mentaiCount; i++) {
            int[] inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray();
            int price = inpt[0];
            int karasa = inpt[1];
            int buy = this.mentaiMembers.Count(a => a.Kane >= price && a.Karasa <= karasa);
            if(buy>0) {
                mentai.Add(i + 1, buy);
                maxBuy = Math.Max(maxBuy, buy);
            }
        }

        StringBuilder ans = new StringBuilder();
        mentai.Where(a=>a.Value==maxBuy).OrderBy(a=>a.Key).ToList().ForEach(a=>ans.AppendLine(a.Key.ToString()));
        if(ans.Length>0) {
            Console.Write(ans.ToString());
        } else {
            Console.WriteLine(0);
        }
    }

    Person[] mentaiMembers;

    private class Person {
        public int Kane;
        public int Karasa;
        public Person(string inpt) {
            int[] tmp = inpt.Split(' ').Select(a => int.Parse(a)).ToArray();
            this.Kane = tmp[0];
            this.Karasa = tmp[1];
        }
    }


    public class Reader
    {
        private static StringReader sr;
        public static bool IsDebug = false;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (sr == null)
                {
                    sr = new StringReader(InputText.Trim());
                }
                return sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        private static string InputText = @"


4
8 6
3 5
4 2
7 3
1
10 2


";
    }

    public static void Main(string[] args)
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0