結果

問題 No.138 化石のバージョン
ユーザー r6eve
提出日時 2017-08-11 05:46:11
言語 OCaml
(5.2.1)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 21,700 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 00:10:50
合計ジャッジ時間 1,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

let read () = Scanf.scanf "%d.%d.%d " (fun a b c -> a, b, c)

let () =
  let a, b, c = read () in
  let x, y, z = read () in
  let p =
    if a < x then false
    else if a > x then true
    else if b < y then false
    else if b > y then true
    else if c < z then false
    else if c > z then true
    else true in
  print_endline (if p then "YES" else "NO")
0