結果

問題 No.647 明太子
ユーザー kenken
提出日時 2018-07-19 17:38:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,772 ms / 4,500 ms
コード長 1,723 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 107,988 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-06-06 12:16:10
合計ジャッジ時間 11,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 23 ms
17,664 KB
testcase_02 AC 22 ms
17,920 KB
testcase_03 AC 23 ms
17,792 KB
testcase_04 AC 24 ms
17,792 KB
testcase_05 AC 25 ms
17,792 KB
testcase_06 AC 24 ms
17,792 KB
testcase_07 AC 25 ms
17,920 KB
testcase_08 AC 24 ms
17,792 KB
testcase_09 AC 44 ms
18,048 KB
testcase_10 AC 68 ms
17,920 KB
testcase_11 AC 33 ms
17,664 KB
testcase_12 AC 59 ms
18,048 KB
testcase_13 AC 105 ms
17,920 KB
testcase_14 AC 1,025 ms
19,840 KB
testcase_15 AC 153 ms
18,304 KB
testcase_16 AC 56 ms
18,048 KB
testcase_17 AC 1,309 ms
20,096 KB
testcase_18 AC 1,420 ms
19,968 KB
testcase_19 AC 405 ms
19,584 KB
testcase_20 AC 424 ms
18,944 KB
testcase_21 AC 162 ms
18,432 KB
testcase_22 AC 2,772 ms
20,480 KB
testcase_23 AC 26 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Console;

namespace Project2
{
    class Class1
    {
        public static void Main()
        {
            var n = int.Parse(ReadLine());
            var member = new int[n][];

            for(var i = 0; i < n; i++)
            {
                member[i] = new int[2];
                var inputArr = ReadLine().Split(' ');
                member[i][0] = int.Parse(inputArr[0]);
                member[i][1] = int.Parse(inputArr[1]);
            }

            var m = int.Parse(ReadLine());
            var mentaiko = new int[m];
            for (var i = 0; i < m; i++)
            {
                var inputArr = ReadLine().Split(' ');

                for(var j = 0; j < n; j++)
                {
                    if (member[j][0] >= int.Parse(inputArr[0]) && member[j][1] <= int.Parse(inputArr[1]))
                    {
                        mentaiko[i]++;
                    }
                }
            }

            var max = -1;
            var result = new int[m];
            var index = 0;
            for (var i = 0; i < m; i++)
            {
                if (mentaiko[i] == max)
                {
                    index++;
                    result[index] = i+1;
                }
                else if(mentaiko[i] > max)
                {
                    max = mentaiko[i];
                    index = 0;
                    result[0] = i+1;
                }
            }
            if (max == 0)
            {
                WriteLine(0);
            }
            else
            {
                for (var j = 0; j <= index; j++)
                {
                    WriteLine(result[j]);
                }
            }
            
        }
    }
}
0