結果

問題 No.2090 否定論理積と充足可能性
ユーザー だれだれ
提出日時 2022-09-30 21:40:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-22 22:48:27
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

def u(v):
    a, b, c, d, e, f = v
    return not(not(not(a and b) and c) and not(not(d and e) and f))

l = list(map(int, input().split()))
for i in range(1 << 6):
    v = [0] * 6
    for j in range(6):
        if i >> j & 1:
            v[j] = 1
    f = 1
    for j in range(6):
        for k in range(6):
            if j == k:
                continue
            if l[j] == l[k] and v[j] != v[k]:
                f = 0
    if f:
        if u(v):
            print("YES")
            exit()
print("NO")
0