結果

問題 No.870 無敵囲い
ユーザー Co-3Co-3
提出日時 2020-09-21 22:38:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-29 06:44:12
合計ジャッジ時間 1,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
10,496 KB
testcase_06 WA -
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = ["b","2","8"]
c = ["c","3","9"]
d = ["d","7","9"]
i = "b"
j = "c"
k = "d"
for i in range(a):
    e,f,g,h = map(str,input().split())
    if b == [i,e,f]:
        b = [i,g,h]
    elif c == [j,e,f]:
        c = [j,g,h]
    elif d == [k,e,f]:
        d = [k,g,h]
if b == ["b","5","8"] and c == ["c","4","8"] and d == ["d","6","8"]:
    print("YES")
else:
    print("NO")

    
0