結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー tnodinotnodino
提出日時 2022-06-07 18:20:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,808 KB
最終ジャッジ日時 2024-09-21 04:54:21
合計ジャッジ時間 14,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 41 ms
11,136 KB
testcase_05 AC 40 ms
11,136 KB
testcase_06 AC 42 ms
11,136 KB
testcase_07 AC 41 ms
11,136 KB
testcase_08 AC 42 ms
11,136 KB
testcase_09 AC 44 ms
11,392 KB
testcase_10 AC 43 ms
11,264 KB
testcase_11 AC 42 ms
11,264 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 252 ms
18,180 KB
testcase_33 AC 186 ms
16,896 KB
testcase_34 AC 385 ms
21,676 KB
testcase_35 AC 330 ms
20,356 KB
testcase_36 AC 374 ms
22,284 KB
testcase_37 AC 224 ms
17,280 KB
testcase_38 AC 206 ms
17,544 KB
testcase_39 AC 412 ms
22,156 KB
testcase_40 AC 286 ms
18,820 KB
testcase_41 AC 373 ms
21,516 KB
testcase_42 AC 249 ms
18,308 KB
testcase_43 AC 273 ms
19,200 KB
testcase_44 AC 335 ms
21,756 KB
testcase_45 AC 255 ms
18,312 KB
testcase_46 AC 423 ms
23,048 KB
testcase_47 AC 126 ms
14,208 KB
testcase_48 AC 246 ms
18,564 KB
testcase_49 AC 439 ms
23,052 KB
testcase_50 AC 236 ms
17,412 KB
testcase_51 AC 214 ms
16,904 KB
testcase_52 AC 483 ms
24,592 KB
testcase_53 AC 483 ms
24,344 KB
testcase_54 AC 578 ms
32,808 KB
testcase_55 AC 590 ms
32,800 KB
testcase_56 AC 606 ms
32,680 KB
testcase_57 AC 609 ms
32,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
dic = {}
for _ in range(N):
    S,A = input().split()
    dic[S] = A
for _ in range(M):
    T,B = input().split()
    dic[T] = B
ans = []
for k,v in dic.items():
    ans.append((k, v))
ans.sort()
for k,v in ans:
    print(k, v)
0