結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-05 16:33:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,464 KB
最終ジャッジ日時 2024-06-11 13:35:40
合計ジャッジ時間 14,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 44 ms
11,136 KB
testcase_05 AC 37 ms
11,008 KB
testcase_06 AC 38 ms
11,008 KB
testcase_07 AC 36 ms
11,136 KB
testcase_08 AC 38 ms
11,392 KB
testcase_09 AC 40 ms
11,264 KB
testcase_10 AC 39 ms
11,136 KB
testcase_11 AC 39 ms
11,264 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 25 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 25 ms
10,880 KB
testcase_28 AC 25 ms
10,624 KB
testcase_29 AC 25 ms
10,752 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 26 ms
10,752 KB
testcase_32 AC 275 ms
18,692 KB
testcase_33 AC 185 ms
17,404 KB
testcase_34 AC 382 ms
22,280 KB
testcase_35 AC 332 ms
20,992 KB
testcase_36 AC 376 ms
23,048 KB
testcase_37 AC 224 ms
17,664 KB
testcase_38 AC 204 ms
18,176 KB
testcase_39 AC 407 ms
23,048 KB
testcase_40 AC 284 ms
19,456 KB
testcase_41 AC 384 ms
22,412 KB
testcase_42 AC 247 ms
18,804 KB
testcase_43 AC 266 ms
19,836 KB
testcase_44 AC 350 ms
22,272 KB
testcase_45 AC 279 ms
18,696 KB
testcase_46 AC 433 ms
23,684 KB
testcase_47 AC 124 ms
14,336 KB
testcase_48 AC 248 ms
19,324 KB
testcase_49 AC 440 ms
23,940 KB
testcase_50 AC 244 ms
17,904 KB
testcase_51 AC 215 ms
17,540 KB
testcase_52 AC 485 ms
25,484 KB
testcase_53 AC 484 ms
25,360 KB
testcase_54 AC 624 ms
34,340 KB
testcase_55 AC 613 ms
34,332 KB
testcase_56 AC 619 ms
34,464 KB
testcase_57 AC 640 ms
34,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


d=defaultdict(str)
n,m=map(int,input().split())
for _ in range(n):
    s,t=map(str,input().split())
    d[s]=t
for _ in range(m):
    s,t=map(str,input().split())
    d[s]=t
ans=[]
for key,val in d.items():
    ans.append([key,val])
ans.sort()
for a,b in ans:
    print(a,b)
0