結果

問題 No.138 化石のバージョン
ユーザー yozayoza
提出日時 2015-02-25 19:32:10
言語 Nim
(2.0.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 410 bytes
コンパイル時間 1,473 ms
コンパイル使用メモリ 64,844 KB
最終ジャッジ日時 2024-11-14 19:00:30
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
/home/judge/data/code/Main.nim(14, 50) Error: undeclared identifier: 'it'

ソースコード

diff #

import strutils, sequtils, math

proc judge(a, b: openArray[int]; depth: int): string =
  if depth == 3:
    return "YES"
  if a[depth] > b[depth]:
    return "YES"
  elif a[depth] < b[depth]:
    return "NO"
  else:
    return judge(a, b, depth + 1)

var
  a_seq = split(readLine(stdin), '.').mapIt(int, it.parseInt)
  b_seq = split(readLine(stdin), '.').mapIt(int, it.parseInt)

echo(judge(a_seq, b_seq, 0))
0