結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harurun
提出日時 2021-11-15 00:58:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,000 KB
最終ジャッジ日時 2024-09-20 03:07:52
合計ジャッジ時間 11,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N,M=map(int,input().split())
  d={}
  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