結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harurunharurun
提出日時 2021-11-14 18:23:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,008 KB
最終ジャッジ日時 2024-09-20 02:54:34
合計ジャッジ時間 13,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 37 ms
11,136 KB
testcase_06 AC 38 ms
11,008 KB
testcase_07 AC 38 ms
11,008 KB
testcase_08 AC 38 ms
11,136 KB
testcase_09 AC 40 ms
11,136 KB
testcase_10 AC 39 ms
11,136 KB
testcase_11 AC 36 ms
11,008 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 28 ms
10,752 KB
testcase_32 AC 246 ms
18,220 KB
testcase_33 AC 158 ms
16,924 KB
testcase_34 AC 344 ms
21,692 KB
testcase_35 AC 297 ms
20,560 KB
testcase_36 AC 336 ms
22,572 KB
testcase_37 AC 197 ms
17,172 KB
testcase_38 AC 196 ms
17,704 KB
testcase_39 AC 377 ms
22,580 KB
testcase_40 AC 248 ms
18,836 KB
testcase_41 AC 354 ms
21,704 KB
testcase_42 AC 219 ms
18,328 KB
testcase_43 AC 220 ms
19,348 KB
testcase_44 AC 297 ms
21,804 KB
testcase_45 AC 244 ms
18,328 KB
testcase_46 AC 410 ms
22,944 KB
testcase_47 AC 121 ms
14,160 KB
testcase_48 AC 234 ms
18,732 KB
testcase_49 AC 412 ms
23,208 KB
testcase_50 AC 222 ms
17,432 KB
testcase_51 AC 191 ms
17,044 KB
testcase_52 AC 449 ms
24,688 KB
testcase_53 AC 456 ms
24,628 KB
testcase_54 AC 533 ms
32,872 KB
testcase_55 AC 522 ms
33,008 KB
testcase_56 AC 518 ms
33,004 KB
testcase_57 AC 529 ms
33,000 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]=max(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