結果

問題 No.1941 CHECKER×CHECKER(1)
ユーザー n_getn_get
提出日時 2022-07-12 12:26:42
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 5,288 KB
実行使用メモリ 11,848 KB
最終ジャッジ日時 2023-09-05 12:29:44
合計ジャッジ時間 1,080 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
11,576 KB
testcase_01 AC 18 ms
11,576 KB
testcase_02 AC 18 ms
11,672 KB
testcase_03 AC 17 ms
11,668 KB
testcase_04 AC 17 ms
11,628 KB
testcase_05 AC 17 ms
11,520 KB
testcase_06 AC 17 ms
11,668 KB
testcase_07 AC 17 ms
11,832 KB
testcase_08 AC 18 ms
11,692 KB
testcase_09 AC 17 ms
11,704 KB
testcase_10 AC 17 ms
11,816 KB
testcase_11 AC 17 ms
11,600 KB
testcase_12 AC 17 ms
11,848 KB
testcase_13 AC 16 ms
11,720 KB
testcase_14 AC 17 ms
11,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(let* [[s1 (read-line)][s2 (read-line)][s3 (read-line)]]
      (print (if (or (and (string=? s1 "#.#")
                          (string=? s2 ".#.")
                          (string=? s3 "#.#"))
                     (and (string=? s1 ".#.")
                          (string=? s2 "#.#")
                          (string=? s3 ".#.")))
                      'Yes 'No)))
0