結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー 👑 KazunKazun
提出日時 2021-12-24 00:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 96,776 KB
最終ジャッジ日時 2024-09-20 03:14:55
合計ジャッジ時間 10,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,848 KB
testcase_01 AC 39 ms
54,520 KB
testcase_02 AC 39 ms
53,616 KB
testcase_03 AC 41 ms
54,984 KB
testcase_04 AC 104 ms
77,292 KB
testcase_05 AC 104 ms
77,772 KB
testcase_06 AC 96 ms
77,416 KB
testcase_07 AC 93 ms
77,172 KB
testcase_08 AC 90 ms
77,152 KB
testcase_09 AC 90 ms
77,356 KB
testcase_10 AC 96 ms
77,140 KB
testcase_11 AC 90 ms
77,244 KB
testcase_12 AC 41 ms
55,368 KB
testcase_13 AC 43 ms
55,216 KB
testcase_14 AC 41 ms
55,912 KB
testcase_15 AC 40 ms
54,724 KB
testcase_16 AC 42 ms
54,176 KB
testcase_17 AC 41 ms
54,936 KB
testcase_18 AC 42 ms
55,456 KB
testcase_19 AC 42 ms
55,516 KB
testcase_20 AC 44 ms
55,840 KB
testcase_21 AC 42 ms
56,068 KB
testcase_22 AC 42 ms
56,016 KB
testcase_23 AC 41 ms
54,856 KB
testcase_24 AC 41 ms
54,544 KB
testcase_25 AC 42 ms
55,356 KB
testcase_26 AC 41 ms
54,924 KB
testcase_27 AC 42 ms
55,088 KB
testcase_28 AC 40 ms
54,600 KB
testcase_29 AC 42 ms
54,784 KB
testcase_30 AC 42 ms
55,068 KB
testcase_31 AC 42 ms
54,920 KB
testcase_32 AC 180 ms
85,960 KB
testcase_33 AC 154 ms
84,528 KB
testcase_34 AC 223 ms
87,328 KB
testcase_35 AC 208 ms
85,604 KB
testcase_36 AC 224 ms
87,672 KB
testcase_37 AC 166 ms
84,108 KB
testcase_38 AC 164 ms
84,048 KB
testcase_39 AC 242 ms
88,228 KB
testcase_40 AC 189 ms
86,436 KB
testcase_41 AC 227 ms
88,456 KB
testcase_42 AC 177 ms
85,472 KB
testcase_43 AC 185 ms
87,588 KB
testcase_44 AC 213 ms
87,520 KB
testcase_45 AC 174 ms
85,248 KB
testcase_46 AC 244 ms
89,884 KB
testcase_47 AC 131 ms
81,328 KB
testcase_48 AC 176 ms
84,996 KB
testcase_49 AC 257 ms
89,372 KB
testcase_50 AC 170 ms
83,276 KB
testcase_51 AC 161 ms
83,416 KB
testcase_52 AC 276 ms
92,048 KB
testcase_53 AC 292 ms
92,172 KB
testcase_54 AC 322 ms
96,644 KB
testcase_55 AC 320 ms
96,776 KB
testcase_56 AC 326 ms
96,668 KB
testcase_57 AC 333 ms
96,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M=map(int,input().split())

Rate=defaultdict(int)
for _ in range(N):
    S,A=input().split(); A=int(A)
    Rate[S]=A

for _ in range(M):
    T,B=input().split(); B=int(B)
    Rate[T]=B

for U in sorted(Rate.keys()):
    print(U,Rate[U])
0