結果

問題 No.2090 否定論理積と充足可能性
ユーザー KazunKazun
提出日時 2022-09-30 21:36:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 53,928 KB
最終ジャッジ日時 2024-06-02 05:08:05
合計ジャッジ時間 1,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,928 KB
testcase_01 AC 36 ms
52,532 KB
testcase_02 AC 36 ms
52,348 KB
testcase_03 AC 35 ms
53,148 KB
testcase_04 AC 34 ms
52,900 KB
testcase_05 AC 33 ms
51,944 KB
testcase_06 AC 34 ms
53,360 KB
testcase_07 AC 35 ms
52,016 KB
testcase_08 AC 34 ms
53,928 KB
testcase_09 AC 34 ms
52,272 KB
testcase_10 AC 33 ms
53,292 KB
testcase_11 AC 35 ms
52,364 KB
testcase_12 AC 33 ms
52,824 KB
testcase_13 AC 34 ms
52,948 KB
testcase_14 AC 33 ms
53,064 KB
testcase_15 AC 34 ms
53,816 KB
testcase_16 AC 33 ms
53,104 KB
testcase_17 AC 33 ms
53,188 KB
testcase_18 AC 34 ms
53,348 KB
testcase_19 AC 34 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    X=list(input().split())
    I={s:i for i,s in enumerate(X)}

    for T in range(1<<6):
        S=[0]*6
        for i in range(6):
            S[i]=(T>>i)&1

        M=[-1]*6
        flag=1
        for i in range(6):
            if M[I[X[i]]]==-1:
                M[I[X[i]]]=S[i]
            elif M[I[X[i]]]!=S[i]:
                flag=0
                break

        if flag==0:
            continue

        def nand(x,y):
            return 0 if x==y==1 else 1

        if nand(nand(nand(S[0],S[1]),S[2]), nand(nand(S[3], S[4]), S[5])):
            return True
    return False

print("YES" if solve() else "NO")
0