結果
| 問題 | No.628 Tagの勢い | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-12-18 05:46:50 | 
| 言語 | Nim (2.2.0) | 
| 結果 | 
                                CE
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 763 bytes | 
| コンパイル時間 | 948 ms | 
| コンパイル使用メモリ | 73,532 KB | 
| 最終ジャッジ日時 | 2024-11-14 20:43:50 | 
| 合計ジャッジ時間 | 1,395 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
            
            
            
            
            ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(2, 28) Error: cannot open file: queues
ソースコード
import sequtils,strutils,algorithm,math,sugar,macros,strformat
import sets,tables,intsets,queues,heapqueue,bitops
template get*():string = stdin.readLine().strip()
macro unpack*(arr: auto,cnt: static[int]): auto =
  let t = genSym(); result = quote do:(let `t` = `arr`;())
  for i in 0..<cnt: result[1].add(quote do:`t`[`i`])
template times*(n:int,body) = (for _ in 0..<n: body)
let n = get().parseInt()
var res = initTable[string,int]()
n.times:
  let _ = get().parseInt()
  let (_,s) = get().split().map(parseInt).unpack(2)
  for t in get().split():
    if res.hasKey(t): res[t] += s
    else : res[t] = s
let S = toSeq(res.pairs).sorted((x,y)=>(
  if x[1] != y[1]: y[1] - x[1] elif x[0] > y[0]: 1 else: -1 ))
for s in S[0..<min(10,S.len())]:echo s[0]," ",s[1]
            
            
            
        