結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー first_vilfirst_vil
提出日時 2022-01-12 19:59:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,328 KB
最終ジャッジ日時 2024-11-15 11:56:05
合計ジャッジ時間 16,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 42 ms
11,136 KB
testcase_05 AC 42 ms
11,008 KB
testcase_06 AC 44 ms
11,008 KB
testcase_07 AC 44 ms
11,008 KB
testcase_08 AC 44 ms
11,008 KB
testcase_09 AC 45 ms
11,392 KB
testcase_10 AC 46 ms
11,264 KB
testcase_11 AC 45 ms
11,008 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 306 ms
17,448 KB
testcase_33 AC 204 ms
16,272 KB
testcase_34 AC 430 ms
20,664 KB
testcase_35 AC 379 ms
19,784 KB
testcase_36 AC 414 ms
21,284 KB
testcase_37 AC 236 ms
16,648 KB
testcase_38 AC 243 ms
16,928 KB
testcase_39 AC 470 ms
21,296 KB
testcase_40 AC 316 ms
18,184 KB
testcase_41 AC 436 ms
20,660 KB
testcase_42 AC 278 ms
17,596 KB
testcase_43 AC 287 ms
18,316 KB
testcase_44 AC 364 ms
20,764 KB
testcase_45 AC 281 ms
17,672 KB
testcase_46 AC 481 ms
21,912 KB
testcase_47 AC 143 ms
13,640 KB
testcase_48 AC 293 ms
17,952 KB
testcase_49 AC 511 ms
22,048 KB
testcase_50 AC 276 ms
16,780 KB
testcase_51 AC 243 ms
16,400 KB
testcase_52 AC 559 ms
23,456 KB
testcase_53 AC 570 ms
23,464 KB
testcase_54 AC 690 ms
31,076 KB
testcase_55 AC 692 ms
31,072 KB
testcase_56 AC 697 ms
31,328 KB
testcase_57 AC 688 ms
31,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
from collections import defaultdict
d=defaultdict(int)
for i in range(n):
  s,a=input().split()
  d[s]=int(a)
for i in range(m):
  t,b=input().split()
  d[t]=max(d[t],int(b))
ans=[(k,v) for k,v in d.items()]
ans.sort()
for k,v in ans:
  print(k,v)
0