結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー tktk_snsntktk_snsn
提出日時 2021-12-24 12:11:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,940 KB
最終ジャッジ日時 2024-09-20 03:24:03
合計ジャッジ時間 13,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 38 ms
11,264 KB
testcase_05 AC 39 ms
11,264 KB
testcase_06 AC 40 ms
11,392 KB
testcase_07 AC 41 ms
11,072 KB
testcase_08 AC 42 ms
11,136 KB
testcase_09 AC 43 ms
11,240 KB
testcase_10 AC 41 ms
11,136 KB
testcase_11 AC 40 ms
11,136 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 28 ms
10,624 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 260 ms
21,160 KB
testcase_33 AC 179 ms
17,212 KB
testcase_34 AC 383 ms
25,548 KB
testcase_35 AC 341 ms
24,680 KB
testcase_36 AC 376 ms
24,956 KB
testcase_37 AC 221 ms
20,580 KB
testcase_38 AC 203 ms
18,552 KB
testcase_39 AC 413 ms
30,380 KB
testcase_40 AC 281 ms
21,048 KB
testcase_41 AC 393 ms
29,636 KB
testcase_42 AC 246 ms
20,288 KB
testcase_43 AC 271 ms
20,240 KB
testcase_44 AC 333 ms
22,516 KB
testcase_45 AC 264 ms
20,464 KB
testcase_46 AC 445 ms
30,516 KB
testcase_47 AC 135 ms
15,616 KB
testcase_48 AC 252 ms
19,444 KB
testcase_49 AC 448 ms
30,940 KB
testcase_50 AC 243 ms
23,548 KB
testcase_51 AC 217 ms
20,676 KB
testcase_52 AC 490 ms
32,416 KB
testcase_53 AC 490 ms
32,480 KB
testcase_54 AC 590 ms
32,800 KB
testcase_55 AC 603 ms
32,940 KB
testcase_56 AC 607 ms
32,780 KB
testcase_57 AC 570 ms
32,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = [-1] * N
B = [-1] * N
C = [-1] * M
D = [-1] * M

for i in range(N):
    s, t = input().split()
    A[i] = s
    B[i] = int(t)

for i in range(M):
    s, t = input().split()
    C[i] = s
    D[i] = int(t)


name = sorted(set(A) | set(C))
name_to_i = {n: i for i, n in enumerate(name)}
score = [0] * (len(name))

for a, b in zip(A, B):
    i = name_to_i[a]
    score[i] = b

for c, d in zip(C, D):
    i = name_to_i[c]
    score[i] = d

for i in range(len(name)):
    print(name[i], score[i])
0