結果

問題 No.647 明太子
ユーザー iwkjoseciwkjosec
提出日時 2018-03-25 00:48:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 116 ms / 4,500 ms
コード長 1,091 bytes
コンパイル時間 3,099 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-06-27 02:52:01
合計ジャッジ時間 4,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
18,944 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 27 ms
19,072 KB
testcase_03 AC 30 ms
19,072 KB
testcase_04 AC 29 ms
18,944 KB
testcase_05 AC 30 ms
19,072 KB
testcase_06 AC 29 ms
19,072 KB
testcase_07 AC 34 ms
19,072 KB
testcase_08 AC 30 ms
19,200 KB
testcase_09 AC 31 ms
19,456 KB
testcase_10 AC 37 ms
19,584 KB
testcase_11 AC 33 ms
19,200 KB
testcase_12 AC 34 ms
19,456 KB
testcase_13 AC 38 ms
19,584 KB
testcase_14 AC 89 ms
22,656 KB
testcase_15 AC 42 ms
19,840 KB
testcase_16 AC 34 ms
19,328 KB
testcase_17 AC 105 ms
22,912 KB
testcase_18 AC 113 ms
22,784 KB
testcase_19 AC 47 ms
22,144 KB
testcase_20 AC 44 ms
21,760 KB
testcase_21 AC 34 ms
20,224 KB
testcase_22 AC 116 ms
23,168 KB
testcase_23 AC 33 ms
19,328 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.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        var N = int.Parse(ReadLine());
        var A = new int[N];
        var B = new int[N];
        for (int i = 0; i < N; i++)
        {
            var AB = ReadLine().Split().Select(int.Parse).ToArray();
            A[i]=AB[0];
            B[i]=AB[1];
        }
        var M =int.Parse(ReadLine());
        var X = new int[M];
        var Y = new int[M];
        for (int i = 0; i < M; i++)
        {
            var XY = ReadLine().Split().Select(int.Parse).ToArray();
            X[i]=XY[0];
            Y[i]=XY[1];
        }
        var c=new int[M];
        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < M; j++)
            {
                if(A[i]>=X[j]&&B[i]<=Y[j])c[j]++;
            }
        }
        if(c.Max()==0)WriteLine(0);
        else
        {
            foreach (var a in c.Select((x,i)=>x==c.Max()?i+1:0).Where(x=>x>0))
            {
                WriteLine(a);
            }
        }
    }
}
0