結果

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

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

def NAND(a, b):
    return -(a & b) + 1

def f(x):
    return NAND(NAND(NAND(x[0], x[1]), x[2]), NAND(NAND(x[3], x[4]), x[5]))

A = list(input().split())

a = [0] * 6
for i in range(6):
    a[i] = A.index(A[i])

ans = 0

for i in range(1 << 6):
    b = format(i, "06b")
    u = [0] * 6
    for j in range(6):
        u[j] = int(b[a[j]])
    if f(u):
        ans = 1
        break

if ans == 1:
    print("YES")
else:
    print("NO")


0