結果

問題 No.792 真理関数をつくろう
ユーザー kohei2019kohei2019
提出日時 2022-04-10 22:08:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-05-08 09:08:52
合計ジャッジ時間 2,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 76 ms
67,584 KB
testcase_02 AC 45 ms
52,480 KB
testcase_03 AC 92 ms
73,472 KB
testcase_04 AC 43 ms
52,096 KB
testcase_05 AC 88 ms
73,728 KB
testcase_06 AC 121 ms
78,464 KB
testcase_07 AC 56 ms
60,672 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 44 ms
51,712 KB
testcase_10 AC 43 ms
51,968 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 43 ms
52,608 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 43 ms
51,840 KB
testcase_15 AC 51 ms
58,368 KB
testcase_16 AC 115 ms
77,056 KB
testcase_17 AC 47 ms
52,736 KB
testcase_18 AC 44 ms
51,840 KB
testcase_19 AC 44 ms
51,712 KB
testcase_20 AC 97 ms
76,544 KB
testcase_21 AC 122 ms
78,848 KB
testcase_22 AC 43 ms
51,456 KB
testcase_23 AC 42 ms
51,968 KB
testcase_24 AC 41 ms
51,456 KB
testcase_25 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsR = []
lsQ = []
for i in range(2**N):
    ls = list(map(int,input().split()))
    Q = ls[:-1]
    R = ls[-1]
    lsQ.append(Q)
    lsR.append(R)
ans = ['A=']
if lsR.count(0)==0:
    print('A=⊤')
elif lsR.count(1)==0:
    print('A=⊥')
else:
    for i in range(2**N):
        l = []
        l.append('(')
        if lsR[i] == 1:
            for j in range(N):
                if lsQ[i][j] == 1:
                    l.append('P_{}'.format(j+1))
                else:
                    l.append('¬P_{}'.format(j+1))
                l.append('∧')
            l.pop()
            l.append(')')
            ans.append(''.join(l))
            ans.append('∨')
    ans.pop()
    print(''.join(ans))

0