結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー AreTrashAreTrash
提出日時 2016-10-12 19:42:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 511 ms / 1,000 ms
コード長 558 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 102,656 KB
実行使用メモリ 43,776 KB
最終ジャッジ日時 2024-11-22 01:35:33
合計ジャッジ時間 25,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,176 KB
testcase_01 AC 26 ms
17,920 KB
testcase_02 AC 26 ms
17,920 KB
testcase_03 AC 451 ms
43,392 KB
testcase_04 AC 480 ms
39,228 KB
testcase_05 AC 468 ms
39,304 KB
testcase_06 AC 473 ms
39,296 KB
testcase_07 AC 469 ms
39,412 KB
testcase_08 AC 468 ms
39,252 KB
testcase_09 AC 479 ms
39,372 KB
testcase_10 AC 469 ms
39,280 KB
testcase_11 AC 461 ms
43,520 KB
testcase_12 AC 472 ms
43,136 KB
testcase_13 AC 465 ms
43,776 KB
testcase_14 AC 461 ms
43,776 KB
testcase_15 AC 457 ms
43,648 KB
testcase_16 AC 464 ms
43,264 KB
testcase_17 AC 459 ms
42,752 KB
testcase_18 AC 453 ms
42,368 KB
testcase_19 AC 458 ms
43,392 KB
testcase_20 AC 455 ms
41,984 KB
testcase_21 AC 453 ms
41,984 KB
testcase_22 AC 466 ms
41,856 KB
testcase_23 AC 459 ms
41,856 KB
testcase_24 AC 453 ms
41,472 KB
testcase_25 AC 453 ms
41,472 KB
testcase_26 AC 448 ms
41,344 KB
testcase_27 AC 511 ms
40,960 KB
testcase_28 AC 460 ms
40,704 KB
testcase_29 AC 443 ms
40,960 KB
testcase_30 AC 449 ms
40,960 KB
testcase_31 AC 466 ms
40,832 KB
testcase_32 AC 447 ms
40,576 KB
testcase_33 AC 441 ms
40,704 KB
testcase_34 AC 454 ms
40,320 KB
testcase_35 AC 450 ms
40,064 KB
testcase_36 AC 441 ms
40,064 KB
testcase_37 AC 449 ms
40,320 KB
testcase_38 AC 447 ms
40,192 KB
testcase_39 AC 456 ms
40,192 KB
testcase_40 AC 446 ms
39,936 KB
testcase_41 AC 27 ms
17,920 KB
testcase_42 AC 26 ms
17,920 KB
testcase_43 AC 27 ms
17,792 KB
testcase_44 AC 67 ms
20,224 KB
testcase_45 AC 62 ms
20,224 KB
testcase_46 AC 64 ms
20,096 KB
testcase_47 AC 387 ms
38,784 KB
testcase_48 AC 365 ms
40,960 KB
testcase_49 AC 388 ms
40,320 KB
testcase_50 AC 463 ms
40,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

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);

            foreach(var x in B){
                var u = ~Array.BinarySearch(A, x + 0.5d);
                var l = ~Array.BinarySearch(A, x - 0.5d);
                Console.Write(u - l + " ");
            }
        }
    }
}
0