結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー lloyzlloyz
提出日時 2021-12-24 23:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 99,520 KB
最終ジャッジ日時 2024-09-20 03:26:59
合計ジャッジ時間 11,007 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,240 KB
testcase_01 AC 39 ms
55,480 KB
testcase_02 AC 39 ms
54,344 KB
testcase_03 AC 40 ms
54,716 KB
testcase_04 AC 99 ms
77,884 KB
testcase_05 AC 100 ms
77,796 KB
testcase_06 AC 92 ms
76,904 KB
testcase_07 AC 93 ms
77,316 KB
testcase_08 AC 88 ms
77,268 KB
testcase_09 AC 89 ms
77,144 KB
testcase_10 AC 91 ms
77,028 KB
testcase_11 AC 88 ms
77,308 KB
testcase_12 AC 41 ms
54,740 KB
testcase_13 AC 41 ms
55,224 KB
testcase_14 AC 39 ms
54,244 KB
testcase_15 AC 39 ms
54,800 KB
testcase_16 AC 41 ms
55,760 KB
testcase_17 AC 40 ms
55,440 KB
testcase_18 AC 41 ms
56,220 KB
testcase_19 AC 41 ms
55,440 KB
testcase_20 AC 41 ms
55,652 KB
testcase_21 AC 41 ms
55,524 KB
testcase_22 AC 43 ms
54,572 KB
testcase_23 AC 40 ms
54,856 KB
testcase_24 AC 42 ms
55,824 KB
testcase_25 AC 42 ms
54,520 KB
testcase_26 AC 41 ms
55,572 KB
testcase_27 AC 42 ms
55,700 KB
testcase_28 AC 41 ms
54,620 KB
testcase_29 AC 41 ms
55,184 KB
testcase_30 AC 41 ms
55,072 KB
testcase_31 AC 42 ms
55,008 KB
testcase_32 AC 205 ms
86,620 KB
testcase_33 AC 160 ms
84,584 KB
testcase_34 AC 254 ms
88,680 KB
testcase_35 AC 225 ms
86,592 KB
testcase_36 AC 250 ms
88,024 KB
testcase_37 AC 177 ms
84,344 KB
testcase_38 AC 174 ms
84,000 KB
testcase_39 AC 264 ms
90,344 KB
testcase_40 AC 216 ms
86,224 KB
testcase_41 AC 254 ms
89,820 KB
testcase_42 AC 192 ms
85,448 KB
testcase_43 AC 206 ms
86,660 KB
testcase_44 AC 260 ms
87,912 KB
testcase_45 AC 195 ms
85,260 KB
testcase_46 AC 268 ms
90,080 KB
testcase_47 AC 138 ms
81,764 KB
testcase_48 AC 195 ms
86,288 KB
testcase_49 AC 277 ms
90,196 KB
testcase_50 AC 187 ms
84,104 KB
testcase_51 AC 169 ms
83,864 KB
testcase_52 AC 302 ms
93,764 KB
testcase_53 AC 306 ms
94,008 KB
testcase_54 AC 373 ms
99,272 KB
testcase_55 AC 393 ms
99,004 KB
testcase_56 AC 373 ms
99,032 KB
testcase_57 AC 374 ms
99,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n, m = map(int, input().split())
Rate = defaultdict(int)
for _ in range(n):
    s, a = input().split()
    Rate[s] = int(a)
for _ in range(m):
    t, b = input().split()
    Rate[t] = int(b)

ANS = [(name, score) for name, score in Rate.items()]
ANS.sort(key=lambda x: x[0])
for name, score in ANS:
    print(name, score)
0