結果

問題 No.647 明太子
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-06-15 21:18:17
言語 Nim
(2.0.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 668 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 65,180 KB
最終ジャッジ日時 2024-06-30 14:57:09
合計ジャッジ時間 1,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
/home/judge/data/code/Main.nim(8, 46) Error: type mismatch: got 'seq[int]' for 'getInts()' but expected 'tuple'

ソースコード

diff #

import strutils, sequtils, algorithm
proc getInts: auto = stdin.readLine.split.map parseInt

let N = stdin.readLine.parseInt
var person = newSeq[tuple[cost, taste: int]](N)

for i in 0 ..< N:
  (person[i].cost, person[i].taste) = getInts()

let M = stdin.readLine.parseInt
var mentai = newSeq[tuple[cost, taste, pop: int]](M)

for j in 0 ..< M:
  (mentai[j].cost, mentai[j].taste) = getInts()
  for i in 0 ..< N:
    if mentai[j].cost <= person[i].cost:
      if mentai[j].taste >= person[i].taste:
        mentai[j].pop += 1

let best = sortedByIt(mentai, -it.pop)[0].pop
if best > 0:
  for j in 0 ..< M:
    if mentai[j].pop == best:
      echo j + 1
else:
  echo 0
0