結果
| 問題 | No.1795 AtCoder Heuristic Rating coloring |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-12 00:38:26 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 266 ms |
| コンパイル使用メモリ | 95,856 KB |
| 実行使用メモリ | 107,980 KB |
| 最終ジャッジ日時 | 2026-08-28 12:25:18 |
| 合計ジャッジ時間 | 14,954 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 54 |
ソースコード
N,M = map(int,input().split())
from collections import defaultdict
d = defaultdict(int)
for _ in range(N+M):
S,t = input().split()
d[S] = int(t)
l = d.items()
l.sort()
for S,i in l:
print(S,i)