結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 40 ms
59,264 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 AC 43 ms
60,416 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 40 ms
53,632 KB
testcase_07 AC 39 ms
53,504 KB
testcase_08 AC 39 ms
53,504 KB
testcase_09 AC 37 ms
53,760 KB
testcase_10 AC 45 ms
60,672 KB
testcase_11 AC 43 ms
60,160 KB
testcase_12 AC 43 ms
59,776 KB
testcase_13 AC 44 ms
59,776 KB
testcase_14 AC 43 ms
59,776 KB
testcase_15 AC 38 ms
53,504 KB
testcase_16 AC 42 ms
59,776 KB
testcase_17 AC 43 ms
61,312 KB
testcase_18 AC 45 ms
60,544 KB
testcase_19 AC 37 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def nand(x, y):
    return 1^(x&y)

def f(l):
    return nand(nand(nand(l[0], l[1]), l[2]), nand(nand(l[3], l[4]), l[5])) == 1

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

for S in range(1<<6):
    l = []
    
    for i in range(6):
        l.append((S>>i)&1)
    
    ok = True
    
    for i in range(6):
        for j in range(6):
            if A[i]==A[j] and l[i]!=l[j]:
                ok = False
    
    if not ok:
        continue
    
    if f(l):
        exit(print('YES'))

print('NO')
0