結果

問題 No.647 明太子
ユーザー kenken
提出日時 2018-07-19 17:38:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,818 ms / 4,500 ms
コード長 1,723 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 108,580 KB
実行使用メモリ 27,992 KB
最終ジャッジ日時 2024-12-24 03:51:49
合計ジャッジ時間 10,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,108 KB
testcase_01 AC 25 ms
25,888 KB
testcase_02 AC 24 ms
25,840 KB
testcase_03 AC 25 ms
24,100 KB
testcase_04 AC 25 ms
25,884 KB
testcase_05 AC 25 ms
23,856 KB
testcase_06 AC 25 ms
24,056 KB
testcase_07 AC 26 ms
26,012 KB
testcase_08 AC 25 ms
24,056 KB
testcase_09 AC 45 ms
24,236 KB
testcase_10 AC 67 ms
26,012 KB
testcase_11 AC 35 ms
23,988 KB
testcase_12 AC 60 ms
24,116 KB
testcase_13 AC 106 ms
23,800 KB
testcase_14 AC 1,037 ms
27,756 KB
testcase_15 AC 158 ms
26,096 KB
testcase_16 AC 59 ms
23,932 KB
testcase_17 AC 1,326 ms
27,988 KB
testcase_18 AC 1,442 ms
26,220 KB
testcase_19 AC 415 ms
24,060 KB
testcase_20 AC 420 ms
24,056 KB
testcase_21 AC 164 ms
24,076 KB
testcase_22 AC 2,818 ms
27,992 KB
testcase_23 AC 27 ms
25,900 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