結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー nebukuro09nebukuro09
提出日時 2018-12-17 22:01:21
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 508 bytes
コンパイル時間 1,023 ms
コンパイル使用メモリ 119,096 KB
実行使用メモリ 18,044 KB
最終ジャッジ日時 2024-06-13 02:22:59
合計ジャッジ時間 9,276 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 82 ms
17,512 KB
testcase_04 AC 84 ms
17,400 KB
testcase_05 AC 82 ms
17,456 KB
testcase_06 AC 82 ms
17,788 KB
testcase_07 AC 84 ms
17,784 KB
testcase_08 AC 83 ms
16,648 KB
testcase_09 AC 83 ms
17,212 KB
testcase_10 AC 81 ms
17,192 KB
testcase_11 AC 83 ms
17,164 KB
testcase_12 AC 80 ms
16,556 KB
testcase_13 AC 79 ms
17,152 KB
testcase_14 AC 77 ms
16,936 KB
testcase_15 AC 77 ms
17,084 KB
testcase_16 AC 79 ms
17,208 KB
testcase_17 AC 76 ms
17,812 KB
testcase_18 AC 76 ms
16,604 KB
testcase_19 AC 75 ms
17,344 KB
testcase_20 AC 70 ms
16,620 KB
testcase_21 AC 74 ms
17,100 KB
testcase_22 AC 76 ms
17,480 KB
testcase_23 AC 72 ms
17,252 KB
testcase_24 AC 74 ms
16,596 KB
testcase_25 AC 73 ms
15,956 KB
testcase_26 AC 73 ms
15,832 KB
testcase_27 AC 70 ms
16,948 KB
testcase_28 AC 68 ms
16,196 KB
testcase_29 AC 71 ms
17,496 KB
testcase_30 AC 70 ms
16,712 KB
testcase_31 AC 69 ms
17,040 KB
testcase_32 AC 70 ms
16,668 KB
testcase_33 AC 71 ms
17,412 KB
testcase_34 AC 68 ms
17,776 KB
testcase_35 AC 67 ms
17,132 KB
testcase_36 AC 68 ms
16,952 KB
testcase_37 AC 68 ms
17,000 KB
testcase_38 AC 66 ms
17,540 KB
testcase_39 AC 66 ms
18,044 KB
testcase_40 AC 66 ms
16,272 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,944 KB
testcase_43 AC 1 ms
6,940 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 6 ms
6,944 KB
testcase_46 AC 6 ms
6,940 KB
testcase_47 AC 61 ms
14,668 KB
testcase_48 AC 62 ms
13,244 KB
testcase_49 AC 59 ms
13,380 KB
testcase_50 AC 70 ms
12,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto M = s[1];
    auto A = readln.split.map!(to!long).array;
    auto B = readln.split.map!(to!long).array;

    int[long] mp;
    foreach (a; A) mp[a] += 1;
    B.map!(b => b in mp ? mp[b] : 0).map!(to!string).join(" ").writeln;
}
0