結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー kokatsukokatsu
提出日時 2021-12-24 19:06:49
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 212,460 KB
実行使用メモリ 22,132 KB
最終ジャッジ日時 2024-06-22 13:54:42
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 93 ms
13,820 KB
testcase_33 AC 61 ms
12,208 KB
testcase_34 AC 138 ms
14,636 KB
testcase_35 AC 120 ms
14,484 KB
testcase_36 AC 137 ms
14,584 KB
testcase_37 AC 76 ms
12,520 KB
testcase_38 AC 70 ms
12,236 KB
testcase_39 AC 157 ms
14,932 KB
testcase_40 AC 103 ms
13,860 KB
testcase_41 AC 148 ms
14,492 KB
testcase_42 AC 94 ms
13,840 KB
testcase_43 AC 99 ms
14,384 KB
testcase_44 AC 123 ms
14,636 KB
testcase_45 AC 93 ms
13,796 KB
testcase_46 AC 162 ms
14,812 KB
testcase_47 AC 39 ms
7,360 KB
testcase_48 AC 85 ms
13,192 KB
testcase_49 AC 170 ms
14,716 KB
testcase_50 AC 88 ms
13,852 KB
testcase_51 AC 75 ms
12,928 KB
testcase_52 AC 183 ms
18,044 KB
testcase_53 AC 188 ms
16,328 KB
testcase_54 AC 228 ms
22,132 KB
testcase_55 AC 221 ms
20,012 KB
testcase_56 AC 222 ms
19,868 KB
testcase_57 AC 233 ms
19,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, M;
    readf("%d %d\n", N, M);

    int[string] rate;

    foreach (_; 0 .. N+M) {
        auto input = readln.chomp.split;
        rate[input[0]] = input[1].to!int;
    }

    auto user = rate.keys;
    user.sort;

    foreach (u; user) {
        writeln(u, " ", rate[u]);
    }
}
0