結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー titiatitia
提出日時 2021-12-24 00:41:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,932 KB
最終ジャッジ日時 2024-09-20 03:17:06
合計ジャッジ時間 9,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 35 ms
10,880 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 36 ms
11,008 KB
testcase_08 AC 36 ms
10,880 KB
testcase_09 AC 37 ms
11,008 KB
testcase_10 AC 37 ms
10,880 KB
testcase_11 AC 37 ms
10,880 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,496 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 159 ms
15,144 KB
testcase_33 AC 123 ms
14,544 KB
testcase_34 AC 231 ms
17,460 KB
testcase_35 AC 199 ms
17,420 KB
testcase_36 AC 230 ms
17,700 KB
testcase_37 AC 136 ms
14,860 KB
testcase_38 AC 138 ms
14,876 KB
testcase_39 AC 251 ms
17,968 KB
testcase_40 AC 178 ms
15,364 KB
testcase_41 AC 239 ms
17,716 KB
testcase_42 AC 161 ms
15,112 KB
testcase_43 AC 167 ms
15,756 KB
testcase_44 AC 213 ms
17,440 KB
testcase_45 AC 162 ms
15,248 KB
testcase_46 AC 257 ms
18,064 KB
testcase_47 AC 85 ms
12,740 KB
testcase_48 AC 159 ms
15,644 KB
testcase_49 AC 282 ms
18,464 KB
testcase_50 AC 153 ms
14,732 KB
testcase_51 AC 137 ms
14,572 KB
testcase_52 AC 288 ms
19,236 KB
testcase_53 AC 305 ms
19,112 KB
testcase_54 AC 373 ms
24,932 KB
testcase_55 AC 375 ms
24,804 KB
testcase_56 AC 380 ms
24,804 KB
testcase_57 AC 375 ms
24,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for i in range(N):
    S,A=input().split()
    A=int(A)
    D[S]=A

for i in range(M):
    S,A=input().split()
    A=int(A)
    D[S]=A

L=sorted(D)

for x in L:
    print(x,D[x])
0