結果

問題 No.2090 否定論理積と充足可能性
ユーザー minimumminimum
提出日時 2022-09-30 22:09:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,672 KB
実行使用メモリ 53,396 KB
最終ジャッジ日時 2024-12-22 23:53:02
合計ジャッジ時間 1,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

def NAND(x, y):
    return (1 - x) | (1 - y)

a = list(map(str, input().split()))
for i in range(1 << 6):
    p = []
    for j in range(6):
        if (i >> j) & 1:
            p.append(1)
        else:
            p.append(0)
    ok = 1
    for i in range(5):
        for j in range(i + 1, 6):
            if a[i] == a[j] and p[i] != p[j]:
                ok = 0
    if ok == 0:
        continue
    if NAND(NAND(NAND(p[0], p[1]), p[2]), NAND(NAND(p[3], p[4]), p[5])):
        if ok:
            print('YES')
            exit()

print('NO')
0