結果

問題 No.1941 CHECKER×CHECKER(1)
ユーザー 👑 tatt61880tatt61880
提出日時 2022-07-23 22:38:48
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 3,879 ms
コンパイル使用メモリ 147,128 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-19 00:38:28
合計ジャッジ時間 4,519 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var s: [][]char :: #[3][]char
	for i(0, 2)
		do s[i] :: cui@input()
	end for
	var ans: bool :: true
	for i(0, 1)
		for j(0, 1)
			if(s[i][j] = s[i + 1][j] | s[i][j] = s[i][j + 1])
				do ans :: false
				break i
			end if
		end for
	end for
	do cui@print((ans ?("Yes", "No")) ~ "\n")
end func
0