結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harurunharurun
提出日時 2021-11-15 00:09:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 100,276 KB
最終ジャッジ日時 2024-09-20 03:09:21
合計ジャッジ時間 11,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,696 KB
testcase_01 AC 38 ms
55,664 KB
testcase_02 AC 38 ms
54,624 KB
testcase_03 AC 40 ms
56,340 KB
testcase_04 AC 99 ms
77,400 KB
testcase_05 AC 98 ms
77,336 KB
testcase_06 AC 90 ms
77,032 KB
testcase_07 AC 91 ms
76,932 KB
testcase_08 AC 86 ms
77,420 KB
testcase_09 AC 88 ms
77,804 KB
testcase_10 AC 92 ms
77,120 KB
testcase_11 AC 90 ms
77,336 KB
testcase_12 AC 40 ms
54,688 KB
testcase_13 AC 41 ms
55,260 KB
testcase_14 AC 40 ms
54,500 KB
testcase_15 AC 40 ms
55,600 KB
testcase_16 AC 41 ms
54,652 KB
testcase_17 AC 41 ms
55,444 KB
testcase_18 AC 42 ms
54,684 KB
testcase_19 AC 40 ms
54,364 KB
testcase_20 AC 42 ms
55,480 KB
testcase_21 AC 39 ms
55,376 KB
testcase_22 AC 40 ms
55,420 KB
testcase_23 AC 39 ms
54,616 KB
testcase_24 AC 39 ms
55,656 KB
testcase_25 AC 40 ms
55,672 KB
testcase_26 AC 40 ms
55,400 KB
testcase_27 AC 42 ms
54,580 KB
testcase_28 AC 38 ms
54,672 KB
testcase_29 AC 40 ms
54,500 KB
testcase_30 AC 41 ms
55,372 KB
testcase_31 AC 40 ms
54,708 KB
testcase_32 AC 195 ms
87,256 KB
testcase_33 AC 167 ms
84,572 KB
testcase_34 AC 252 ms
88,736 KB
testcase_35 AC 235 ms
86,800 KB
testcase_36 AC 255 ms
88,424 KB
testcase_37 AC 176 ms
84,228 KB
testcase_38 AC 172 ms
84,096 KB
testcase_39 AC 262 ms
89,776 KB
testcase_40 AC 214 ms
86,492 KB
testcase_41 AC 256 ms
90,376 KB
testcase_42 AC 192 ms
85,724 KB
testcase_43 AC 202 ms
87,732 KB
testcase_44 AC 234 ms
87,756 KB
testcase_45 AC 194 ms
85,140 KB
testcase_46 AC 284 ms
91,184 KB
testcase_47 AC 144 ms
81,708 KB
testcase_48 AC 195 ms
85,952 KB
testcase_49 AC 293 ms
90,632 KB
testcase_50 AC 188 ms
83,924 KB
testcase_51 AC 178 ms
82,956 KB
testcase_52 AC 298 ms
93,956 KB
testcase_53 AC 306 ms
94,092 KB
testcase_54 AC 376 ms
100,024 KB
testcase_55 AC 399 ms
100,020 KB
testcase_56 AC 379 ms
100,024 KB
testcase_57 AC 377 ms
100,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
def main():
  N,M=map(int,input().split())
  d=Counter()
  for i in range(N):
    S,A=input().split()
    d[S]=int(A)
  for i in range(M):
    T,B=input().split()
    d[T]=int(B)
  ans=sorted(list(d.items()),key=lambda x:x[0])
  for user,rate in ans:
    print(user,rate)
  return

main()
0