結果
問題 | No.1795 AtCoder Heuristic Rating coloring |
ユーザー |
![]() |
提出日時 | 2021-11-14 18:23:32 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 54 |
ソースコード
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()