結果

問題 No.647 明太子
ユーザー bluemeganebluemegane
提出日時 2018-09-08 15:31:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 146 ms / 4,500 ms
コード長 1,546 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 112,892 KB
実行使用メモリ 27,484 KB
最終ジャッジ日時 2024-05-09 16:25:45
合計ジャッジ時間 2,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
27,216 KB
testcase_01 AC 30 ms
25,388 KB
testcase_02 AC 26 ms
22,964 KB
testcase_03 AC 27 ms
25,424 KB
testcase_04 AC 27 ms
25,392 KB
testcase_05 AC 28 ms
27,216 KB
testcase_06 AC 29 ms
25,692 KB
testcase_07 AC 28 ms
25,300 KB
testcase_08 AC 28 ms
23,476 KB
testcase_09 AC 30 ms
25,344 KB
testcase_10 AC 29 ms
27,220 KB
testcase_11 AC 29 ms
25,468 KB
testcase_12 AC 29 ms
27,480 KB
testcase_13 AC 33 ms
25,132 KB
testcase_14 AC 62 ms
27,172 KB
testcase_15 AC 34 ms
25,324 KB
testcase_16 AC 29 ms
27,476 KB
testcase_17 AC 71 ms
25,392 KB
testcase_18 AC 75 ms
23,224 KB
testcase_19 AC 34 ms
25,212 KB
testcase_20 AC 34 ms
27,484 KB
testcase_21 AC 31 ms
27,252 KB
testcase_22 AC 146 ms
27,344 KB
testcase_23 AC 31 ms
27,252 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class P
{
    public int x { get; set; }
    public int y { get; set; }
    public int id { get; set; }
}

public class Hello
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var a = new int[n, 2];
        for (int i = 0; i < n; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            a[i, 0] = int.Parse(line[0]);
            a[i, 1] = int.Parse(line[1]);
        }
        var m = int.Parse(Console.ReadLine().Trim());
        var ps = new P[m];
        for (int i = 0; i < m; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var x = int.Parse(line[0]);
            var y = int.Parse(line[1]);
            ps[i] = new P { id = i, x = x, y = y };
        }
        var ps2 = ps.OrderBy(z => z.x).ToArray();
        printAns(a, ps2);
    }
    public static void printAns(int[,] a, P[] b)
    {
        var ans = new List<int>();
        var n = a.GetLength(0);
        var m = b.Length;
        var buy = new int[m];
        var max = 0;
        for (int i = 0; i < n; i++)
            for (int j = 0; j < m; j++)
            {
                if (b[j].x > a[i, 0]) break;
                if (b[j].y >= a[i, 1]) { buy[b[j].id]++; max = Math.Max(max, buy[b[j].id]); }
            }
        if (max == 0) { Console.WriteLine(0); return; }
        for (int i = 0; i < m; i++)
            if (buy[i] == max) Console.WriteLine(i + 1);
    }
}
0