結果
問題 | No.516 赤と青の風船 |
ユーザー |
|
提出日時 | 2019-05-17 12:48:29 |
言語 | OCaml (5.2.1) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 291 bytes |
コンパイル時間 | 422 ms |
コンパイル使用メモリ | 21,708 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 00:40:45 |
合計ジャッジ時間 | 943 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 6 |
ソースコード
let rec count r b lst = match lst with | [] -> if r > b then "RED" else "BLUE" | first :: rest -> if first = "RED" then count (r+1) b rest else count r (b+1) rest let () = let lst = Scanf.scanf "%s\n%s\n%s\n" (fun a b c -> [a; b; c]) in Printf.printf "%s\n" (count 0 0 lst)