結果
| 問題 |
No.441 和か積
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-20 03:03:36 |
| 言語 | OCaml (5.2.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 228 bytes |
| コンパイル時間 | 283 ms |
| コンパイル使用メモリ | 21,572 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-09 01:27:59 |
| 合計ジャッジ時間 | 1,349 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
Scanf.scanf "%s %s" (fun a b ->
print_endline @@
match a, b with
| "0", "0"
| "2", "2" -> "E"
| "1", _
| _, "1"
| "0", _
| _, "0" -> "S"
| _ -> "P"
)