結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-12-24 00:02:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 104,308 KB
最終ジャッジ日時 2024-09-20 03:13:28
合計ジャッジ時間 12,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,740 KB
testcase_01 AC 35 ms
52,144 KB
testcase_02 AC 34 ms
51,836 KB
testcase_03 AC 36 ms
53,372 KB
testcase_04 AC 96 ms
76,900 KB
testcase_05 AC 96 ms
77,188 KB
testcase_06 AC 88 ms
76,832 KB
testcase_07 AC 90 ms
76,908 KB
testcase_08 AC 87 ms
76,896 KB
testcase_09 AC 86 ms
76,820 KB
testcase_10 AC 87 ms
76,612 KB
testcase_11 AC 84 ms
77,300 KB
testcase_12 AC 36 ms
52,696 KB
testcase_13 AC 38 ms
53,244 KB
testcase_14 AC 36 ms
54,128 KB
testcase_15 AC 35 ms
52,000 KB
testcase_16 AC 37 ms
54,304 KB
testcase_17 AC 37 ms
53,960 KB
testcase_18 AC 35 ms
52,760 KB
testcase_19 AC 35 ms
53,600 KB
testcase_20 AC 36 ms
53,220 KB
testcase_21 AC 38 ms
53,956 KB
testcase_22 AC 37 ms
53,240 KB
testcase_23 AC 36 ms
52,960 KB
testcase_24 AC 38 ms
54,364 KB
testcase_25 AC 39 ms
52,780 KB
testcase_26 AC 36 ms
53,732 KB
testcase_27 AC 35 ms
52,616 KB
testcase_28 AC 34 ms
52,700 KB
testcase_29 AC 36 ms
52,620 KB
testcase_30 AC 37 ms
53,380 KB
testcase_31 AC 37 ms
52,672 KB
testcase_32 AC 232 ms
87,496 KB
testcase_33 AC 188 ms
83,348 KB
testcase_34 AC 309 ms
89,992 KB
testcase_35 AC 270 ms
87,544 KB
testcase_36 AC 306 ms
89,484 KB
testcase_37 AC 211 ms
83,932 KB
testcase_38 AC 212 ms
85,004 KB
testcase_39 AC 327 ms
91,196 KB
testcase_40 AC 252 ms
86,096 KB
testcase_41 AC 312 ms
91,628 KB
testcase_42 AC 245 ms
85,112 KB
testcase_43 AC 254 ms
86,976 KB
testcase_44 AC 284 ms
89,032 KB
testcase_45 AC 232 ms
85,112 KB
testcase_46 AC 330 ms
92,080 KB
testcase_47 AC 145 ms
81,128 KB
testcase_48 AC 225 ms
86,584 KB
testcase_49 AC 348 ms
92,280 KB
testcase_50 AC 219 ms
84,680 KB
testcase_51 AC 201 ms
83,328 KB
testcase_52 AC 370 ms
96,216 KB
testcase_53 AC 376 ms
96,084 KB
testcase_54 AC 509 ms
104,232 KB
testcase_55 AC 506 ms
104,308 KB
testcase_56 AC 498 ms
104,028 KB
testcase_57 AC 508 ms
104,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dic = {}

for i in range(N):

    S,A = input().split()
    A = int(A)

    dic[S] = A

for i in range(M):

    S,A = input().split()
    A = int(A)

    dic[S] = A


SA = []

for i in dic:
    SA.append( (i,dic[i]) )

SA.sort()

for i in SA:

    print (*i)
0