結果
問題 |
No.1795 AtCoder Heuristic Rating coloring
|
ユーザー |
![]() |
提出日時 | 2021-11-14 21:48:08 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 507 ms / 2,000 ms |
コード長 | 322 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 33,004 KB |
最終ジャッジ日時 | 2024-09-20 02:55:26 |
合計ジャッジ時間 | 11,679 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]=int(B) ans=sorted(list(d.items()),key=lambda x:x[0]) for user,rate in ans: print(user,rate) return main()