結果
| 問題 | 
                            No.1941 CHECKER×CHECKER(1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-07-02 01:57:56 | 
| 言語 | OCaml  (5.2.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 149 bytes | 
| コンパイル時間 | 1,477 ms | 
| コンパイル使用メモリ | 21,484 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-11-26 10:46:47 | 
| 合計ジャッジ時間 | 921 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 12 | 
ソースコード
Scanf.scanf "%s %s %s" (fun s1 s2 s3 ->
    let s = s1 ^ s2 ^ s3 in
    print_endline @@ if s = "#.#.#.#.#" || s = ".#.#.#.#." then "Yes" else "No"
)