結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー AreTrashAreTrash
提出日時 2016-10-12 19:48:09
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 611 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 112,636 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-11-22 01:43:17
合計ジャッジ時間 14,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
26,440 KB
testcase_01 AC 30 ms
26,180 KB
testcase_02 AC 29 ms
24,240 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 275 ms
47,020 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 AC 265 ms
47,956 KB
testcase_25 AC 246 ms
46,292 KB
testcase_26 MLE -
testcase_27 AC 268 ms
46,828 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 AC 252 ms
47,916 KB
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 AC 29 ms
24,308 KB
testcase_42 AC 30 ms
24,324 KB
testcase_43 AC 30 ms
24,456 KB
testcase_44 AC 50 ms
25,520 KB
testcase_45 AC 48 ms
25,444 KB
testcase_46 AC 49 ms
25,584 KB
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No3016{
    public class Program{
        public static void Main(string[] args){
            Console.ReadLine();
            var A = Array.ConvertAll(Console.ReadLine().Split(' '), double.Parse);
            var B = Array.ConvertAll(Console.ReadLine().Split(' '), double.Parse);;
            Array.Sort(A);

            var C = new List<int>();
            foreach(var x in B){
                C.Add(Array.BinarySearch(A, x - 0.5d) - Array.BinarySearch(A, x + 0.5d));
            }
            Console.WriteLine(string.Join(" ", C));
        }
    }
}
0