結果
問題 |
No.1795 AtCoder Heuristic Rating coloring
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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]=int(B) ans=sorted(list(d.items()),key=lambda x:x[0]) for user,rate in ans: print(user,rate) return main()