結果
問題 | No.138 化石のバージョン |
ユーザー |
![]() |
提出日時 | 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 |
ソースコード
let read () = Scanf.scanf "%d.%d.%d " (fun a b c -> a, b, c)let () =let a, b, c = read () inlet x, y, z = read () inlet p =if a < x then falseelse if a > x then trueelse if b < y then falseelse if b > y then trueelse if c < z then falseelse if c > z then trueelse true inprint_endline (if p then "YES" else "NO")